config_system.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2013, Digium, Inc.
  5. *
  6. * Mark Michelson <mmichelson@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. #include "asterisk.h"
  19. #include <pjsip.h>
  20. #include <pjlib.h>
  21. #include "asterisk/res_pjsip.h"
  22. #include "asterisk/sorcery.h"
  23. #include "include/res_pjsip_private.h"
  24. #include "asterisk/threadpool.h"
  25. #include "asterisk/dns.h"
  26. #define TIMER_T1_MIN 100
  27. #define DEFAULT_TIMER_T1 500
  28. #define DEFAULT_TIMER_B 32000
  29. struct system_config {
  30. SORCERY_OBJECT(details);
  31. /*! Transaction Timer T1 value */
  32. unsigned int timert1;
  33. /*! Transaction Timer B value */
  34. unsigned int timerb;
  35. /*! Should we use short forms for headers? */
  36. unsigned int compactheaders;
  37. struct {
  38. /*! Initial number of threads in the threadpool */
  39. int initial_size;
  40. /*! The amount by which the number of threads is incremented when necessary */
  41. int auto_increment;
  42. /*! Thread idle timeout in seconds */
  43. int idle_timeout;
  44. /*! Maxumum number of threads in the threadpool */
  45. int max_size;
  46. } threadpool;
  47. };
  48. static struct ast_threadpool_options sip_threadpool_options = {
  49. .version = AST_THREADPOOL_OPTIONS_VERSION,
  50. };
  51. void sip_get_threadpool_options(struct ast_threadpool_options *threadpool_options)
  52. {
  53. *threadpool_options = sip_threadpool_options;
  54. }
  55. static struct ast_sorcery *system_sorcery;
  56. static void *system_alloc(const char *name)
  57. {
  58. struct system_config *system = ast_sorcery_generic_alloc(sizeof(*system), NULL);
  59. if (!system) {
  60. return NULL;
  61. }
  62. return system;
  63. }
  64. static int system_apply(const struct ast_sorcery *system_sorcery, void *obj)
  65. {
  66. struct system_config *system = obj;
  67. int min_timerb;
  68. if (system->timert1 < TIMER_T1_MIN) {
  69. ast_log(LOG_WARNING, "Timer T1 setting is too low. Setting to %d\n", TIMER_T1_MIN);
  70. system->timert1 = TIMER_T1_MIN;
  71. }
  72. min_timerb = 64 * system->timert1;
  73. if (system->timerb < min_timerb) {
  74. ast_log(LOG_WARNING, "Timer B setting is too low. Setting to %d\n", min_timerb);
  75. system->timerb = min_timerb;
  76. }
  77. pjsip_cfg()->tsx.t1 = system->timert1;
  78. pjsip_cfg()->tsx.td = system->timerb;
  79. if (system->compactheaders) {
  80. extern pj_bool_t pjsip_use_compact_form;
  81. pjsip_use_compact_form = PJ_TRUE;
  82. }
  83. sip_threadpool_options.initial_size = system->threadpool.initial_size;
  84. sip_threadpool_options.auto_increment = system->threadpool.auto_increment;
  85. sip_threadpool_options.idle_timeout = system->threadpool.idle_timeout;
  86. sip_threadpool_options.max_size = system->threadpool.max_size;
  87. return 0;
  88. }
  89. int ast_sip_initialize_system(void)
  90. {
  91. RAII_VAR(struct ao2_container *, system_configs, NULL, ao2_cleanup);
  92. RAII_VAR(struct system_config *, system, NULL, ao2_cleanup);
  93. system_sorcery = ast_sorcery_open();
  94. if (!system_sorcery) {
  95. ast_log(LOG_ERROR, "Failed to open SIP system sorcery\n");
  96. return -1;
  97. }
  98. ast_sorcery_apply_default(system_sorcery, "system", "config", "pjsip.conf,criteria=type=system");
  99. if (ast_sorcery_object_register_no_reload(system_sorcery, "system", system_alloc, NULL, system_apply)) {
  100. ast_log(LOG_ERROR, "Failed to register with sorcery (is res_sorcery_config loaded?)\n");
  101. ast_sorcery_unref(system_sorcery);
  102. system_sorcery = NULL;
  103. return -1;
  104. }
  105. ast_sorcery_object_field_register(system_sorcery, "system", "type", "", OPT_NOOP_T, 0, 0);
  106. ast_sorcery_object_field_register(system_sorcery, "system", "timer_t1", __stringify(DEFAULT_TIMER_T1),
  107. OPT_UINT_T, 0, FLDSET(struct system_config, timert1));
  108. ast_sorcery_object_field_register(system_sorcery, "system", "timer_b", __stringify(DEFAULT_TIMER_B),
  109. OPT_UINT_T, 0, FLDSET(struct system_config, timerb));
  110. ast_sorcery_object_field_register(system_sorcery, "system", "compact_headers", "no",
  111. OPT_BOOL_T, 1, FLDSET(struct system_config, compactheaders));
  112. ast_sorcery_object_field_register(system_sorcery, "system", "threadpool_initial_size", "0",
  113. OPT_UINT_T, 0, FLDSET(struct system_config, threadpool.initial_size));
  114. ast_sorcery_object_field_register(system_sorcery, "system", "threadpool_auto_increment", "5",
  115. OPT_UINT_T, 0, FLDSET(struct system_config, threadpool.auto_increment));
  116. ast_sorcery_object_field_register(system_sorcery, "system", "threadpool_idle_timeout", "60",
  117. OPT_UINT_T, 0, FLDSET(struct system_config, threadpool.idle_timeout));
  118. ast_sorcery_object_field_register(system_sorcery, "system", "threadpool_max_size", "0",
  119. OPT_UINT_T, 0, FLDSET(struct system_config, threadpool.max_size));
  120. ast_sorcery_load(system_sorcery);
  121. system_configs = ast_sorcery_retrieve_by_fields(system_sorcery, "system",
  122. AST_RETRIEVE_FLAG_MULTIPLE | AST_RETRIEVE_FLAG_ALL, NULL);
  123. if (ao2_container_count(system_configs)) {
  124. return 0;
  125. }
  126. /* No config present, allocate one and apply defaults */
  127. system = ast_sorcery_alloc(system_sorcery, "system", NULL);
  128. if (!system) {
  129. ast_log(LOG_ERROR, "Unable to allocate default system config.\n");
  130. ast_sorcery_unref(system_sorcery);
  131. return -1;
  132. }
  133. if (system_apply(system_sorcery, system)) {
  134. ast_log(LOG_ERROR, "Failed to apply default system config.\n");
  135. ast_sorcery_unref(system_sorcery);
  136. return -1;
  137. }
  138. return 0;
  139. }
  140. void ast_sip_destroy_system(void)
  141. {
  142. ast_sorcery_unref(system_sorcery);
  143. }
  144. static int system_create_resolver_and_set_nameservers(void *data)
  145. {
  146. struct ao2_container *discovered_nameservers;
  147. struct ao2_iterator it_nameservers;
  148. char *nameserver;
  149. pj_status_t status;
  150. pj_dns_resolver *resolver;
  151. pj_str_t nameservers[PJ_DNS_RESOLVER_MAX_NS];
  152. unsigned int count = 0;
  153. discovered_nameservers = ast_dns_get_nameservers();
  154. if (!discovered_nameservers) {
  155. ast_log(LOG_ERROR, "Could not retrieve local system nameservers, resorting to system resolution\n");
  156. return 0;
  157. }
  158. if (!ao2_container_count(discovered_nameservers)) {
  159. ast_log(LOG_ERROR, "There are no local system nameservers configured, resorting to system resolution\n");
  160. ao2_ref(discovered_nameservers, -1);
  161. return -1;
  162. }
  163. if (!(resolver = pjsip_endpt_get_resolver(ast_sip_get_pjsip_endpoint()))) {
  164. status = pjsip_endpt_create_resolver(ast_sip_get_pjsip_endpoint(), &resolver);
  165. if (status != PJ_SUCCESS) {
  166. ast_log(LOG_ERROR, "Could not create DNS resolver(%d), resorting to system resolution\n", status);
  167. ao2_ref(discovered_nameservers, -1);
  168. return 0;
  169. }
  170. }
  171. it_nameservers = ao2_iterator_init(discovered_nameservers, 0);
  172. while ((nameserver = ao2_iterator_next(&it_nameservers))) {
  173. pj_strset2(&nameservers[count++], nameserver);
  174. ao2_ref(nameserver, -1);
  175. if (count == (PJ_DNS_RESOLVER_MAX_NS - 1)) {
  176. break;
  177. }
  178. }
  179. ao2_iterator_destroy(&it_nameservers);
  180. status = pj_dns_resolver_set_ns(resolver, count, nameservers, NULL);
  181. /* Since we no longer need the nameservers we can drop the list of them */
  182. ao2_ref(discovered_nameservers, -1);
  183. if (status != PJ_SUCCESS) {
  184. ast_log(LOG_ERROR, "Could not set nameservers on DNS resolver in PJSIP(%d), resorting to system resolution\n",
  185. status);
  186. return 0;
  187. }
  188. if (!pjsip_endpt_get_resolver(ast_sip_get_pjsip_endpoint())) {
  189. status = pjsip_endpt_set_resolver(ast_sip_get_pjsip_endpoint(), resolver);
  190. if (status != PJ_SUCCESS) {
  191. ast_log(LOG_ERROR, "Could not set DNS resolver in PJSIP(%d), resorting to system resolution\n", status);
  192. return 0;
  193. }
  194. }
  195. return 0;
  196. }
  197. void ast_sip_initialize_dns(void)
  198. {
  199. ast_sip_push_task_synchronous(NULL, system_create_resolver_and_set_nameservers, NULL);
  200. }