modparam.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. * $Id$
  3. *
  4. *
  5. * Copyright (C) 2001-2003 FhG Fokus
  6. *
  7. * This file is part of ser, a free SIP server.
  8. *
  9. * ser is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version
  13. *
  14. * For a license to use the ser software under conditions
  15. * other than those described here, or to purchase support for this
  16. * software, please contact iptel.org by e-mail at the following addresses:
  17. * [email protected]
  18. *
  19. * ser is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  27. *
  28. * History:
  29. * -------
  30. * 2003-03-20 regex support in modparam (janakj)
  31. * 2004-03-12 extra flag USE_FUNC_PARAM added to modparam type -
  32. * instead of copying the param value, a func is called (bogdan)
  33. * 2005-07-01 PARAM_STRING & PARAM_STR support
  34. */
  35. /*!
  36. * \file
  37. * \brief SIP-router core ::
  38. * \ingroup core
  39. * Module: \ref core
  40. */
  41. #include "modparam.h"
  42. #include "dprint.h"
  43. #include "mem/mem.h"
  44. #include <sys/types.h>
  45. #include <regex.h>
  46. #include <string.h>
  47. int set_mod_param(char* _mod, char* _name, modparam_t _type, void* _val)
  48. {
  49. return set_mod_param_regex(_mod, _name, _type, _val);
  50. }
  51. int set_mod_param_regex(char* regex, char* name, modparam_t type, void* val)
  52. {
  53. struct sr_module* t;
  54. regex_t preg;
  55. int mod_found, len;
  56. char* reg;
  57. void *ptr, *val2;
  58. modparam_t param_type;
  59. str s;
  60. if (!regex) {
  61. LOG(L_ERR, "set_mod_param_regex(): Invalid mod parameter value\n");
  62. return -5;
  63. }
  64. if (!name) {
  65. LOG(L_ERR, "set_mod_param_regex(): Invalid name parameter value\n");
  66. return -6;
  67. }
  68. len = strlen(regex);
  69. reg = pkg_malloc(len + 2 + 1);
  70. if (reg == 0) {
  71. LOG(L_ERR, "set_mod_param_regex(): No memory left\n");
  72. return -1;
  73. }
  74. reg[0] = '^';
  75. memcpy(reg + 1, regex, len);
  76. reg[len + 1] = '$';
  77. reg[len + 2] = '\0';
  78. if (regcomp(&preg, reg, REG_EXTENDED | REG_NOSUB | REG_ICASE)) {
  79. LOG(L_ERR, "set_mod_param_regex(): Error while compiling regular expression\n");
  80. pkg_free(reg);
  81. return -2;
  82. }
  83. mod_found = 0;
  84. for(t = modules; t; t = t->next) {
  85. if (regexec(&preg, t->exports.name, 0, 0, 0) == 0) {
  86. DBG("set_mod_param_regex: '%s' matches module '%s'\n",
  87. regex, t->exports.name);
  88. mod_found = 1;
  89. /* PARAM_STR (PARAM_STRING) may be assigned also to PARAM_STRING(PARAM_STR) so let get both module param */
  90. ptr = find_param_export(t, name, type | ((type & (PARAM_STR|PARAM_STRING))?PARAM_STR|PARAM_STRING:0), &param_type);
  91. if (ptr) {
  92. /* type casting */
  93. if (type == PARAM_STRING && PARAM_TYPE_MASK(param_type) == PARAM_STR) {
  94. s.s = (char*)val;
  95. s.len = s.s ? strlen(s.s) : 0;
  96. val2 = &s;
  97. } else if (type == PARAM_STR && PARAM_TYPE_MASK(param_type) == PARAM_STRING) {
  98. s = *(str*)val;
  99. val2 = s.s; /* zero terminator expected */
  100. } else {
  101. val2 = val;
  102. }
  103. DBG("set_mod_param_regex: found <%s> in module %s [%s]\n",
  104. name, t->exports.name, t->path);
  105. if (param_type & PARAM_USE_FUNC) {
  106. if ( ((param_func_t)(ptr))(param_type, val2) < 0) {
  107. regfree(&preg);
  108. pkg_free(reg);
  109. return -4;
  110. }
  111. }
  112. else {
  113. switch(PARAM_TYPE_MASK(param_type)) {
  114. case PARAM_STRING:
  115. *((char**)ptr) = pkg_malloc(strlen((char*)val2)+1);
  116. if (!*((char**)ptr)) {
  117. LOG(L_ERR, "set_mod_param_regex(): No memory left\n");
  118. return -1;
  119. }
  120. strcpy(*((char**)ptr), (char*)val2);
  121. break;
  122. case PARAM_STR:
  123. ((str*)ptr)->s = pkg_malloc(((str*)val2)->len+1);
  124. if (!((str*)ptr)->s) {
  125. LOG(L_ERR, "set_mod_param_regex(): No memory left\n");
  126. return -1;
  127. }
  128. memcpy(((str*)ptr)->s, ((str*)val2)->s, ((str*)val2)->len);
  129. ((str*)ptr)->len = ((str*)val2)->len;
  130. ((str*)ptr)->s[((str*)ptr)->len] = 0;
  131. break;
  132. case PARAM_INT:
  133. *((int*)ptr) = (int)(long)val2;
  134. break;
  135. }
  136. }
  137. }
  138. else {
  139. LOG(L_ERR, "set_mod_param_regex: parameter <%s> not found in"
  140. " module <%s>\n", name, t->exports.name);
  141. regfree(&preg);
  142. pkg_free(reg);
  143. return -3;
  144. }
  145. }
  146. }
  147. regfree(&preg);
  148. pkg_free(reg);
  149. if (!mod_found) {
  150. LOG(L_ERR, "set_mod_param_regex: No module matching <%s> found\n", regex);
  151. return -4;
  152. }
  153. return 0;
  154. }