2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2014, Digium, Inc.
6 * Matt Jordan <mjordan@digium.com>
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.
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.
21 * \brief RTCP logging with Homer
23 * \author Matt Jordan <mjordan@digium.com>
28 <depend>res_hep</depend>
29 <support_level>extended</support_level>
34 ASTERISK_REGISTER_FILE()
36 #include "asterisk/res_hep.h"
37 #include "asterisk/module.h"
38 #include "asterisk/netsock2.h"
39 #include "asterisk/stasis.h"
40 #include "asterisk/rtp_engine.h"
41 #include "asterisk/json.h"
42 #include "asterisk/config.h"
44 static struct stasis_subscription *stasis_rtp_subscription;
46 static void rtcp_message_handler(struct stasis_message *message)
49 RAII_VAR(struct ast_json *, json_payload, NULL, ast_json_unref);
50 RAII_VAR(char *, payload, NULL, ast_json_free);
51 struct ast_json *json_blob;
52 struct ast_json *json_channel;
53 struct ast_json *json_rtcp;
54 struct hepv3_capture_info *capture_info;
55 struct ast_json *from;
57 struct timeval current_time = ast_tvnow();
59 json_payload = stasis_message_to_json(message, NULL);
64 json_blob = ast_json_object_get(json_payload, "blob");
69 json_channel = ast_json_object_get(json_payload, "channel");
74 json_rtcp = ast_json_object_get(json_payload, "rtcp_report");
79 from = ast_json_object_get(json_blob, "from");
80 to = ast_json_object_get(json_blob, "to");
85 payload = ast_json_dump_string(json_rtcp);
86 if (ast_strlen_zero(payload)) {
90 capture_info = hepv3_create_capture_info(payload, strlen(payload));
94 ast_sockaddr_parse(&capture_info->src_addr, ast_json_string_get(from), PARSE_PORT_REQUIRE);
95 ast_sockaddr_parse(&capture_info->dst_addr, ast_json_string_get(to), PARSE_PORT_REQUIRE);
97 capture_info->uuid = ast_strdup(ast_json_string_get(ast_json_object_get(json_channel, "name")));
98 if (!capture_info->uuid) {
99 ao2_ref(capture_info, -1);
102 capture_info->capture_time = current_time;
103 capture_info->capture_type = HEPV3_CAPTURE_TYPE_RTCP;
104 capture_info->zipped = 0;
106 hepv3_send_packet(capture_info);
109 static void rtp_topic_handler(void *data, struct stasis_subscription *sub, struct stasis_message *message)
111 struct stasis_message_type *message_type = stasis_message_type(message);
113 if ((message_type == ast_rtp_rtcp_sent_type()) ||
114 (message_type == ast_rtp_rtcp_received_type())) {
115 rtcp_message_handler(message);
119 static int load_module(void)
122 stasis_rtp_subscription = stasis_subscribe(ast_rtp_topic(),
123 rtp_topic_handler, NULL);
124 if (!stasis_rtp_subscription) {
125 return AST_MODULE_LOAD_FAILURE;
128 return AST_MODULE_LOAD_SUCCESS;
131 static int unload_module(void)
133 if (stasis_rtp_subscription) {
134 stasis_rtp_subscription = stasis_unsubscribe_and_join(stasis_rtp_subscription);
140 AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "RTCP HEPv3 Logger",
142 .unload = unload_module,
143 .load_pri = AST_MODPRI_DEFAULT,