6

正确的代码示例:

#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 上显示。

问题:

  1. 是 Python 的错误还是我的示例代码有错误?
4

1 回答 1

3

让我们再看看那个堆栈跟踪

#0 0x00000bd6 在?? ()
#1 0xb775c057 in char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) () 来自 /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&) () 来自 /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 在?? () 来自 /usr/lib/python2.7/dist-packages/apt_pkg.so

因此,一个函数libapt-pkg.so调用一个函数,libstdc++.so该函数调用模块中的一个函数。

你的函数永远不会被调用。但是,您的代码使用std::string并实例化了一些函数std::string,这些函数包含在您的*.so中,覆盖了完全不同的函数*.so,并且由于某种原因而崩溃,我不完全确定为什么。

我的直觉告诉我,您曾经gcc创建过您的*.so而不是g++. 您不会在链接时收到错误,因为链接共享对象不是这样工作的。您不会在加载时收到错误,因为巧合libstdc++的是已经加载了。

您是使用gcc还是g++链接?尝试使用g++.

于 2012-11-07T01:50:36.723 回答