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 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
|
/*
* $Id$
*
* regex module - pcre operations
*
* Copyright (C) 2008 Iñaki Baz Castillo
*
* 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
*
* History:
* --------
* 2011-02-22 pcre_match_group() allows now pseudo-variable as group argument.
* 2009-01-14 initial version (Iñaki Baz Castillo).
*/
/*!
* \file
* \brief REGEX :: Perl-compatible regular expressions using PCRE library
* Copyright (C) 2008 Iñaki Baz Castillo
* \ingroup regex
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <pcre.h>
#include "../../sr_module.h"
#include "../../dprint.h"
#include "../../pt.h"
#include "../../mem/shm_mem.h"
#include "../../str.h"
#include "../../locking.h"
#include "../../mod_fix.h"
#include "../../lib/kmi/mi.h"
MODULE_VERSION
#define START 0
#define RELOAD 1
#define FILE_MAX_LINE 500 /*!< Max line size in the file */
#define MAX_GROUPS 20 /*!< Max number of groups */
#define GROUP_MAX_SIZE 8192 /*!< Max size of a group */
/*
* Locking variables
*/
gen_lock_t *reload_lock;
/*
* Module exported parameter variables
*/
static char *file;
static int max_groups = MAX_GROUPS;
static int group_max_size = GROUP_MAX_SIZE;
static int pcre_caseless = 0;
static int pcre_multiline = 0;
static int pcre_dotall = 0;
static int pcre_extended = 0;
/*
* Module internal parameter variables
*/
static pcre **pcres;
static pcre ***pcres_addr;
static int *num_pcres;
static int pcre_options = 0x00000000;
/*
* Module core functions
*/
static int mod_init(void);
static void destroy(void);
/*
* Module internal functions
*/
static int load_pcres(int);
static void free_shared_memory(void);
/*
* Script functions
*/
static int w_pcre_match(struct sip_msg* _msg, char* _s1, char* _s2);
static int w_pcre_match_group(struct sip_msg* _msg, char* _s1, char* _s2);
/*
* MI functions
*/
static struct mi_root* mi_pcres_reload(struct mi_root* cmd, void* param);
/*
* Exported functions
*/
static cmd_export_t cmds[] =
{
{ "pcre_match", (cmd_function)w_pcre_match, 2, fixup_spve_spve, 0,
REQUEST_ROUTE|FAILURE_ROUTE|ONREPLY_ROUTE|BRANCH_ROUTE|LOCAL_ROUTE },
{ "pcre_match_group", (cmd_function)w_pcre_match_group, 2, fixup_spve_spve, 0,
REQUEST_ROUTE|FAILURE_ROUTE|ONREPLY_ROUTE|BRANCH_ROUTE|LOCAL_ROUTE },
{ "pcre_match_group", (cmd_function)w_pcre_match_group, 1, fixup_spve_null, 0,
REQUEST_ROUTE|FAILURE_ROUTE|ONREPLY_ROUTE|BRANCH_ROUTE|LOCAL_ROUTE },
{ 0, 0, 0, 0, 0, 0 }
};
/*
* Exported parameters
*/
static param_export_t params[] = {
{"file", PARAM_STRING, &file },
{"max_groups", INT_PARAM, &max_groups },
{"group_max_size", INT_PARAM, &group_max_size },
{"pcre_caseless", INT_PARAM, &pcre_caseless },
{"pcre_multiline", INT_PARAM, &pcre_multiline },
{"pcre_dotall", INT_PARAM, &pcre_dotall },
{"pcre_extended", INT_PARAM, &pcre_extended },
{0, 0, 0}
};
/*
* Exported MI functions
*/
static mi_export_t mi_cmds[] = {
{ "regex_reload", mi_pcres_reload, MI_NO_INPUT_FLAG, 0, 0 },
{ 0, 0, 0, 0 ,0 }
};
/*
* Module interface
*/
struct module_exports exports = {
"regex", /*!< module name */
DEFAULT_DLFLAGS, /*!< dlopen flags */
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 */
(response_function) 0, /*!< response handling function */
destroy, /*!< destroy function */
0 /*!< per-child init function */
};
/*! \brief
* Init module function
*/
static int mod_init(void)
{
if(register_mi_mod(exports.name, mi_cmds)!=0)
{
LM_ERR("failed to register MI commands\n");
return -1;
}
/* Group matching feature */
if (file == NULL) {
LM_NOTICE("'file' parameter is not set, group matching disabled\n");
} else {
/* Create and init the lock */
reload_lock = lock_alloc();
if (reload_lock == NULL) {
LM_ERR("cannot allocate reload_lock\n");
goto err;
}
if (lock_init(reload_lock) == NULL) {
LM_ERR("cannot init the reload_lock\n");
lock_dealloc(reload_lock);
goto err;
}
/* PCRE options */
if (pcre_caseless != 0) {
LM_DBG("PCRE CASELESS enabled\n");
pcre_options = pcre_options | PCRE_CASELESS;
}
if (pcre_multiline != 0) {
LM_DBG("PCRE MULTILINE enabled\n");
pcre_options = pcre_options | PCRE_MULTILINE;
}
if (pcre_dotall != 0) {
LM_DBG("PCRE DOTALL enabled\n");
pcre_options = pcre_options | PCRE_DOTALL;
}
if (pcre_extended != 0) {
LM_DBG("PCRE EXTENDED enabled\n");
pcre_options = pcre_options | PCRE_EXTENDED;
}
LM_DBG("PCRE options: %i\n", pcre_options);
/* Pointer to pcres */
if ((pcres_addr = shm_malloc(sizeof(pcre **))) == 0) {
LM_ERR("no memory for pcres_addr\n");
goto err;
}
/* Integer containing the number of pcres */
if ((num_pcres = shm_malloc(sizeof(int))) == 0) {
LM_ERR("no memory for num_pcres\n");
goto err;
}
/* Load the pcres */
LM_DBG("loading pcres...\n");
if (load_pcres(START)) {
LM_ERR("failed to load pcres\n");
goto err;
}
}
return 0;
err:
free_shared_memory();
return -1;
}
static void destroy(void)
{
free_shared_memory();
}
/*! \brief Convert the file content into regular expresions and store them in pcres */
static int load_pcres(int action)
{
int i, j;
FILE *f;
char line[FILE_MAX_LINE];
char **patterns = NULL;
pcre *pcre_tmp = NULL;
size_t pcre_size;
int pcre_rc;
const char *pcre_error;
int pcre_erroffset;
int num_pcres_tmp = 0;
pcre **pcres_tmp = NULL;
/* Get the lock */
lock_get(reload_lock);
if (!(f = fopen(file, "r"))) {
LM_ERR("could not open file '%s'\n", file);
goto err;
}
/* Array containing each pattern in the file */
if ((patterns = pkg_malloc(sizeof(char*) * max_groups)) == 0) {
LM_ERR("no more memory for patterns\n");
fclose(f);
goto err;
}
for (i=0; i<max_groups; i++) {
patterns[i] = NULL;
}
for (i=0; i<max_groups; i++) {
if ((patterns[i] = pkg_malloc(sizeof(char) * group_max_size)) == 0) {
LM_ERR("no more memory for patterns[%d]\n", i);
fclose(f);
goto err;
}
memset(patterns[i], '\0', group_max_size);
}
/* Read the file and extract the patterns */
memset(line, '\0', FILE_MAX_LINE);
i = -1;
while (fgets(line, FILE_MAX_LINE, f) != NULL) {
/* Ignore comments and lines starting by space, tab, CR, LF */
if(isspace(line[0]) || line[0]=='#') {
memset(line, '\0', FILE_MAX_LINE);
continue;
}
/* First group */
if (i == -1 && line[0] != '[') {
LM_ERR("first group must be initialized with [0] before any regular expression\n");
fclose(f);
goto err;
}
/* New group */
if (line[0] == '[') {
i++;
/* Check if there are more patterns than the max value */
if (i >= max_groups) {
LM_ERR("max patterns exceeded\n");
fclose(f);
goto err;
}
/* Start the regular expression with '(' */
patterns[i][0] = '(';
memset(line, '\0', FILE_MAX_LINE);
continue;
}
/* Check if the patter size is too big (aprox) */
if (strlen(patterns[i]) + strlen(line) >= group_max_size - 2) {
LM_ERR("pattern max file exceeded\n");
fclose(f);
goto err;
}
/* Append ')' at the end of the line */
if (line[strlen(line) - 1] == '\n') {
line[strlen(line)] = line[strlen(line) - 1];
line[strlen(line) - 2] = ')';
} else {
/* This is the last char in the file and it's not \n */
line[strlen(line)] = ')';
}
/* Append '(' at the beginning of the line */
memcpy(patterns[i]+strlen(patterns[i]), "(", 1);
/* Append the line to the current pattern */
memcpy(patterns[i]+strlen(patterns[i]), line, strlen(line));
memset(line, '\0', FILE_MAX_LINE);
}
num_pcres_tmp = i + 1;
fclose(f);
/* Fix the patterns */
for (i=0; i < num_pcres_tmp; i++) {
/* Convert empty groups in unmatcheable regular expression ^$ */
if (strlen(patterns[i]) == 1) {
patterns[i][0] = '^';
patterns[i][1] = '$';
patterns[i][2] = '\0';
continue;
}
/* Delete possible '\n' at the end of the pattern */
if (patterns[i][strlen(patterns[i])-1] == '\n') {
patterns[i][strlen(patterns[i])-1] = '\0';
}
/* Replace '\n' with '|' (except at the end of the pattern) */
for (j=0; j < strlen(patterns[i]); j++) {
if (patterns[i][j] == '\n' && j != strlen(patterns[i])-1) {
patterns[i][j] = '|';
}
}
/* Add ')' at the end of the pattern */
patterns[i][strlen(patterns[i])] = ')';
}
/* Log the group patterns */
LM_INFO("num groups = %d\n", num_pcres_tmp);
for (i=0; i < num_pcres_tmp; i++) {
LM_INFO("<group[%d]>%s</group[%d]> (size = %i)\n", i, patterns[i], i, (int)strlen(patterns[i]));
}
/* Temporal pointer of pcres */
if ((pcres_tmp = pkg_malloc(sizeof(pcre *) * num_pcres_tmp)) == 0) {
LM_ERR("no more memory for pcres_tmp\n");
goto err;
}
for (i=0; i<num_pcres_tmp; i++) {
pcres_tmp[i] = NULL;
}
/* Compile the patters */
for (i=0; i<num_pcres_tmp; i++) {
pcre_tmp = pcre_compile(patterns[i], pcre_options, &pcre_error, &pcre_erroffset, NULL);
if (pcre_tmp == NULL) {
LM_ERR("pcre_tmp compilation of '%s' failed at offset %d: %s\n", patterns[i], pcre_erroffset, pcre_error);
goto err;
}
pcre_rc = pcre_fullinfo(pcre_tmp, NULL, PCRE_INFO_SIZE, &pcre_size);
if (pcre_rc) {
printf("pcre_fullinfo on compiled pattern[%i] yielded error: %d\n", i, pcre_rc);
goto err;
}
if ((pcres_tmp[i] = pkg_malloc(pcre_size)) == 0) {
LM_ERR("no more memory for pcres_tmp[%i]\n", i);
goto err;
}
memcpy(pcres_tmp[i], pcre_tmp, pcre_size);
pcre_free(pcre_tmp);
pkg_free(patterns[i]);
}
/* Copy to shared memory */
if (action == RELOAD) {
for(i=0; i<*num_pcres; i++) { /* Use the previous num_pcres value */
if (pcres[i]) {
shm_free(pcres[i]);
}
}
shm_free(pcres);
}
if ((pcres = shm_malloc(sizeof(pcre *) * num_pcres_tmp)) == 0) {
LM_ERR("no more memory for pcres\n");
goto err;
}
for (i=0; i<num_pcres_tmp; i++) {
pcres[i] = NULL;
}
for (i=0; i<num_pcres_tmp; i++) {
pcre_rc = pcre_fullinfo(pcres_tmp[i], NULL, PCRE_INFO_SIZE, &pcre_size);
if ((pcres[i] = shm_malloc(pcre_size)) == 0) {
LM_ERR("no more memory for pcres[%i]\n", i);
goto err;
}
memcpy(pcres[i], pcres_tmp[i], pcre_size);
}
*num_pcres = num_pcres_tmp;
*pcres_addr = pcres;
/* Free used memory */
for (i=0; i<num_pcres_tmp; i++) {
pkg_free(pcres_tmp[i]);
}
pkg_free(pcres_tmp);
pkg_free(patterns);
lock_release(reload_lock);
return 0;
err:
if (patterns) {
for(i=0; i<max_groups; i++) {
if (patterns[i]) {
pkg_free(patterns[i]);
}
}
pkg_free(patterns);
}
if (pcres_tmp) {
for (i=0; i<num_pcres_tmp; i++) {
if (pcres_tmp[i]) {
pkg_free(pcres_tmp[i]);
}
}
pkg_free(pcres_tmp);
}
if (reload_lock) {
lock_release(reload_lock);
}
if (action == START) {
free_shared_memory();
}
return -1;
}
static void free_shared_memory(void)
{
int i;
if (pcres) {
for(i=0; i<*num_pcres; i++) {
if (pcres[i]) {
shm_free(pcres[i]);
}
}
shm_free(pcres);
pcres = NULL;
}
if (num_pcres) {
shm_free(num_pcres);
num_pcres = NULL;
}
if (pcres_addr) {
shm_free(pcres_addr);
pcres_addr = NULL;
}
if (reload_lock) {
lock_destroy(reload_lock);
lock_dealloc(reload_lock);
reload_lock = NULL;
}
}
/*
* Script functions
*/
/*! \brief Return true if the argument matches the regular expression parameter */
static int w_pcre_match(struct sip_msg* _msg, char* _s1, char* _s2)
{
str string;
str regex;
pcre *pcre_re = NULL;
int pcre_rc;
const char *pcre_error;
int pcre_erroffset;
if (_s1 == NULL) {
LM_ERR("bad parameters\n");
return -2;
}
if (_s2 == NULL) {
LM_ERR("bad parameters\n");
return -2;
}
if (fixup_get_svalue(_msg, (gparam_p)_s1, &string))
{
LM_ERR("cannot print the format for string\n");
return -3;
}
if (fixup_get_svalue(_msg, (gparam_p)_s2, ®ex))
{
LM_ERR("cannot print the format for regex\n");
return -3;
}
pcre_re = pcre_compile(regex.s, pcre_options, &pcre_error, &pcre_erroffset, NULL);
if (pcre_re == NULL) {
LM_ERR("pcre_re compilation of '%s' failed at offset %d: %s\n", regex.s, pcre_erroffset, pcre_error);
return -4;
}
pcre_rc = pcre_exec(
pcre_re, /* the compiled pattern */
NULL, /* no extra data - we didn't study the pattern */
string.s, /* the matching string */
(int)(string.len), /* the length of the subject */
0, /* start at offset 0 in the string */
0, /* default options */
NULL, /* output vector for substring information */
0); /* number of elements in the output vector */
/* Matching failed: handle error cases */
if (pcre_rc < 0) {
switch(pcre_rc) {
case PCRE_ERROR_NOMATCH:
LM_DBG("'%s' doesn't match '%s'\n", string.s, regex.s);
break;
default:
LM_DBG("matching error '%d'\n", pcre_rc);
break;
}
pcre_free(pcre_re);
return -1;
}
pcre_free(pcre_re);
LM_DBG("'%s' matches '%s'\n", string.s, regex.s);
return 1;
}
/*! \brief Return true if the string argument matches the pattern group parameter */
static int w_pcre_match_group(struct sip_msg* _msg, char* _s1, char* _s2)
{
str string, group;
unsigned int num_pcre;
int pcre_rc;
/* Check if group matching feature is enabled */
if (file == NULL) {
LM_ERR("group matching is disabled\n");
return -2;
}
if (_s1 == NULL) {
LM_ERR("bad parameters\n");
return -3;
}
if (_s2 == NULL) {
num_pcre = 0;
} else {
if (fixup_get_svalue(_msg, (gparam_p)_s2, &group))
{
LM_ERR("cannot print the format for second param\n");
return -5;
}
str2int(&group, &num_pcre);
}
if (num_pcre >= *num_pcres) {
LM_ERR("invalid pcre index '%i', there are %i pcres\n", num_pcre, *num_pcres);
return -4;
}
if (fixup_get_svalue(_msg, (gparam_p)_s1, &string))
{
LM_ERR("cannot print the format for first param\n");
return -5;
}
lock_get(reload_lock);
pcre_rc = pcre_exec(
(*pcres_addr)[num_pcre], /* the compiled pattern */
NULL, /* no extra data - we didn't study the pattern */
string.s, /* the matching string */
(int)(string.len), /* the length of the subject */
0, /* start at offset 0 in the string */
0, /* default options */
NULL, /* output vector for substring information */
0); /* number of elements in the output vector */
lock_release(reload_lock);
/* Matching failed: handle error cases */
if (pcre_rc < 0) {
switch(pcre_rc) {
case PCRE_ERROR_NOMATCH:
LM_DBG("'%s' doesn't match pcres[%i]\n", string.s, num_pcre);
break;
default:
LM_DBG("matching error '%d'\n", pcre_rc);
break;
}
return -1;
}
else {
LM_DBG("'%s' matches pcres[%i]\n", string.s, num_pcre);
return 1;
}
}
/*
* MI functions
*/
/*! \brief Reload pcres by reading the file again */
static struct mi_root* mi_pcres_reload(struct mi_root* cmd, void* param)
{
/* Check if group matching feature is enabled */
if (file == NULL) {
LM_NOTICE("'file' parameter is not set, group matching disabled\n");
return init_mi_tree(403, MI_SSTR("Group matching not enabled"));
}
LM_INFO("reloading pcres...\n");
if (load_pcres(RELOAD)) {
LM_ERR("failed to reload pcres\n");
return init_mi_tree(500, MI_INTERNAL_ERR_S, MI_INTERNAL_ERR_LEN);
}
LM_INFO("reload success\n");
return init_mi_tree(200, MI_OK_S, MI_OK_LEN);
}
|