X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/1ad8c8dfe8926dd6a3db4e9b73b065662cb7b8a6..0c52bc1a8952055cebfd190895c924ed2beefab8:/src/mod-python.c diff --git a/src/mod-python.c b/src/mod-python.c index 34008be..94365dc 100644 --- a/src/mod-python.c +++ b/src/mod-python.c @@ -47,6 +47,18 @@ * - Some kind of system for getting needed binds bound automagicaly to make it easier * to run peoples' scripts and mod-python in general. * - An interface to reading/writing data to x3.db. Maybe generic, or attached to account or channel reg records? + + * basic startup for now: + * configure --enable-modules=python + * /msg o3 bind o3 py\ run *python.run + * /msg o3 bind o3 py\ reload *python.reload + * /msg o3 bind o3 py\ command *python.command + + * example script bindings (for now) + * /msg o3 bind x3 hangman *modcmd.joiner + * /msg o3 bind x3 hangman\ start *python.command hangman start + * /msg o3 bind x3 hangman\ end *python.command hangman end + * /msg o3 bind x3 hangman\ guess *python.command hangman guess */ static const struct message_entry msgtab[] = { @@ -531,33 +543,13 @@ pyobj_from_exemptlist(struct exemptList* exmp) { return retval; } -PyDoc_STRVAR(emb_get_channel__doc__, - "get_channel(channel) -> dict with channel information\n\n" - "Updates made to the returned dictionary does not reflect in the channel\n" - "information."); - static PyObject* -emb_get_channel(UNUSED_ARG(PyObject *self), PyObject *args) -{ - /* Returns a python dict object with all sorts of info about a channel. - usage: _svc.get_channel() - */ - char *name; - struct chanNode *channel; +pyobj_from_channode(struct chanNode* channel) { PyObject *pChannelMembers = NULL; PyObject *pChannelBans = NULL; PyObject *pChannelExempts = NULL; PyObject *retval = NULL; - - if(!PyArg_ParseTuple(args, "s", &name)) - return NULL; - - if(!(channel = GetChannel(name))) { - PyErr_SetString(PyExc_Exception, "unknown channel"); - return NULL; - } - /* build tuple of nicks in channel */ pChannelMembers = pyobj_from_modelist(&channel->members); if (pChannelMembers == NULL) @@ -601,6 +593,31 @@ cleanup: return NULL; } +PyDoc_STRVAR(emb_get_channel__doc__, + "get_channel(channel) -> dict with channel information\n\n" + "Updates made to the returned dictionary does not reflect in the channel\n" + "information."); + +static PyObject* +emb_get_channel(UNUSED_ARG(PyObject *self), PyObject *args) +{ + /* Returns a python dict object with all sorts of info about a channel. + usage: _svc.get_channel() + */ + char *name; + struct chanNode *channel; + + if(!PyArg_ParseTuple(args, "s", &name)) + return NULL; + + if(!(channel = GetChannel(name))) { + PyErr_SetString(PyExc_Exception, "unknown channel"); + return NULL; + } + + return pyobj_from_channode(channel); +} + PyDoc_STRVAR(emb_get_account__doc__, "get_account(account) -> dict with account information\n\n" "Changes made to the returned dictionary will not be reflected in the\n" @@ -1189,6 +1206,60 @@ emb_service_register(UNUSED_ARG(PyObject* self_), PyObject* args) { return pyobj_from_service(service_register(user)); } +size_t logs_size = 0; +static struct log_type **logs_list = NULL; + +PyDoc_STRVAR(emb_log_register_type__doc__, + "registers a log source to write event data to."); +static PyObject* emb_log_register_type(UNUSED_ARG(PyObject *self), PyObject* args) { + const char* logName; + const char* defaultLog; + struct log_type* log; + struct log_type** newlogs; + + if (!PyArg_ParseTuple(args, "ss", &logName, &defaultLog)) + return NULL; + + newlogs = realloc(logs_list, (logs_size+1)*sizeof(struct log_type*)); + if (newlogs == NULL) { + PyErr_SetString(PyExc_Exception, "unable to allocate memory for log structures. aborting."); + return NULL; + } + logs_list = newlogs; + + log = log_register_type(logName, defaultLog); + if (log == NULL) { + PyErr_SetString(PyExc_Exception, "unable to register log"); + return NULL; + } + + logs_list[logs_size++] = log; + + return Py_BuildValue("O", PyCObject_FromVoidPtr(log, NULL)); +} + +PyDoc_STRVAR(emb_module_register__doc__, "registers a module"); +PyObject* emb_module_register(UNUSED_ARG(PyObject* self), PyObject* args) { + PyObject* pylog; + char const *name, *helpfile; + struct log_type* log; + struct module* mod; + + if (!PyArg_ParseTuple(args, "sOs", &name, &pylog, &helpfile)) + return NULL; + + log = PyCObject_AsVoidPtr(pylog); + + mod = module_register(name, log, helpfile, NULL); + + if (mod == NULL) { + PyErr_SetString(PyExc_Exception, "unable to register module"); + return NULL; + } + + return Py_BuildValue("O", PyCObject_FromVoidPtr(mod, NULL)); +} + static PyMethodDef EmbMethods[] = { /* Communication methods */ {"dump", emb_dump, METH_VARARGS, emb_dump__doc__}, @@ -1219,6 +1290,12 @@ static PyMethodDef EmbMethods[] = { {"timeq_add", emb_timeq_add, METH_VARARGS, emb_timeq_add__doc__}, {"timeq_del", emb_timeq_del, METH_VARARGS, emb_timeq_del__doc__}, + /* module registration methods */ + {"log_register_type", emb_log_register_type, METH_VARARGS, + emb_log_register_type__doc__}, + {"module_register", emb_module_register, METH_VARARGS, + emb_module_register__doc__}, + /* Information gathering methods */ {"get_user", emb_get_user, METH_VARARGS, emb_get_user__doc__}, {"get_users", emb_get_users, METH_VARARGS, emb_get_users__doc__}, @@ -1479,7 +1556,7 @@ PyObject *python_new_handler_object() { it first? We will start by doing it every time. */ static int -python_handle_join(struct modeNode *mNode) +python_handle_join(struct modeNode *mNode, UNUSED_ARG(void *extra)) { /* callback for handle_join events. */ @@ -1499,7 +1576,7 @@ python_handle_join(struct modeNode *mNode) } static int -python_handle_server_link(struct server *server) +python_handle_server_link(struct server *server, UNUSED_ARG(void *extra)) { PyObject* srv = NULL; PyObject* funcname = NULL; @@ -1550,32 +1627,229 @@ cleanup: } static int -python_handle_new_user(struct userNode *user) +python_handle_new_user(struct userNode *user, UNUSED_ARG(void *extra)) { - log_module(PY_LOG, LOG_INFO, "Python module handle_new_user"); + PyObject* name = NULL; + PyObject* usr = NULL; + PyObject* retval = NULL; + int i = 0; + const char* err = NULL; + + if (handler_object == NULL) { + err = "No Python handler is allocated. Ignoring python_handle_server_link."; + goto cleanup; + } + if(!user) { log_module(PY_LOG, LOG_WARNING, "Python code got new_user without the user"); return 0; } - else { - char *args[] = {user->nick, user->ident, user->hostname, user->info}; - return python_call_handler("new_user", args, 4, "", "", ""); + + if ((usr = pyobj_from_usernode(user)) == NULL) { + err = "unable to allocate python user information"; + goto cleanup; } + + name = PyString_FromString("new_user"); + if (name == NULL) { + err = "unable to allocate memory for handler function name"; + goto cleanup; + } + + if ((retval = PyObject_CallMethodObjArgs(handler_object, name, usr, NULL)) == NULL) { + err = "error calling new_user handler"; + goto cleanup; + } + +cleanup: + Py_XDECREF(usr); + Py_XDECREF(name); + + if (retval != NULL && PyInt_Check(retval)) + i = (int)PyInt_AsLong(retval); + + Py_XDECREF(retval); + + if (err != NULL) + log_module(PY_LOG, LOG_WARNING, "%s", err); + + return i; } static void -python_handle_nick_change(struct userNode *user, const char *old_nick) +python_handle_nick_change(struct userNode *user, const char *old_nick, UNUSED_ARG(void *extra)) { - log_module(PY_LOG, LOG_INFO, "Python module handle_nick_change"); - if(!user) { - log_module(PY_LOG, LOG_WARNING, "Python code got nick_change without the user!"); + PyObject* usr = NULL; + PyObject* name = NULL; + PyObject* oldnick = NULL; + PyObject* retval = NULL; + char const* err = NULL; + + if (handler_object == NULL) { + err = "No Python handler is allocated. Ignoring python_handle_server_link."; + goto cleanup; } - else { - char *args[] = {user->nick, (char *)old_nick}; - python_call_handler("nick_change", args, 2, "", "", ""); + + if (user == NULL) { + err = "Python code got nick_change without the user!"; + goto cleanup; + } + + if ((usr = pyobj_from_usernode(user)) == NULL) { + err = "unable to allocate Python usernode"; + goto cleanup; + } + + name = PyString_FromString("nick_change"); + if (name == NULL) { + err = "unable to allocate memory for handler function name"; + goto cleanup; + } + + oldnick = PyString_FromString(old_nick); + + retval = PyObject_CallMethodObjArgs(handler_object, name, usr, oldnick, NULL); + if (retval == NULL) { + err = "error calling nick_change handler"; + goto cleanup; + } + +cleanup: + Py_XDECREF(usr); + Py_XDECREF(name); + Py_XDECREF(oldnick); + Py_XDECREF(retval); + + if (err != NULL) + log_module(PY_LOG, LOG_WARNING, "%s", err); +} + +void python_handle_del_user(struct userNode *user, struct userNode *killer, const char *why, UNUSED_ARG(void *extra)) { + PyObject *usr = NULL, *killr = NULL, *name = NULL; + PyObject *reason = NULL, *retval = NULL; + char const* err = NULL; + + if (handler_object == NULL) { + err = "No Python handler is allocated. Ignoring python_handle_server_link."; + goto cleanup; + } + + if (user == NULL) { + Py_INCREF(Py_None); + usr = Py_None; + } else { + usr = pyobj_from_usernode(user); + if (usr == NULL) { + err = "unable to allocate usernode for user"; + goto cleanup; + } + } + + if (killer == NULL) { + Py_INCREF(Py_None); + killr = Py_None; + } else { + killr = pyobj_from_usernode(killer); + if (killr == NULL) { + err = "unable to allocate usernode for killer"; + goto cleanup; + } + } + + if (why == NULL) { + Py_INCREF(Py_None); + reason = Py_None; + } else { + reason = PyString_FromString(why); + if (reason == NULL) { + err = "unable to allocate memory for reason"; + goto cleanup; + } } + + name = PyString_FromString("del_user"); + if (name == NULL) { + err = "unable to allocate memory for handler function name"; + goto cleanup; + } + + retval = PyObject_CallMethodObjArgs(handler_object, name, usr, killr, reason, NULL); + if (retval == NULL) { + err = "error calling del_user handler"; + goto cleanup; + } + +cleanup: + Py_XDECREF(usr); + Py_XDECREF(killr); + Py_XDECREF(name); + Py_XDECREF(reason); + Py_XDECREF(retval); + + if (err != NULL) + log_module(PY_LOG, LOG_WARNING, "%s", err); } +int python_handle_topic(struct userNode *who, struct chanNode *chan, const char *old_topic, UNUSED_ARG(void *extra)) { + PyObject* pwho = NULL, *pchan = NULL, *oldtopic = NULL; + PyObject* name = NULL, *retval = NULL; + const char* err = NULL; + int i = 0; + + if (who == NULL) { + Py_INCREF(Py_None); + pwho = Py_None; + } else { + if ((pwho = pyobj_from_usernode(who)) == NULL) { + err = "unable to allocate usernode"; + goto cleanup; + } + } + + if ((pchan = pyobj_from_channode(chan)) == NULL) { + err = "unable to allocate channode"; + goto cleanup; + } + + if (old_topic == NULL) { + Py_INCREF(Py_None); + oldtopic = Py_None; + } else { + oldtopic = PyString_FromString(old_topic); + if (oldtopic == NULL) { + err = "unable to allocate memory for old topic string"; + goto cleanup; + } + } + + name = PyString_FromString("topic"); + if (name == NULL) { + err = "unable to allocate memory for topic handler function name"; + goto cleanup; + } + + retval = PyObject_CallMethodObjArgs(handler_object, name, pwho, pchan, oldtopic, NULL); + if (retval == NULL) { + err = "error calling topic handler"; + goto cleanup; + } + +cleanup: + Py_XDECREF(pwho); + Py_XDECREF(pchan); + Py_XDECREF(oldtopic); + Py_XDECREF(name); + + if (retval != NULL && PyInt_Check(retval)) + i = (int)PyInt_AsLong(retval); + + Py_XDECREF(retval); + + if (err != NULL) + log_module(PY_LOG, LOG_WARNING, "%s", err); + + return i; +} /* ----------------------------------------------------------------------------- */ @@ -1645,14 +1919,20 @@ python_finalize(void) { } static void -python_cleanup(void) { +python_cleanup(UNUSED_ARG(void *extra)) { /* Called on shutdown of the python module (or before reloading) */ log_module(PY_LOG, LOG_INFO, "python module cleanup"); + + Py_XDECREF(handler_object); + handler_object = NULL; + if (PyErr_Occurred()) PyErr_Clear(); Py_Finalize(); /* Shut down python enterpreter */ + + log_module(PY_LOG, LOG_INFO, "python module cleanup done"); } /* ---------------------------------------------------------------------------------- * @@ -1662,7 +1942,7 @@ static MODCMD_FUNC(cmd_reload) { /* reload the python system completely */ log_module(PY_LOG, LOG_INFO, "Shutting python down"); - python_cleanup(); + python_cleanup(NULL); log_module(PY_LOG, LOG_INFO, "Loading python stuff"); if(python_load()) { reply("PYMSG_RELOAD_SUCCESS"); @@ -1673,59 +1953,6 @@ static MODCMD_FUNC(cmd_reload) { return 1; } -static char* format_python_error(int space_nls) { - PyObject* extype = NULL, *exvalue = NULL, *extraceback = NULL; - PyObject* pextypestr = NULL, *pexvaluestr = NULL; - char* extypestr = NULL, *exvaluestr = NULL; - size_t retvallen = 0; - char* retval = NULL, *tmp; - - PyErr_Fetch(&extype, &exvalue, &extraceback); - if (!extype) - goto cleanup; - - pextypestr = PyObject_Str(extype); - if (!pextypestr) - goto cleanup; - extypestr = PyString_AsString(pextypestr); - if (!extypestr) - goto cleanup; - - pexvaluestr = PyObject_Str(exvalue); - if (pexvaluestr) - exvaluestr = PyString_AsString(pexvaluestr); - - retvallen = strlen(extypestr) + (exvaluestr ? strlen(exvaluestr) + 2 : 0) + 1; - retval = (char*)malloc(retvallen); - if (exvaluestr) - snprintf(retval, retvallen, "%s: %s", extypestr, exvaluestr); - else - strncpy(retval, extypestr, retvallen); - - if (space_nls) { - tmp = retval; - while (*tmp) { - if (*tmp == '\n') - *tmp = ' '; - ++tmp; - } - } - -cleanup: - if (PyErr_Occurred()) - PyErr_Clear(); /* ignore errors caused by formatting */ - Py_XDECREF(extype); - Py_XDECREF(exvalue); - Py_XDECREF(extraceback); - Py_XDECREF(pextypestr); - Py_XDECREF(pexvaluestr); - - if (retval) - return retval; - - return strdup("unknown exception"); -} - static MODCMD_FUNC(cmd_run) { /* this method allows running arbitrary python commands. * use with care. @@ -1805,10 +2032,10 @@ static void modpython_conf_read(void) { } str = database_get_data(conf_node, "scripts_dir", RECDB_QSTRING); - modpython_conf.scripts_dir = str ? str : "./"; + modpython_conf.scripts_dir = strdup(str ? str : "./"); str = database_get_data(conf_node, "main_module", RECDB_QSTRING); - modpython_conf.main_module = str ? str : "modpython"; + modpython_conf.main_module = strdup(str ? str : "modpython"); } int python_init(void) { @@ -1816,7 +2043,7 @@ int python_init(void) { do all our setup tasks and bindings */ - PY_LOG = log_register_type("Python", "file:python.log"); + //PY_LOG = log_register_type("Python", "file:python.log"); python_module = module_register("python", PY_LOG, "mod-python.help", NULL); conf_register_reload(modpython_conf_read); @@ -1833,14 +2060,14 @@ int python_init(void) { */ modcmd_register(python_module, "reload", cmd_reload, 1, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL); modcmd_register(python_module, "run", cmd_run, 2, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL); - modcmd_register(python_module, "command", cmd_command, 3, MODCMD_REQUIRE_STAFF, NULL); +// modcmd_register(python_module, "command", cmd_command, 3, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL); // Please help us by implementing any of the callbacks listed as TODO below. They already exist // in x3, they just need handle_ bridges implemented. (see python_handle_join for an example) - reg_server_link_func(python_handle_server_link); - reg_new_user_func(python_handle_new_user); - reg_nick_change_func(python_handle_nick_change); -//TODO: reg_del_user_func(python_handle_del_user); + reg_server_link_func(python_handle_server_link, NULL); + reg_new_user_func(python_handle_new_user, NULL); + reg_nick_change_func(python_handle_nick_change, NULL); + reg_del_user_func(python_handle_del_user, NULL); //TODO: reg_account_func(python_handle_account); /* stamping of account name to the ircd */ //TODO: reg_handle_rename_func(python_handle_handle_rename); /* handle used to ALSO mean account name */ //TODO: reg_failpw_func(python_handle_failpw); @@ -1849,11 +2076,11 @@ int python_init(void) { // //TODO: reg_oper_func(python_handle_oper); //TODO: reg_new_channel_func(python_handle_new_channel); - reg_join_func(python_handle_join); + reg_join_func(python_handle_join, NULL); //TODO: reg_del_channel_func(python_handle_del_channel); //TODO: reg_part_func(python_handle_part); //TODO: reg_kick_func(python_handle_kick); -//TODO: reg_topic_func(python_handle_topic); + reg_topic_func(python_handle_topic, NULL); //TODO: reg_channel_mode_func(python_handle_channel_mode); //TODO: reg_privmsg_func(python_handle_privmsg); @@ -1863,7 +2090,7 @@ int python_init(void) { //TODO: reg_allchanmsg_func //TODO: reg_user_mode_func - reg_exit_func(python_cleanup); + reg_exit_func(python_cleanup, NULL); python_load(); return 1;