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 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752
|
/*
* $Id: permissions.c,v 1.10 2006/06/28 09:35:11 bogdan_iancu Exp $
*
* PERMISSIONS module
*
* Copyright (C) 2003 Mikls Tirpk (mtirpak@sztaki.hu)
* Copyright (C) 2003 iptel.org
* Copyright (C) 2003 Juha Heinanen (jh@tutpro.com)
*
* This file is part of openser, a free SIP server.
*
* openser 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
*
* openser 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
*
*/
#include <stdio.h>
#include "permissions.h"
#include "parse_config.h"
#include "trusted.h"
#include "hash.h"
#include "../../mem/mem.h"
#include "../../parser/parse_from.h"
#include "../../parser/parse_uri.h"
#include "../../parser/parse_refer_to.h"
#include "../../parser/contact/parse_contact.h"
#include "../../str.h"
#include "../../dset.h"
#include "../../globals.h"
MODULE_VERSION
static rule_file_t allow[MAX_RULE_FILES]; /* Parsed allow files */
static rule_file_t deny[MAX_RULE_FILES]; /* Parsed deny files */
static int rules_num; /* Number of parsed allow/deny files */
/* Module parameter variables */
static char* default_allow_file = DEFAULT_ALLOW_FILE;
static char* default_deny_file = DEFAULT_DENY_FILE;
static char* allow_suffix = ".allow";
static char* deny_suffix = ".deny";
/* for allow_trusted function */
char* db_url = 0; /* Don't connect to the database by default */
int db_mode = DISABLE_CACHE; /* Database usage mode: 0=no cache, 1=cache */
char* trusted_table = "trusted"; /* Name of trusted table */
char* source_col = "src_ip"; /* Name of source address column */
char* proto_col = "proto"; /* Name of protocol column */
char* from_col = "from_pattern"; /* Name of from pattern column */
char* tag_col = "tag"; /* Name of tag column */
char* tag_avp_param = 0; /* Peer tag AVP spec */
/*
* By default we check all branches
*/
static int check_all_branches = 1;
/*
* Convert the name of the files into table index
*/
static int load_fixup(void** param, int param_no);
/*
* Convert the name of the file into table index, this
* function takes just one name, appends .allow and .deny
* to and and the rest is same as in load_fixup
*/
static int single_fixup(void** param, int param_no);
static int allow_routing_0(struct sip_msg* msg, char* str1, char* str2);
static int allow_routing_1(struct sip_msg* msg, char* basename, char* str2);
static int allow_routing_2(struct sip_msg* msg, char* allow_file, char* deny_file);
static int allow_register_1(struct sip_msg* msg, char* basename, char* s);
static int allow_register_2(struct sip_msg* msg, char* allow_file, char* deny_file);
static int allow_refer_to_1(struct sip_msg* msg, char* basename, char* s);
static int allow_refer_to_2(struct sip_msg* msg, char* allow_file, char* deny_file);
static int mod_init(void);
static void mod_exit(void);
static int child_init(int rank);
/* Exported functions */
static cmd_export_t cmds[] = {
{"allow_routing", allow_routing_0, 0, 0,
REQUEST_ROUTE | FAILURE_ROUTE},
{"allow_routing", allow_routing_1, 1, single_fixup,
REQUEST_ROUTE | FAILURE_ROUTE},
{"allow_routing", allow_routing_2, 2, load_fixup,
REQUEST_ROUTE | FAILURE_ROUTE},
{"allow_register", allow_register_1, 1, single_fixup,
REQUEST_ROUTE | FAILURE_ROUTE},
{"allow_register", allow_register_2, 2, load_fixup,
REQUEST_ROUTE | FAILURE_ROUTE},
{"allow_trusted", allow_trusted, 0, 0,
REQUEST_ROUTE | FAILURE_ROUTE},
{"allow_refer_to", allow_refer_to_1, 1, single_fixup,
REQUEST_ROUTE | FAILURE_ROUTE},
{"allow_refer_to", allow_refer_to_2, 2, load_fixup,
REQUEST_ROUTE | FAILURE_ROUTE},
{0, 0, 0, 0, 0}
};
/* Exported parameters */
static param_export_t params[] = {
{"default_allow_file", STR_PARAM, &default_allow_file},
{"default_deny_file", STR_PARAM, &default_deny_file },
{"check_all_branches", INT_PARAM, &check_all_branches},
{"allow_suffix", STR_PARAM, &allow_suffix },
{"deny_suffix", STR_PARAM, &deny_suffix },
{"db_url", STR_PARAM, &db_url },
{"db_mode", INT_PARAM, &db_mode },
{"trusted_table", STR_PARAM, &trusted_table },
{"source_col", STR_PARAM, &source_col },
{"proto_col", STR_PARAM, &proto_col },
{"from_col", STR_PARAM, &from_col },
{"tag_col", STR_PARAM, &tag_col },
{"peer_tag_avp", STR_PARAM, &tag_avp_param },
{0, 0, 0}
};
/* Module interface */
struct module_exports exports = {
"permissions",
cmds, /* Exported functions */
params, /* Exported parameters */
0, /* exported statistics */
mod_init, /* module initialization function */
0, /* response function */
mod_exit, /* destroy function */
child_init /* child initialization function */
};
/*
* Extract path (the beginning of the string
* up to the last / character
* Returns length of the path
*/
static int get_path(char* pathname)
{
char* c;
if (!pathname) return 0;
c = strrchr(pathname, '/');
if (!c) return 0;
return c - pathname + 1;
}
/*
* Prepend path if necessary
*/
static char* get_pathname(char* name)
{
char* buffer;
int path_len, name_len;
if (!name) return 0;
name_len = strlen(name);
if (strchr(name, '/')) {
buffer = (char*)pkg_malloc(name_len + 1);
if (!buffer) goto err;
strcpy(buffer, name);
return buffer;
} else {
path_len = get_path(cfg_file);
buffer = (char*)pkg_malloc(path_len + name_len + 1);
if (!buffer) goto err;
memcpy(buffer, cfg_file, path_len);
memcpy(buffer + path_len, name, name_len);
buffer[path_len + name_len] = '\0';
return buffer;
}
err:
LOG(L_ERR, "get_pathname(): No memory left\n");
return 0;
}
/*
* If the file pathname has been parsed already then the
* function returns its index in the tables, otherwise it
* returns -1 to indicate that the file needs to be read
* and parsed yet
*/
static int find_index(rule_file_t* array, char* pathname)
{
int i;
for(i = 0; i < rules_num; i++) {
if (!strcmp(pathname, array[i].filename)) return i;
}
return -1;
}
/*
* Return URI without all the bells and whistles, that means only
* sip:username@domain, resulting buffer is statically allocated and
* zero terminated
*/
static char* get_plain_uri(const str* uri)
{
static char buffer[EXPRESSION_LENGTH + 1];
struct sip_uri puri;
int len;
if (!uri) return 0;
if (parse_uri(uri->s, uri->len, &puri) < 0) {
LOG(L_ERR, "get_plain_uri(): Error while parsing URI\n");
return 0;
}
if (puri.user.len) {
len = puri.user.len + puri.host.len + 5;
} else {
len = puri.host.len + 4;
}
if (len > EXPRESSION_LENGTH) {
LOG(L_ERR, "allow_register(): (module permissions) Request-URI is too long: %d chars\n", len);
return 0;
}
strcpy(buffer, "sip:");
if (puri.user.len) {
memcpy(buffer + 4, puri.user.s, puri.user.len);
buffer[puri.user.len + 4] = '@';
memcpy(buffer + puri.user.len + 5, puri.host.s, puri.host.len);
} else {
memcpy(buffer + 4, puri.host.s, puri.host.len);
}
buffer[len] = '\0';
return buffer;
}
/*
* determines the permission of the call
* return values:
* -1: deny
* 1: allow
*/
static int check_routing(struct sip_msg* msg, int idx)
{
struct hdr_field *from;
int len, q;
static char from_str[EXPRESSION_LENGTH+1];
static char ruri_str[EXPRESSION_LENGTH+1];
char* uri_str;
str branch;
int br_idx;
/* turn off control, allow any routing */
if ((!allow[idx].rules) && (!deny[idx].rules)) {
DBG("check_routing(): No rules => allow any routing\n");
return 1;
}
/* looking for FROM HF */
if ((!msg->from) && (parse_headers(msg, HDR_FROM_F, 0) == -1)) {
LOG(L_ERR, "check_routing(): Error while parsing message\n");
return -1;
}
if (!msg->from) {
LOG(L_ERR, "check_routing(): FROM header field not found\n");
return -1;
}
/* we must call parse_from_header explicitly */
if ((!(msg->from)->parsed) && (parse_from_header(msg) < 0)) {
LOG(L_ERR, "check_routing(): Error while parsing From body\n");
return -1;
}
from = msg->from;
len = ((struct to_body*)from->parsed)->uri.len;
if (len > EXPRESSION_LENGTH) {
LOG(L_ERR, "check_routing(): From header field is too long: %d chars\n", len);
return -1;
}
strncpy(from_str, ((struct to_body*)from->parsed)->uri.s, len);
from_str[len] = '\0';
/* looking for request URI */
if (parse_sip_msg_uri(msg) < 0) {
LOG(L_ERR, "check_routing(): uri parsing failed\n");
return -1;
}
len = msg->parsed_uri.user.len + msg->parsed_uri.host.len + 5;
if (len > EXPRESSION_LENGTH) {
LOG(L_ERR, "check_routing(): Request URI is too long: %d chars\n", len);
return -1;
}
strcpy(ruri_str, "sip:");
memcpy(ruri_str + 4, msg->parsed_uri.user.s, msg->parsed_uri.user.len);
ruri_str[msg->parsed_uri.user.len + 4] = '@';
memcpy(ruri_str + msg->parsed_uri.user.len + 5, msg->parsed_uri.host.s, msg->parsed_uri.host.len);
ruri_str[len] = '\0';
DBG("check_routing(): looking for From: %s Request-URI: %s\n", from_str, ruri_str);
/* rule exists in allow file */
if (search_rule(allow[idx].rules, from_str, ruri_str)) {
if (check_all_branches) goto check_branches;
DBG("check_routing(): allow rule found => routing is allowed\n");
return 1;
}
/* rule exists in deny file */
if (search_rule(deny[idx].rules, from_str, ruri_str)) {
DBG("check_routing(): deny rule found => routing is denied\n");
return -1;
}
if (!check_all_branches) {
DBG("check_routing(): Neither allow nor deny rule found => routing is allowed\n");
return 1;
}
check_branches:
for( br_idx=0 ; (branch.s=get_branch(br_idx,&branch.len,&q,0,0,0,0))!=0 ;
br_idx++ ) {
uri_str = get_plain_uri(&branch);
if (!uri_str) {
LOG(L_ERR, "check_uri(): Error while extracting plain URI\n");
return -1;
}
DBG("check_routing: Looking for From: %s Branch: %s\n", from_str, uri_str);
if (search_rule(allow[idx].rules, from_str, uri_str)) {
continue;
}
if (search_rule(deny[idx].rules, from_str, uri_str)) {
LOG(LOG_INFO, "check_routing(): Deny rule found for one of branches => routing is denied\n");
return -1;
}
}
LOG(LOG_INFO, "check_routing(): Check of branches passed => routing is allowed\n");
return 1;
}
/*
* Convert the name of the files into table index
*/
static int load_fixup(void** param, int param_no)
{
char* pathname;
int idx;
rule_file_t* table;
if (param_no == 1) {
table = allow;
} else {
table = deny;
}
pathname = get_pathname(*param);
idx = find_index(table, pathname);
if (idx == -1) {
/* Not opened yet, open the file and parse it */
table[rules_num].filename = pathname;
table[rules_num].rules = parse_config_file(pathname);
if (table[rules_num].rules) {
LOG(L_INFO, "load_fixup(): File (%s) parsed\n", pathname);
} else {
LOG(L_WARN, "load_fixup(): File (%s) not found => empty rule set\n", pathname);
}
*param = (void*)(long)rules_num;
if (param_no == 2) rules_num++;
} else {
/* File already parsed, re-use it */
LOG(L_INFO, "load_fixup(): File (%s) already loaded, re-using\n", pathname);
pkg_free(pathname);
*param = (void*)(long)idx;
}
return 0;
}
/*
* Convert the name of the file into table index
*/
static int single_fixup(void** param, int param_no)
{
char* buffer;
void* tmp;
int param_len, ret, suffix_len;
if (param_no != 1) return 0;
param_len = strlen((char*)*param);
if (strlen(allow_suffix) > strlen(deny_suffix)) {
suffix_len = strlen(allow_suffix);
} else {
suffix_len = strlen(deny_suffix);
}
buffer = pkg_malloc(param_len + suffix_len + 1);
if (!buffer) {
LOG(L_ERR, "single_fixup(): No memory left\n");
return -1;
}
strcpy(buffer, (char*)*param);
strcat(buffer, allow_suffix);
tmp = buffer;
ret = load_fixup(&tmp, 1);
strcpy(buffer + param_len, deny_suffix);
tmp = buffer;
ret |= load_fixup(&tmp, 2);
*param = tmp;
pkg_free(buffer);
return ret;
}
/*
* module initialization function
*/
static int mod_init(void)
{
LOG(L_INFO, "permissions - initializing\n");
allow[0].filename = get_pathname(DEFAULT_ALLOW_FILE);
allow[0].rules = parse_config_file(allow[0].filename);
if (allow[0].rules) {
LOG(L_INFO, "Default allow file (%s) parsed\n", allow[0].filename);
} else {
LOG(L_WARN, "Default allow file (%s) not found => empty rule set\n",
allow[0].filename);
}
deny[0].filename = get_pathname(DEFAULT_DENY_FILE);
deny[0].rules = parse_config_file(deny[0].filename);
if (deny[0].rules) {
LOG(L_INFO, "Default deny file (%s) parsed\n", deny[0].filename);
} else {
LOG(L_WARN, "Default deny file (%s) not found => empty rule set\n",
deny[0].filename);
}
if (init_trusted() != 0) {
LOG(L_ERR, "Error while initializing allow_trusted function\n");
return -1;
}
if (init_tag_avp( tag_avp_param) < 0) {
LOG(L_ERR,"ERROR:permissions:mod_init: failed to process tag AVP\n");
return -1;
}
rules_num = 1;
return 0;
}
static int child_init(int rank)
{
return init_child_trusted(rank);
}
/*
* destroy function
*/
static void mod_exit(void)
{
int i;
for(i = 0; i < rules_num; i++) {
free_rule(allow[i].rules);
pkg_free(allow[i].filename);
free_rule(deny[i].rules);
pkg_free(deny[i].filename);
}
clean_trusted();
}
/*
* Uses default rule files from the module parameters
*/
int allow_routing_0(struct sip_msg* msg, char* str1, char* str2)
{
return check_routing(msg, 0);
}
int allow_routing_1(struct sip_msg* msg, char* basename, char* s)
{
return check_routing(msg, (int)(long)basename);
}
/*
* Accepts allow and deny files as parameters
*/
int allow_routing_2(struct sip_msg* msg, char* allow_file, char* deny_file)
{
/* Index converted by load_lookup */
return check_routing(msg, (int)(long)allow_file);
}
/*
* Test of REGISTER messages. Creates To-Contact pairs and compares them
* against rules in allow and deny files passed as parameters. The function
* iterates over all Contacts and creates a pair with To for each contact
* found. That allows to restrict what IPs may be used in registrations, for
* example
*/
static int check_register(struct sip_msg* msg, int idx)
{
int len;
static char to_str[EXPRESSION_LENGTH + 1];
char* contact_str;
contact_t* c;
/* turn off control, allow any routing */
if ((!allow[idx].rules) && (!deny[idx].rules)) {
DBG("check_register(): No rules => allow any registration\n");
return 1;
}
/*
* Note: We do not parse the whole header field here although the message can
* contain multiple Contact header fields. We try contacts one by one and if one
* of them causes reject then we don't look at others, this could improve performance
* a little bit in some situations
*/
if (parse_headers(msg, HDR_TO_F | HDR_CONTACT_F, 0) == -1) {
LOG(L_ERR, "check_register(): Error while parsing headers\n");
return -1;
}
if (!msg->to) {
LOG(L_ERR, "check_register(): To or Contact not found\n");
return -1;
}
if (!msg->contact) {
/* REGISTER messages that contain no Contact header field
* are allowed. Such messages do not modify the contents of
* the user location database anyway and thus are not harmful
*/
DBG("check_register(): No Contact found, allowing\n");
return 1;
}
/* Check if the REGISTER message contains start Contact and if
* so then allow it
*/
if (parse_contact(msg->contact) < 0) {
LOG(L_ERR, "check_register(): Error while parsing Contact HF\n");
return -1;
}
if (((contact_body_t*)msg->contact->parsed)->star) {
DBG("check_register(): * Contact found, allowing\n");
return 1;
}
len = ((struct to_body*)msg->to->parsed)->uri.len;
if (len > EXPRESSION_LENGTH) {
LOG(L_ERR, "check_register(): To header field is too long: %d chars\n", len);
return -1;
}
strncpy(to_str, ((struct to_body*)msg->to->parsed)->uri.s, len);
to_str[len] = '\0';
if (contact_iterator(&c, msg, 0) < 0) {
return -1;
}
while(c) {
contact_str = get_plain_uri(&c->uri);
if (!contact_str) {
LOG(L_ERR, "check_register(): Can't extract plain Contact URI\n");
return -1;
}
DBG("check_register(): Looking for To: %s Contact: %s\n", to_str, contact_str);
/* rule exists in allow file */
if (search_rule(allow[idx].rules, to_str, contact_str)) {
if (check_all_branches) goto skip_deny;
}
/* rule exists in deny file */
if (search_rule(deny[idx].rules, to_str, contact_str)) {
DBG("check_register(): Deny rule found => Register denied\n");
return -1;
}
skip_deny:
if (contact_iterator(&c, msg, c) < 0) {
return -1;
}
}
DBG("check_register(): No contact denied => Allowed\n");
return 1;
}
int allow_register_1(struct sip_msg* msg, char* basename, char* s)
{
return check_register(msg, (int)(long)basename);
}
int allow_register_2(struct sip_msg* msg, char* allow_file, char* deny_file)
{
return check_register(msg, (int)(long)allow_file);
}
/*
* determines the permission to refer to given refer-to uri
* return values:
* -1: deny
* 1: allow
*/
static int check_refer_to(struct sip_msg* msg, int idx)
{
struct hdr_field *from, *refer_to;
int len;
static char from_str[EXPRESSION_LENGTH+1];
static char refer_to_str[EXPRESSION_LENGTH+1];
/* turn off control, allow any refer */
if ((!allow[idx].rules) && (!deny[idx].rules)) {
DBG("check_refer_to(): No rules => allow any refer\n");
return 1;
}
/* looking for FROM HF */
if ((!msg->from) && (parse_headers(msg, HDR_FROM_F, 0) == -1)) {
LOG(L_ERR, "check_refer_to(): Error while parsing message\n");
return -1;
}
if (!msg->from) {
LOG(L_ERR, "check_refer_to(): FROM header field not found\n");
return -1;
}
/* we must call parse_from_header explicitly */
if ((!(msg->from)->parsed) && (parse_from_header(msg) < 0)) {
LOG(L_ERR, "check_refer_to(): Error while parsing From body\n");
return -1;
}
from = msg->from;
len = ((struct to_body*)from->parsed)->uri.len;
if (len > EXPRESSION_LENGTH) {
LOG(L_ERR, "check_refer_to(): From header field is too long: %d chars\n", len);
return -1;
}
strncpy(from_str, ((struct to_body*)from->parsed)->uri.s, len);
from_str[len] = '\0';
/* looking for REFER-TO HF */
if ((!msg->refer_to) && (parse_headers(msg, HDR_REFER_TO_F, 0) == -1)){
LOG(L_ERR, "check_refer_to(): Error while parsing message\n");
return -1;
}
if (!msg->refer_to) {
LOG(L_ERR, "check_refer_to(): Refer-To header field not found\n");
return -1;
}
/* we must call parse_refer_to_header explicitly */
if ((!(msg->refer_to)->parsed) && (parse_refer_to_header(msg) < 0)) {
LOG(L_ERR, "check_refer_to(): Error while parsing Refer-To body\n");
return -1;
}
refer_to = msg->refer_to;
len = ((struct to_body*)refer_to->parsed)->uri.len;
if (len > EXPRESSION_LENGTH) {
LOG(L_ERR, "check_refer_to(): Refer-To header field is too long: %d chars\n", len);
return -1;
}
strncpy(refer_to_str, ((struct to_body*)refer_to->parsed)->uri.s, len);
refer_to_str[len] = '\0';
DBG("check_refer_to(): looking for From: %s Refer-To: %s\n", from_str, refer_to_str);
/* rule exists in allow file */
if (search_rule(allow[idx].rules, from_str, refer_to_str)) {
DBG("check_refer_to(): allow rule found => refer is allowed\n");
return 1;
}
/* rule exists in deny file */
if (search_rule(deny[idx].rules, from_str, refer_to_str)) {
DBG("check_refer_to(): deny rule found => refer is denied\n");
return -1;
}
DBG("check_refer_to(): Neither allow nor deny rule found => refer_to is allowed\n");
return 1;
}
int allow_refer_to_1(struct sip_msg* msg, char* basename, char* s)
{
return check_refer_to(msg, (int)(long)basename);
}
int allow_refer_to_2(struct sip_msg* msg, char* allow_file, char* deny_file)
{
return check_refer_to(msg, (int)(long)allow_file);
}
|