123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926 |
- /*
- * $Id$
- *
- * Copyright (C) 2012 Edvina AB
- * Copyright (C) 2007 1&1 Internet AG
- * Copyright (C) 2007 BASIS AudioNet GmbH
- * Copyright (C) 2004 FhG
- * Copyright (C) 2005-2006 Voice Sistem S.R.L.
- *
- * 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
- *
- * cfgutils module: random probability functions for Kamailio;
- * it provide functions to make a decision in the script
- * of the server based on a probability function.
- * The benefit of this module is the value of the probability function
- * can be manipulated by external applications such as web interface
- * or command line tools.
- * Furthermore it provides some functions to let the server wait a
- * specific time interval.
- *
- * gflags module: global flags; it keeps a bitmap of flags
- * in shared memory and may be used to change behaviour
- * of server based on value of the flags. E.g.,
- * if (is_gflag("1")) { t_relay_to_udp("10.0.0.1","5060"); }
- * else { t_relay_to_udp("10.0.0.2","5060"); }
- * The benefit of this module is the value of the switch flags
- * can be manipulated by external applications such as web interface
- * or command line tools.
- */
- /* FIFO action protocol names */
- #define FIFO_SET_PROB "rand_set_prob"
- #define FIFO_RESET_PROB "rand_reset_prob"
- #define FIFO_GET_PROB "rand_get_prob"
- #define FIFO_GET_HASH "get_config_hash"
- #define FIFO_CHECK_HASH "check_config_hash"
- /* flag buffer size for FIFO protocool */
- #define MAX_FLAG_LEN 12
- /* FIFO action protocol names for gflag functionality */
- #define FIFO_SET_GFLAG "set_gflag"
- #define FIFO_IS_GFLAG "is_gflag"
- #define FIFO_RESET_GFLAG "reset_gflag"
- #define FIFO_GET_GFLAGS "get_gflags"
- #include "../../sr_module.h"
- #include "../../error.h"
- #include "../../pvar.h"
- #include "../../ut.h"
- #include "../../mem/mem.h"
- #include "../../mem/shm_mem.h"
- #include "../../lib/kmi/mi.h"
- #include "../../mod_fix.h"
- #include "../../md5.h"
- #include "../../md5utils.h"
- #include "../../globals.h"
- #include "../../hashes.h"
- #include "../../locking.h"
- #include "../../route.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include "api.h"
- MODULE_VERSION
- static int set_prob(struct sip_msg*, char *, char *);
- static int reset_prob(struct sip_msg*, char *, char *);
- static int get_prob(struct sip_msg*, char *, char *);
- static int rand_event(struct sip_msg*, char *, char *);
- static int m_sleep(struct sip_msg*, char *, char *);
- static int m_usleep(struct sip_msg*, char *, char *);
- static int dbg_abort(struct sip_msg*, char*,char*);
- static int dbg_pkg_status(struct sip_msg*, char*,char*);
- static int dbg_shm_status(struct sip_msg*, char*,char*);
- static int dbg_pkg_summary(struct sip_msg*, char*,char*);
- static int dbg_shm_summary(struct sip_msg*, char*,char*);
- static int w_route_exists(struct sip_msg*, char*);
- static int w_check_route_exists(struct sip_msg*, char*);
- static int set_gflag(struct sip_msg*, char *, char *);
- static int reset_gflag(struct sip_msg*, char *, char *);
- static int is_gflag(struct sip_msg*, char *, char *);
- static int cfg_lock(struct sip_msg*, char *, char *);
- static int cfg_unlock(struct sip_msg*, char *, char *);
- static struct mi_root* mi_set_prob(struct mi_root* cmd, void* param );
- static struct mi_root* mi_reset_prob(struct mi_root* cmd, void* param );
- static struct mi_root* mi_get_prob(struct mi_root* cmd, void* param );
- static struct mi_root* mi_get_hash(struct mi_root* cmd, void* param );
- static struct mi_root* mi_check_hash(struct mi_root* cmd, void* param );
- static struct mi_root* mi_set_gflag(struct mi_root* cmd, void* param );
- static struct mi_root* mi_reset_gflag(struct mi_root* cmd, void* param );
- static struct mi_root* mi_is_gflag(struct mi_root* cmd, void* param );
- static struct mi_root* mi_get_gflags(struct mi_root* cmd, void* param );
- static int pv_get_random_val(struct sip_msg *msg, pv_param_t *param,
- pv_value_t *res);
- static int fixup_prob( void** param, int param_no);
- static int fixup_gflags( void** param, int param_no);
- static int fixup_core_hash(void **param, int param_no);
- static int w_core_hash(struct sip_msg *msg, char *p1, char *p2, char *p3);
- int bind_cfgutils(cfgutils_api_t *api);
- static int mod_init(void);
- static void mod_destroy(void);
- static int initial_prob = 10;
- static int *probability = NULL;
- static char config_hash[MD5_LEN];
- static char* hash_file = NULL;
- static int initial_gflags=0;
- static unsigned int *gflags=0;
- static gen_lock_t *gflags_lock = NULL;
- static gen_lock_set_t *_cfg_lock_set = NULL;
- static unsigned int _cfg_lock_size = 0;
- static cmd_export_t cmds[]={
- {"rand_set_prob", /* action name as in scripts */
- (cmd_function)set_prob, /* C function name */
- 1, /* number of parameters */
- fixup_prob, 0, /* */
- /* can be applied to original/failed requests and replies */
- ANY_ROUTE},
- {"rand_reset_prob", (cmd_function)reset_prob, 0, 0, 0,
- ANY_ROUTE},
- {"rand_get_prob", (cmd_function)get_prob, 0, 0, 0,
- ANY_ROUTE},
- {"rand_event", (cmd_function)rand_event, 0, 0, 0,
- ANY_ROUTE},
- {"sleep", (cmd_function)m_sleep, 1, fixup_uint_null, 0,
- ANY_ROUTE},
- {"usleep", (cmd_function)m_usleep, 1, fixup_uint_null, 0,
- ANY_ROUTE},
- {"abort", (cmd_function)dbg_abort, 0, 0, 0,
- ANY_ROUTE},
- {"pkg_status", (cmd_function)dbg_pkg_status, 0, 0, 0,
- ANY_ROUTE},
- {"shm_status", (cmd_function)dbg_shm_status, 0, 0, 0,
- ANY_ROUTE},
- {"pkg_summary", (cmd_function)dbg_pkg_summary, 0, 0, 0,
- ANY_ROUTE},
- {"shm_summary", (cmd_function)dbg_shm_summary, 0, 0, 0,
- ANY_ROUTE},
- {"set_gflag", (cmd_function)set_gflag, 1, fixup_gflags, 0,
- ANY_ROUTE},
- {"reset_gflag", (cmd_function)reset_gflag, 1, fixup_gflags, 0,
- ANY_ROUTE},
- {"is_gflag", (cmd_function)is_gflag, 1, fixup_gflags, 0,
- ANY_ROUTE},
- {"lock", (cmd_function)cfg_lock, 1, fixup_spve_null, 0,
- ANY_ROUTE},
- {"unlock", (cmd_function)cfg_unlock, 1, fixup_spve_null, 0,
- ANY_ROUTE},
- {"core_hash", (cmd_function)w_core_hash, 3, fixup_core_hash, 0,
- ANY_ROUTE},
- {"check_route_exists", (cmd_function)w_check_route_exists, 1, 0, 0,
- ANY_ROUTE},
- {"route_if_exists", (cmd_function)w_route_exists, 1, 0, 0,
- ANY_ROUTE},
- {"bind_cfgutils", (cmd_function)bind_cfgutils, 0,
- 0, 0, 0},
- {0, 0, 0, 0, 0, 0}
- };
- static param_export_t params[]={
- {"initial_probability", INT_PARAM, &initial_prob },
- {"initial_gflags", INT_PARAM, &initial_gflags },
- {"hash_file", PARAM_STRING, &hash_file },
- {"lock_set_size", INT_PARAM, &_cfg_lock_size },
- {0,0,0}
- };
- static mi_export_t mi_cmds[] = {
- { FIFO_SET_PROB, mi_set_prob, 0, 0, 0 },
- { FIFO_RESET_PROB, mi_reset_prob, MI_NO_INPUT_FLAG, 0, 0 },
- { FIFO_GET_PROB, mi_get_prob, MI_NO_INPUT_FLAG, 0, 0 },
- { FIFO_GET_HASH, mi_get_hash, MI_NO_INPUT_FLAG, 0, 0 },
- { FIFO_CHECK_HASH, mi_check_hash, MI_NO_INPUT_FLAG, 0, 0 },
- { FIFO_SET_GFLAG, mi_set_gflag, 0, 0, 0 },
- { FIFO_RESET_GFLAG, mi_reset_gflag, 0, 0, 0 },
- { FIFO_IS_GFLAG, mi_is_gflag, 0, 0, 0 },
- { FIFO_GET_GFLAGS, mi_get_gflags, MI_NO_INPUT_FLAG, 0, 0 },
- { 0, 0, 0, 0, 0}
- };
- static pv_export_t mod_items[] = {
- { {"RANDOM", sizeof("RANDOM")-1}, PVT_OTHER, pv_get_random_val, 0,
- 0, 0, 0, 0 },
- { {0, 0}, 0, 0, 0, 0, 0, 0, 0 }
- };
- struct module_exports exports = {
- "cfgutils",
- DEFAULT_DLFLAGS, /* dlopen flags */
- cmds, /* exported functions */
- params, /* exported parameters */
- 0, /* exported statistics */
- mi_cmds, /* exported MI functions */
- mod_items, /* exported pseudo-variables */
- 0, /* extra processes */
- mod_init, /* module initialization function */
- 0, /* response function*/
- mod_destroy, /* destroy function */
- 0 /* per-child init function */
- };
- /**************************** fixup functions ******************************/
- static int fixup_prob( void** param, int param_no)
- {
- unsigned int myint;
- str param_str;
- /* we only fix the parameter #1 */
- if (param_no!=1)
- return 0;
- param_str.s=(char*) *param;
- param_str.len=strlen(param_str.s);
- str2int(¶m_str, &myint);
- if (myint > 100) {
- LM_ERR("invalid probability <%d>\n", myint);
- return E_CFG;
- }
- pkg_free(*param);
- *param=(void *)(long)myint;
- return 0;
- }
- /**
- * convert char* to int and do bitwise right-shift
- * char* must be pkg_alloced and will be freed by the function
- */
- static int fixup_gflags( void** param, int param_no)
- {
- unsigned int myint;
- str param_str;
- /* we only fix the parameter #1 */
- if (param_no!=1)
- return 0;
- param_str.s=(char*) *param;
- param_str.len=strlen(param_str.s);
- if (str2int(¶m_str, &myint )<0) {
- LM_ERR("bad number <%s>\n", (char *)(*param));
- return E_CFG;
- }
- if ( myint >= 8*sizeof(*gflags) ) {
- LM_ERR("flag <%d> out of "
- "range [0..%lu]\n", myint, ((unsigned long)8*sizeof(*gflags))-1 );
- return E_CFG;
- }
- /* convert from flag index to flag bitmap */
- myint = 1 << myint;
- /* success -- change to int */
- pkg_free(*param);
- *param=(void *)(long)myint;
- return 0;
- }
- /************************** module functions **********************************/
- static int set_gflag(struct sip_msg *bar, char *flag, char *foo)
- {
- lock_get(gflags_lock);
- (*gflags) |= (unsigned int)(long)flag;
- lock_release(gflags_lock);
- return 1;
- }
- static int reset_gflag(struct sip_msg *bar, char *flag, char *foo)
- {
- lock_get(gflags_lock);
- (*gflags) &= ~ ((unsigned int)(long)flag);
- lock_release(gflags_lock);
- return 1;
- }
- static int is_gflag(struct sip_msg *bar, char *flag, char *foo)
- {
- return ( (*gflags) & ((unsigned int)(long)flag)) ? 1 : -1;
- }
- static struct mi_root* mi_set_gflag(struct mi_root* cmd_tree, void* param )
- {
- unsigned int flag;
- struct mi_node* node;
- node = cmd_tree->node.kids;
- if(node == NULL)
- return init_mi_tree( 400, MI_MISSING_PARM_S, MI_MISSING_PARM_LEN);
- flag = 0;
- if( strno2int( &node->value, &flag) <0)
- goto error;
- if (!flag) {
- LM_ERR("incorrect flag\n");
- goto error;
- }
- lock_get(gflags_lock);
- (*gflags) |= flag;
- lock_release(gflags_lock);
- return init_mi_tree( 200, MI_OK_S, MI_OK_LEN);
- error:
- return init_mi_tree( 400, MI_BAD_PARM_S, MI_BAD_PARM_LEN);
- }
- static struct mi_root* mi_reset_gflag(struct mi_root* cmd_tree, void* param )
- {
- unsigned int flag;
- struct mi_node* node = NULL;
- node = cmd_tree->node.kids;
- if(node == NULL)
- return init_mi_tree( 400, MI_MISSING_PARM_S, MI_MISSING_PARM_LEN);
- flag = 0;
- if( strno2int( &node->value, &flag) <0)
- goto error;
- if (!flag) {
- LM_ERR("incorrect flag\n");
- goto error;
- }
- lock_get(gflags_lock);
- (*gflags) &= ~ flag;
- lock_release(gflags_lock);
- return init_mi_tree( 200, MI_OK_S, MI_OK_LEN);
- error:
- return init_mi_tree( 400, MI_BAD_PARM_S, MI_BAD_PARM_LEN);
- }
- static struct mi_root* mi_is_gflag(struct mi_root* cmd_tree, void* param )
- {
- unsigned int flag;
- struct mi_root* rpl_tree = NULL;
- struct mi_node* node = NULL;
- node = cmd_tree->node.kids;
- if(node == NULL)
- return init_mi_tree( 400, MI_MISSING_PARM_S, MI_MISSING_PARM_LEN);
- flag = 0;
- if( strno2int( &node->value, &flag) <0)
- goto error_param;
- if (!flag) {
- LM_ERR("incorrect flag\n");
- goto error_param;
- }
- rpl_tree = init_mi_tree( 200, MI_OK_S, MI_OK_LEN);
- if(rpl_tree ==0)
- return 0;
- if( ((*gflags) & flag)== flag )
- node = add_mi_node_child( &rpl_tree->node, 0, 0, 0, "TRUE", 4);
- else
- node = add_mi_node_child( &rpl_tree->node, 0, 0, 0, "FALSE", 5);
- if(node == NULL)
- {
- LM_ERR("failed to add node\n");
- free_mi_tree(rpl_tree);
- return 0;
- }
- return rpl_tree;
- error_param:
- return init_mi_tree( 400, MI_BAD_PARM_S, MI_BAD_PARM_LEN);
- }
- static struct mi_root* mi_get_gflags(struct mi_root* cmd_tree, void* param )
- {
- struct mi_root* rpl_tree= NULL;
- struct mi_node* node= NULL;
- static unsigned int flags;
- rpl_tree = init_mi_tree( 200, MI_OK_S, MI_OK_LEN );
- if(rpl_tree == NULL)
- return 0;
- flags = *gflags;
- node = addf_mi_node_child( &rpl_tree->node, 0, 0, 0, "0x%X",(flags));
- if(node == NULL)
- goto error;
- node = addf_mi_node_child( &rpl_tree->node, 0, 0, 0, "%u",(flags));
- if(node == NULL)
- goto error;
- return rpl_tree;
- error:
- free_mi_tree(rpl_tree);
- return 0;
- }
- static struct mi_root* mi_set_prob(struct mi_root* cmd, void* param )
- {
- unsigned int percent;
- struct mi_node* node;
- node = cmd->node.kids;
- if(node == NULL)
- return init_mi_tree( 400, MI_MISSING_PARM_S, MI_MISSING_PARM_LEN);
- if( str2int( &node->value, &percent) <0)
- goto error;
- if (percent > 100) {
- LM_ERR("incorrect probability <%u>\n", percent);
- goto error;
- }
- *probability = percent;
- return init_mi_tree( 200, MI_OK_S, MI_OK_LEN);
- error:
- return init_mi_tree( 400, MI_BAD_PARM_S, MI_BAD_PARM_LEN);
- }
- static struct mi_root* mi_reset_prob(struct mi_root* cmd, void* param )
- {
- *probability = initial_prob;
- return init_mi_tree( 200, MI_OK_S, MI_OK_LEN );
- }
- static struct mi_root* mi_get_prob(struct mi_root* cmd, void* param )
- {
- struct mi_root* rpl_tree= NULL;
- struct mi_node* node= NULL;
- rpl_tree = init_mi_tree( 200, MI_OK_S, MI_OK_LEN );
- if(rpl_tree == NULL)
- return 0;
- node = addf_mi_node_child( &rpl_tree->node, 0, 0, 0, "actual probability: %u percent\n",(*probability));
- if(node == NULL)
- goto error;
-
- return rpl_tree;
- error:
- free_mi_tree(rpl_tree);
- return 0;
- }
- static struct mi_root* mi_get_hash(struct mi_root* cmd, void* param )
- {
- struct mi_root* rpl_tree= NULL;
- struct mi_node* node= NULL;
- if (!hash_file) {
- LM_INFO("no hash_file given, disable hash functionality\n");
- rpl_tree = init_mi_tree(404, "Functionality disabled\n", 23);
- } else {
- rpl_tree = init_mi_tree( 200, MI_OK_S, MI_OK_LEN );
- if(rpl_tree == NULL)
- return 0;
- node = addf_mi_node_child( &rpl_tree->node, 0, 0, 0, "%.*s\n", MD5_LEN, config_hash);
- if(node == NULL)
- goto error;
- }
- return rpl_tree;
- error:
- free_mi_tree(rpl_tree);
- return 0;
- }
- /*! \brief
- * Calculate a MD5 digest over a file.
- * This function assumes 32 bytes in the destination buffer.
- * \param dest destination
- * \param file_name file for that the digest should be calculated
- * \return zero on success, negative on errors
- */
- static int MD5File(char *dest, const char *file_name)
- {
- MD5_CTX context;
- FILE *input;
- unsigned char buffer[32768];
- unsigned char hash[16];
- unsigned int counter, size;
-
- struct stat stats;
-
- if (!dest || !file_name) {
- LM_ERR("invalid parameter value\n");
- return -1;
- }
- if (stat(file_name, &stats) != 0) {
- LM_ERR("could not stat file %s\n", file_name);
- return -1;
- }
- size = stats.st_size;
- MD5Init(&context);
- if((input = fopen(file_name, "rb")) == NULL) {
- LM_ERR("could not open file %s\n", file_name);
- return -1;
- }
- while(size) {
- counter = (size > sizeof(buffer)) ? sizeof(buffer) : size;
- if ((counter = fread(buffer, 1, counter, input)) <= 0) {
- fclose(input);
- return -1;
- }
- U_MD5Update(&context, buffer, counter);
- size -= counter;
- }
- fclose(input);
- U_MD5Final(hash, &context);
- string2hex(hash, 16, dest);
- LM_DBG("MD5 calculated: %.*s for file %s\n", MD5_LEN, dest, file_name);
- return 0;
- }
- static struct mi_root* mi_check_hash(struct mi_root* cmd, void* param )
- {
- struct mi_root* rpl_tree= NULL;
- struct mi_node* node= NULL;
- char tmp[MD5_LEN];
- memset(tmp, 0, MD5_LEN);
- if (!hash_file) {
- LM_INFO("no hash_file given, disable hash functionality\n");
- rpl_tree = init_mi_tree(404, "Functionality disabled\n", 23);
- } else {
- if (MD5File(tmp, hash_file) != 0) {
- LM_ERR("could not hash the config file");
- rpl_tree = init_mi_tree( 500, MI_INTERNAL_ERR_S, MI_INTERNAL_ERR_LEN );
- return rpl_tree;
- }
-
- if (strncmp(config_hash, tmp, MD5_LEN) == 0) {
- rpl_tree = init_mi_tree( 200, MI_OK_S, MI_OK_LEN );
- if(rpl_tree == NULL)
- return 0;
- node = addf_mi_node_child( &rpl_tree->node, 0, 0, 0, "The actual config file hash is identical to the stored one.\n");
- } else {
- rpl_tree = init_mi_tree( 400, "Error", 5 );
- if(rpl_tree == NULL)
- return 0;
- node = addf_mi_node_child( &rpl_tree->node, 0, 0, 0, "The actual config file hash is not identical to the stored one.\n");
- }
- if(node == NULL)
- goto error;
- }
-
- return rpl_tree;
- error:
- free_mi_tree(rpl_tree);
- return 0;
- }
- static int set_prob(struct sip_msg *bar, char *percent_par, char *foo)
- {
- *probability=(int)(long)percent_par;
- return 1;
- }
-
- static int reset_prob(struct sip_msg *bar, char *percent_par, char *foo)
- {
- *probability=initial_prob;
- return 1;
- }
- static int get_prob(struct sip_msg *bar, char *foo1, char *foo2)
- {
- return *probability;
- }
- static int rand_event(struct sip_msg *bar, char *foo1, char *foo2)
- {
- double tmp;
- /* most of the time this will be disabled completly. Tis will also fix the
- * problem with the corner cases if rand() returned zero or RAND_MAX */
- if ((*probability) == 0) return -1;
- if ((*probability) == 100) return 1;
- tmp = ((double) rand() / RAND_MAX);
- LM_DBG("generated random %f\n", tmp);
- if (tmp < ((double) (*probability) / 100)) {
- LM_DBG("return true\n");
- return 1;
- }
- else {
- LM_DBG("return false\n");
- return -1;
- }
- }
- static int pv_get_random_val(struct sip_msg *msg, pv_param_t *param,
- pv_value_t *res)
- {
- int n;
- int l = 0;
- char *ch;
- if(msg==NULL || res==NULL)
- return -1;
- n = rand();
- ch = int2str(n , &l);
- res->rs.s = ch;
- res->rs.len = l;
- res->ri = n;
- res->flags = PV_VAL_STR|PV_VAL_INT|PV_TYPE_INT;
- return 0;
- }
- static int m_sleep(struct sip_msg *msg, char *time, char *str2)
- {
- LM_DBG("sleep %lu seconds\n", (unsigned long)time);
- sleep((unsigned int)(unsigned long)time);
- return 1;
- }
- static int m_usleep(struct sip_msg *msg, char *time, char *str2)
- {
- LM_DBG("sleep %lu microseconds\n", (unsigned long)time);
- sleep_us((unsigned int)(unsigned long)time);
- return 1;
- }
- static int dbg_abort(struct sip_msg* msg, char* foo, char* bar)
- {
- LM_CRIT("abort called\n");
- abort();
- return 0;
- }
- static int dbg_pkg_status(struct sip_msg* msg, char* foo, char* bar)
- {
- pkg_status();
- return 1;
- }
- static int dbg_shm_status(struct sip_msg* msg, char* foo, char* bar)
- {
- shm_status();
- return 1;
- }
- static int dbg_pkg_summary(struct sip_msg* msg, char* foo, char* bar)
- {
- pkg_sums();
- return 1;
- }
- static int dbg_shm_summary(struct sip_msg* msg, char* foo, char* bar)
- {
- shm_sums();
- return 1;
- }
- int cfg_lock_helper(str *lkey, int mode)
- {
- unsigned int pos;
- pos = core_case_hash(lkey, 0, _cfg_lock_size);
- LM_DBG("cfg_lock mode %d on %u\n", mode, pos);
- if(mode==0)
- lock_set_get(_cfg_lock_set, pos);
- else
- lock_set_release(_cfg_lock_set, pos);
- return 1;
- }
- int cfg_lock_wrapper(struct sip_msg *msg, gparam_p key, int mode)
- {
- str s;
- if(fixup_get_svalue(msg, key, &s)!=0)
- {
- LM_ERR("cannot get first parameter\n");
- return -1;
- }
- return cfg_lock_helper(&s, mode);
- }
- static int cfg_lock(struct sip_msg *msg, char *key, char *s2)
- {
- if(_cfg_lock_set==NULL || key==NULL)
- return -1;
- return cfg_lock_wrapper(msg, (gparam_p)key, 0);
- }
- static int cfg_unlock(struct sip_msg *msg, char *key, char *s2)
- {
- if(_cfg_lock_set==NULL || key==NULL)
- return -1;
- return cfg_lock_wrapper(msg, (gparam_p)key, 1);
- }
- /*! Check if a route block exists - only request routes
- */
- static int w_check_route_exists(struct sip_msg *msg, char *route)
- {
- if (route_lookup(&main_rt, route)<0) {
- /* not found */
- return -1;
- }
- return 1;
- }
- /*! Run a request route block if it exists
- */
- static int w_route_exists(struct sip_msg *msg, char *route)
- {
- struct run_act_ctx ctx;
- int newroute, backup_rt, ret;
- newroute = route_lookup(&main_rt, route);
- if (newroute<0) {
- return -1;
- }
- backup_rt = get_route_type();
- set_route_type(REQUEST_ROUTE);
- init_run_actions_ctx(&ctx);
- ret = run_top_route(main_rt.rlist[newroute], msg, &ctx);
- set_route_type(backup_rt);
- return ret;
- }
- static int mod_init(void)
- {
- if(register_mi_mod(exports.name, mi_cmds)!=0)
- {
- LM_ERR("failed to register MI commands\n");
- return -1;
- }
- if (!hash_file) {
- LM_INFO("no hash_file given, disable hash functionality\n");
- } else {
- if (MD5File(config_hash, hash_file) != 0) {
- LM_ERR("could not hash the config file");
- return -1;
- }
- LM_DBG("config file hash is %.*s", MD5_LEN, config_hash);
- }
- if (initial_prob > 100) {
- LM_ERR("invalid probability <%d>\n", initial_prob);
- return -1;
- }
- LM_DBG("initial probability %d percent\n", initial_prob);
- probability=(int *) shm_malloc(sizeof(int));
- if (!probability) {
- LM_ERR("no shmem available\n");
- return -1;
- }
- *probability = initial_prob;
- gflags=(unsigned int *) shm_malloc(sizeof(unsigned int));
- if (!gflags) {
- LM_ERR(" no shmem available\n");
- return -1;
- }
- *gflags=initial_gflags;
- gflags_lock = lock_alloc();
- if (gflags_lock==0) {
- LM_ERR("cannot allocate gflgas lock\n");
- return -1;
- }
- if (lock_init(gflags_lock)==NULL) {
- LM_ERR("cannot initiate gflags lock\n");
- lock_dealloc(gflags_lock);
- return -1;
- }
- if(_cfg_lock_size>0 && _cfg_lock_size<=10)
- {
- _cfg_lock_size = 1<<_cfg_lock_size;
- _cfg_lock_set = lock_set_alloc(_cfg_lock_size);
- if(_cfg_lock_set==NULL || lock_set_init(_cfg_lock_set)==NULL)
- {
- LM_ERR("cannot initiate lock set\n");
- return -1;
- }
- }
- return 0;
- }
- static void mod_destroy(void)
- {
- if (probability)
- shm_free(probability);
- if (gflags)
- shm_free(gflags);
- if (gflags_lock) {
- lock_destroy(gflags_lock);
- lock_dealloc(gflags_lock);
- }
- if(_cfg_lock_set!=NULL)
- {
- lock_set_destroy(_cfg_lock_set);
- lock_set_dealloc(_cfg_lock_set);
- }
- }
- /**
- *
- */
- int cfgutils_lock(str *lkey)
- {
- return cfg_lock_helper(lkey, 0);
- }
- /**
- *
- */
- int cfgutils_unlock(str *lkey)
- {
- return cfg_lock_helper(lkey, 1);
- }
- static int fixup_core_hash(void **param, int param_no)
- {
- if (param_no == 1)
- return fixup_spve_null(param, 1);
- else if (param_no == 2)
- return fixup_spve_null(param, 1);
- else if (param_no == 3)
- return fixup_igp_null(param, 1);
- else
- return 0;
- }
- static int w_core_hash(struct sip_msg *msg, char *p1, char *p2, char *p3)
- {
- str s1, s2;
- int size;
- if (fixup_get_svalue(msg, (gparam_p) p1, &s1) != 0)
- {
- LM_ERR("invalid s1 paramerer\n");
- return -1;
- }
- if (fixup_get_svalue(msg, (gparam_p) p2, &s2) != 0)
- {
- LM_ERR("invalid s2 paramerer\n");
- return -1;
- }
- if (fixup_get_ivalue(msg, (gparam_p) p3, &size) != 0)
- {
- LM_ERR("invalid size paramerer\n");
- return -1;
- }
- if (size <= 0) size = 2;
- else size = 1 << size;
- /* Return value _MUST_ be > 0 */
- return core_hash(&s1, s2.len ? &s2 : NULL, size) + 1;
- }
- /**
- * @brief bind functions to CFGUTILS API structure
- */
- int bind_cfgutils(cfgutils_api_t *api)
- {
- if (!api) {
- ERR("Invalid parameter value\n");
- return -1;
- }
- api->mlock = cfgutils_lock;
- api->munlock = cfgutils_unlock;
- return 0;
- }
|