res_snmp.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (C) 2006 Voop as
  3. * Thorsten Lockert <tholo@voop.as>
  4. *
  5. * This program is free software, distributed under the terms of
  6. * the GNU General Public License Version 2. See the LICENSE file
  7. * at the top of the source tree.
  8. */
  9. /*! \file
  10. *
  11. * \brief SNMP Agent / SubAgent support for Asterisk
  12. *
  13. * \author Thorsten Lockert <tholo@voop.as>
  14. *
  15. * \extref Uses the Net-SNMP libraries available at
  16. * http://net-snmp.sourceforge.net/
  17. */
  18. /*** MODULEINFO
  19. <depend>netsnmp</depend>
  20. <support_level>extended</support_level>
  21. <defaultenabled>no</defaultenabled>
  22. ***/
  23. #include "asterisk.h"
  24. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  25. #include "asterisk/channel.h"
  26. #include "asterisk/module.h"
  27. #include "snmp/agent.h"
  28. #define MODULE_DESCRIPTION "SNMP [Sub]Agent for Asterisk"
  29. int res_snmp_agentx_subagent;
  30. int res_snmp_dont_stop;
  31. static int res_snmp_enabled;
  32. static pthread_t thread = AST_PTHREADT_NULL;
  33. /*!
  34. * \brief Load res_snmp.conf config file
  35. * \return 1 on load, 0 file does not exist
  36. */
  37. static int load_config(void)
  38. {
  39. struct ast_variable *var;
  40. struct ast_config *cfg;
  41. struct ast_flags config_flags = { 0 };
  42. char *cat;
  43. res_snmp_enabled = 0;
  44. res_snmp_agentx_subagent = 1;
  45. cfg = ast_config_load("res_snmp.conf", config_flags);
  46. if (cfg == CONFIG_STATUS_FILEMISSING || cfg == CONFIG_STATUS_FILEINVALID) {
  47. ast_log(LOG_WARNING, "Could not load res_snmp.conf\n");
  48. return 0;
  49. }
  50. cat = ast_category_browse(cfg, NULL);
  51. while (cat) {
  52. var = ast_variable_browse(cfg, cat);
  53. if (strcasecmp(cat, "general") == 0) {
  54. while (var) {
  55. if (strcasecmp(var->name, "subagent") == 0) {
  56. if (ast_true(var->value))
  57. res_snmp_agentx_subagent = 1;
  58. else if (ast_false(var->value))
  59. res_snmp_agentx_subagent = 0;
  60. else {
  61. ast_log(LOG_ERROR, "Value '%s' does not evaluate to true or false.\n", var->value);
  62. ast_config_destroy(cfg);
  63. return 1;
  64. }
  65. } else if (strcasecmp(var->name, "enabled") == 0) {
  66. res_snmp_enabled = ast_true(var->value);
  67. } else {
  68. ast_log(LOG_ERROR, "Unrecognized variable '%s' in category '%s'\n", var->name, cat);
  69. ast_config_destroy(cfg);
  70. return 1;
  71. }
  72. var = var->next;
  73. }
  74. } else {
  75. ast_log(LOG_ERROR, "Unrecognized category '%s'\n", cat);
  76. ast_config_destroy(cfg);
  77. return 1;
  78. }
  79. cat = ast_category_browse(cfg, cat);
  80. }
  81. ast_config_destroy(cfg);
  82. return 1;
  83. }
  84. static int load_module(void)
  85. {
  86. if(!load_config())
  87. return AST_MODULE_LOAD_DECLINE;
  88. ast_verb(1, "Loading [Sub]Agent Module\n");
  89. res_snmp_dont_stop = 1;
  90. if (res_snmp_enabled)
  91. return ast_pthread_create_background(&thread, NULL, agent_thread, NULL);
  92. else
  93. return 0;
  94. }
  95. static int unload_module(void)
  96. {
  97. ast_verb(1, "Unloading [Sub]Agent Module\n");
  98. res_snmp_dont_stop = 0;
  99. return ((thread != AST_PTHREADT_NULL) ? pthread_join(thread, NULL) : 0);
  100. }
  101. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "SNMP [Sub]Agent for Asterisk",
  102. .load = load_module,
  103. .unload = unload_module,
  104. );