123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- /**
- * $Id$
- *
- * Copyright (C) 2010 Daniel-Constantin Mierla (asipto.com)
- *
- * This file is part of Kamailio, a free SIP server.
- *
- * Kamailio is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version
- *
- * Kamailio is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
- #include <stdio.h>
- #include <unistd.h>
- #include <stdlib.h>
- #include "../../sr_module.h"
- #include "../../dprint.h"
- #include "../../ut.h"
- #include "../../mod_fix.h"
- #include "../../rpc.h"
- #include "../../rpc_lookup.h"
- #include "app_lua_api.h"
- MODULE_VERSION
- /** parameters */
- /* List of allowed chars for a prefix*/
- static int mod_init(void);
- static void mod_destroy(void);
- static int child_init(int rank);
- static int app_lua_init_rpc(void);
- static int w_app_lua_dostring(struct sip_msg *msg, char *script, char *extra);
- static int w_app_lua_dofile(struct sip_msg *msg, char *script, char *extra);
- static int w_app_lua_runstring(struct sip_msg *msg, char *script, char *extra);
- static int w_app_lua_run(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3);
- static int w_app_lua_run0(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3);
- static int w_app_lua_run1(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3);
- static int w_app_lua_run2(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3);
- static int w_app_lua_run3(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3);
- static int fixup_lua_run(void** param, int param_no);
- int app_lua_load_param(modparam_t type, void *val);
- int app_lua_register_param(modparam_t type, void *val);
- int app_lua_reload_param(modparam_t type, void *val);
- static param_export_t params[]={
- {"load", PARAM_STRING|USE_FUNC_PARAM, (void*)app_lua_load_param},
- {"register", PARAM_STRING|USE_FUNC_PARAM, (void*)app_lua_register_param},
- {"reload", INT_PARAM|USE_FUNC_PARAM, (void*)app_lua_reload_param},
- {0, 0, 0}
- };
- static cmd_export_t cmds[]={
- {"lua_dostring", (cmd_function)w_app_lua_dostring, 1, fixup_spve_null,
- 0, ANY_ROUTE},
- {"lua_dofile", (cmd_function)w_app_lua_dofile, 1, fixup_spve_null,
- 0, ANY_ROUTE},
- {"lua_runstring", (cmd_function)w_app_lua_runstring, 1, fixup_spve_null,
- 0, ANY_ROUTE},
- {"lua_run", (cmd_function)w_app_lua_run0, 1, fixup_lua_run,
- 0, ANY_ROUTE},
- {"lua_run", (cmd_function)w_app_lua_run1, 2, fixup_lua_run,
- 0, ANY_ROUTE},
- {"lua_run", (cmd_function)w_app_lua_run2, 3, fixup_lua_run,
- 0, ANY_ROUTE},
- {"lua_run", (cmd_function)w_app_lua_run3, 4, fixup_lua_run,
- 0, ANY_ROUTE},
- {0, 0, 0, 0, 0, 0}
- };
- struct module_exports exports = {
- "app_lua",
- DEFAULT_DLFLAGS, /* dlopen flags */
- cmds,
- params,
- 0,
- 0, /* exported MI functions */
- 0, /* exported pseudo-variables */
- 0, /* extra processes */
- mod_init, /* module initialization function */
- 0, /* response function */
- mod_destroy, /* destroy function */
- child_init /* per child init function */
- };
- int mod_register(char *path, int *dlflags, void *p1, void *p2)
- {
- *dlflags = RTLD_NOW | RTLD_GLOBAL;
- return 0;
- }
- /**
- * init module function
- */
- static int mod_init(void)
- {
- if(lua_sr_init_mod()<0)
- return -1;
- if(app_lua_init_rpc()<0)
- {
- LM_ERR("failed to register RPC commands\n");
- return -1;
- }
- return 0;
- }
- /* each child get a new connection to the database */
- static int child_init(int rank)
- {
- if(rank==PROC_MAIN || rank==PROC_TCP_MAIN)
- return 0; /* do nothing for the main process */
- if (rank==PROC_INIT)
- {
- /* do a probe before forking */
- if(lua_sr_init_probe()!=0)
- return -1;
- return 0;
- }
- return lua_sr_init_child();
- }
- static void mod_destroy(void)
- {
- lua_sr_destroy();
- }
- static char _lua_buf_stack[4][512];
- static int w_app_lua_dostring(struct sip_msg *msg, char *script, char *extra)
- {
- str s;
- if(!lua_sr_initialized())
- {
- LM_ERR("Lua env not intitialized");
- return -1;
- }
- if(fixup_get_svalue(msg, (gparam_p)script, &s)<0)
- {
- LM_ERR("cannot get the script\n");
- return -1;
- }
- if(s.len>=511)
- {
- LM_ERR("script too long %d\n", s.len);
- return -1;
- }
- memcpy(_lua_buf_stack[0], s.s, s.len);
- _lua_buf_stack[0][s.len] = '\0';
- return app_lua_dostring(msg, _lua_buf_stack[0]);
- }
- static int w_app_lua_dofile(struct sip_msg *msg, char *script, char *extra)
- {
- str s;
- if(!lua_sr_initialized())
- {
- LM_ERR("Lua env not intitialized");
- return -1;
- }
- if(fixup_get_svalue(msg, (gparam_p)script, &s)<0)
- {
- LM_ERR("cannot get the script\n");
- return -1;
- }
- if(s.len>=511)
- {
- LM_ERR("script too long %d\n", s.len);
- return -1;
- }
- memcpy(_lua_buf_stack[0], s.s, s.len);
- _lua_buf_stack[0][s.len] = '\0';
- return app_lua_dofile(msg, _lua_buf_stack[0]);
- }
- static int w_app_lua_runstring(struct sip_msg *msg, char *script, char *extra)
- {
- str s;
- if(!lua_sr_initialized())
- {
- LM_ERR("Lua env not intitialized");
- return -1;
- }
- if(fixup_get_svalue(msg, (gparam_p)script, &s)<0)
- {
- LM_ERR("cannot get the script\n");
- return -1;
- }
- if(s.len>=511)
- {
- LM_ERR("script too long %d\n", s.len);
- return -1;
- }
- memcpy(_lua_buf_stack[0], s.s, s.len);
- _lua_buf_stack[0][s.len] = '\0';
- return app_lua_runstring(msg, _lua_buf_stack[0]);
- }
- static int w_app_lua_run(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3)
- {
- str s;
- if(!lua_sr_initialized())
- {
- LM_ERR("Lua env not intitialized");
- return -1;
- }
- if(fixup_get_svalue(msg, (gparam_p)func, &s)<0)
- {
- LM_ERR("cannot get the function\n");
- return -1;
- }
- if(s.len>=511)
- {
- LM_ERR("function too long %d\n", s.len);
- return -1;
- }
- memcpy(_lua_buf_stack[0], s.s, s.len);
- _lua_buf_stack[0][s.len] = '\0';
- if(p1!=NULL)
- {
- if(fixup_get_svalue(msg, (gparam_p)p1, &s)<0)
- {
- LM_ERR("cannot get p1\n");
- return -1;
- }
- if(s.len>=511)
- {
- LM_ERR("p1 too long %d\n", s.len);
- return -1;
- }
- memcpy(_lua_buf_stack[1], s.s, s.len);
- _lua_buf_stack[1][s.len] = '\0';
- if(p2!=NULL)
- {
- if(fixup_get_svalue(msg, (gparam_p)p2, &s)<0)
- {
- LM_ERR("cannot get p2\n");
- return -1;
- }
- if(s.len>=511)
- {
- LM_ERR("p2 too long %d\n", s.len);
- return -1;
- }
- memcpy(_lua_buf_stack[2], s.s, s.len);
- _lua_buf_stack[2][s.len] = '\0';
- if(p3!=NULL)
- {
- if(fixup_get_svalue(msg, (gparam_p)p3, &s)<0)
- {
- LM_ERR("cannot get p3\n");
- return -1;
- }
- if(s.len>=511)
- {
- LM_ERR("p3 too long %d\n", s.len);
- return -1;
- }
- memcpy(_lua_buf_stack[3], s.s, s.len);
- _lua_buf_stack[3][s.len] = '\0';
- }
- } else {
- p3 = NULL;
- }
- } else {
- p2 = NULL;
- p3 = NULL;
- }
- return app_lua_run(msg, _lua_buf_stack[0],
- (p1!=NULL)?_lua_buf_stack[1]:NULL,
- (p2!=NULL)?_lua_buf_stack[2]:NULL,
- (p3!=NULL)?_lua_buf_stack[3]:NULL);
- }
- static int w_app_lua_run0(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3)
- {
- return w_app_lua_run(msg, func, NULL, NULL, NULL);
- }
- static int w_app_lua_run1(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3)
- {
- return w_app_lua_run(msg, func, p1, NULL, NULL);
- }
- static int w_app_lua_run2(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3)
- {
- return w_app_lua_run(msg, func, p1, p2, NULL);
- }
- static int w_app_lua_run3(struct sip_msg *msg, char *func, char *p1, char *p2,
- char *p3)
- {
- return w_app_lua_run(msg, func, p1, p2, p3);
- }
- int app_lua_load_param(modparam_t type, void *val)
- {
- if(val==NULL)
- return -1;
- return sr_lua_load_script((char*)val);
- }
- int app_lua_register_param(modparam_t type, void *val)
- {
- if(val==NULL)
- return -1;
- return sr_lua_register_module((char*)val);
- }
- int app_lua_reload_param(modparam_t type, void *val)
- {
- return sr_lua_reload_module((unsigned int)(long) (int *)val);
- }
- static int fixup_lua_run(void** param, int param_no)
- {
- return fixup_spve_null(param, 1);
- }
- /*** RPC implementation ***/
- static const char* app_lua_rpc_reload_doc[2] = {
- "Reload lua script",
- 0
- };
- static const char* app_lua_rpc_list_doc[2] = {
- "list lua scripts",
- 0
- };
- static void app_lua_rpc_reload(rpc_t* rpc, void* ctx)
- {
- int pos = -1;
- rpc->scan(ctx, "*d", &pos);
- LM_DBG("selected index: %d\n", pos);
- if(lua_sr_reload_script(pos)<0)
- rpc->fault(ctx, 500, "Reload Failed");
- return;
- }
- static void app_lua_rpc_list(rpc_t* rpc, void* ctx)
- {
- int i;
- sr_lua_load_t *list = NULL, *li;
- if(lua_sr_list_script(&list)<0)
- {
- LM_ERR("Can't get loaded scripts\n");
- return;
- }
- if(list)
- {
- li = list;
- i = 0;
- while(li)
- {
- rpc->rpl_printf(ctx, "%d: [%s]", i, li->script);
- li = li->next;
- i += 1;
- }
- }
- else {
- rpc->rpl_printf(ctx,"No scripts loaded");
- }
- return;
- }
- rpc_export_t app_lua_rpc_cmds[] = {
- {"app_lua.reload", app_lua_rpc_reload,
- app_lua_rpc_reload_doc, 0},
- {"app_lua.list", app_lua_rpc_list,
- app_lua_rpc_list_doc, 0},
- {0, 0, 0, 0}
- };
- /**
- * register RPC commands
- */
- static int app_lua_init_rpc(void)
- {
- if (rpc_register_array(app_lua_rpc_cmds)!=0)
- {
- LM_ERR("failed to register RPC commands\n");
- return -1;
- }
- return 0;
- }
|