I'm trying to create C code that creates an Python xmlrpc client and calls methods on the xmlrpc server (I'm thinking of using this as IPC for a hook DLL).

Here's the code ... I'm not going to layer in reference counting until it works.

#include <Python.h>
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>

static PyObject *xmlrpc_server_proxy = NULL;
static PyObject *set_server_proxy(void);
static void say_hi(void);

int main()
{
    xmlrpc_server_proxy = set_server_proxy();
    say_hi();
    return 0;
}

static PyObject *
set_server_proxy()
{
        PyObject *xmlrpc_client_mod, *xmlrpc_server_proxy_class, *location, *args;
        PyObject *result;
        Py_Initialize();
        xmlrpc_client_mod = PyImport_ImportModule("xmlrpc.client");
        xmlrpc_server_proxy_class = PyObject_GetAttrString(xmlrpc_client_mod, "ServerProxy");
        location = PyUnicode_FromString("http://127.0.0.1:8000/");
        args = Py_BuildValue("(O)", location);
        result = PyObject_CallObject(xmlrpc_server_proxy_class, args);
        Py_Finalize();
        return result;
}

static void say_hi()
{
    PyObject_CallMethod(xmlrpc_server_proxy, "say_hi", "()");
}

I've confirmed that my Python xmlrpc server works fine when called from another Python server proxy. When I try to run the above executable, it crashes on the PyObject_CallMethod(). Why?

link|improve this question

My initial instinct is that PyObject_CallObject() or one of the Py* functions in set_server_proxy() is calling is returning NULL. You should check the return of each of the Py* functions to see what is returning NULL as it might give an insight into calling a function incorrectly. – Suroot Mar 30 '11 at 22:57
feedback

1 Answer

up vote 1 down vote accepted

Near the end of set_server_proxy() you are calling Py_Finalize() which destroys the interpreter, and subsequently you are calling say_hi() which assumes the interpreter still exists. When the Python interprer code attempts to raise an error, the PyErr_Occurred() function gets a pointer to the current thread state, which is NULL; it dereferences it and this generates the segfault.

Move your interpreter initialization calls inside the main() function:

int main()
{
    Py_Initialize();
    xmlrpc_server_proxy = set_server_proxy();
    say_hi();
    Py_Finalize();
    return 0;
}

Secondarily, if you are trying to use Python's standard xmlrpclib.ServerProxy you may need to change your import to:

xmlrpc_client_mod = PyImport_ImportModule("xmlrpclib");
link|improve this answer
Is there another way to use the interpreter to create a Python object that sticks around after the interpreter is gone? Given that this will be implemented in a hook DLL, I'm not sure I can move Py_Initialize out of the called function (unless it can go in Dllmain, which I'm not sure it can). – MikeRand Mar 30 '11 at 23:29
I don't think that's possible in the vast majority of cases (maybe in some edge cases). PyObject_CallMethod internally makes calls to other functions which depend directly on the interpreter state. Perhaps you can link the interpreter's lifespan to the DllMain DLL_PROCESS_ATTACH / DLL_PROCESS_DETACH events? – samplebias Mar 30 '11 at 23:39
Moving both Py_Initialize and set_server_proxy() into DLL_PROCESS_ATTACH and Py_Finalize into DLL_PROCESS_DETACH seemed to work ... now using xmlrpc to monitor Vista Windows API calls without having to deal with any UAC. Thanks for the help. – MikeRand Mar 31 '11 at 1:43
Great! Glad it's working for you! – samplebias Mar 31 '11 at 1:45
feedback

Your Answer

 
or
required, but never shown

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