0

我有一个 Python 驱动的 DSL,我通过exec(). 此 DSL 包括通过 CFFI 进行的本机函数调用。

当调用一个只有 2 个 C 调用深度的本机函数时,我遇到了堆栈溢出(所以,你让它变得不可用!)崩溃uint16_t,每个 C 函数的堆栈上只分配了少数 s 。Python 应用程序是一个tkinterGUI,它通过 timer () 事件调用 DSL master.after(1000, self.tick),这可能会占用堆栈本身的很大一部分。

这里没有递归调用。

OS X 10.12.3,Python 3.6.0rc1(v3.6.0rc1:29a273eee9a5,2016 年 12 月 6 日,16:24:13),CFFI 1.9.1

我知道resource.setrlimit(resource.RLIMIT_STACK, (resource.RLIM_INFINITY, resource.RLIM_INFINITY)),但它需要超级用户权限。我相信这不是必需的,因为只剩下一个堆栈用于两个函数调用是不正常的。

CFFI 或 exec() 会限制被调用者的堆栈大小吗?

从 DSL 调用的函数:

ffi_builder.cdef('''
//...
int FooNode_SetProperty(struct FooNode *pThis, const char *szPropertyName, int nValue);
''')

def set_channel(node, channel):
    node.SetProperty(b'channel', channel)

exec调用代码:

    self._globals = {
        '__builtins__': __builtins__,  
        # https://docs.python.org/3/library/functions.html#eval "If the globals dictionary is present and lacks
        # ‘__builtins__’, the current globals are copied into globals before expression is parsed."

        'run': {
            'duration': 60 * MICROS,
            'success': None
        },

        'set_channel': set_channel,
        'turn_off': turn_off,
        'turn_on': turn_on,
        'finish': finish,
        # 6 more functions here
    }

    exec(event_text, self._globals, {})

苹果报告片:

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
[35633] stack overflow

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib          0x00000001003bfdd6 __pthread_kill + 10
1   libsystem_pthread.dylib         0x00007fffe03dc787 pthread_kill + 90
2   libsystem_c.dylib               0x00007fffe02564bb __abort + 140
3   libsystem_c.dylib               0x00007fffe0256d7e __stack_chk_fail + 205
4   libmush_real.dylib          0x0000000104c4d714 send_counters_report_request + 532

(此线程真的到此结束,Apple 报告中没有其他内容)

4

1 回答 1

0

设法与调试器连接。

当前调用后没有任何内容的堆栈是堆栈被覆盖的标志,通常通过指向堆栈变量的指针。

于 2017-02-17T19:20:46.650 回答