调试Python ctypes分段错误

时间:2012-07-06 02:32:27

标签: c++ python ctypes

我正在尝试从特定于Windows的程序中移植一些Python ctypes代码以链接到我的库的Linux端口。描述我的问题的最短Python代码示例如下所示。当我尝试执行它时,我在Python中的examine_arguments()中收到了分段错误。我在崩溃的函数调用中在我的库中放置了一个printf语句,但它永远不会被执行,这使我认为问题出现在ctypes代码中。

import ctypes

avidll = ctypes.CDLL("libavxsynth.so")


class AVS_Value(ctypes.Structure, object):
    def __init__(self, val=None):
        self.type=ctypes.c_short(105) # 'i'
        self.array_size = 5
        self.d.i = 99


class U(ctypes.Union):
    _fields_ = [("c", ctypes.c_void_p),
                ("b", ctypes.c_long),
                ("i", ctypes.c_int),
                ("f", ctypes.c_float),
                ("s", ctypes.c_char_p),
                ("a", ctypes.POINTER(AVS_Value))]


AVS_Value._fields_ = [("type", ctypes.c_short),
                      ("array_size", ctypes.c_short),
                      ("d", U)]


avs_create_script_environment = avidll.avs_create_script_environment
avs_create_script_environment.restype = ctypes.c_void_p
avs_create_script_environment.argtypes = [ctypes.c_int]

avs_set_var = avidll.avs_set_var
avs_set_var.restype = ctypes.c_int
avs_set_var.argtypes = [ctypes.c_void_p, ctypes.c_char_p, AVS_Value]


env = avs_create_script_environment(2)
val = AVS_Value()
res = avs_set_var(env, b'test', val)

我的库在其标题中包含以下内容,并且执行上述描述的普通C程序(调用create_script_environment后跟set_var)运行正常。查看我的库放入控制台的日志信息,当我尝试输入avs_set_var时发生崩溃。

typedef struct AVS_ScriptEnvironment AVS_ScriptEnvironment;
typedef struct AVS_Value AVS_Value;
struct AVS_Value {
  short type;  // 'a'rray, 'c'lip, 'b'ool, 'i'nt, 'f'loat, 's'tring, 'v'oid, or 'l'ong
               // for some function e'rror
  short array_size;
  union {
    void * clip; // do not use directly, use avs_take_clip
    char boolean;
    int integer;
    float floating_pt;
    const char * string;
    const AVS_Value * array;
  } d;
};
AVS_ScriptEnvironment * avs_create_script_environment(int version);
int avs_set_var(AVS_ScriptEnvironment *, const char* name, AVS_Value val);

我尝试回溯GDB的调用,但我不明白如何解释结果,也不了解如何使用GDB。

#0  0x00007ffff61d6490 in examine_argument () from /usr/lib/python2.7/lib-dynload/_ctypes.so
#1  0x00007ffff61d65ba in ffi_prep_cif_machdep () from /usr/lib/python2.7/lib-dynload/_ctypes.so
#2  0x00007ffff61d3447 in ffi_prep_cif () from /usr/lib/python2.7/lib-dynload/_ctypes.so
#3  0x00007ffff61c7275 in _ctypes_callproc () from /usr/lib/python2.7/lib-dynload/_ctypes.so
#4  0x00007ffff61c7aa2 in PyCFuncPtr_call.2798 () from /usr/lib/python2.7/lib-dynload/_ctypes.so
#5  0x00000000004c7c76 in PyObject_Call ()
#6  0x000000000042aa4a in PyEval_EvalFrameEx ()
#7  0x00000000004317f2 in PyEval_EvalCodeEx ()
#8  0x000000000054b171 in PyRun_FileExFlags ()
#9  0x000000000054b7d8 in PyRun_SimpleFileExFlags ()
#10 0x000000000054c5d6 in Py_Main ()
#11 0x00007ffff68e576d in __libc_start_main () from /lib/x86_64-linux-gnu/libc.so.6
#12 0x000000000041b931 in _start ()

我对如何处理这个问题感到茫然。我已经查看了调用类型的详细信息,但我没有看到任何明显不正确的内容。我是否属于任何类型的平台特定用途?

编辑 ctypes模块中的32位与64位架构似乎存在问题。当我使用32位版本的库和32位Python再次测试时,它成功运行。在64位上,它会在同一个地方发生段错误。

1 个答案:

答案 0 :(得分:0)

尝试将c_void_p用于不透明的AVS_ScriptEnvironment*

avs_create_script_environment.restype = c_void_p

avs_set_var.argtypes=[c_void_p,ctypes.c_char_p,AVS_Value]