res_hep.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 1999 - 2014, Digium, Inc.
  5. *
  6. * Alexandr Dubovikov <alexandr.dubovikov@sipcapture.org>
  7. * Matt Jordan <mjordan@digium.com>
  8. *
  9. * See http://www.asterisk.org for more information about
  10. * the Asterisk project. Please do not directly contact
  11. * any of the maintainers of this project for assistance;
  12. * the project provides a web site, mailing lists and IRC
  13. * channels for your use.
  14. *
  15. * This program is free software, distributed under the terms of
  16. * the GNU General Public License Version 2. See the LICENSE file
  17. * at the top of the source tree.
  18. */
  19. /*!
  20. * \file
  21. * \brief Routines for integration with Homer using HEPv3
  22. *
  23. * \author Alexandr Dubovikov <alexandr.dubovikov@sipcapture.org>
  24. * \author Matt Jordan <mjordan@digium.com>
  25. *
  26. */
  27. /*!
  28. * \li \ref res_hep.c uses the configuration file \ref hep.conf
  29. * \addtogroup configuration_file Configuration Files
  30. */
  31. /*!
  32. * \page hep.conf hep.conf
  33. * \verbinclude hep.conf.sample
  34. */
  35. /*** MODULEINFO
  36. <support_level>extended</support_level>
  37. ***/
  38. /*** DOCUMENTATION
  39. <configInfo name="res_hep" language="en_US">
  40. <synopsis>Resource for integration with Homer using HEPv3</synopsis>
  41. <configFile name="hep.conf">
  42. <configObject name="general">
  43. <synopsis>General settings.</synopsis>
  44. <description><para>
  45. The <emphasis>general</emphasis> settings section contains information
  46. to configure Asterisk as a Homer capture agent.
  47. </para>
  48. </description>
  49. <configOption name="enabled" default="yes">
  50. <synopsis>Enable or disable packet capturing.</synopsis>
  51. <description>
  52. <enumlist>
  53. <enum name="no" />
  54. <enum name="yes" />
  55. </enumlist>
  56. </description>
  57. </configOption>
  58. <configOption name="capture_address" default="192.168.1.1:9061">
  59. <synopsis>The address and port of the Homer server to send packets to.</synopsis>
  60. </configOption>
  61. <configOption name="capture_password">
  62. <synopsis>If set, the authentication password to send to Homer.</synopsis>
  63. </configOption>
  64. <configOption name="capture_id" default="0">
  65. <synopsis>The ID for this capture agent.</synopsis>
  66. </configOption>
  67. </configObject>
  68. </configFile>
  69. </configInfo>
  70. ***/
  71. #include "asterisk.h"
  72. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  73. #include "asterisk/module.h"
  74. #include "asterisk/astobj2.h"
  75. #include "asterisk/config_options.h"
  76. #include "asterisk/taskprocessor.h"
  77. #include "asterisk/res_hep.h"
  78. #include <netinet/ip.h>
  79. #include <netinet/tcp.h>
  80. #include <netinet/udp.h>
  81. #include <netinet/ip6.h>
  82. #define DEFAULT_HEP_SERVER ""
  83. /*! Generic vendor ID. Used for HEPv3 standard packets */
  84. #define GENERIC_VENDOR_ID 0x0000
  85. /*! Asterisk vendor ID. Used for custom data to send to a capture node */
  86. #define ASTERISK_VENDOR_ID 0x0004
  87. /*! Chunk types from the HEPv3 Spec */
  88. enum hepv3_chunk_types {
  89. /*! THE IP PROTOCOL FAMILY */
  90. CHUNK_TYPE_IP_PROTOCOL_FAMILY = 0X0001,
  91. /*! THE IP PROTOCOL ID (UDP, TCP, ETC.) */
  92. CHUNK_TYPE_IP_PROTOCOL_ID = 0X0002,
  93. /*! IF IPV4, THE SOURCE ADDRESS */
  94. CHUNK_TYPE_IPV4_SRC_ADDR = 0X0003,
  95. /*! IF IPV4, THE DESTINATION ADDRESS */
  96. CHUNK_TYPE_IPV4_DST_ADDR = 0X0004,
  97. /*! IF IPV6, THE SOURCE ADDRESS */
  98. CHUNK_TYPE_IPV6_SRC_ADDR = 0X0005,
  99. /*! IF IPV6, THE DESTINATION ADDRESS */
  100. CHUNK_TYPE_IPV6_DST_ADDR = 0X0006,
  101. /*! THE SOURCE PORT */
  102. CHUNK_TYPE_SRC_PORT = 0X0007,
  103. /*! THE DESTINATION PORT */
  104. CHUNK_TYPE_DST_PORT = 0X0008,
  105. /*! THE CAPTURE TIME (SECONDS) */
  106. CHUNK_TYPE_TIMESTAMP_SEC = 0X0009,
  107. /*! THE CAPTURE TIME (MICROSECONDS) */
  108. CHUNK_TYPE_TIMESTAMP_USEC = 0X000A,
  109. /*! THE PROTOCOL PACKET TYPE. SEE /REF HEPV3_CAPTURE_TYPE */
  110. CHUNK_TYPE_PROTOCOL_TYPE = 0X000B,
  111. /*! OUR CAPTURE AGENT ID */
  112. CHUNK_TYPE_CAPTURE_AGENT_ID = 0X000C,
  113. /*! A KEEP ALIVE TIMER */
  114. CHUNK_TYPE_KEEP_ALIVE_TIMER = 0X000D,
  115. /*! THE \REF CAPTURE_PASSWORD IF DEFINED */
  116. CHUNK_TYPE_AUTH_KEY = 0X000E,
  117. /*! THE ONE AND ONLY PAYLOAD */
  118. CHUNK_TYPE_PAYLOAD = 0X000F,
  119. /*! THE ONE AND ONLY (ZIPPED) PAYLOAD */
  120. CHUNK_TYPE_PAYLOAD_ZIP = 0X0010,
  121. /*! THE UUID FOR THIS PACKET */
  122. CHUNK_TYPE_UUID = 0X0011,
  123. };
  124. #define INITIALIZE_GENERIC_HEP_IDS(hep_chunk, type) do { \
  125. (hep_chunk)->vendor_id = htons(GENERIC_VENDOR_ID); \
  126. (hep_chunk)->type_id = htons((type)); \
  127. } while (0)
  128. #define INITIALIZE_GENERIC_HEP_IDS_VAR(hep_chunk, type, len) do { \
  129. INITIALIZE_GENERIC_HEP_IDS((hep_chunk), (type)); \
  130. (hep_chunk)->length = htons(sizeof(*(hep_chunk)) + len); \
  131. } while (0)
  132. #define INITIALIZE_GENERIC_HEP_CHUNK(hep_item, type) do { \
  133. INITIALIZE_GENERIC_HEP_IDS(&(hep_item)->chunk, (type)); \
  134. (hep_item)->chunk.length = htons(sizeof(*(hep_item))); \
  135. } while (0)
  136. #define INITIALIZE_GENERIC_HEP_CHUNK_DATA(hep_item, type, value) do { \
  137. INITIALIZE_GENERIC_HEP_CHUNK((hep_item), (type)); \
  138. (hep_item)->data = (value); \
  139. } while (0)
  140. /*
  141. * HEPv3 Types.
  142. * Note that the content in these is stored in network byte order.
  143. */
  144. struct hep_chunk {
  145. u_int16_t vendor_id;
  146. u_int16_t type_id;
  147. u_int16_t length;
  148. } __attribute__((packed));
  149. struct hep_chunk_uint8 {
  150. struct hep_chunk chunk;
  151. u_int8_t data;
  152. } __attribute__((packed));
  153. struct hep_chunk_uint16 {
  154. struct hep_chunk chunk;
  155. u_int16_t data;
  156. } __attribute__((packed));
  157. struct hep_chunk_uint32 {
  158. struct hep_chunk chunk;
  159. u_int32_t data;
  160. } __attribute__((packed));
  161. struct hep_chunk_ip4 {
  162. struct hep_chunk chunk;
  163. struct in_addr data;
  164. } __attribute__((packed));
  165. struct hep_chunk_ip6 {
  166. struct hep_chunk chunk;
  167. struct in6_addr data;
  168. } __attribute__((packed));
  169. struct hep_ctrl {
  170. char id[4];
  171. u_int16_t length;
  172. } __attribute__((packed));
  173. /* HEP structures */
  174. struct hep_generic {
  175. struct hep_ctrl header;
  176. struct hep_chunk_uint8 ip_family;
  177. struct hep_chunk_uint8 ip_proto;
  178. struct hep_chunk_uint16 src_port;
  179. struct hep_chunk_uint16 dst_port;
  180. struct hep_chunk_uint32 time_sec;
  181. struct hep_chunk_uint32 time_usec;
  182. struct hep_chunk_uint8 proto_t;
  183. struct hep_chunk_uint32 capt_id;
  184. } __attribute__((packed));
  185. /*! \brief Global configuration for the module */
  186. struct hepv3_global_config {
  187. unsigned int enabled; /*!< Whether or not sending is enabled */
  188. unsigned int capture_id; /*!< Capture ID for this agent */
  189. AST_DECLARE_STRING_FIELDS(
  190. AST_STRING_FIELD(capture_address); /*!< Address to send to */
  191. AST_STRING_FIELD(capture_password); /*!< Password for Homer server */
  192. );
  193. };
  194. /*! \brief The actual module config */
  195. struct module_config {
  196. struct hepv3_global_config *general; /*!< The general config settings */
  197. };
  198. /*! \brief Run-time data derived from \ref hepv3_global_config */
  199. struct hepv3_runtime_data {
  200. struct ast_sockaddr remote_addr; /*!< The address to send to */
  201. int sockfd; /*!< The socket file descriptor */
  202. };
  203. static struct aco_type global_option = {
  204. .type = ACO_GLOBAL,
  205. .name = "general",
  206. .item_offset = offsetof(struct module_config, general),
  207. .category_match = ACO_WHITELIST,
  208. .category = "^general$",
  209. };
  210. struct aco_type *global_options[] = ACO_TYPES(&global_option);
  211. struct aco_file hepv3_conf = {
  212. .filename = "hep.conf",
  213. .types = ACO_TYPES(&global_option),
  214. };
  215. /*! \brief The module configuration container */
  216. static AO2_GLOBAL_OBJ_STATIC(global_config);
  217. /*! \brief Current module data */
  218. static AO2_GLOBAL_OBJ_STATIC(global_data);
  219. static struct ast_taskprocessor *hep_queue_tp;
  220. static void *module_config_alloc(void);
  221. static void hepv3_config_post_apply(void);
  222. /*! \brief Register information about the configs being processed by this module */
  223. CONFIG_INFO_STANDARD(cfg_info, global_config, module_config_alloc,
  224. .files = ACO_FILES(&hepv3_conf),
  225. .post_apply_config = hepv3_config_post_apply,
  226. );
  227. static void hepv3_config_dtor(void *obj)
  228. {
  229. struct hepv3_global_config *config = obj;
  230. ast_string_field_free_memory(config);
  231. }
  232. /*! \brief HEPv3 configuration object allocation */
  233. static void *hepv3_config_alloc(void)
  234. {
  235. struct hepv3_global_config *config;
  236. config = ao2_alloc(sizeof(*config), hepv3_config_dtor);
  237. if (!config || ast_string_field_init(config, 32)) {
  238. return NULL;
  239. }
  240. return config;
  241. }
  242. /*! \brief Configuration object destructor */
  243. static void module_config_dtor(void *obj)
  244. {
  245. struct module_config *config = obj;
  246. if (config->general) {
  247. ao2_ref(config->general, -1);
  248. }
  249. }
  250. /*! \brief Module config constructor */
  251. static void *module_config_alloc(void)
  252. {
  253. struct module_config *config;
  254. config = ao2_alloc(sizeof(*config), module_config_dtor);
  255. if (!config) {
  256. return NULL;
  257. }
  258. config->general = hepv3_config_alloc();
  259. if (!config->general) {
  260. ao2_ref(config, -1);
  261. config = NULL;
  262. }
  263. return config;
  264. }
  265. /*! \brief HEPv3 run-time data destructor */
  266. static void hepv3_data_dtor(void *obj)
  267. {
  268. struct hepv3_runtime_data *data = obj;
  269. if (data->sockfd > -1) {
  270. close(data->sockfd);
  271. data->sockfd = -1;
  272. }
  273. }
  274. /*! \brief Allocate the HEPv3 run-time data */
  275. static struct hepv3_runtime_data *hepv3_data_alloc(struct hepv3_global_config *config)
  276. {
  277. struct hepv3_runtime_data *data;
  278. data = ao2_alloc(sizeof(*data), hepv3_data_dtor);
  279. if (!data) {
  280. return NULL;
  281. }
  282. if (!ast_sockaddr_parse(&data->remote_addr, config->capture_address, PARSE_PORT_REQUIRE)) {
  283. ast_log(AST_LOG_WARNING, "Failed to create address from %s\n", config->capture_address);
  284. ao2_ref(data, -1);
  285. return NULL;
  286. }
  287. data->sockfd = socket(ast_sockaddr_is_ipv6(&data->remote_addr) ? AF_INET6 : AF_INET, SOCK_DGRAM, 0);
  288. if (data->sockfd < 0) {
  289. ast_log(AST_LOG_WARNING, "Failed to create socket for address %s: %s\n",
  290. config->capture_address, strerror(errno));
  291. ao2_ref(data, -1);
  292. return NULL;
  293. }
  294. return data;
  295. }
  296. /*! \brief Destructor for a \ref hepv3_capture_info object */
  297. static void capture_info_dtor(void *obj)
  298. {
  299. struct hepv3_capture_info *info = obj;
  300. ast_free(info->uuid);
  301. ast_free(info->payload);
  302. }
  303. struct hepv3_capture_info *hepv3_create_capture_info(const void *payload, size_t len)
  304. {
  305. struct hepv3_capture_info *info;
  306. info = ao2_alloc(sizeof(*info), capture_info_dtor);
  307. if (!info) {
  308. return NULL;
  309. }
  310. info->payload = ast_malloc(len);
  311. if (!info->payload) {
  312. ao2_ref(info, -1);
  313. return NULL;
  314. }
  315. memcpy(info->payload, payload, len);
  316. info->len = len;
  317. return info;
  318. }
  319. /*! \brief Callback function for the \ref hep_queue_tp taskprocessor */
  320. static int hep_queue_cb(void *data)
  321. {
  322. RAII_VAR(struct module_config *, config, ao2_global_obj_ref(global_config), ao2_cleanup);
  323. RAII_VAR(struct hepv3_runtime_data *, hepv3_data, ao2_global_obj_ref(global_data), ao2_cleanup);
  324. RAII_VAR(struct hepv3_capture_info *, capture_info, data, ao2_cleanup);
  325. struct hep_generic hg_pkt;
  326. unsigned int packet_len = 0, sock_buffer_len;
  327. struct hep_chunk_ip4 ipv4_src, ipv4_dst;
  328. struct hep_chunk_ip6 ipv6_src, ipv6_dst;
  329. struct hep_chunk auth_key, payload, uuid;
  330. void *sock_buffer;
  331. int res;
  332. if (!capture_info || !config || !hepv3_data) {
  333. return 0;
  334. }
  335. if (ast_sockaddr_is_ipv4(&capture_info->src_addr) != ast_sockaddr_is_ipv4(&capture_info->dst_addr)) {
  336. ast_log(AST_LOG_NOTICE, "Unable to send packet: Address Family mismatch between source/destination\n");
  337. return -1;
  338. }
  339. packet_len = sizeof(hg_pkt);
  340. /* Build HEPv3 header, capture info, and calculate the total packet size */
  341. memcpy(hg_pkt.header.id, "\x48\x45\x50\x33", 4);
  342. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.ip_proto, CHUNK_TYPE_IP_PROTOCOL_ID, 0x11);
  343. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.src_port, CHUNK_TYPE_SRC_PORT, htons(ast_sockaddr_port(&capture_info->src_addr)));
  344. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.dst_port, CHUNK_TYPE_DST_PORT, htons(ast_sockaddr_port(&capture_info->dst_addr)));
  345. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.time_sec, CHUNK_TYPE_TIMESTAMP_SEC, htonl(capture_info->capture_time.tv_sec));
  346. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.time_usec, CHUNK_TYPE_TIMESTAMP_USEC, htonl(capture_info->capture_time.tv_usec));
  347. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.proto_t, CHUNK_TYPE_PROTOCOL_TYPE, capture_info->capture_type);
  348. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.capt_id, CHUNK_TYPE_CAPTURE_AGENT_ID, htonl(config->general->capture_id));
  349. if (ast_sockaddr_is_ipv4(&capture_info->src_addr)) {
  350. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.ip_family,
  351. CHUNK_TYPE_IP_PROTOCOL_FAMILY, AF_INET);
  352. INITIALIZE_GENERIC_HEP_CHUNK(&ipv4_src, CHUNK_TYPE_IPV4_SRC_ADDR);
  353. inet_pton(AF_INET, ast_sockaddr_stringify_addr(&capture_info->src_addr), &ipv4_src.data);
  354. INITIALIZE_GENERIC_HEP_CHUNK(&ipv4_dst, CHUNK_TYPE_IPV4_DST_ADDR);
  355. inet_pton(AF_INET, ast_sockaddr_stringify_addr(&capture_info->dst_addr), &ipv4_dst.data);
  356. packet_len += (sizeof(ipv4_src) + sizeof(ipv4_dst));
  357. } else {
  358. INITIALIZE_GENERIC_HEP_CHUNK_DATA(&hg_pkt.ip_family,
  359. CHUNK_TYPE_IP_PROTOCOL_FAMILY, AF_INET6);
  360. INITIALIZE_GENERIC_HEP_CHUNK(&ipv6_src, CHUNK_TYPE_IPV6_SRC_ADDR);
  361. inet_pton(AF_INET6, ast_sockaddr_stringify_addr(&capture_info->src_addr), &ipv6_src.data);
  362. INITIALIZE_GENERIC_HEP_CHUNK(&ipv6_dst, CHUNK_TYPE_IPV6_DST_ADDR);
  363. inet_pton(AF_INET6, ast_sockaddr_stringify_addr(&capture_info->dst_addr), &ipv6_dst.data);
  364. packet_len += (sizeof(ipv6_src) + sizeof(ipv6_dst));
  365. }
  366. if (!ast_strlen_zero(config->general->capture_password)) {
  367. INITIALIZE_GENERIC_HEP_IDS_VAR(&auth_key, CHUNK_TYPE_AUTH_KEY, strlen(config->general->capture_password));
  368. packet_len += (sizeof(auth_key) + strlen(config->general->capture_password));
  369. }
  370. INITIALIZE_GENERIC_HEP_IDS_VAR(&uuid, CHUNK_TYPE_UUID, strlen(capture_info->uuid));
  371. packet_len += (sizeof(uuid) + strlen(capture_info->uuid));
  372. INITIALIZE_GENERIC_HEP_IDS_VAR(&payload,
  373. capture_info->zipped ? CHUNK_TYPE_PAYLOAD_ZIP : CHUNK_TYPE_PAYLOAD, capture_info->len);
  374. packet_len += (sizeof(payload) + capture_info->len);
  375. hg_pkt.header.length = htons(packet_len);
  376. /* Build the buffer to send */
  377. sock_buffer = ast_malloc(packet_len);
  378. if (!sock_buffer) {
  379. return -1;
  380. }
  381. /* Copy in the header */
  382. memcpy(sock_buffer, &hg_pkt, sizeof(hg_pkt));
  383. sock_buffer_len = sizeof(hg_pkt);
  384. /* Addresses */
  385. if (ast_sockaddr_is_ipv4(&capture_info->src_addr)) {
  386. memcpy(sock_buffer + sock_buffer_len, &ipv4_src, sizeof(ipv4_src));
  387. sock_buffer_len += sizeof(ipv4_src);
  388. memcpy(sock_buffer + sock_buffer_len, &ipv4_dst, sizeof(ipv4_dst));
  389. sock_buffer_len += sizeof(ipv4_dst);
  390. } else {
  391. memcpy(sock_buffer + sock_buffer_len, &ipv6_src, sizeof(ipv6_src));
  392. sock_buffer_len += sizeof(ipv6_src);
  393. memcpy(sock_buffer + sock_buffer_len, &ipv6_dst, sizeof(ipv6_dst));
  394. sock_buffer_len += sizeof(ipv6_dst);
  395. }
  396. /* Auth Key */
  397. if (!ast_strlen_zero(config->general->capture_password)) {
  398. memcpy(sock_buffer + sock_buffer_len, &auth_key, sizeof(auth_key));
  399. sock_buffer_len += sizeof(auth_key);
  400. memcpy(sock_buffer + sock_buffer_len, config->general->capture_password, strlen(config->general->capture_password));
  401. sock_buffer_len += strlen(config->general->capture_password);
  402. }
  403. /* UUID */
  404. memcpy(sock_buffer + sock_buffer_len, &uuid, sizeof(uuid));
  405. sock_buffer_len += sizeof(uuid);
  406. memcpy(sock_buffer + sock_buffer_len, capture_info->uuid, strlen(capture_info->uuid));
  407. sock_buffer_len += strlen(capture_info->uuid);
  408. /* Packet! */
  409. memcpy(sock_buffer + sock_buffer_len, &payload, sizeof(payload));
  410. sock_buffer_len += sizeof(payload);
  411. memcpy(sock_buffer + sock_buffer_len, capture_info->payload, capture_info->len);
  412. sock_buffer_len += capture_info->len;
  413. ast_assert(sock_buffer_len == packet_len);
  414. res = ast_sendto(hepv3_data->sockfd, sock_buffer, sock_buffer_len, 0, &hepv3_data->remote_addr);
  415. if (res < 0) {
  416. ast_log(AST_LOG_ERROR, "Error [%d] while sending packet to HEPv3 server: %s\n",
  417. errno, strerror(errno));
  418. } else if (res != sock_buffer_len) {
  419. ast_log(AST_LOG_WARNING, "Failed to send complete packet to HEPv3 server: %d of %u sent\n",
  420. res, sock_buffer_len);
  421. res = -1;
  422. }
  423. ast_free(sock_buffer);
  424. return res;
  425. }
  426. int hepv3_send_packet(struct hepv3_capture_info *capture_info)
  427. {
  428. RAII_VAR(struct module_config *, config, ao2_global_obj_ref(global_config), ao2_cleanup);
  429. int res;
  430. if (!config || !config->general->enabled) {
  431. return 0;
  432. }
  433. res = ast_taskprocessor_push(hep_queue_tp, hep_queue_cb, capture_info);
  434. if (res == -1) {
  435. ao2_ref(capture_info, -1);
  436. }
  437. return res;
  438. }
  439. /*!
  440. * \brief Post-apply callback for the config framework.
  441. *
  442. * This will create the run-time information from the supplied
  443. * configuration.
  444. */
  445. static void hepv3_config_post_apply(void)
  446. {
  447. RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(global_config), ao2_cleanup);
  448. struct hepv3_runtime_data *data;
  449. data = hepv3_data_alloc(mod_cfg->general);
  450. if (!data) {
  451. return;
  452. }
  453. ao2_global_obj_replace_unref(global_data, data);
  454. ao2_ref(data, -1);
  455. }
  456. /*!
  457. * \brief Reload the module
  458. */
  459. static int reload_module(void)
  460. {
  461. if (aco_process_config(&cfg_info, 1) == ACO_PROCESS_ERROR) {
  462. return -1;
  463. }
  464. return 0;
  465. }
  466. /*!
  467. * \brief Unload the module
  468. */
  469. static int unload_module(void)
  470. {
  471. hep_queue_tp = ast_taskprocessor_unreference(hep_queue_tp);
  472. ao2_global_obj_release(global_config);
  473. ao2_global_obj_release(global_data);
  474. aco_info_destroy(&cfg_info);
  475. return 0;
  476. }
  477. /*!
  478. * \brief Load the module
  479. */
  480. static int load_module(void)
  481. {
  482. if (aco_info_init(&cfg_info)) {
  483. goto error;
  484. }
  485. hep_queue_tp = ast_taskprocessor_get("hep_queue_tp", TPS_REF_DEFAULT);
  486. if (!hep_queue_tp) {
  487. goto error;
  488. }
  489. aco_option_register(&cfg_info, "enabled", ACO_EXACT, global_options, "yes", OPT_BOOL_T, 1, FLDSET(struct hepv3_global_config, enabled));
  490. aco_option_register(&cfg_info, "capture_address", ACO_EXACT, global_options, DEFAULT_HEP_SERVER, OPT_STRINGFIELD_T, 0, STRFLDSET(struct hepv3_global_config, capture_address));
  491. aco_option_register(&cfg_info, "capture_password", ACO_EXACT, global_options, "", OPT_STRINGFIELD_T, 0, STRFLDSET(struct hepv3_global_config, capture_password));
  492. aco_option_register(&cfg_info, "capture_id", ACO_EXACT, global_options, "0", OPT_UINT_T, 0, STRFLDSET(struct hepv3_global_config, capture_id));
  493. if (aco_process_config(&cfg_info, 0) == ACO_PROCESS_ERROR) {
  494. goto error;
  495. }
  496. return AST_MODULE_LOAD_SUCCESS;
  497. error:
  498. aco_info_destroy(&cfg_info);
  499. return AST_MODULE_LOAD_DECLINE;
  500. }
  501. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "HEPv3 API",
  502. .support_level = AST_MODULE_SUPPORT_EXTENDED,
  503. .load = load_module,
  504. .unload = unload_module,
  505. .reload = reload_module,
  506. .load_pri = AST_MODPRI_APP_DEPEND,
  507. );