正确的代码示例:
#include "Python.h"
#include <string>
extern const int someConstant;
void some_function()
{
const char *begin = NULL;
const char *end = NULL;
std::string s(begin, end);
const int v = someConstant;
}
static PyMethodDef _G_methods[] =
{
{NULL, NULL, 0, NULL} /* Sentinel */
};
PyMODINIT_FUNC initsf()
{
PyObject *module;
if (!(module = Py_InitModule("sf", _G_methods)))
{
return;
}
PyObject *pyerror = PyErr_NewException("fs.error", NULL, NULL);
Py_INCREF(pyerror);
PyModule_AddObject(module, "error", pyerror);
}
这是扩展模块草案。尽可能简单。它有一个从原始docpage复制的空方法表和初始化函数。它包含 2(两个)故意错误:
变量 someConstant 已声明但从未定义;
函数 some_function 已定义,但从未调用;
如果用 dlopen/dlsym 编译打开:
sf.so: undefined symbol: someConstant
按要求。但如果由 Python 解释器加载:
>>> from sf import *
Segmentation fault (core dumped)
最奇怪的是从核心文件中转储的python的回溯:
#0 0x00000bd6 in ?? ()
#1 0xb775c057 in char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) () from /usr/local/lib/python2.7/dist-packages/sf.so
#2 0xb6f9abb6 in std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&) () from /usr/lib/i386-linux-gnu/libstdc++.so.6
#3 0xb6c3fe30 in pkgInitConfig(Configuration&) () from /usr/lib/i386-linux-gnu/libapt-pkg.so.4.12
#4 0xb6cf959e in ?? () from /usr/lib/python2.7/dist-packages/apt_pkg.so
#5 0x081949c1 in PyEval_EvalFrameEx ()
#6 0x0819af70 in PyEval_EvalCodeEx ()
#7 0x0819bb03 in PyImport_ExecCodeModuleEx ()
#8 0x0814bd40 in ?? ()
#9 0x080a38c2 in ?? ()
#10 0x0814c6d4 in ?? ()
#11 0x081031ae in ?? ()
...
看来,Python 的加载器调用 std::string 构造函数:-)。
所以,堆栈损坏。它发生在加载无效模块或在处理错误后卸载它时。如果示例代码几乎没有改变,它永远不会发生。此行为已在 Python 2.7.3/Linux Ubuntu 10/gcc 4.6.3 上观察到,并且绝对未在 Python 2.7.1/FreeBSD 8.1/gcc 4.2.1 上显示。
问题:
- 是 Python 的错误还是我的示例代码有错误?