I have a python object which accesses and downloads some text via HTTP. I'm running this python object, and processing that text, using a c++ code. I.e.

/* CPPCode.cxx */
int main(...) {
    for(int i = 0; i < numURLs; i++) {
        // Python method returns a string
        PyObject *pyValue = PyObject_CallMethod(pyObjectInstance, pyFunctionName, par1, par2....);
        string valString = PyString_AsString(pHistValue);   
        // ... process string ... 
    }
} 

/* PyObject.py */
class PyClass:
    def PyFunction(...):
        try: urlSock = urllib.urlopen(urlName)
        except ...

        while(...) :
             dataStr = urlSock.readline()
             # do some basic string processing....

        return dataStr

Most URLs work fine---the c++ code gets the proper string, I can process it, all is happy and well. A few particular URLs which look (basically) the same as the others on a browser, lead to a segfault in the PyString_AsString() method:

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x00000000000000b2
0x000000010007716d in PyString_AsString ()

If I print out the string that should be returned by the python method ('dataStr' in the pseudo-code above), it looks fine! I have no idea what could be causing this problem---any tips on how to procede would be appreciated! Thanks

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

SOLUTION:

The template code I was using had a call to

Py_DECREF(pyValue)

before I called

PyString_AsString(pyValue)

Why it was being deallocated for certain particular function calls, I have no idea. As 'Gecco' says in the comments below,

'PyString_AsString documentation says: "The pointer refers to the internal buffer of string, not a copy. The data must not be modified in any way, unless the string was just created using PyString_FromStringAndSize(NULL, size). It must not be deallocated." '

link|improve this question

50% accept rate
And what is this mystery URL? – Lightness Races in Orbit Jan 5 at 21:19
unexplicable segfault: This is quite often due to some memory-allocation errors. Check your entire code to ensure you correctly allocate and free used memory... – gecco Jan 5 at 21:26
1  
PyString_AsString documentation says: "The pointer refers to the internal buffer of string, not a copy. The data must not be modified in any way, unless the string was just created using PyString_FromStringAndSize(NULL, size). It must not be deallocated." Please ensure you do not deallocate this buffer. – gecco Jan 5 at 21:32
@gecco That was my first thought, but I'm not using any dynamically allocated memory; and because the segfault is happening for the same URL every time, regardless of how many I examine before or after, it seems there might be another issue. I'm not manually allocating or deallocating any memory. – zhermes Jan 5 at 21:32
show 3 more comments
feedback

3 Answers

up vote 1 down vote accepted

PyString_AsString documentation says: "The pointer refers to the internal buffer of string, not a copy. The data must not be modified in any way, unless the string was just created using PyString_FromStringAndSize(NULL, size). It must not be deallocated."

Please ensure you do not deallocate this buffer

link|improve this answer
feedback

If you compile your C code with the -g debug flag (in GCC at least) then you can run your python code using the gnu debugger gdb:

$ gdb /path/to/python/compiled/against 
... blah ...
(gdb) run PyObject.py

and you should catch your segfault.

link|improve this answer
Here is my full backtrace from GDB code Program received signal EXC_BAD_ACCESS, Could not access memory. Reason: 13 at address: 0x0000000000000000 0x00007fff80237c00 in strlen () (gdb) bt #0 0x00007fff80237c00 in strlen () #1 0x0000000100088e1e in PyString_FromFormatV () #2 0x00000001000d3fdc in PyErr_Format () #3 0x000000010008510a in PyString_AsStringAndSize () #4 0x0000000100085183 in PyString_AsString () #5 0x000000010000f6f3 in callPythonWHistoryMethod () at stl_vector.h:137 #6 0x0000000100010555 in main () at stl_vector.h:137 – zhermes Jan 5 at 21:36
So you can now prod the code to see what was breaking everything - for example, what is "pHistValue" : try "(gdb) print pHistValue" and see if it is what you expected – danodonovan Jan 5 at 21:53
feedback

My guess is the Py_DECREF is somehow getting a NULL value.

link|improve this answer
My understanding is that once the references to an object are zero, it is deallocated (like in cocoa, e.g.). – zhermes Jan 6 at 21:46
Yes, when it reaches zero it will deallocate. Good catch, I will fix it. – Demolishun Jan 10 at 7:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.