2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2013, Digium, Inc.
6 * Joshua Colp <jcolp@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 Native RTP bridging technology module
23 * \author Joshua Colp <jcolp@digium.com>
29 <support_level>core</support_level>
34 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
39 #include <sys/types.h>
42 #include "asterisk/module.h"
43 #include "asterisk/channel.h"
44 #include "asterisk/bridging.h"
45 #include "asterisk/bridging_technology.h"
46 #include "asterisk/frame.h"
47 #include "asterisk/rtp_engine.h"
48 #include "asterisk/audiohook.h"
50 /*! \brief Forward declarations for frame hook usage */
51 static int native_rtp_bridge_join(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel);
52 static void native_rtp_bridge_leave(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel);
54 /*! \brief Internal structure which contains information about bridged RTP channels */
55 struct native_rtp_bridge_data {
56 /*! \brief Framehook used to intercept certain control frames */
60 /*! \brief Frame hook that is called to intercept hold/unhold */
61 static struct ast_frame *native_rtp_framehook(struct ast_channel *chan, struct ast_frame *f, enum ast_framehook_event event, void *data)
63 RAII_VAR(struct ast_bridge *, bridge, NULL, ao2_cleanup);
65 if (!f || (event != AST_FRAMEHOOK_EVENT_WRITE)) {
69 ast_channel_lock(chan);
70 bridge = ast_channel_get_bridge(chan);
71 ast_channel_unlock(chan);
73 /* It's safe for NULL to be passed to both of these, bridge_channel isn't used at all */
75 if (f->subclass.integer == AST_CONTROL_HOLD) {
76 native_rtp_bridge_leave(ast_channel_internal_bridge(chan), NULL);
77 } else if ((f->subclass.integer == AST_CONTROL_UNHOLD) || (f->subclass.integer == AST_CONTROL_UPDATE_RTP_PEER)) {
78 native_rtp_bridge_join(ast_channel_internal_bridge(chan), NULL);
85 /*! \brief Internal helper function which checks whether the channels are compatible with our native bridging */
86 static int native_rtp_bridge_capable(struct ast_channel *chan)
88 if (ast_channel_monitor(chan) || (ast_channel_audiohooks(chan) &&
89 !ast_audiohook_write_list_empty(ast_channel_audiohooks(chan))) ||
90 !ast_framehook_list_is_empty(ast_channel_framehooks(chan))) {
97 /*! \brief Internal helper function which gets all RTP information (glue and instances) relating to the given channels */
98 static enum ast_rtp_glue_result native_rtp_bridge_get(struct ast_channel *c0, struct ast_channel *c1, struct ast_rtp_glue **glue0,
99 struct ast_rtp_glue **glue1, struct ast_rtp_instance **instance0, struct ast_rtp_instance **instance1,
100 struct ast_rtp_instance **vinstance0, struct ast_rtp_instance **vinstance1)
102 enum ast_rtp_glue_result audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID, video_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
103 enum ast_rtp_glue_result audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID, video_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
105 if (!(*glue0 = ast_rtp_instance_get_glue(ast_channel_tech(c0)->type)) ||
106 (c1 && !(*glue1 = ast_rtp_instance_get_glue(ast_channel_tech(c1)->type)))) {
107 return AST_RTP_GLUE_RESULT_FORBID;
110 audio_glue0_res = (*glue0)->get_rtp_info(c0, instance0);
111 video_glue0_res = (*glue0)->get_vrtp_info ? (*glue0)->get_vrtp_info(c0, vinstance0) : AST_RTP_GLUE_RESULT_FORBID;
114 audio_glue1_res = (*glue1)->get_rtp_info(c1, instance1);
115 video_glue1_res = (*glue1)->get_vrtp_info ? (*glue1)->get_vrtp_info(c1, vinstance1) : AST_RTP_GLUE_RESULT_FORBID;
118 /* Apply any limitations on direct media bridging that may be present */
119 if (audio_glue0_res == audio_glue1_res && audio_glue1_res == AST_RTP_GLUE_RESULT_REMOTE) {
120 if ((*glue0)->allow_rtp_remote && !((*glue0)->allow_rtp_remote(c0, *instance1))) {
121 /* If the allow_rtp_remote indicates that remote isn't allowed, revert to local bridge */
122 audio_glue0_res = audio_glue1_res = AST_RTP_GLUE_RESULT_LOCAL;
123 } else if ((*glue1)->allow_rtp_remote && !((*glue1)->allow_rtp_remote(c1, *instance0))) {
124 audio_glue0_res = audio_glue1_res = AST_RTP_GLUE_RESULT_LOCAL;
127 if (c1 && video_glue0_res == video_glue1_res && video_glue1_res == AST_RTP_GLUE_RESULT_REMOTE) {
128 if ((*glue0)->allow_vrtp_remote && !((*glue0)->allow_vrtp_remote(c0, *instance1))) {
129 /* if the allow_vrtp_remote indicates that remote isn't allowed, revert to local bridge */
130 video_glue0_res = video_glue1_res = AST_RTP_GLUE_RESULT_LOCAL;
131 } else if ((*glue1)->allow_vrtp_remote && !((*glue1)->allow_vrtp_remote(c1, *instance0))) {
132 video_glue0_res = video_glue1_res = AST_RTP_GLUE_RESULT_LOCAL;
136 /* If we are carrying video, and both sides are not going to remotely bridge... fail the native bridge */
137 if (video_glue0_res != AST_RTP_GLUE_RESULT_FORBID && (audio_glue0_res != AST_RTP_GLUE_RESULT_REMOTE || video_glue0_res != AST_RTP_GLUE_RESULT_REMOTE)) {
138 audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
140 if (c1 && video_glue1_res != AST_RTP_GLUE_RESULT_FORBID && (audio_glue1_res != AST_RTP_GLUE_RESULT_REMOTE || video_glue1_res != AST_RTP_GLUE_RESULT_REMOTE)) {
141 audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
144 /* If any sort of bridge is forbidden just completely bail out and go back to generic bridging */
145 if (audio_glue0_res == AST_RTP_GLUE_RESULT_FORBID || (c1 && audio_glue1_res == AST_RTP_GLUE_RESULT_FORBID)) {
146 return AST_RTP_GLUE_RESULT_FORBID;
149 return audio_glue0_res;
152 static int native_rtp_bridge_compatible(struct ast_bridge *bridge)
154 struct ast_bridge_channel *c0 = AST_LIST_FIRST(&bridge->channels);
155 struct ast_bridge_channel *c1 = AST_LIST_LAST(&bridge->channels);
156 enum ast_rtp_glue_result native_type;
157 struct ast_rtp_glue *glue0, *glue1;
158 struct ast_rtp_instance *instance0 = NULL, *instance1 = NULL, *vinstance0 = NULL, *vinstance1 = NULL;
159 RAII_VAR(struct ast_format_cap *, cap0, ast_format_cap_alloc_nolock(), ast_format_cap_destroy);
160 RAII_VAR(struct ast_format_cap *, cap1, ast_format_cap_alloc_nolock(), ast_format_cap_destroy);
161 int read_ptime0, read_ptime1, write_ptime0, write_ptime1;
163 /* We require two channels before even considering native bridging */
164 if (bridge->num_channels != 2) {
165 ast_debug(1, "Bridge '%s' can not use native RTP bridge as two channels are required\n",
170 if (!native_rtp_bridge_capable(c0->chan)) {
171 ast_debug(1, "Bridge '%s' can not use native RTP bridge as channel '%s' has features which prevent it\n",
172 bridge->uniqueid, ast_channel_name(c0->chan));
176 if (!native_rtp_bridge_capable(c1->chan)) {
177 ast_debug(1, "Bridge '%s' can not use native RTP bridge as channel '%s' has features which prevent it\n",
178 bridge->uniqueid, ast_channel_name(c1->chan));
182 if ((native_type = native_rtp_bridge_get(c0->chan, c1->chan, &glue0, &glue1, &instance0, &instance1, &vinstance0, &vinstance1))
183 == AST_RTP_GLUE_RESULT_FORBID) {
184 ast_debug(1, "Bridge '%s' can not use native RTP bridge as it was forbidden while getting details\n",
189 if (ao2_container_count(c0->features->dtmf_hooks) && ast_rtp_instance_dtmf_mode_get(instance0)) {
190 ast_debug(1, "Bridge '%s' can not use native RTP bridge as channel '%s' has DTMF hooks\n",
191 bridge->uniqueid, ast_channel_name(c0->chan));
195 if (ao2_container_count(c1->features->dtmf_hooks) && ast_rtp_instance_dtmf_mode_get(instance1)) {
196 ast_debug(1, "Bridge '%s' can not use native RTP bridge as channel '%s' has DTMF hooks\n",
197 bridge->uniqueid, ast_channel_name(c1->chan));
201 if ((native_type == AST_RTP_GLUE_RESULT_LOCAL) && ((ast_rtp_instance_get_engine(instance0)->local_bridge !=
202 ast_rtp_instance_get_engine(instance1)->local_bridge) ||
203 (ast_rtp_instance_get_engine(instance0)->dtmf_compatible &&
204 !ast_rtp_instance_get_engine(instance0)->dtmf_compatible(c0->chan, instance0, c1->chan, instance1)))) {
205 ast_debug(1, "Bridge '%s' can not use local native RTP bridge as local bridge or DTMF is not compatible\n",
210 /* Make sure that codecs match */
211 if (glue0->get_codec) {
212 glue0->get_codec(c0->chan, cap0);
214 if (glue1->get_codec) {
215 glue1->get_codec(c1->chan, cap1);
217 if (!ast_format_cap_is_empty(cap0) && !ast_format_cap_is_empty(cap1) && !ast_format_cap_has_joint(cap0, cap1)) {
218 char tmp0[256] = { 0, }, tmp1[256] = { 0, };
220 ast_debug(1, "Channel codec0 = %s is not codec1 = %s, cannot native bridge in RTP.\n",
221 ast_getformatname_multiple(tmp0, sizeof(tmp0), cap0),
222 ast_getformatname_multiple(tmp1, sizeof(tmp1), cap1));
226 read_ptime0 = (ast_codec_pref_getsize(&ast_rtp_instance_get_codecs(instance0)->pref, ast_channel_rawreadformat(c0->chan))).cur_ms;
227 read_ptime1 = (ast_codec_pref_getsize(&ast_rtp_instance_get_codecs(instance1)->pref, ast_channel_rawreadformat(c1->chan))).cur_ms;
228 write_ptime0 = (ast_codec_pref_getsize(&ast_rtp_instance_get_codecs(instance0)->pref, ast_channel_rawwriteformat(c0->chan))).cur_ms;
229 write_ptime1 = (ast_codec_pref_getsize(&ast_rtp_instance_get_codecs(instance1)->pref, ast_channel_rawwriteformat(c1->chan))).cur_ms;
231 if (read_ptime0 != write_ptime1 || read_ptime1 != write_ptime0) {
232 ast_debug(1, "Packetization differs between RTP streams (%d != %d or %d != %d). Cannot native bridge in RTP\n",
233 read_ptime0, write_ptime1, read_ptime1, write_ptime0);
240 /*! \brief Helper function which adds frame hook to bridge channel */
241 static int native_rtp_bridge_framehook_attach(struct ast_bridge_channel *bridge_channel)
243 struct native_rtp_bridge_data *data = ao2_alloc(sizeof(*data), NULL);
244 static struct ast_framehook_interface hook = {
245 .version = AST_FRAMEHOOK_INTERFACE_VERSION,
246 .event_cb = native_rtp_framehook,
253 ast_channel_lock(bridge_channel->chan);
254 data->id = ast_framehook_attach(bridge_channel->chan, &hook);
255 ast_channel_unlock(bridge_channel->chan);
262 * BUGBUG The RTP native bridge technology should use tech_pvt not bridge_pvt.
264 * This technology needs to be reworked to not change the
265 * tech_pvt of channels other than the one that is currently
266 * entering/leaving before it can actually use the correct
269 bridge_channel->bridge_pvt = data;
274 /*! \brief Helper function which removes frame hook from bridge channel */
275 static void native_rtp_bridge_framehook_detach(struct ast_bridge_channel *bridge_channel)
277 RAII_VAR(struct native_rtp_bridge_data *, data, bridge_channel->bridge_pvt, ao2_cleanup);
283 ast_channel_lock(bridge_channel->chan);
284 ast_framehook_detach(bridge_channel->chan, data->id);
285 ast_channel_unlock(bridge_channel->chan);
286 bridge_channel->bridge_pvt = NULL;
289 static int native_rtp_bridge_join(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
291 struct ast_bridge_channel *c0 = AST_LIST_FIRST(&bridge->channels);
292 struct ast_bridge_channel *c1 = AST_LIST_LAST(&bridge->channels);
293 enum ast_rtp_glue_result native_type;
294 struct ast_rtp_glue *glue0, *glue1;
295 struct ast_rtp_instance *instance0 = NULL, *instance1 = NULL, *vinstance0 = NULL;
296 struct ast_rtp_instance *vinstance1 = NULL, *tinstance0 = NULL, *tinstance1 = NULL;
297 RAII_VAR(struct ast_format_cap *, cap0, ast_format_cap_alloc_nolock(), ast_format_cap_destroy);
298 RAII_VAR(struct ast_format_cap *, cap1, ast_format_cap_alloc_nolock(), ast_format_cap_destroy);
300 native_rtp_bridge_framehook_detach(c0);
301 if (native_rtp_bridge_framehook_attach(c0)) {
305 native_rtp_bridge_framehook_detach(c1);
306 if (native_rtp_bridge_framehook_attach(c1)) {
307 native_rtp_bridge_framehook_detach(c0);
311 native_type = native_rtp_bridge_get(c0->chan, c1->chan, &glue0, &glue1, &instance0, &instance1, &vinstance0, &vinstance1);
313 if (glue0->get_codec) {
314 glue0->get_codec(c0->chan, cap0);
316 if (glue1->get_codec) {
317 glue1->get_codec(c1->chan, cap1);
320 if (native_type == AST_RTP_GLUE_RESULT_LOCAL) {
321 if (ast_rtp_instance_get_engine(instance0)->local_bridge) {
322 ast_rtp_instance_get_engine(instance0)->local_bridge(instance0, instance1);
324 if (ast_rtp_instance_get_engine(instance1)->local_bridge) {
325 ast_rtp_instance_get_engine(instance1)->local_bridge(instance1, instance0);
327 ast_rtp_instance_set_bridged(instance0, instance1);
328 ast_rtp_instance_set_bridged(instance1, instance0);
330 glue0->update_peer(c0->chan, instance1, vinstance1, tinstance1, cap1, 0);
331 glue1->update_peer(c1->chan, instance0, vinstance0, tinstance0, cap0, 0);
337 static void native_rtp_bridge_unsuspend(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
339 native_rtp_bridge_join(bridge, bridge_channel);
342 static void native_rtp_bridge_leave(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
344 struct ast_bridge_channel *c0 = AST_LIST_FIRST(&bridge->channels) ? AST_LIST_FIRST(&bridge->channels) : bridge_channel;
345 struct ast_bridge_channel *c1 = AST_LIST_LAST(&bridge->channels);
346 enum ast_rtp_glue_result native_type;
347 struct ast_rtp_glue *glue0, *glue1 = NULL;
348 struct ast_rtp_instance *instance0 = NULL, *instance1 = NULL, *vinstance0 = NULL, *vinstance1 = NULL;
350 native_rtp_bridge_framehook_detach(c0);
352 native_rtp_bridge_framehook_detach(c1);
355 native_type = native_rtp_bridge_get(c0->chan, c1 ? c1->chan : NULL, &glue0, &glue1, &instance0, &instance1, &vinstance0, &vinstance1);
357 if (native_type == AST_RTP_GLUE_RESULT_LOCAL) {
358 if (ast_rtp_instance_get_engine(instance0)->local_bridge) {
359 ast_rtp_instance_get_engine(instance0)->local_bridge(instance0, NULL);
361 if (instance1 && ast_rtp_instance_get_engine(instance1)->local_bridge) {
362 ast_rtp_instance_get_engine(instance1)->local_bridge(instance1, NULL);
364 ast_rtp_instance_set_bridged(instance0, instance1);
366 ast_rtp_instance_set_bridged(instance1, instance0);
369 glue0->update_peer(c0->chan, NULL, NULL, NULL, NULL, 0);
371 glue1->update_peer(c1->chan, NULL, NULL, NULL, NULL, 0);
376 static int native_rtp_bridge_write(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, struct ast_frame *frame)
378 struct ast_bridge_channel *other = ast_bridge_channel_peer(bridge_channel);
384 /* The bridging core takes care of freeing the passed in frame. */
385 ast_bridge_channel_queue_frame(other, frame);
390 static struct ast_bridge_technology native_rtp_bridge = {
391 .name = "native_rtp",
392 .capabilities = AST_BRIDGE_CAPABILITY_NATIVE,
393 .preference = AST_BRIDGE_PREFERENCE_BASE_NATIVE,
394 .join = native_rtp_bridge_join,
395 .unsuspend = native_rtp_bridge_unsuspend,
396 .leave = native_rtp_bridge_leave,
397 .suspend = native_rtp_bridge_leave,
398 .write = native_rtp_bridge_write,
399 .compatible = native_rtp_bridge_compatible,
402 static int unload_module(void)
404 ast_format_cap_destroy(native_rtp_bridge.format_capabilities);
405 return ast_bridge_technology_unregister(&native_rtp_bridge);
408 static int load_module(void)
410 if (!(native_rtp_bridge.format_capabilities = ast_format_cap_alloc())) {
411 return AST_MODULE_LOAD_DECLINE;
413 ast_format_cap_add_all_by_type(native_rtp_bridge.format_capabilities, AST_FORMAT_TYPE_AUDIO);
414 ast_format_cap_add_all_by_type(native_rtp_bridge.format_capabilities, AST_FORMAT_TYPE_VIDEO);
415 ast_format_cap_add_all_by_type(native_rtp_bridge.format_capabilities, AST_FORMAT_TYPE_TEXT);
417 return ast_bridge_technology_register(&native_rtp_bridge);
420 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Native RTP bridging module");