123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875 |
- /*
- * Copyright (C) 2001-2003 FhG Fokus
- *
- * This file is part of ser, a free SIP server.
- *
- * ser 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
- *
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- * [email protected]
- *
- * ser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- /*
- * History:
- * --------
- * 2003-03-10 switched to new module_exports format: updated find_export,
- * find_export_param, find_module (andrei)
- * 2003-03-19 replaced all mallocs/frees w/ pkg_malloc/pkg_free (andrei)
- * 2003-03-19 Support for flags in find_export (janakj)
- * 2003-03-29 cleaning pkg_mallocs introduced (jiri)
- * 2003-04-24 module version checking introduced (jiri)
- * 2004-09-19 compile flags are checked too (andrei)
- * 2005-01-07 removed find_module-overloading problems, added
- * find_export_record
- * 2006-02-07 added fix_flag (andrei)
- * 2008-02-29 store all the reponse callbacks in their own array (andrei)
- * 2008-11-17 support dual module interface: ser & kamailio (andrei)
- * 2008-11-26 added fparam_free_contents() and fix_param_types (andrei)
- */
- /**
- * @file
- * @brief SIP-Router core :: modules loading, structures declarations and utilities
- * @ingroup core
- * Module: \ref core
- */
- #include "sr_module.h"
- #include "mod_fix.h"
- #include "dprint.h"
- #include "error.h"
- #include "mem/mem.h"
- #include "core_cmd.h"
- #include "ut.h"
- #include "re.h"
- #include "route_struct.h"
- #include "flags.h"
- #include "trim.h"
- #include "pvapi.h"
- #include "globals.h"
- #include "rpc_lookup.h"
- #include "sr_compat.h"
- #include <sys/stat.h>
- #include <regex.h>
- #include <dlfcn.h>
- #include <strings.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stddef.h> /* for offsetof */
- struct sr_module* modules=0;
- /*We need to define this symbol on Solaris becuase libcurl relies on libnspr which looks for this symbol.
- If it is not defined, dynamic module loading (dlsym) fails */
- #ifdef __OS_solaris
- int nspr_use_zone_allocator = 0;
- #endif
- #ifdef STATIC_EXEC
- extern struct module_exports exec_exports;
- #endif
- #ifdef STATIC_TM
- extern struct module_exports tm_exports;
- #endif
- #ifdef STATIC_MAXFWD
- extern struct module_exports maxfwd_exports;
- #endif
- #ifdef STATIC_AUTH
- extern struct module_exports auth_exports;
- #endif
- #ifdef STATIC_RR
- extern struct module_exports rr_exports;
- #endif
- #ifdef STATIC_USRLOC
- extern struct module_exports usrloc_exports;
- #endif
- #ifdef STATIC_SL
- extern struct module_exports sl_exports;
- #endif
- #ifndef offsetof
- #warning "use null pointer dereference for offsetof"
- #define offsetof(st, m) \
- ((size_t) ( (char *)&((st *)(0))->m - (char *)0 ))
- #endif
- int mod_response_cbk_no=0;
- response_function* mod_response_cbks=0;
- /**
- * if bit 1 set, SIP worker processes handle RPC commands as well
- * if bit 2 set, RPC worker processes handle SIP commands as well
- */
- static int child_sip_rpc_mode = 0;
- #define CHILD_SIP_RPC 1<<0
- #define CHILD_RPC_SIP 1<<1
- void set_child_sip_rpc_mode(void)
- {
- child_sip_rpc_mode |= CHILD_SIP_RPC;
- }
- void set_child_rpc_sip_mode(void)
- {
- child_sip_rpc_mode |= CHILD_RPC_SIP;
- }
- int is_rpc_worker(int rank)
- {
- if(rank==PROC_RPC
- || (rank>PROC_MAIN && (child_sip_rpc_mode&CHILD_SIP_RPC)!=0))
- return 1;
- return 0;
- }
- int is_sip_worker(int rank)
- {
- if(rank>PROC_MAIN
- || ((rank==PROC_RPC || rank==PROC_NOCHLDINIT)
- && (child_sip_rpc_mode&CHILD_RPC_SIP)!=0))
- return 1;
- return 0;
- }
- /* initializes statically built (compiled in) modules*/
- int register_builtin_modules()
- {
- int ret;
- ret=0;
- #ifdef STATIC_TM
- ret=register_module(MODULE_INTERFACE_VER, &tm_exports,"built-in", 0);
- if (ret<0) return ret;
- #endif
- #ifdef STATIC_EXEC
- ret=register_module(MODULE_INTERFACE_VER, &exec_exports,"built-in", 0);
- if (ret<0) return ret;
- #endif
- #ifdef STATIC_MAXFWD
- ret=register_module(MODULE_INTERFACE_VER, &maxfwd_exports, "built-in", 0);
- if (ret<0) return ret;
- #endif
- #ifdef STATIC_AUTH
- ret=register_module(MODULE_INTERFACE_VER, &auth_exports, "built-in", 0);
- if (ret<0) return ret;
- #endif
- #ifdef STATIC_RR
- ret=register_module(MODULE_INTERFACE_VER, &rr_exports, "built-in", 0);
- if (ret<0) return ret;
- #endif
- #ifdef STATIC_USRLOC
- ret=register_module(MODULE_INTERFACE_VER, &usrloc_exports, "built-in", 0);
- if (ret<0) return ret;
- #endif
- #ifdef STATIC_SL
- ret=register_module(MODULE_INTERFACE_VER, &sl_exports, "built-in", 0);
- if (ret<0) return ret;
- #endif
- return ret;
- }
- /** convert cmd exports to current format.
- * @param ver - module interface versions (0 == ser, 1 == kam).
- * @param src - null terminated array of cmd exports
- * (either ser_cmd_export_t or kam_cmd_export_t, depending
- * on ver).
- * @param mod - pointer to module exports structure.
- * @return - pkg_malloc'ed null terminated sr_cmd_export_v31_t array with
- * the converted cmd exports or 0 on error.
- */
- static sr31_cmd_export_t* sr_cmd_exports_convert(unsigned ver,
- void* src, void* mod)
- {
- int i, n;
- ser_cmd_export_t* ser_cmd;
- kam_cmd_export_t* kam_cmd;
- sr31_cmd_export_t* ret;
-
- ser_cmd = 0;
- kam_cmd = 0;
- ret = 0;
- n = 0;
- /* count the number of elements */
- if (ver == 0) {
- ser_cmd = src;
- for (; ser_cmd[n].name; n++);
- } else if (ver == 1) {
- kam_cmd = src;
- for (; kam_cmd[n].name; n++);
- } else goto error; /* unknown interface version */
- /* alloc & init new array */
- ret = pkg_malloc(sizeof(*ret)*(n+1));
- memset(ret, 0, sizeof(*ret)*(n+1));
- /* convert/copy */
- for (i=0; i < n; i++) {
- if (ver == 0) {
- ret[i].name = ser_cmd[i].name;
- ret[i].function = ser_cmd[i].function;
- ret[i].param_no = ser_cmd[i].param_no;
- ret[i].fixup = ser_cmd[i].fixup;
- ret[i].free_fixup = 0; /* no present in ser <= 2.1 */
- ret[i].flags = ser_cmd[i].flags;
- } else {
- ret[i].name = kam_cmd[i].name;
- ret[i].function = kam_cmd[i].function;
- ret[i].param_no = kam_cmd[i].param_no;
- ret[i].fixup = kam_cmd[i].fixup;
- ret[i].free_fixup = kam_cmd[i].free_fixup;
- ret[i].flags = kam_cmd[i].flags;
- }
- /* 3.1+ specific stuff */
- ret[i].fixup_flags = 0;
- ret[i].module_exports = mod;
- /* fill known free fixups */
- if (ret[i].fixup && ret[i].free_fixup == 0)
- ret[i].free_fixup = get_fixup_free(ret[i].fixup);
- }
- return ret;
- error:
- return 0;
- }
- /* registers a module, register_f= module register functions
- * returns <0 on error, 0 on success */
- static int register_module(unsigned ver, union module_exports_u* e,
- char* path, void* handle)
- {
- int ret, i;
- struct sr_module* mod;
- ret=-1;
- /* add module to the list */
- if ((mod=pkg_malloc(sizeof(struct sr_module)))==0){
- LOG(L_ERR, "load_module: memory allocation failure\n");
- ret=E_OUT_OF_MEM;
- goto error;
- }
- memset(mod,0, sizeof(struct sr_module));
- mod->path=path;
- mod->handle=handle;
- mod->orig_mod_interface_ver=ver;
- /* convert exports to sr31 format */
- if (ver == 0) {
- /* ser <= 3.0 */
- mod->exports.name = e->v0.name;
- if (e->v0.cmds) {
- mod->exports.cmds = sr_cmd_exports_convert(ver, e->v0.cmds, mod);
- if (mod->exports.cmds == 0) {
- ERR("failed to convert module command exports to 3.1 format"
- " for module \"%s\" (%s), interface version %d\n",
- mod->exports.name, mod->path, ver);
- ret = E_UNSPEC;
- goto error;
- }
- }
- mod->exports.params = e->v0.params;
- mod->exports.init_f = e->v0.init_f;
- mod->exports.response_f = e->v0.response_f;
- mod->exports.destroy_f = e->v0.destroy_f;
- mod->exports.onbreak_f = e->v0.onbreak_f;
- mod->exports.init_child_f = e->v0.init_child_f;
- mod->exports.dlflags = 0; /* not used in ser <= 3.0 */
- mod->exports.rpc_methods = e->v0.rpc_methods;
- /* the rest are 0, not used in ser */
- } else if (ver == 1) {
- /* kamailio <= 3.0 */
- mod->exports.name = e->v1.name;
- if (e->v1.cmds) {
- mod->exports.cmds = sr_cmd_exports_convert(ver, e->v1.cmds, mod);
- if (mod->exports.cmds == 0) {
- ERR("failed to convert module command exports to 3.1 format"
- " for module \"%s\" (%s), interface version %d\n",
- mod->exports.name, mod->path, ver);
- ret = E_UNSPEC;
- goto error;
- }
- }
- mod->exports.params = e->v1.params;
- mod->exports.init_f = e->v1.init_f;
- mod->exports.response_f = e->v1.response_f;
- mod->exports.destroy_f = e->v1.destroy_f;
- mod->exports.onbreak_f = 0; /* not used in k <= 3.0 */
- mod->exports.init_child_f = e->v1.init_child_f;
- mod->exports.dlflags = e->v1.dlflags;
- mod->exports.rpc_methods = 0; /* not used in k <= 3.0 */
- mod->exports.stats = e->v1.stats;
- mod->exports.mi_cmds = e->v1.mi_cmds;
- mod->exports.items = e->v1.items;
- mod->exports.procs = e->v1.procs;
- } else {
- ERR("unsupported module interface version %d\n", ver);
- ret = E_UNSPEC;
- goto error;
- }
- if (mod->exports.items) {
- /* register module pseudo-variables for kamailio modules */
- LM_DBG("register PV from: %s\n", mod->exports.name);
- if (register_pvars_mod(mod->exports.name, mod->exports.items)!=0) {
- LM_ERR("failed to register pseudo-variables for module %s (%s)\n",
- mod->exports.name, path);
- ret = E_UNSPEC;
- goto error;
- }
- }
- if (mod->exports.rpc_methods){
- /* register rpcs for ser modules */
- i=rpc_register_array(mod->exports.rpc_methods);
- if (i<0){
- ERR("failed to register RPCs for module %s (%s)\n",
- mod->exports.name, path);
- ret = E_UNSPEC;
- goto error;
- }else if (i>0){
- ERR("%d duplicate RPCs name detected while registering RPCs"
- " declared in module %s (%s)\n",
- i, mod->exports.name, path);
- ret = E_UNSPEC;
- goto error;
- }
- /* i==0 => success */
- }
- /* link module in the list */
- mod->next=modules;
- modules=mod;
- return 0;
- error:
- if (mod)
- pkg_free(mod);
- return ret;
- }
- #ifndef DLSYM_PREFIX
- /* define it to null */
- #define DLSYM_PREFIX
- #endif
- static inline int version_control(void *handle, char *path)
- {
- char **m_ver;
- char **m_flags;
- char* error;
- m_ver=(char **)dlsym(handle, DLSYM_PREFIX "module_version");
- if ((error=(char *)dlerror())!=0) {
- LOG(L_ERR, "ERROR: no version info in module <%s>: %s\n",
- path, error );
- return 0;
- }
- m_flags=(char **)dlsym(handle, DLSYM_PREFIX "module_flags");
- if ((error=(char *)dlerror())!=0) {
- LOG(L_ERR, "ERROR: no compile flags info in module <%s>: %s\n",
- path, error );
- return 0;
- }
- if (!m_ver || !(*m_ver)) {
- LOG(L_ERR, "ERROR: no version in module <%s>\n", path );
- return 0;
- }
- if (!m_flags || !(*m_flags)) {
- LOG(L_ERR, "ERROR: no compile flags in module <%s>\n", path );
- return 0;
- }
- if (strcmp(SER_FULL_VERSION, *m_ver)==0){
- if (strcmp(SER_COMPILE_FLAGS, *m_flags)==0)
- return 1;
- else {
- LOG(L_ERR, "ERROR: module compile flags mismatch for %s "
- " \ncore: %s \nmodule: %s\n",
- path, SER_COMPILE_FLAGS, *m_flags);
- return 0;
- }
- }
- LOG(L_ERR, "ERROR: module version mismatch for %s; "
- "core: %s; module: %s\n", path, SER_FULL_VERSION, *m_ver );
- return 0;
- }
- /**
- * \brief load a sr module
- *
- * tries to load the module specified by mod_path.
- * If mod_path is 'modname' or 'modname.so' then
- * \<MODS_DIR\>/\<modname\>.so will be tried and if this fails
- * \<MODS_DIR\>/\<modname\>/\<modname\>.so
- * If mod_path contain a '/' it is assumed to be the
- * path to the module and tried first. If fails and mod_path is not
- * absolute path (not starting with '/') then will try:
- * \<MODS_DIR\>/mod_path
- * @param mod_path path or module name
- * @return 0 on success , <0 on error
- */
- int load_module(char* mod_path)
- {
- void* handle;
- char* error;
- mod_register_function mr;
- union module_exports_u* exp;
- unsigned* mod_if_ver;
- struct sr_module* t;
- struct stat stat_buf;
- str modname;
- char* mdir;
- char* nxt_mdir;
- char* path;
- int mdir_len;
- int len;
- int dlflags;
- int new_dlflags;
- int retries;
- int path_type;
- #ifndef RTLD_NOW
- /* for openbsd */
- #define RTLD_NOW DL_LAZY
- #endif
- path=mod_path;
- path_type = 0;
- modname.s = path;
- modname.len = strlen(mod_path);
- if(modname.len>3 && strcmp(modname.s+modname.len-3, ".so")==0) {
- path_type = 1;
- modname.len -= 3;
- }
- if (!strchr(path, '/'))
- path_type |= 2;
- if((path_type&2) || path[0] != '/') {
- /* module name was given, we try to construct the path */
- mdir=mods_dir; /* search path */
- do{
- nxt_mdir=strchr(mdir, ':');
- if (nxt_mdir) mdir_len=(int)(nxt_mdir-mdir);
- else mdir_len=strlen(mdir);
-
- if(path_type&2) {
- /* try path <MODS_DIR>/<modname>.so */
- path = (char*)pkg_malloc(mdir_len + 1 /* "/" */ +
- modname.len + 3 /* ".so" */ + 1);
- if (path==0) goto error;
- memcpy(path, mdir, mdir_len);
- len = mdir_len;
- if (len != 0 && path[len - 1] != '/'){
- path[len]='/';
- len++;
- }
- path[len]=0;
- strcat(path, modname.s);
- if(!(path_type&1))
- strcat(path, ".so");
- if (stat(path, &stat_buf) == -1) {
- DBG("load_module: module file not found <%s>\n", path);
- pkg_free(path);
- /* try path <MODS_DIR>/<modname>/<modname>.so */
- path = (char*)pkg_malloc(
- mdir_len + 1 /* "/" */ +
- modname.len + 1 /* "/" */ +
- modname.len + 3 /* ".so" */ + 1);
- if (path==0) goto error;
- memcpy(path, mdir, mdir_len);
- len = mdir_len;
- if (len != 0 && path[len - 1] != '/') {
- path[len]='/';
- len++;
- }
- path[len]=0;
- strncat(path, modname.s, modname.len);
- strcat(path, "/");
- strcat(path, modname.s);
- if(!(path_type&1))
- strcat(path, ".so");
- if (stat(path, &stat_buf) == -1) {
- DBG("load_module: module file not found <%s>\n", path);
- pkg_free(path);
- path=0;
- }
- }
- } else {
- /* try mod_path - S compat */
- if(path==mod_path) {
- if (stat(path, &stat_buf) == -1) {
- DBG("load_module: module file not found <%s>\n", path);
- path=0;
- }
- }
- if(path==0) {
- /* try path <MODS_DIR>/mod_path - K compat */
- path = (char*)pkg_malloc(mdir_len + 1 /* "/" */ +
- strlen(mod_path) + 1);
- if (path==0) goto error;
- memcpy(path, mdir, mdir_len);
- len = mdir_len;
- if (len != 0 && path[len - 1] != '/'){
- path[len]='/';
- len++;
- }
- path[len]=0;
- strcat(path, mod_path);
- if (stat(path, &stat_buf) == -1) {
- DBG("load_module: module file not found <%s>\n", path);
- pkg_free(path);
- path=0;
- }
- }
- }
- mdir=nxt_mdir?nxt_mdir+1:0;
- }while(path==0 && mdir);
- if (path==0){
- LOG(L_ERR, "ERROR: load_module: could not find module <%.*s> in"
- " <%s>\n", modname.len, modname.s, mods_dir);
- goto error;
- }
- }
- DBG("load_module: trying to load <%s>\n", path);
- retries=2;
- dlflags=RTLD_NOW;
- reload:
- handle=dlopen(path, dlflags); /* resolve all symbols now */
- if (handle==0){
- LOG(L_ERR, "ERROR: load_module: could not open module <%s>: %s\n",
- path, dlerror());
- goto error;
- }
- for(t=modules;t; t=t->next){
- if (t->handle==handle){
- LOG(L_WARN, "WARNING: load_module: attempting to load the same"
- " module twice (%s)\n", path);
- goto skip;
- }
- }
- /* version control */
- if (!version_control(handle, path)) {
- exit(0);
- }
- mod_if_ver = (unsigned *)dlsym(handle,
- DLSYM_PREFIX "module_interface_ver");
- if ( (error =(char*)dlerror())!=0 ){
- LOG(L_ERR, "ERROR: no module interface version in module <%s>\n",
- path );
- goto error1;
- }
- /* launch register */
- mr = (mod_register_function)dlsym(handle, DLSYM_PREFIX "mod_register");
- if (((error =(char*)dlerror())==0) && mr) {
- /* no error call it */
- new_dlflags=dlflags;
- if (mr(path, &new_dlflags, 0, 0)!=0) {
- LOG(L_ERR, "ERROR: load_module: %s: mod_register failed\n", path);
- goto error1;
- }
- if (new_dlflags!=dlflags && new_dlflags!=0) {
- /* we have to reload the module */
- dlclose(handle);
- dlflags=new_dlflags;
- retries--;
- if (retries>0) goto reload;
- LOG(L_ERR, "ERROR: load_module: %s: cannot agree"
- " on the dlflags\n", path);
- goto error;
- }
- }
- exp = (union module_exports_u*)dlsym(handle, DLSYM_PREFIX "exports");
- if ( (error =(char*)dlerror())!=0 ){
- LOG(L_ERR, "ERROR: load_module: %s\n", error);
- goto error1;
- }
- /* hack to allow for kamailio style dlflags inside exports */
- if (*mod_if_ver == 1) {
- new_dlflags = exp->v1.dlflags;
- if (new_dlflags!=dlflags && new_dlflags!=DEFAULT_DLFLAGS) {
- /* we have to reload the module */
- dlclose(handle);
- NOTICE("%s: exports dlflags interface is deprecated and it will not"
- " be supported in newer versions; consider using"
- " mod_register() instead\n", path);
- dlflags=new_dlflags;
- retries--;
- if (retries>0) goto reload;
- LOG(L_ERR, "ERROR: load_module: %s: cannot agree"
- " on the dlflags\n", path);
- goto error;
- }
- }
- if (register_module(*mod_if_ver, exp, path, handle)<0) goto error1;
- return 0;
- error1:
- dlclose(handle);
- error:
- skip:
- if (path && path!=mod_path)
- pkg_free(path);
- return -1;
- }
- /* searches the module list for function name in module mod and returns
- * a pointer to the "name" function record union or 0 if not found
- * sets also *mod_if_ver to the original module interface version.
- * mod==0 is a wildcard matching all modules
- * flags parameter is OR value of all flags that must match
- */
- sr31_cmd_export_t* find_mod_export_record(char* mod, char* name,
- int param_no, int flags,
- unsigned* mod_if_ver)
- {
- struct sr_module* t;
- sr31_cmd_export_t* cmd;
- for(t=modules;t;t=t->next){
- if (mod!=0 && (strcmp(t->exports.name, mod) !=0))
- continue;
- if (t->exports.cmds)
- for(cmd=&t->exports.cmds[0]; cmd->name; cmd++) {
- if((strcmp(name, cmd->name) == 0) &&
- ((cmd->param_no == param_no) ||
- (cmd->param_no==VAR_PARAM_NO)) &&
- ((cmd->flags & flags) == flags)
- ){
- DBG("find_export_record: found <%s> in module %s [%s]\n",
- name, t->exports.name, t->path);
- *mod_if_ver=t->orig_mod_interface_ver;
- return cmd;
- }
- }
- }
- DBG("find_export_record: <%s> not found \n", name);
- return 0;
- }
- /* searches the module list for function name and returns
- * a pointer to the "name" function record union or 0 if not found
- * sets also *mod_if_ver to the module interface version (needed to know
- * which member of the union should be accessed v0 or v1)
- * mod==0 is a wildcard matching all modules
- * flags parameter is OR value of all flags that must match
- */
- sr31_cmd_export_t* find_export_record(char* name,
- int param_no, int flags,
- unsigned* mod_if_ver)
- {
- return find_mod_export_record(0, name, param_no, flags, mod_if_ver);
- }
- cmd_function find_export(char* name, int param_no, int flags)
- {
- sr31_cmd_export_t* cmd;
- unsigned mver;
-
- cmd = find_export_record(name, param_no, flags, &mver);
- return cmd?cmd->function:0;
- }
- rpc_export_t* find_rpc_export(char* name, int flags)
- {
- return rpc_lookup((char*)name, strlen(name));
- }
- /*
- * searches the module list and returns pointer to "name" function in module
- * "mod"
- * 0 if not found
- * flags parameter is OR value of all flags that must match
- */
- cmd_function find_mod_export(char* mod, char* name, int param_no, int flags)
- {
- sr31_cmd_export_t* cmd;
- unsigned mver;
- cmd=find_mod_export_record(mod, name, param_no, flags, &mver);
- if (cmd)
- return cmd->function;
-
- DBG("find_mod_export: <%s> in module <%s> not found\n", name, mod);
- return 0;
- }
- struct sr_module* find_module_by_name(char* mod) {
- struct sr_module* t;
- for(t = modules; t; t = t->next) {
- if (strcmp(mod, t->exports.name) == 0) {
- return t;
- }
- }
- DBG("find_module_by_name: module <%s> not found\n", mod);
- return 0;
- }
- /*!
- * \brief Find a parameter with given type
- * \param mod module
- * \param name parameter name
- * \param type_mask parameter mask
- * \param param_type parameter type
- * \return parameter address in memory, if there is no such parameter, NULL is returned
- */
- void* find_param_export(struct sr_module* mod, char* name,
- modparam_t type_mask, modparam_t *param_type)
- {
- param_export_t* param;
- if (!mod)
- return 0;
- for(param = mod->exports.params ;param && param->name ; param++) {
- if ((strcmp(name, param->name) == 0) &&
- ((param->type & PARAM_TYPE_MASK(type_mask)) != 0)) {
- DBG("find_param_export: found <%s> in module %s [%s]\n",
- name, mod->exports.name, mod->path);
- *param_type = param->type;
- return param->param_pointer;
- }
- }
- DBG("find_param_export: parameter <%s> not found in module <%s>\n",
- name, mod->exports.name);
- return 0;
- }
- void destroy_modules()
- {
- struct sr_module* t, *foo;
- /* call first destroy function from each module */
- t=modules;
- while(t) {
- foo=t->next;
- if (t->exports.destroy_f){
- t->exports.destroy_f();
- }
- t=foo;
- }
- /* free module exports structures */
- t=modules;
- while(t) {
- foo=t->next;
- pkg_free(t);
- t=foo;
- }
- modules=0;
- if (mod_response_cbks){
- pkg_free(mod_response_cbks);
- mod_response_cbks=0;
- }
- }
- #ifdef NO_REVERSE_INIT
- /*
- * Initialize all loaded modules, the initialization
- * is done *AFTER* the configuration file is parsed
- */
- int init_modules(void)
- {
- struct sr_module* t;
- for(t = modules; t; t = t->next) {
- if (t->exports.init_f)
- if (t->exports.init_f() != 0) {
- LOG(L_ERR, "init_modules(): Error while"
- " initializing module %s\n", t->exports.name);
- return -1;
- }
- if (t->exports.response_f)
- mod_response_cbk_no++;
- }
- mod_response_cbks=pkg_malloc(mod_response_cbk_no *
- sizeof(response_function));
- if (mod_response_cbks==0){
- LOG(L_ERR, "init_modules(): memory allocation failure"
- " for %d response_f callbacks\n", mod_response_cbk_no);
- return -1;
- }
- for (t=modules, i=0; t && (i<mod_response_cbk_no); t=t->next) {
- if (t->exports.response_f) {
- mod_response_cbks[i]=t->exports.response_f;
- i++;
- }
- }
- return 0;
- }
- /*
- * per-child initialization
- */
- int init_child(int rank)
- {
- struct sr_module* t;
- char* type;
- switch(rank) {
- case PROC_MAIN: type = "PROC_MAIN"; break;
- case PROC_TIMER: type = "PROC_TIMER"; break;
- case PROC_FIFO: type = "PROC_FIFO"; break;
- case PROC_TCP_MAIN: type = "PROC_TCP_MAIN"; break;
- default: type = "CHILD"; break;
- }
- DBG("init_child: initializing %s with rank %d\n", type, rank);
- for(t = modules; t; t = t->next) {
- if (t->exports.init_child_f) {
- if ((t->exports.init_child_f(rank)) < 0) {
- LOG(L_ERR, "init_child(): Initialization of child"
- " %d failed\n", rank);
- return -1;
- }
- }
- }
- return 0;
- }
- #else
- /* recursive module child initialization; (recursion is used to
- process the module linear list in the same order in
- which modules are loaded in config file
- */
- static int init_mod_child( struct sr_module* m, int rank )
- {
- if (m) {
- /* iterate through the list; if error occurs,
- propagate it up the stack
- */
- if (init_mod_child(m->next, rank)!=0) return -1;
- if (m->exports.init_child_f) {
- DBG("DEBUG: init_mod_child (%d): %s\n", rank, m->exports.name);
- if (m->exports.init_child_f(rank)<0) {
- LOG(L_ERR, "init_mod_child(): Error while"
- " initializing module %s (%s)\n",
- m->exports.name, m->path);
- return -1;
- } else {
- /* module correctly initialized */
- return 0;
- }
- }
- /* no init function -- proceed with success */
- return 0;
- } else {
- /* end of list */
- return 0;
- }
- }
- /*
- * per-child initialization
- */
- int init_child(int rank)
- {
- return init_mod_child(modules, rank);
- }
- /* recursive module initialization; (recursion is used to
- process the module linear list in the same order in
- which modules are loaded in config file
- */
- static int init_mod( struct sr_module* m )
- {
- if (m) {
- /* iterate through the list; if error occurs,
- propagate it up the stack
- */
- if (init_mod(m->next)!=0) return -1;
- if (m->exports.init_f) {
- DBG("DEBUG: init_mod: %s\n", m->exports.name);
- if (m->exports.init_f()!=0) {
- LOG(L_ERR, "init_mod(): Error while initializing"
- " module %s (%s)\n",
- m->exports.name, m->path);
- return -1;
- } else {
- /* module correctly initialized */
- return 0;
- }
- }
- /* no init function -- proceed with success */
- return 0;
- } else {
- /* end of list */
- return 0;
- }
- }
- /*
- * Initialize all loaded modules, the initialization
- * is done *AFTER* the configuration file is parsed
- */
- int init_modules(void)
- {
- struct sr_module* t;
- int i;
-
- i = init_mod(modules);
- if(i!=0)
- return i;
- for(t = modules; t; t = t->next)
- if (t->exports.response_f)
- mod_response_cbk_no++;
- mod_response_cbks=pkg_malloc(mod_response_cbk_no *
- sizeof(response_function));
- if (mod_response_cbks==0){
- LOG(L_ERR, "init_modules(): memory allocation failure"
- " for %d response_f callbacks\n", mod_response_cbk_no);
- return -1;
- }
- for (t=modules, i=0; t && (i<mod_response_cbk_no); t=t->next)
- if (t->exports.response_f) {
- mod_response_cbks[i]=t->exports.response_f;
- i++;
- }
-
- return 0;
- }
- #endif
- action_u_t *fixup_get_param(void **cur_param, int cur_param_no,
- int required_param_no)
- {
- action_u_t *a;
- /* cur_param points to a->u.string, get pointer to a */
- a = (void*) ((char *)cur_param - offsetof(action_u_t, u.string));
- return a + required_param_no - cur_param_no;
- }
- int fixup_get_param_count(void **cur_param, int cur_param_no)
- {
- action_u_t *a;
- a = fixup_get_param(cur_param, cur_param_no, 0);
- if (a)
- return a->u.number;
- else
- return -1;
- }
- /** get a pointer to a parameter internal type.
- * @param param
- * @return pointer to the parameter internal type.
- */
- action_param_type* fixup_get_param_ptype(void** param)
- {
- action_u_t* a;
- a = (void*)((char*)param - offsetof(action_u_t, u.string));
- return &a->type;
- }
- /** get a parameter internal type.
- * @see fixup_get_param_ptype().
- * @return paramter internal type.
- */
- action_param_type fixup_get_param_type(void** param)
- {
- return *fixup_get_param_ptype(param);
- }
- /* fixes flag params (resolves possible named flags)
- * use PARAM_USE_FUNC|PARAM_STRING as a param. type and create
- * a wrapper function that does just:
- * return fix_flag(type, val, "my_module", "my_param", &flag_var)
- * see also param_func_t.
- */
- int fix_flag( modparam_t type, void* val,
- char* mod_name, char* param_name, int* flag)
- {
- int num;
- int err;
- int f, len;
- char* s;
- char *p;
- if ((type & PARAM_STRING)==0){
- LOG(L_CRIT, "BUG: %s: fix_flag(%s): bad parameter type\n",
- mod_name, param_name);
- return -1;
- }
- s=(char*)val;
- len=strlen(s);
- f=-1;
- /* try to see if it's a number */
- num = str2s(s, len, &err);
- if (err != 0) {
- /* see if it's in the name:<no> format */
- p=strchr(s, ':');
- if (p){
- f= str2s(p+1, strlen(p+1), &err);
- if (err!=0){
- LOG(L_ERR, "ERROR: %s: invalid %s format:"
- " \"%s\"", mod_name, param_name, s);
- return -1;
- }
- *p=0;
- }
- if ((num=get_flag_no(s, len))<0){
- /* not declared yet, declare it */
- num=register_flag(s, f);
- }
- if (num<0){
- LOG(L_ERR, "ERROR: %s: bad %s %s\n", mod_name, param_name, s);
- return -1;
- } else if ((f>0) && (num!=f)){
- LOG(L_ERR, "WARNING: %s: flag %s already defined"
- " as %d (and not %d), using %s:%d\n",
- mod_name, s, num, f, s, num);
- }
- }
- *flag=num;
- return 0;
- }
- /*
- * Common function parameter fixups
- */
- /** Generic parameter fixup function.
- * Creates a fparam_t structure.
- * @param type contains allowed parameter types
- * @param param is the parameter that will be fixed-up
- *
- * @return
- * 0 on success,
- * 1 if the param doesn't match the specified type
- * <0 on failure
- */
- int fix_param(int type, void** param)
- {
- fparam_t* p;
- str name, s;
- int num;
- int err;
- p = (fparam_t*)pkg_malloc(sizeof(fparam_t));
- if (!p) {
- ERR("No memory left\n");
- return E_OUT_OF_MEM;
- }
- memset(p, 0, sizeof(fparam_t));
- p->orig = *param;
-
- switch(type) {
- case FPARAM_UNSPEC:
- ERR("Invalid type value\n");
- goto error;
- case FPARAM_STRING:
- p->v.asciiz = *param;
- /* no break */
- case FPARAM_STR:
- p->v.str.s = (char*)*param;
- p->v.str.len = strlen(p->v.str.s);
- p->fixed = &p->v;
- break;
- case FPARAM_INT:
- s.s = (char*)*param;
- s.len = strlen(s.s);
- err = str2sint(&s, &num);
- if (err == 0) {
- p->v.i = (int)num;
- } else {
- /* Not a number */
- pkg_free(p);
- return 1;
- }
- p->fixed = (void*)(long)num;
- break;
- case FPARAM_REGEX:
- if ((p->v.regex = pkg_malloc(sizeof(regex_t))) == 0) {
- ERR("No memory left\n");
- goto error;
- }
- if (regcomp(p->v.regex, *param,
- REG_EXTENDED|REG_ICASE|REG_NEWLINE)) {
- pkg_free(p->v.regex);
- p->v.regex=0;
- /* not a valid regex */
- goto no_match;
- }
- p->fixed = p->v.regex;
- break;
- case FPARAM_AVP:
- name.s = (char*)*param;
- name.len = strlen(name.s);
- trim(&name);
- if (!name.len || name.s[0] != '$') {
- /* Not an AVP identifier */
- goto no_match;
- }
- name.s++;
- name.len--;
- if (parse_avp_ident(&name, &p->v.avp) < 0) {
- /* invalid avp identifier (=> no match) */
- goto no_match;
- }
- p->fixed = &p->v;
- break;
- case FPARAM_SELECT:
- name.s = (char*)*param;
- name.len = strlen(name.s);
- trim(&name);
- if (!name.len || name.s[0] != '@') {
- /* Not a select identifier */
- goto no_match;
- }
- if (parse_select(&name.s, &p->v.select) < 0) {
- ERR("Error while parsing select identifier\n");
- goto error;
- }
- p->fixed = &p->v;
- break;
- case FPARAM_SUBST:
- s.s = *param;
- s.len = strlen(s.s);
- p->v.subst = subst_parser(&s);
- if (!p->v.subst) {
- ERR("Error while parsing regex substitution\n");
- goto error;
- }
- p->fixed = &p->v;
- break;
- case FPARAM_PVS:
- name.s = (char*)*param;
- name.len = strlen(name.s);
- trim(&name);
- if (!name.len || name.s[0] != '$'){
- /* not a pvs identifier */
- goto no_match;
- }
- p->v.pvs=pkg_malloc(sizeof(pv_spec_t));
- if (p->v.pvs==0){
- ERR("out of memory while parsing pv_spec_t\n");
- goto error;
- }
- if (pv_parse_spec2(&name, p->v.pvs, 1)==0){
- /* not a valid pvs identifier (but it might be an avp) */
- pkg_free(p->v.pvs);
- p->v.pvs=0;
- goto no_match;
- }
- p->fixed = p->v.pvs;
- break;
- case FPARAM_PVE:
- name.s = (char*)*param;
- name.len = strlen(name.s);
- if (pv_parse_format(&name, &p->v.pve)<0){
- ERR("bad PVE format: \"%.*s\"\n", name.len, name.s);
- goto error;
- }
- p->fixed = &p->v;
- break;
- }
-
- p->type = type;
- *param = (void*)p;
- return 0;
-
- no_match:
- pkg_free(p);
- return 1;
- error:
- pkg_free(p);
- return E_UNSPEC;
- }
- /** fparam_t free function.
- * Frees the "content" of a fparam, but not the fparam itself.
- * Note: it doesn't free fp->orig!
- * Assumes pkg_malloc'ed content.
- * @param fp - fparam to be freed
- *
- */
- void fparam_free_contents(fparam_t* fp)
- {
- if (fp==0)
- return;
- switch(fp->type) {
- case FPARAM_UNSPEC:
- case FPARAM_STRING: /* asciiz string, not str */
- case FPARAM_INT:
- case FPARAM_STR:
- /* nothing to do */
- break;
- case FPARAM_REGEX:
- if (fp->v.regex){
- regfree(fp->v.regex);
- pkg_free(fp->v.regex);
- fp->v.regex=0;
- }
- break;
- case FPARAM_AVP:
- free_avp_name(&fp->v.avp.flags, &fp->v.avp.name);
- break;
- case FPARAM_SELECT:
- if (fp->v.select){
- free_select(fp->v.select);
- fp->v.select=0;
- }
- break;
- case FPARAM_SUBST:
- if (fp->v.subst){
- subst_expr_free(fp->v.subst);
- fp->v.subst=0;
- }
- break;
- case FPARAM_PVS:
- if (fp->v.pvs){
- pv_spec_free(fp->v.pvs);
- fp->v.pvs=0;
- }
- break;
- case FPARAM_PVE:
- if (fp->v.pve){
- pv_elem_free_all(fp->v.pve);
- fp->v.pve=0;
- }
- break;
- }
- }
- /**
- * @brief Generic free fixup type function for a fixed fparam
- *
- * Generic free fixup type function for a fixed fparam. It will free whatever
- * was allocated during the initial fparam fixup and restore the original param
- * value.
- * @param param freed parameters
- */
- void fparam_free_restore(void** param)
- {
- fparam_t *fp;
- void *orig;
-
- fp = *param;
- orig = fp->orig;
- fp->orig = 0;
- fparam_free_contents(fp);
- pkg_free(fp);
- *param = orig;
- }
- /** fix a param to one of the given types (mask).
- *
- * @param types - bitmap of the allowed types (e.g. FPARAM_INT|FPARAM_STR)
- * @param param - value/result
- * @return - 0 on success, -1 on error, 1 if param doesn't
- * match any of the types
- */
- int fix_param_types(int types, void** param)
- {
- int ret;
- int t;
-
- if (fixup_get_param_type(param) == STRING_RVE_ST &&
- (types & (FPARAM_INT|FPARAM_STR|FPARAM_STRING))) {
- /* if called with a RVE already converted to string =>
- don't try AVP, PVAR or SELECT (to avoid double
- deref., e.g.: $foo="$bar"; f($foo) ) */
- types &= ~ (FPARAM_AVP|FPARAM_PVS|FPARAM_SELECT|FPARAM_PVE);
- }
- for (t=types & ~(types-1); types; types&=(types-1), t=types & ~(types-1)){
- if ((ret=fix_param(t, param))<=0) return ret;
- }
- return E_UNSPEC;
- }
- /*
- * Fixup variable string, the parameter can be
- * AVP, SELECT, or ordinary string. AVP and select
- * identifiers will be resolved to their values during
- * runtime
- *
- * The parameter value will be converted to fparam structure
- * This function returns -1 on an error
- */
- int fixup_var_str_12(void** param, int param_no)
- {
- int ret;
- if (fixup_get_param_type(param) != STRING_RVE_ST) {
- /* if called with a RVE already converted to string =>
- don't try AVP, PVAR or SELECT (to avoid double
- deref., e.g.: $foo="$bar"; f($foo) ) */
- if ((ret = fix_param(FPARAM_PVS, param)) <= 0) return ret;
- if ((ret = fix_param(FPARAM_AVP, param)) <= 0) return ret;
- if ((ret = fix_param(FPARAM_SELECT, param)) <= 0) return ret;
- }
- if ((ret = fix_param(FPARAM_STR, param)) <= 0) return ret;
- ERR("Error while fixing parameter, PV, AVP, SELECT, and str conversions"
- " failed\n");
- return -1;
- }
- /* Same as fixup_var_str_12 but applies to the 1st parameter only */
- int fixup_var_str_1(void** param, int param_no)
- {
- if (param_no == 1) return fixup_var_str_12(param, param_no);
- else return 0;
- }
- /* Same as fixup_var_str_12 but applies to the 2nd parameter only */
- int fixup_var_str_2(void** param, int param_no)
- {
- if (param_no == 2) return fixup_var_str_12(param, param_no);
- else return 0;
- }
- /** fixup variable-pve-only-string.
- * The parameter can be a PVE (pv based format string)
- * or string.
- * non-static PVEs identifiers will be resolved to
- * their values during runtime.
- * The parameter value will be converted to fparam structure
- * @param param - double pointer to param, as for normal fixup functions.
- * @param param_no - parameter number, ignored.
- * @return -1 on an error, 0 on success.
- */
- int fixup_var_pve_12(void** param, int param_no)
- {
- int ret;
- fparam_t* fp;
- if (fixup_get_param_type(param) != STRING_RVE_ST) {
- /* if called with a RVE already converted to string =>
- don't try PVE again (to avoid double
- deref., e.g.: $foo="$bar"; f($foo) ) */
- if ((ret = fix_param(FPARAM_PVE, param)) <= 0) {
- if (ret < 0)
- return ret;
- /* check if it resolved to a dynamic or "static" PVE.
- If the resulting PVE is static (normal string), discard
- it and use the normal string fixup (faster at runtime) */
- fp = (fparam_t*)*param;
- if (fp->v.pve->spec.getf == 0)
- fparam_free_restore(param); /* fallback to STR below */
- else
- return ret; /* dynamic PVE => return */
- }
-
- }
- if ((ret = fix_param(FPARAM_STR, param)) <= 0) return ret;
- ERR("Error while fixing parameter - PVE or str conversions failed\n");
- return -1;
- }
- /** fixup variable-pve-string.
- * The parameter can be a PVAR, AVP, SELECT, PVE (pv based format string)
- * or string.
- * PVAR, AVP and select and non-static PVEs identifiers will be resolved to
- * their values during runtime.
- * The parameter value will be converted to fparam structure
- * @param param - double pointer to param, as for normal fixup functions.
- * @param param_no - parameter number, ignored.
- * @return -1 on an error, 0 on success.
- */
- int fixup_var_pve_str_12(void** param, int param_no)
- {
- int ret;
- fparam_t* fp;
- if (fixup_get_param_type(param) != STRING_RVE_ST) {
- /* if called with a RVE already converted to string =>
- don't try AVP, PVAR, SELECT or PVE again (to avoid double
- deref., e.g.: $foo="$bar"; f($foo) ) */
- if ((ret = fix_param(FPARAM_PVS, param)) <= 0) return ret;
- if ((ret = fix_param(FPARAM_AVP, param)) <= 0) return ret;
- if ((ret = fix_param(FPARAM_SELECT, param)) <= 0) return ret;
- if ((ret = fix_param(FPARAM_PVE, param)) <= 0) {
- if (ret < 0)
- return ret;
- /* check if it resolved to a dynamic or "static" PVE.
- If the resulting PVE is static (normal string), discard
- it and use the normal string fixup (faster at runtime) */
- fp = (fparam_t*)*param;
- if (fp->v.pve->spec.getf == 0)
- fparam_free_restore(param); /* fallback to STR below */
- else
- return ret; /* dynamic PVE => return */
- }
-
- }
- if ((ret = fix_param(FPARAM_STR, param)) <= 0) return ret;
- ERR("Error while fixing parameter, PV, AVP, SELECT, and str conversions"
- " failed\n");
- return -1;
- }
- /* Same as fixup_var_pve_str_12 but applies to the 1st parameter only */
- int fixup_var_pve_str_1(void** param, int param_no)
- {
- if (param_no == 1) return fixup_var_pve_str_12(param, param_no);
- else return 0;
- }
- /* Same as fixup_var_pve_str_12 but applies to the 2nd parameter only */
- int fixup_var_pve_str_2(void** param, int param_no)
- {
- if (param_no == 2) return fixup_var_pve_str_12(param, param_no);
- else return 0;
- }
- /*
- * Fixup variable integer, the parameter can be
- * AVP, SELECT, or ordinary integer. AVP and select
- * identifiers will be resolved to their values and
- * converted to int if necessary during runtime
- *
- * The parameter value will be converted to fparam structure
- * This function returns -1 on an error
- */
- int fixup_var_int_12(void** param, int param_no)
- {
- int ret;
- if (fixup_get_param_type(param) != STRING_RVE_ST) {
- /* if called with a RVE already converted to string =>
- don't try AVP, PVAR or SELECT (to avoid double
- deref., e.g.: $foo="$bar"; f($foo) ) */
- if ((ret = fix_param(FPARAM_PVS, param)) <= 0) return ret;
- if ((ret = fix_param(FPARAM_AVP, param)) <= 0) return ret;
- if ((ret = fix_param(FPARAM_SELECT, param)) <= 0) return ret;
- }
- if ((ret = fix_param(FPARAM_INT, param)) <= 0) return ret;
- ERR("Error while fixing parameter, PV, AVP, SELECT, and int conversions"
- " failed\n");
- return -1;
- }
- /* Same as fixup_var_int_12 but applies to the 1st parameter only */
- int fixup_var_int_1(void** param, int param_no)
- {
- if (param_no == 1) return fixup_var_int_12(param, param_no);
- else return 0;
- }
- /* Same as fixup_var_int_12 but applies to the 2nd parameter only */
- int fixup_var_int_2(void** param, int param_no)
- {
- if (param_no == 2) return fixup_var_int_12(param, param_no);
- else return 0;
- }
- /*
- * The parameter must be a regular expression which must compile, the
- * parameter will be converted to compiled regex
- */
- int fixup_regex_12(void** param, int param_no)
- {
- int ret;
- if ((ret = fix_param(FPARAM_REGEX, param)) <= 0) return ret;
- ERR("Error while compiling regex in function parameter\n");
- return -1;
- }
- /* Same as fixup_regex_12 but applies to the 1st parameter only */
- int fixup_regex_1(void** param, int param_no)
- {
- if (param_no == 1) return fixup_regex_12(param, param_no);
- else return 0;
- }
- /* Same as fixup_regex_12 but applies to the 2nd parameter only */
- int fixup_regex_2(void** param, int param_no)
- {
- if (param_no == 2) return fixup_regex_12(param, param_no);
- else return 0;
- }
- /*
- * The string parameter will be converted to integer
- */
- int fixup_int_12(void** param, int param_no)
- {
- int ret;
- if ((ret = fix_param(FPARAM_INT, param)) <= 0) return ret;
- ERR("Cannot function parameter to integer\n");
- return -1;
- }
- /* Same as fixup_int_12 but applies to the 1st parameter only */
- int fixup_int_1(void** param, int param_no)
- {
- if (param_no == 1) return fixup_int_12(param, param_no);
- else return 0;
- }
- /* Same as fixup_int_12 but applies to the 2nd parameter only */
- int fixup_int_2(void** param, int param_no)
- {
- if (param_no == 2) return fixup_int_12(param, param_no);
- else return 0;
- }
- /*
- * Parse the parameter as static string, do not resolve
- * AVPs or selects, convert the parameter to str structure
- */
- int fixup_str_12(void** param, int param_no)
- {
- int ret;
- if ((ret = fix_param(FPARAM_STR, param)) <= 0) return ret;
- ERR("Cannot function parameter to string\n");
- return -1;
- }
- /* Same as fixup_str_12 but applies to the 1st parameter only */
- int fixup_str_1(void** param, int param_no)
- {
- if (param_no == 1) return fixup_str_12(param, param_no);
- else return 0;
- }
- /* Same as fixup_str_12 but applies to the 2nd parameter only */
- int fixup_str_2(void** param, int param_no)
- {
- if (param_no == 2) return fixup_str_12(param, param_no);
- else return 0;
- }
- /** Get the function parameter value as string.
- * @return 0 - Success
- * -1 - Cannot get value
- */
- int get_str_fparam(str* dst, struct sip_msg* msg, fparam_t* param)
- {
- int_str val;
- int ret;
- avp_t* avp;
- pv_value_t pv_val;
-
- switch(param->type) {
- case FPARAM_REGEX:
- case FPARAM_UNSPEC:
- case FPARAM_INT:
- return -1;
- case FPARAM_STRING:
- dst->s = param->v.asciiz;
- dst->len = strlen(param->v.asciiz);
- break;
- case FPARAM_STR:
- *dst = param->v.str;
- break;
- case FPARAM_AVP:
- avp = search_first_avp(param->v.avp.flags, param->v.avp.name,
- &val, 0);
- if (unlikely(!avp)) {
- DBG("Could not find AVP from function parameter '%s'\n",
- param->orig);
- return -1;
- }
- if (likely(avp->flags & AVP_VAL_STR)) {
- *dst = val.s;
- } else {
- /* The caller does not know of what type the AVP will be so
- * convert int AVPs into string here
- */
- dst->s = int2str(val.n, &dst->len);
- }
- break;
- case FPARAM_SELECT:
- ret = run_select(dst, param->v.select, msg);
- if (unlikely(ret < 0 || ret > 0)) return -1;
- break;
- case FPARAM_PVS:
- if (likely((pv_get_spec_value(msg, param->v.pvs, &pv_val)==0) &&
- ((pv_val.flags&(PV_VAL_NULL|PV_VAL_STR))==PV_VAL_STR))){
- *dst=pv_val.rs;
- }else{
- ERR("Could not convert PV to str\n");
- return -1;
- }
- break;
- case FPARAM_PVE:
- dst->s=pv_get_buffer();
- dst->len=pv_get_buffer_size();
- if (unlikely(pv_printf(msg, param->v.pve, dst->s, &dst->len)!=0)){
- ERR("Could not convert the PV-formated string to str\n");
- dst->len=0;
- return -1;
- };
- break;
- }
- return 0;
- }
- /** Get the function parameter value as integer.
- * @return 0 - Success
- * -1 - Cannot get value
- */
- int get_int_fparam(int* dst, struct sip_msg* msg, fparam_t* param)
- {
- int_str val;
- int ret;
- avp_t* avp;
- str tmp;
- pv_value_t pv_val;
- switch(param->type) {
- case FPARAM_INT:
- *dst = param->v.i;
- return 0;
- case FPARAM_REGEX:
- case FPARAM_UNSPEC:
- case FPARAM_STRING:
- case FPARAM_STR:
- return -1;
- case FPARAM_AVP:
- avp = search_first_avp(param->v.avp.flags, param->v.avp.name,
- &val, 0);
- if (unlikely(!avp)) {
- DBG("Could not find AVP from function parameter '%s'\n",
- param->orig);
- return -1;
- }
- if (avp->flags & AVP_VAL_STR) {
- if (str2int(&val.s, (unsigned int*)dst) < 0) {
- ERR("Could not convert AVP string value to int\n");
- return -1;
- }
- } else {
- *dst = val.n;
- }
- break;
- case FPARAM_SELECT:
- ret = run_select(&tmp, param->v.select, msg);
- if (unlikely(ret < 0 || ret > 0)) return -1;
- if (unlikely(str2int(&tmp, (unsigned int*)dst) < 0)) {
- ERR("Could not convert select result to int\n");
- return -1;
- }
- break;
- case FPARAM_PVS:
- if (likely((pv_get_spec_value(msg, param->v.pvs, &pv_val)==0) &&
- ((pv_val.flags&(PV_VAL_NULL|PV_VAL_INT))==PV_VAL_INT))){
- *dst=pv_val.ri;
- }else{
- ERR("Could not convert PV to int\n");
- return -1;
- }
- break;
- case FPARAM_PVE:
- return -1;
- }
- return 0;
- }
- /**
- * Retrieve the compiled RegExp.
- * @return: 0 for success, negative on error.
- */
- int get_regex_fparam(regex_t *dst, struct sip_msg* msg, fparam_t* param)
- {
- switch (param->type) {
- case FPARAM_REGEX:
- *dst = *param->v.regex;
- return 0;
- default:
- ERR("unexpected parameter type (%d), instead of regexp.\n",
- param->type);
- }
- return -1;
- }
- /** generic free fixup function for "pure" fparam type fixups.
- * @param param - double pointer to param, as for normal fixup functions.
- * @param param_no - parameter number, ignored.
- * @return 0 on success (always).
- */
- int fixup_free_fparam_all(void** param, int param_no)
- {
- fparam_free_restore(param);
- return 0;
- }
- /** generic free fixup function for "pure" first parameter fparam type fixups.
- * @param param - double pointer to param, as for normal fixup functions.
- * @param param_no - parameter number: the function will work only for
- * param_no == 1 (first parameter).
- * @return 0 on success (always).
- */
- int fixup_free_fparam_1(void** param, int param_no)
- {
- if (param_no == 1)
- fparam_free_restore(param);
- return 0;
- }
- /** generic free fixup function for "pure" 2nd parameter fparam type fixups.
- * @param param - double pointer to param, as for normal fixup functions.
- * @param param_no - parameter number: the function will work only for
- * param_no == 2 (2nd parameter).
- * @return 0 on success (always).
- */
- int fixup_free_fparam_2(void** param, int param_no)
- {
- if (param_no == 2)
- fparam_free_restore(param);
- return 0;
- }
- /** returns true if a fixup is a fparam_t* one.
- * Used to automatically detect "pure" fparam fixups that can be used with non
- * contant RVEs.
- * @param f - function pointer
- * @return 1 for fparam fixups, 0 for others.
- */
- int is_fparam_rve_fixup(fixup_function f)
- {
- if (f == fixup_var_str_12 ||
- f == fixup_var_str_1 ||
- f == fixup_var_str_2 ||
- f == fixup_var_pve_str_12 ||
- f == fixup_var_pve_str_1 ||
- f == fixup_var_pve_str_2 ||
- f == fixup_var_int_12 ||
- f == fixup_var_int_1 ||
- f == fixup_var_int_2 ||
- f == fixup_int_12 ||
- f == fixup_int_1 ||
- f == fixup_int_2 ||
- f == fixup_str_12 ||
- f == fixup_str_1 ||
- f == fixup_str_2 ||
- f == fixup_regex_12 ||
- f == fixup_regex_1 ||
- f == fixup_regex_2
- )
- return 1;
- return 0;
- }
- /**
- * @brief returns the corresponding fixup_free* for various known fixup types
- *
- * Returns the corresponding fixup_free* for various known fixup types.
- * Used to automatically fill in free_fixup* functions.
- * @param f fixup function pointer
- * @return free fixup function pointer on success, 0 on failure (unknown
- * fixup or no free fixup function).
- */
- free_fixup_function get_fixup_free(fixup_function f)
- {
- free_fixup_function ret;
- /* "pure" fparam, all parameters */
- if (f == fixup_var_str_12 ||
- f == fixup_var_pve_str_12 ||
- f == fixup_var_int_12 ||
- f == fixup_int_12 ||
- f == fixup_str_12 ||
- f == fixup_regex_12)
- return fixup_free_fparam_all;
-
- /* "pure" fparam, 1st parameter */
- if (f == fixup_var_str_1 ||
- f == fixup_var_pve_str_1 ||
- f == fixup_var_int_1 ||
- f == fixup_int_1 ||
- f == fixup_str_1 ||
- f == fixup_regex_1)
- return fixup_free_fparam_1;
-
- /* "pure" fparam, 2nd parameters */
- if (f == fixup_var_str_2 ||
- f == fixup_var_pve_str_2 ||
- f == fixup_var_int_2 ||
- f == fixup_int_2 ||
- f == fixup_str_2 ||
- f == fixup_regex_2)
- return fixup_free_fparam_2;
-
- /* mod_fix.h kamailio style fixups */
- if ((ret = mod_fix_get_fixup_free(f)) != 0)
- return ret;
-
- /* unknown */
- return 0;
- }
|