1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
|
/*
* $Id$
*
* Perl module for Kamailio
*
* Copyright (C) 2006 Collax GmbH
* (Bastian Friedrich <bastian.friedrich@collax.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
*
*/
#define DEFAULTMODULE "Kamailio"
#define MAX_LIB_PATHS 10
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
#include <sys/time.h>
#include "../../sr_module.h"
#include "../../mem/mem.h"
#include "../../mem/shm_mem.h"
#include "../../lib/kmi/mi.h"
#include "../../modules/rr/api.h"
#include "../../modules/sl/sl.h"
#include "../../rpc.h"
#include "../../rpc_lookup.h"
/* lock_ops.h defines union semun, perl does not need to redefine it */
#ifdef USE_SYSV_SEM
# define HAS_UNION_SEMUN
#endif
#include "perlfunc.h"
#include "app_perl_mod.h"
/* #include "perlxsi.h" function is in here... */
MODULE_VERSION
/* Full path to the script including executed functions */
char *filename = NULL;
/* Path to an arbitrary directory where the Kamailio Perl modules are
* installed */
char *modpath = NULL;
/* Function to be called before perl interpreter instance is destroyed
* when attempting reinit */
static char *perl_destroy_func = NULL;
/* Allow unsafe module functions - functions with fixups. This will create
* memory leaks, the variable thus is not documented! */
int unsafemodfnc = 0;
/* number of execution cycles after which perl interpreter is reset */
int _ap_reset_cycles_init = 0;
int _ap_exec_cycles = 0;
int *_ap_reset_cycles = 0;
/* Reference to the running Perl interpreter instance */
PerlInterpreter *my_perl = NULL;
/** SL API structure */
sl_api_t slb;
static int ap_init_rpc(void);
/*
* Module destroy function prototype
*/
static void destroy(void);
/* environment pointer needed to init perl interpreter */
extern char **environ;
/*
* Module initialization function prototype
*/
static int mod_init(void);
/*
* Reload perl interpreter - reload perl script. Forward declaration.
*/
struct mi_root* perl_mi_reload(struct mi_root *cmd_tree, void *param);
/*
* Exported functions
*/
static cmd_export_t cmds[] = {
{ "perl_exec_simple", (cmd_function)perl_exec_simple1, 1, NULL, 0,
REQUEST_ROUTE | FAILURE_ROUTE
| ONREPLY_ROUTE | BRANCH_ROUTE },
{ "perl_exec_simple", (cmd_function)perl_exec_simple2, 2, NULL, 0,
REQUEST_ROUTE | FAILURE_ROUTE
| ONREPLY_ROUTE | BRANCH_ROUTE },
{ "perl_exec", (cmd_function)perl_exec1, 1, NULL, 0,
REQUEST_ROUTE | FAILURE_ROUTE
| ONREPLY_ROUTE | BRANCH_ROUTE },
{ "perl_exec", (cmd_function)perl_exec2, 2, NULL, 0,
REQUEST_ROUTE | FAILURE_ROUTE
| ONREPLY_ROUTE | BRANCH_ROUTE },
{ 0, 0, 0, 0, 0, 0 }
};
/*
* Exported parameters
*/
static param_export_t params[] = {
{"filename", PARAM_STRING, &filename},
{"modpath", PARAM_STRING, &modpath},
{"unsafemodfnc", INT_PARAM, &unsafemodfnc},
{"reset_cycles", INT_PARAM, &_ap_reset_cycles_init},
{"perl_destroy_func", PARAM_STRING, &perl_destroy_func},
{ 0, 0, 0 }
};
/*
* Exported MI functions
*/
static mi_export_t mi_cmds[] = {
/* FIXME This does not yet work...
{ "perl_reload", perl_mi_reload, MI_NO_INPUT_FLAG, 0, 0 },*/
{ 0, 0, 0, 0, 0}
};
/*
* Module info
*/
#ifndef RTLD_NOW
/* for openbsd */
#define RTLD_NOW DL_LAZY
#endif
#ifndef RTLD_GLOBAL
/* Unsupported! */
#define RTLD_GLOBAL 0
#endif
/*
* Module interface
*/
struct module_exports exports = {
"app_perl",
RTLD_NOW | RTLD_GLOBAL,
cmds, /* Exported functions */
params, /* Exported parameters */
0, /* exported statistics */
mi_cmds, /* exported MI functions */
0, /* exported pseudo-variables */
0, /* extra processes */
mod_init, /* module initialization function */
0, /* response function */
destroy, /* destroy function */
0 /* child initialization function */
};
EXTERN_C void boot_DynaLoader (pTHX_ CV* cv);
EXTERN_C void boot_Kamailio(pTHX_ CV* cv);
/*
* This is output by perl -MExtUtils::Embed -e xsinit
* and complemented by the Kamailio bootstrapping
*/
EXTERN_C void xs_init(pTHX) {
char *file = __FILE__;
dXSUB_SYS;
newXS("Kamailio::bootstrap", boot_Kamailio, file);
newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
}
/*
* Initialize the perl interpreter.
* This might later be used to reinit the module.
*/
PerlInterpreter *parser_init(void) {
int argc = 0;
char *argv[MAX_LIB_PATHS + 3];
PerlInterpreter *new_perl = NULL;
char *entry, *stop, *end;
int modpathset_start = 0;
int modpathset_end = 0;
int i;
int pr;
new_perl = perl_alloc();
if (!new_perl) {
LM_ERR("could not allocate perl.\n");
return NULL;
}
perl_construct(new_perl);
argv[0] = ""; argc++; /* First param _needs_ to be empty */
/* Possible Include path extension by modparam */
if (modpath && (strlen(modpath) > 0)) {
modpathset_start = argc;
entry = modpath;
stop = modpath + strlen(modpath);
for (end = modpath; end <= stop; end++) {
if ( (end[0] == ':') || (end[0] == '\0') ) {
end[0] = '\0';
if (argc > MAX_LIB_PATHS) {
LM_ERR("too many lib paths, skipping lib path: '%s'\n", entry);
} else {
LM_INFO("setting lib path: '%s'\n", entry);
argv[argc] = pkg_malloc(strlen(entry)+20);
sprintf(argv[argc], "-I%s", entry);
modpathset_end = argc;
argc++;
}
entry = end + 1;
}
}
}
argv[argc] = "-M"DEFAULTMODULE; argc++; /* Always "use" Kamailio.pm */
argv[argc] = filename; /* The script itself */
argc++;
pr=perl_parse(new_perl, xs_init, argc, argv, NULL);
if (pr) {
LM_ERR("failed to load perl file \"%s\" with code %d.\n", argv[argc-1], pr);
if (modpathset_start) {
for (i = modpathset_start; i <= modpathset_end; i++) {
pkg_free(argv[i]);
}
}
return NULL;
} else {
LM_INFO("successfully loaded perl file \"%s\"\n", argv[argc-1]);
}
if (modpathset_start) {
for (i = modpathset_start; i <= modpathset_end; i++) {
pkg_free(argv[i]);
}
}
perl_run(new_perl);
return new_perl;
}
/*
*
*/
int unload_perl(PerlInterpreter *p) {
perl_destruct(p);
perl_free(p);
return 0;
}
/*
* reload function.
* Reinitializes the interpreter. Works, but execution for _all_
* children is difficult.
*/
int perl_reload(void)
{
PerlInterpreter *new_perl;
new_perl = parser_init();
if (new_perl) {
unload_perl(my_perl);
my_perl = new_perl;
#ifdef PERL_EXIT_DESTRUCT_END
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
#else
#warning Perl 5.8.x should be used. Please upgrade.
#warning This binary will be unsupported.
PL_exit_flags |= PERL_EXIT_EXPECTED;
#endif
return 0;
} else {
return -1;
}
}
/*
* Reinit through fifo.
* Currently does not seem to work :((
*/
struct mi_root* perl_mi_reload(struct mi_root *cmd_tree, void *param)
{
if (perl_reload()<0) {
return init_mi_tree( 500, "Perl reload failed", 18);
} else {
return init_mi_tree( 200, MI_OK_S, MI_OK_LEN);
}
}
/*
* mod_init
* Called by kamailio at init time
*/
static int mod_init(void) {
int argc = 1;
char *argt[] = { MOD_NAME, NULL };
char **argv;
struct timeval t1;
struct timeval t2;
if(register_mi_mod(exports.name, mi_cmds)!=0)
{
LM_ERR("failed to register MI commands\n");
return -1;
}
if(ap_init_rpc()<0)
{
LM_ERR("failed to register RPC commands\n");
return -1;
}
if (!filename) {
LM_ERR("insufficient module parameters. Module not loaded.\n");
return -1;
}
/* bind the SL API */
if (sl_load_api(&slb)!=0) {
LM_ERR("cannot bind to SL API\n");
return -1;
}
_ap_reset_cycles = shm_malloc(sizeof(int));
if(_ap_reset_cycles == NULL) {
LM_ERR("no more shared memory\n");
return -1;
}
*_ap_reset_cycles = _ap_reset_cycles_init;
argv = argt;
PERL_SYS_INIT3(&argc, &argv, &environ);
gettimeofday(&t1, NULL);
my_perl = parser_init();
gettimeofday(&t2, NULL);
if (my_perl==NULL)
goto error;
LM_INFO("perl interpreter has been initialized (%d.%06d => %d.%06d)\n",
(int)t1.tv_sec, (int)t1.tv_usec,
(int)t2.tv_sec, (int)t2.tv_usec);
#ifdef PERL_EXIT_DESTRUCT_END
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
#else
PL_exit_flags |= PERL_EXIT_EXPECTED;
#endif
return 0;
error:
if(_ap_reset_cycles!=NULL)
shm_free(_ap_reset_cycles);
_ap_reset_cycles = NULL;
return -1;
}
/*
* destroy
* called by kamailio at exit time
*/
static void destroy(void)
{
if(_ap_reset_cycles!=NULL)
shm_free(_ap_reset_cycles);
_ap_reset_cycles = NULL;
if(my_perl==NULL)
return;
unload_perl(my_perl);
PERL_SYS_TERM();
my_perl = NULL;
}
/**
* count executions and rest interpreter
*
*/
int app_perl_reset_interpreter(void)
{
struct timeval t1;
struct timeval t2;
char *args[] = { NULL };
if(*_ap_reset_cycles==0)
return 0;
_ap_exec_cycles++;
LM_DBG("perl interpreter exec cycle [%d/%d]\n",
_ap_exec_cycles, *_ap_reset_cycles);
if(_ap_exec_cycles<=*_ap_reset_cycles)
return 0;
if(perl_destroy_func)
call_argv(perl_destroy_func, G_DISCARD | G_NOARGS, args);
gettimeofday(&t1, NULL);
if (perl_reload()<0) {
LM_ERR("perl interpreter cannot be reset [%d/%d]\n",
_ap_exec_cycles, *_ap_reset_cycles);
return -1;
}
gettimeofday(&t2, NULL);
LM_INFO("perl interpreter has been reset [%d/%d] (%d.%06d => %d.%06d)\n",
_ap_exec_cycles, *_ap_reset_cycles,
(int)t1.tv_sec, (int)t1.tv_usec,
(int)t2.tv_sec, (int)t2.tv_usec);
_ap_exec_cycles = 0;
return 0;
}
/*** RPC implementation ***/
static const char* app_perl_rpc_set_reset_cycles_doc[3] = {
"Set the value for reset_cycles",
"Has one parmeter with int value",
0
};
/*
* RPC command to set the value for reset_cycles
*/
static void app_perl_rpc_set_reset_cycles(rpc_t* rpc, void* ctx)
{
int rsv;
if(rpc->scan(ctx, "d", &rsv)<1)
{
rpc->fault(ctx, 500, "Invalid Parameters");
return;
}
if(rsv<=0)
rsv = 0;
LM_DBG("new reset cycle value is %d\n", rsv);
*_ap_reset_cycles = rsv;
return;
}
static const char* app_perl_rpc_get_reset_cycles_doc[2] = {
"Get the value for reset_cycles",
0
};
/*
* RPC command to set the value for reset_cycles
*/
static void app_perl_rpc_get_reset_cycles(rpc_t* rpc, void* ctx)
{
int rsv;
void* th;
rsv = *_ap_reset_cycles;
/* add entry node */
if (rpc->add(ctx, "{", &th) < 0)
{
rpc->fault(ctx, 500, "Internal error root reply");
return;
}
if(rpc->struct_add(th, "d", "reset_cycles", rsv)<0)
{
rpc->fault(ctx, 500, "Internal error adding reset cycles");
return;
}
LM_DBG("reset cycle value is %d\n", rsv);
return;
}
rpc_export_t app_perl_rpc_cmds[] = {
{"app_perl.set_reset_cycles", app_perl_rpc_set_reset_cycles,
app_perl_rpc_set_reset_cycles_doc, 0},
{"app_perl.get_reset_cycles", app_perl_rpc_get_reset_cycles,
app_perl_rpc_get_reset_cycles_doc, 0},
{0, 0, 0, 0}
};
/**
* register RPC commands
*/
static int ap_init_rpc(void)
{
if (rpc_register_array(app_perl_rpc_cmds)!=0)
{
LM_ERR("failed to register RPC commands\n");
return -1;
}
return 0;
}
|