2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2007 - 2009, 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 Channel Bridging API
23 * \author Joshua Colp <jcolp@digium.com>
27 <support_level>core</support_level>
32 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
36 #include "asterisk/logger.h"
37 #include "asterisk/channel.h"
38 #include "asterisk/options.h"
39 #include "asterisk/utils.h"
40 #include "asterisk/lock.h"
41 #include "asterisk/linkedlists.h"
42 #include "asterisk/bridging.h"
43 #include "asterisk/bridging_technology.h"
44 #include "asterisk/app.h"
45 #include "asterisk/file.h"
46 #include "asterisk/module.h"
47 #include "asterisk/astobj2.h"
48 #include "asterisk/test.h"
50 static AST_RWLIST_HEAD_STATIC(bridge_technologies, ast_bridge_technology);
52 /* Initial starting point for the bridge array of channels */
53 #define BRIDGE_ARRAY_START 128
55 /* Grow rate of bridge array of channels */
56 #define BRIDGE_ARRAY_GROW 32
58 static void cleanup_video_mode(struct ast_bridge *bridge);
60 /*! Default DTMF keys for built in features */
61 static char builtin_features_dtmf[AST_BRIDGE_BUILTIN_END][MAXIMUM_DTMF_FEATURE_STRING];
63 /*! Function handlers for the built in features */
64 static void *builtin_features_handlers[AST_BRIDGE_BUILTIN_END];
66 int __ast_bridge_technology_register(struct ast_bridge_technology *technology, struct ast_module *module)
68 struct ast_bridge_technology *current = NULL;
70 /* Perform a sanity check to make sure the bridge technology conforms to our needed requirements */
71 if (ast_strlen_zero(technology->name) || !technology->capabilities || !technology->write) {
72 ast_log(LOG_WARNING, "Bridge technology %s failed registration sanity check.\n", technology->name);
76 AST_RWLIST_WRLOCK(&bridge_technologies);
78 /* Look for duplicate bridge technology already using this name, or already registered */
79 AST_RWLIST_TRAVERSE(&bridge_technologies, current, entry) {
80 if ((!strcasecmp(current->name, technology->name)) || (current == technology)) {
81 ast_log(LOG_WARNING, "A bridge technology of %s already claims to exist in our world.\n", technology->name);
82 AST_RWLIST_UNLOCK(&bridge_technologies);
87 /* Copy module pointer so reference counting can keep the module from unloading */
88 technology->mod = module;
90 /* Insert our new bridge technology into the list and print out a pretty message */
91 AST_RWLIST_INSERT_TAIL(&bridge_technologies, technology, entry);
93 AST_RWLIST_UNLOCK(&bridge_technologies);
95 ast_verb(2, "Registered bridge technology %s\n", technology->name);
100 int ast_bridge_technology_unregister(struct ast_bridge_technology *technology)
102 struct ast_bridge_technology *current = NULL;
104 AST_RWLIST_WRLOCK(&bridge_technologies);
106 /* Ensure the bridge technology is registered before removing it */
107 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&bridge_technologies, current, entry) {
108 if (current == technology) {
109 AST_RWLIST_REMOVE_CURRENT(entry);
110 ast_verb(2, "Unregistered bridge technology %s\n", technology->name);
114 AST_RWLIST_TRAVERSE_SAFE_END;
116 AST_RWLIST_UNLOCK(&bridge_technologies);
118 return current ? 0 : -1;
121 void ast_bridge_change_state(struct ast_bridge_channel *bridge_channel, enum ast_bridge_channel_state new_state)
123 /* Change the state on the bridge channel */
124 bridge_channel->state = new_state;
126 /* Only poke the channel's thread if it is not us */
127 if (!pthread_equal(pthread_self(), bridge_channel->thread)) {
128 pthread_kill(bridge_channel->thread, SIGURG);
129 ao2_lock(bridge_channel);
130 ast_cond_signal(&bridge_channel->cond);
131 ao2_unlock(bridge_channel);
137 /*! \brief Helper function to poke the bridge thread */
138 static void bridge_poke(struct ast_bridge *bridge)
140 /* Poke the thread just in case */
141 if (bridge->thread != AST_PTHREADT_NULL && bridge->thread != AST_PTHREADT_STOP) {
142 pthread_kill(bridge->thread, SIGURG);
148 /*! \brief Helper function to add a channel to the bridge array
150 * \note This function assumes the bridge is locked.
152 static void bridge_array_add(struct ast_bridge *bridge, struct ast_channel *chan)
154 /* We have to make sure the bridge thread is not using the bridge array before messing with it */
155 while (bridge->waiting) {
160 bridge->array[bridge->array_num++] = chan;
162 ast_debug(1, "Added channel %s(%p) to bridge array on %p, new count is %d\n", ast_channel_name(chan), chan, bridge, (int)bridge->array_num);
164 /* If the next addition of a channel will exceed our array size grow it out */
165 if (bridge->array_num == bridge->array_size) {
166 struct ast_channel **tmp;
167 ast_debug(1, "Growing bridge array on %p from %d to %d\n", bridge, (int)bridge->array_size, (int)bridge->array_size + BRIDGE_ARRAY_GROW);
168 if (!(tmp = ast_realloc(bridge->array, (bridge->array_size + BRIDGE_ARRAY_GROW) * sizeof(struct ast_channel *)))) {
169 ast_log(LOG_ERROR, "Failed to allocate more space for another channel on bridge '%p', this is not going to end well\n", bridge);
173 bridge->array_size += BRIDGE_ARRAY_GROW;
179 /*! \brief Helper function to remove a channel from the bridge array
181 * \note This function assumes the bridge is locked.
183 static void bridge_array_remove(struct ast_bridge *bridge, struct ast_channel *chan)
187 /* We have to make sure the bridge thread is not using the bridge array before messing with it */
188 while (bridge->waiting) {
193 for (i = 0; i < bridge->array_num; i++) {
194 if (bridge->array[i] == chan) {
195 bridge->array[i] = (bridge->array[(bridge->array_num - 1)] != chan ? bridge->array[(bridge->array_num - 1)] : NULL);
196 bridge->array[(bridge->array_num - 1)] = NULL;
198 ast_debug(1, "Removed channel %p from bridge array on %p, new count is %d\n", chan, bridge, (int)bridge->array_num);
206 /*! \brief Helper function to find a bridge channel given a channel */
207 static struct ast_bridge_channel *find_bridge_channel(struct ast_bridge *bridge, struct ast_channel *chan)
209 struct ast_bridge_channel *bridge_channel = NULL;
211 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel, entry) {
212 if (bridge_channel->chan == chan) {
217 return bridge_channel;
220 /*! \brief Internal function to see whether a bridge should dissolve, and if so do it */
221 static void bridge_check_dissolve(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
223 struct ast_bridge_channel *bridge_channel2 = NULL;
225 if (!ast_test_flag(&bridge->feature_flags, AST_BRIDGE_FLAG_DISSOLVE) && (!bridge_channel->features || !bridge_channel->features->usable || !ast_test_flag(&bridge_channel->features->feature_flags, AST_BRIDGE_FLAG_DISSOLVE))) {
229 ast_debug(1, "Dissolving bridge %p\n", bridge);
231 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel2, entry) {
232 if (bridge_channel2->state != AST_BRIDGE_CHANNEL_STATE_END && bridge_channel2->state != AST_BRIDGE_CHANNEL_STATE_DEPART) {
233 ast_bridge_change_state(bridge_channel2, AST_BRIDGE_CHANNEL_STATE_HANGUP);
240 /*! \brief Internal function to handle DTMF from a channel */
241 static struct ast_frame *bridge_handle_dtmf(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, struct ast_frame *frame)
243 struct ast_bridge_features *features = (bridge_channel->features ? bridge_channel->features : &bridge->features);
244 struct ast_bridge_features_hook *hook = NULL;
246 /* If the features structure we grabbed is not usable immediately return the frame */
247 if (!features->usable) {
251 /* See if this DTMF matches the beginnings of any feature hooks, if so we switch to the feature state to either execute the feature or collect more DTMF */
252 AST_LIST_TRAVERSE(&features->hooks, hook, entry) {
253 if (hook->dtmf[0] == frame->subclass.integer) {
256 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_FEATURE);
264 /*! \brief Internal function used to determine whether a control frame should be dropped or not */
265 static int bridge_drop_control_frame(int subclass)
268 case AST_CONTROL_ANSWER:
276 void ast_bridge_notify_talking(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, int started_talking)
278 if (started_talking) {
279 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_START_TALKING);
281 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_STOP_TALKING);
285 void ast_bridge_handle_trip(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, struct ast_channel *chan, int outfd)
287 /* If no bridge channel has been provided and the actual channel has been provided find it */
288 if (chan && !bridge_channel) {
289 bridge_channel = find_bridge_channel(bridge, chan);
292 /* If a bridge channel with actual channel is present read a frame and handle it */
293 if (chan && bridge_channel) {
294 struct ast_frame *frame = (((bridge->features.mute) || (bridge_channel->features && bridge_channel->features->mute)) ? ast_read_noaudio(chan) : ast_read(chan));
296 /* This is pretty simple... see if they hung up */
297 if (!frame || (frame->frametype == AST_FRAME_CONTROL && frame->subclass.integer == AST_CONTROL_HANGUP)) {
298 /* Signal the thread that is handling the bridged channel that it should be ended */
299 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_END);
300 } else if (frame->frametype == AST_FRAME_CONTROL && bridge_drop_control_frame(frame->subclass.integer)) {
301 ast_debug(1, "Dropping control frame from bridge channel %p\n", bridge_channel);
302 } else if (frame->frametype == AST_FRAME_DTMF_BEGIN || frame->frametype == AST_FRAME_DTMF_END) {
303 int dtmf_passthrough = bridge_channel->features ?
304 bridge_channel->features->dtmf_passthrough :
305 bridge->features.dtmf_passthrough;
307 if (frame->frametype == AST_FRAME_DTMF_BEGIN) {
308 frame = bridge_handle_dtmf(bridge, bridge_channel, frame);
311 if (frame && dtmf_passthrough) {
312 bridge->technology->write(bridge, bridge_channel, frame);
315 /* Simply write the frame out to the bridge technology if it still exists */
316 bridge->technology->write(bridge, bridge_channel, frame);
325 /* If a file descriptor actually tripped pass it off to the bridge technology */
326 if (outfd > -1 && bridge->technology->fd) {
327 bridge->technology->fd(bridge, bridge_channel, outfd);
331 /* If all else fails just poke the bridge */
332 if (bridge->technology->poke && bridge_channel) {
333 bridge->technology->poke(bridge, bridge_channel);
340 /*! \brief Generic thread loop, TODO: Rethink this/improve it */
341 static int generic_thread_loop(struct ast_bridge *bridge)
343 while (!bridge->stop && !bridge->refresh && bridge->array_num) {
344 struct ast_channel *winner = NULL;
347 /* Move channels around for priority reasons if we have more than one channel in our array */
348 if (bridge->array_num > 1) {
349 struct ast_channel *first = bridge->array[0];
350 memmove(bridge->array, bridge->array + 1, sizeof(struct ast_channel *) * (bridge->array_num - 1));
351 bridge->array[(bridge->array_num - 1)] = first;
354 /* Wait on the channels */
357 winner = ast_waitfor_n(bridge->array, (int)bridge->array_num, &to);
361 /* Process whatever they did */
362 ast_bridge_handle_trip(bridge, NULL, winner, -1);
368 /*! \brief Bridge thread function */
369 static void *bridge_thread(void *data)
371 struct ast_bridge *bridge = data;
376 if (bridge->callid) {
377 ast_callid_threadassoc_add(bridge->callid);
380 ast_debug(1, "Started bridge thread for %p\n", bridge);
382 /* Loop around until we are told to stop */
383 while (!bridge->stop && bridge->array_num && !res) {
384 /* In case the refresh bit was set simply set it back to off */
387 ast_debug(1, "Launching bridge thread function %p for bridge %p\n", (bridge->technology->thread ? bridge->technology->thread : &generic_thread_loop), bridge);
389 /* Execute the appropriate thread function. If the technology does not provide one we use the generic one */
390 res = (bridge->technology->thread ? bridge->technology->thread(bridge) : generic_thread_loop(bridge));
393 ast_debug(1, "Ending bridge thread for %p\n", bridge);
395 /* Indicate the bridge thread is no longer active */
396 bridge->thread = AST_PTHREADT_NULL;
404 /*! \brief Helper function used to find the "best" bridge technology given a specified capabilities */
405 static struct ast_bridge_technology *find_best_technology(uint32_t capabilities)
407 struct ast_bridge_technology *current = NULL, *best = NULL;
409 AST_RWLIST_RDLOCK(&bridge_technologies);
410 AST_RWLIST_TRAVERSE(&bridge_technologies, current, entry) {
411 if (current->suspended) {
412 ast_debug(1, "Bridge technology %s is suspended. Skipping.\n", current->name);
415 if (!(current->capabilities & capabilities)) {
416 ast_debug(1, "Bridge technology %s does not have the capabilities we need.\n", current->name);
419 if (best && best->preference < current->preference) {
420 ast_debug(1, "Bridge technology %s has preference %d while %s has preference %d. Skipping.\n", current->name, current->preference, best->name, best->preference);
427 /* Increment it's module reference count if present so it does not get unloaded while in use */
429 ast_module_ref(best->mod);
431 ast_debug(1, "Chose bridge technology %s\n", best->name);
434 AST_RWLIST_UNLOCK(&bridge_technologies);
439 static void destroy_bridge(void *obj)
441 struct ast_bridge *bridge = obj;
443 ast_debug(1, "Actually destroying bridge %p, nobody wants it anymore\n", bridge);
445 /* Pass off the bridge to the technology to destroy if needed */
446 if (bridge->technology->destroy) {
447 ast_debug(1, "Giving bridge technology %s the bridge structure %p to destroy\n", bridge->technology->name, bridge);
448 if (bridge->technology->destroy(bridge)) {
449 ast_debug(1, "Bridge technology %s failed to destroy bridge structure %p... trying our best\n", bridge->technology->name, bridge);
453 /* We are no longer using the bridge technology so decrement the module reference count on it */
454 if (bridge->technology->mod) {
455 ast_module_unref(bridge->technology->mod);
458 /* Last but not least clean up the features configuration */
459 ast_bridge_features_cleanup(&bridge->features);
461 /* Drop the array of channels */
462 ast_free(bridge->array);
464 cleanup_video_mode(bridge);
469 struct ast_bridge *ast_bridge_new(uint32_t capabilities, int flags)
471 struct ast_bridge *bridge = NULL;
472 struct ast_bridge_technology *bridge_technology = NULL;
474 /* If we need to be a smart bridge see if we can move between 1to1 and multimix bridges */
475 if (flags & AST_BRIDGE_FLAG_SMART) {
476 struct ast_bridge *other_bridge;
478 if (!(other_bridge = ast_bridge_new((capabilities & AST_BRIDGE_CAPABILITY_1TO1MIX) ? AST_BRIDGE_CAPABILITY_MULTIMIX : AST_BRIDGE_CAPABILITY_1TO1MIX, 0))) {
482 ast_bridge_destroy(other_bridge);
485 /* If capabilities were provided use our helper function to find the "best" bridge technology, otherwise we can
486 * just look for the most basic capability needed, single 1to1 mixing. */
487 bridge_technology = (capabilities ? find_best_technology(capabilities) : find_best_technology(AST_BRIDGE_CAPABILITY_1TO1MIX));
489 /* If no bridge technology was found we can't possibly do bridging so fail creation of the bridge */
490 if (!bridge_technology) {
494 /* We have everything we need to create this bridge... so allocate the memory, link things together, and fire her up! */
495 if (!(bridge = ao2_alloc(sizeof(*bridge), destroy_bridge))) {
499 bridge->technology = bridge_technology;
500 bridge->thread = AST_PTHREADT_NULL;
502 /* Create an array of pointers for the channels that will be joining us */
503 bridge->array = ast_calloc(BRIDGE_ARRAY_START, sizeof(struct ast_channel*));
504 bridge->array_size = BRIDGE_ARRAY_START;
506 ast_set_flag(&bridge->feature_flags, flags);
508 /* Pass off the bridge to the technology to manipulate if needed */
509 if (bridge->technology->create) {
510 ast_debug(1, "Giving bridge technology %s the bridge structure %p to setup\n", bridge->technology->name, bridge);
511 if (bridge->technology->create(bridge)) {
512 ast_debug(1, "Bridge technology %s failed to setup bridge structure %p\n", bridge->technology->name, bridge);
521 int ast_bridge_check(uint32_t capabilities)
523 struct ast_bridge_technology *bridge_technology = NULL;
525 if (!(bridge_technology = find_best_technology(capabilities))) {
529 ast_module_unref(bridge_technology->mod);
534 int ast_bridge_destroy(struct ast_bridge *bridge)
536 struct ast_bridge_channel *bridge_channel = NULL;
540 if (bridge->callid) {
541 bridge->callid = ast_callid_unref(bridge->callid);
544 if (bridge->thread != AST_PTHREADT_NULL) {
545 pthread_t thread = bridge->thread;
549 pthread_join(thread, NULL);
553 ast_debug(1, "Telling all channels in bridge %p to end and leave the party\n", bridge);
555 /* Drop every bridged channel, the last one will cause the bridge thread (if it exists) to exit */
556 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel, entry) {
557 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_END);
567 static int bridge_make_compatible(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
569 struct ast_format formats[2];
570 ast_format_copy(&formats[0], ast_channel_readformat(bridge_channel->chan));
571 ast_format_copy(&formats[1], ast_channel_writeformat(bridge_channel->chan));
573 /* Are the formats currently in use something ths bridge can handle? */
574 if (!ast_format_cap_iscompatible(bridge->technology->format_capabilities, ast_channel_readformat(bridge_channel->chan))) {
575 struct ast_format best_format;
576 ast_best_codec(bridge->technology->format_capabilities, &best_format);
578 /* Read format is a no go... */
581 ast_debug(1, "Bridge technology %s wants to read any of formats %s but channel has %s\n", bridge->technology->name,
582 ast_getformatname_multiple(codec_buf, sizeof(codec_buf), bridge->technology->format_capabilities),
583 ast_getformatname(&formats[0]));
585 /* Switch read format to the best one chosen */
586 if (ast_set_read_format(bridge_channel->chan, &best_format)) {
587 ast_log(LOG_WARNING, "Failed to set channel %s to read format %s\n", ast_channel_name(bridge_channel->chan), ast_getformatname(&best_format));
590 ast_debug(1, "Bridge %p put channel %s into read format %s\n", bridge, ast_channel_name(bridge_channel->chan), ast_getformatname(&best_format));
592 ast_debug(1, "Bridge %p is happy that channel %s already has read format %s\n", bridge, ast_channel_name(bridge_channel->chan), ast_getformatname(&formats[0]));
595 if (!ast_format_cap_iscompatible(bridge->technology->format_capabilities, &formats[1])) {
596 struct ast_format best_format;
597 ast_best_codec(bridge->technology->format_capabilities, &best_format);
599 /* Write format is a no go... */
602 ast_debug(1, "Bridge technology %s wants to write any of formats %s but channel has %s\n", bridge->technology->name,
603 ast_getformatname_multiple(codec_buf, sizeof(codec_buf), bridge->technology->format_capabilities),
604 ast_getformatname(&formats[1]));
606 /* Switch write format to the best one chosen */
607 if (ast_set_write_format(bridge_channel->chan, &best_format)) {
608 ast_log(LOG_WARNING, "Failed to set channel %s to write format %s\n", ast_channel_name(bridge_channel->chan), ast_getformatname(&best_format));
611 ast_debug(1, "Bridge %p put channel %s into write format %s\n", bridge, ast_channel_name(bridge_channel->chan), ast_getformatname(&best_format));
613 ast_debug(1, "Bridge %p is happy that channel %s already has write format %s\n", bridge, ast_channel_name(bridge_channel->chan), ast_getformatname(&formats[1]));
619 /*! \brief Perform the smart bridge operation. Basically sees if a new bridge technology should be used instead of the current one. */
620 static int smart_bridge_operation(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, int count)
622 uint32_t new_capabilities = 0;
623 struct ast_bridge_technology *new_technology = NULL, *old_technology = bridge->technology;
624 struct ast_bridge temp_bridge = {
625 .technology = bridge->technology,
626 .bridge_pvt = bridge->bridge_pvt,
628 struct ast_bridge_channel *bridge_channel2 = NULL;
630 /* Based on current feature determine whether we want to change bridge technologies or not */
631 if (bridge->technology->capabilities & AST_BRIDGE_CAPABILITY_1TO1MIX) {
633 ast_debug(1, "Bridge %p channel count (%d) is within limits for bridge technology %s, not performing smart bridge operation.\n", bridge, count, bridge->technology->name);
636 new_capabilities = AST_BRIDGE_CAPABILITY_MULTIMIX;
637 } else if (bridge->technology->capabilities & AST_BRIDGE_CAPABILITY_MULTIMIX) {
639 ast_debug(1, "Bridge %p channel count (%d) is within limits for bridge technology %s, not performing smart bridge operation.\n", bridge, count, bridge->technology->name);
642 new_capabilities = AST_BRIDGE_CAPABILITY_1TO1MIX;
645 if (!new_capabilities) {
646 ast_debug(1, "Bridge '%p' has no new capabilities, not performing smart bridge operation.\n", bridge);
650 /* Attempt to find a new bridge technology to satisfy the capabilities */
651 if (!(new_technology = find_best_technology(new_capabilities))) {
655 ast_debug(1, "Performing smart bridge operation on bridge %p, moving from bridge technology %s to %s\n", bridge, old_technology->name, new_technology->name);
657 /* If a thread is currently executing for the current technology tell it to stop */
658 if (bridge->thread != AST_PTHREADT_NULL) {
659 /* If the new bridge technology also needs a thread simply tell the bridge thread to refresh itself. This has the benefit of not incurring the cost/time of tearing down and bringing up a new thread. */
660 if (new_technology->capabilities & AST_BRIDGE_CAPABILITY_THREAD) {
661 ast_debug(1, "Telling current bridge thread for bridge %p to refresh\n", bridge);
665 pthread_t bridge_thread = bridge->thread;
666 ast_debug(1, "Telling current bridge thread for bridge %p to stop\n", bridge);
670 pthread_join(bridge_thread, NULL);
675 /* Since we are soon going to pass this bridge to a new technology we need to NULL out the bridge_pvt pointer but don't worry as it still exists in temp_bridge, ditto for the old technology */
676 bridge->bridge_pvt = NULL;
677 bridge->technology = new_technology;
679 /* Pass the bridge to the new bridge technology so it can set it up */
680 if (new_technology->create) {
681 ast_debug(1, "Giving bridge technology %s the bridge structure %p to setup\n", new_technology->name, bridge);
682 if (new_technology->create(bridge)) {
683 ast_debug(1, "Bridge technology %s failed to setup bridge structure %p\n", new_technology->name, bridge);
687 /* Move existing channels over to the new technology, while taking them away from the old one */
688 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel2, entry) {
689 /* Skip over channel that initiated the smart bridge operation */
690 if (bridge_channel == bridge_channel2) {
694 /* First we part them from the old technology */
695 if (old_technology->leave) {
696 ast_debug(1, "Giving bridge technology %s notification that %p is leaving bridge %p (really %p)\n", old_technology->name, bridge_channel2, &temp_bridge, bridge);
697 if (old_technology->leave(&temp_bridge, bridge_channel2)) {
698 ast_debug(1, "Bridge technology %s failed to allow %p (really %p) to leave bridge %p\n", old_technology->name, bridge_channel2, &temp_bridge, bridge);
702 /* Second we make them compatible again with the bridge */
703 bridge_make_compatible(bridge, bridge_channel2);
705 /* Third we join them to the new technology */
706 if (new_technology->join) {
707 ast_debug(1, "Giving bridge technology %s notification that %p is joining bridge %p\n", new_technology->name, bridge_channel2, bridge);
708 if (new_technology->join(bridge, bridge_channel2)) {
709 ast_debug(1, "Bridge technology %s failed to join %p to bridge %p\n", new_technology->name, bridge_channel2, bridge);
713 /* Fourth we tell them to wake up so they become aware that they above has happened */
714 pthread_kill(bridge_channel2->thread, SIGURG);
715 ao2_lock(bridge_channel2);
716 ast_cond_signal(&bridge_channel2->cond);
717 ao2_unlock(bridge_channel2);
720 /* Now that all the channels have been moved over we need to get rid of all the information the old technology may have left around */
721 if (old_technology->destroy) {
722 ast_debug(1, "Giving bridge technology %s the bridge structure %p (really %p) to destroy\n", old_technology->name, &temp_bridge, bridge);
723 if (old_technology->destroy(&temp_bridge)) {
724 ast_debug(1, "Bridge technology %s failed to destroy bridge structure %p (really %p)... some memory may have leaked\n", old_technology->name, &temp_bridge, bridge);
728 /* Finally if the old technology has module referencing remove our reference, we are no longer going to use it */
729 if (old_technology->mod) {
730 ast_module_unref(old_technology->mod);
736 /*! \brief Run in a multithreaded model. Each joined channel does writing/reading in their own thread. TODO: Improve */
737 static enum ast_bridge_channel_state bridge_channel_join_multithreaded(struct ast_bridge_channel *bridge_channel)
739 int fds[4] = { -1, }, nfds = 0, i = 0, outfd = -1, ms = -1;
740 struct ast_channel *chan = NULL;
742 /* Add any file descriptors we may want to monitor */
743 if (bridge_channel->bridge->technology->fd) {
744 for (i = 0; i < 4; i ++) {
745 if (bridge_channel->fds[i] >= 0) {
746 fds[nfds++] = bridge_channel->fds[i];
751 ao2_unlock(bridge_channel->bridge);
753 ao2_lock(bridge_channel);
754 /* Wait for data to either come from the channel or us to be signalled */
755 if (!bridge_channel->suspended) {
756 ao2_unlock(bridge_channel);
757 ast_debug(10, "Going into a multithreaded waitfor for bridge channel %p of bridge %p\n", bridge_channel, bridge_channel->bridge);
758 chan = ast_waitfor_nandfds(&bridge_channel->chan, 1, fds, nfds, NULL, &outfd, &ms);
760 ast_debug(10, "Going into a multithreaded signal wait for bridge channel %p of bridge %p\n", bridge_channel, bridge_channel->bridge);
761 ast_cond_wait(&bridge_channel->cond, ao2_object_get_lockaddr(bridge_channel));
762 ao2_unlock(bridge_channel);
765 ao2_lock(bridge_channel->bridge);
767 if (!bridge_channel->suspended) {
768 ast_bridge_handle_trip(bridge_channel->bridge, bridge_channel, chan, outfd);
771 return bridge_channel->state;
774 /*! \brief Run in a singlethreaded model. Each joined channel yields itself to the main bridge thread. TODO: Improve */
775 static enum ast_bridge_channel_state bridge_channel_join_singlethreaded(struct ast_bridge_channel *bridge_channel)
777 ao2_unlock(bridge_channel->bridge);
778 ao2_lock(bridge_channel);
779 if (bridge_channel->state == AST_BRIDGE_CHANNEL_STATE_WAIT) {
780 ast_debug(1, "Going into a single threaded signal wait for bridge channel %p of bridge %p\n", bridge_channel, bridge_channel->bridge);
781 ast_cond_wait(&bridge_channel->cond, ao2_object_get_lockaddr(bridge_channel));
783 ao2_unlock(bridge_channel);
784 ao2_lock(bridge_channel->bridge);
786 return bridge_channel->state;
789 /*! \brief Internal function that suspends a channel from a bridge */
790 static void bridge_channel_suspend(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
792 ao2_lock(bridge_channel);
793 bridge_channel->suspended = 1;
794 bridge_array_remove(bridge, bridge_channel->chan);
795 ao2_unlock(bridge_channel);
797 if (bridge->technology->suspend) {
798 bridge->technology->suspend(bridge, bridge_channel);
804 /*! \brief Internal function that unsuspends a channel from a bridge */
805 static void bridge_channel_unsuspend(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
807 ao2_lock(bridge_channel);
808 bridge_channel->suspended = 0;
809 bridge_array_add(bridge, bridge_channel->chan);
810 ast_cond_signal(&bridge_channel->cond);
811 ao2_unlock(bridge_channel);
813 if (bridge->technology->unsuspend) {
814 bridge->technology->unsuspend(bridge, bridge_channel);
823 * \brief Internal function that executes a feature on a bridge channel
824 * \note Neither the bridge nor the bridge_channel locks should be held when entering
827 static void bridge_channel_feature(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
829 struct ast_bridge_features *features = (bridge_channel->features ? bridge_channel->features : &bridge->features);
830 struct ast_bridge_features_hook *hook = NULL;
831 char dtmf[MAXIMUM_DTMF_FEATURE_STRING] = "";
832 int look_for_dtmf = 1, dtmf_len = 0;
834 /* The channel is now under our control and we don't really want any begin frames to do our DTMF matching so disable 'em at the core level */
835 ast_set_flag(ast_channel_flags(bridge_channel->chan), AST_FLAG_END_DTMF_ONLY);
837 /* Wait for DTMF on the channel and put it into a buffer. If the buffer matches any feature hook execute the hook. */
838 while (look_for_dtmf) {
839 int res = ast_waitfordigit(bridge_channel->chan, 3000);
841 /* If the above timed out simply exit */
843 ast_debug(1, "DTMF feature string collection on bridge channel %p timed out\n", bridge_channel);
845 } else if (res < 0) {
846 ast_debug(1, "DTMF feature string collection failed on bridge channel %p for some reason\n", bridge_channel);
850 /* Add the above DTMF into the DTMF string so we can do our matching */
851 dtmf[dtmf_len++] = res;
853 ast_debug(1, "DTMF feature string on bridge channel %p is now '%s'\n", bridge_channel, dtmf);
855 /* Assume that we do not want to look for DTMF any longer */
858 /* See if a DTMF feature hook matches or can match */
859 AST_LIST_TRAVERSE(&features->hooks, hook, entry) {
860 /* If this hook matches just break out now */
861 if (!strcmp(hook->dtmf, dtmf)) {
862 ast_debug(1, "DTMF feature hook %p matched DTMF string '%s' on bridge channel %p\n", hook, dtmf, bridge_channel);
865 } else if (!strncmp(hook->dtmf, dtmf, dtmf_len)) {
866 ast_debug(1, "DTMF feature hook %p can match DTMF string '%s', it wants '%s', on bridge channel %p\n", hook, dtmf, hook->dtmf, bridge_channel);
869 ast_debug(1, "DTMF feature hook %p does not match DTMF string '%s', it wants '%s', on bridge channel %p\n", hook, dtmf, hook->dtmf, bridge_channel);
873 /* If we have reached the maximum length of a DTMF feature string bail out */
874 if (dtmf_len == MAXIMUM_DTMF_FEATURE_STRING) {
879 /* Since we are done bringing DTMF in return to using both begin and end frames */
880 ast_clear_flag(ast_channel_flags(bridge_channel->chan), AST_FLAG_END_DTMF_ONLY);
882 /* If a hook was actually matched execute it on this channel, otherwise stream up the DTMF to the other channels */
884 hook->callback(bridge, bridge_channel, hook->hook_pvt);
885 /* If we are handing the channel off to an external hook for ownership,
886 * we are not guaranteed what kind of state it will come back in. If
887 * the channel hungup, we need to detect that here. */
888 if (bridge_channel->chan && ast_check_hangup_locked(bridge_channel->chan)) {
889 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_END);
892 ast_bridge_dtmf_stream(bridge, dtmf, bridge_channel->chan);
895 /* if the channel is still in feature state, revert it back to wait state */
896 if (bridge_channel->state == AST_BRIDGE_CHANNEL_STATE_FEATURE) {
897 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_WAIT);
903 static void bridge_channel_talking(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
905 struct ast_bridge_features *features = (bridge_channel->features ? bridge_channel->features : &bridge->features);
907 if (features && features->talker_cb) {
908 features->talker_cb(bridge, bridge_channel, features->talker_pvt_data);
910 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_WAIT);
913 /*! \brief Internal function that plays back DTMF on a bridge channel */
914 static void bridge_channel_dtmf_stream(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
918 ast_copy_string(dtmf_q, bridge_channel->dtmf_stream_q, sizeof(dtmf_q));
919 bridge_channel->dtmf_stream_q[0] = '\0';
921 ast_debug(1, "Playing DTMF stream '%s' out to bridge channel %p\n", dtmf_q, bridge_channel);
922 ast_dtmf_stream(bridge_channel->chan, NULL, dtmf_q, 250, 0);
924 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_WAIT);
929 /*! \brief Join a channel to a bridge and handle anything the bridge may want us to do */
930 static enum ast_bridge_channel_state bridge_channel_join(struct ast_bridge_channel *bridge_channel)
932 struct ast_format formats[2];
933 enum ast_bridge_channel_state state;
934 ast_format_copy(&formats[0], ast_channel_readformat(bridge_channel->chan));
935 ast_format_copy(&formats[1], ast_channel_writeformat(bridge_channel->chan));
937 /* Record the thread that will be the owner of us */
938 bridge_channel->thread = pthread_self();
940 ast_debug(1, "Joining bridge channel %p to bridge %p\n", bridge_channel, bridge_channel->bridge);
942 ao2_lock(bridge_channel->bridge);
944 if (!bridge_channel->bridge->callid) {
945 bridge_channel->bridge->callid = ast_read_threadstorage_callid();
948 state = bridge_channel->state;
950 /* Add channel into the bridge */
951 AST_LIST_INSERT_TAIL(&bridge_channel->bridge->channels, bridge_channel, entry);
952 bridge_channel->bridge->num++;
954 bridge_array_add(bridge_channel->bridge, bridge_channel->chan);
956 if (bridge_channel->swap) {
957 struct ast_bridge_channel *bridge_channel2 = NULL;
959 /* If we are performing a swap operation we do not need
960 * to execute the smart bridge operation as the actual number
961 * of channels involved will not have changed, we just need to
962 * tell the other channel to leave */
963 if ((bridge_channel2 = find_bridge_channel(bridge_channel->bridge, bridge_channel->swap))) {
964 ast_debug(1, "Swapping bridge channel %p out from bridge %p so bridge channel %p can slip in\n", bridge_channel2, bridge_channel->bridge, bridge_channel);
965 ast_bridge_change_state(bridge_channel2, AST_BRIDGE_CHANNEL_STATE_HANGUP);
968 bridge_channel->swap = NULL;
969 } else if (ast_test_flag(&bridge_channel->bridge->feature_flags, AST_BRIDGE_FLAG_SMART)) {
970 /* Perform the smart bridge operation, basically see if we need to move around between technologies */
971 smart_bridge_operation(bridge_channel->bridge, bridge_channel, bridge_channel->bridge->num);
974 /* Make the channel compatible with the bridge */
975 bridge_make_compatible(bridge_channel->bridge, bridge_channel);
977 /* Tell the bridge technology we are joining so they set us up */
978 if (bridge_channel->bridge->technology->join) {
979 ast_debug(1, "Giving bridge technology %s notification that %p is joining bridge %p\n", bridge_channel->bridge->technology->name, bridge_channel, bridge_channel->bridge);
980 if (bridge_channel->bridge->technology->join(bridge_channel->bridge, bridge_channel)) {
981 ast_debug(1, "Bridge technology %s failed to join %p to bridge %p\n", bridge_channel->bridge->technology->name, bridge_channel, bridge_channel->bridge);
985 /* Actually execute the respective threading model, and keep our bridge thread alive */
986 while (bridge_channel->state == AST_BRIDGE_CHANNEL_STATE_WAIT) {
987 /* Update bridge pointer on channel */
988 ast_channel_internal_bridge_set(bridge_channel->chan, bridge_channel->bridge);
989 /* If the technology requires a thread and one is not running, start it up */
990 if (bridge_channel->bridge->thread == AST_PTHREADT_NULL && (bridge_channel->bridge->technology->capabilities & AST_BRIDGE_CAPABILITY_THREAD)) {
991 bridge_channel->bridge->stop = 0;
992 ast_debug(1, "Starting a bridge thread for bridge %p\n", bridge_channel->bridge);
993 ao2_ref(bridge_channel->bridge, +1);
994 if (ast_pthread_create(&bridge_channel->bridge->thread, NULL, bridge_thread, bridge_channel->bridge)) {
995 ast_debug(1, "Failed to create a bridge thread for bridge %p, giving it another go.\n", bridge_channel->bridge);
996 ao2_ref(bridge_channel->bridge, -1);
1000 /* Execute the threading model */
1001 state = (bridge_channel->bridge->technology->capabilities & AST_BRIDGE_CAPABILITY_MULTITHREADED ? bridge_channel_join_multithreaded(bridge_channel) : bridge_channel_join_singlethreaded(bridge_channel));
1002 /* Depending on the above state see what we need to do */
1004 case AST_BRIDGE_CHANNEL_STATE_FEATURE:
1005 bridge_channel_suspend(bridge_channel->bridge, bridge_channel);
1006 ao2_unlock(bridge_channel->bridge);
1007 bridge_channel_feature(bridge_channel->bridge, bridge_channel);
1008 ao2_lock(bridge_channel->bridge);
1009 bridge_channel_unsuspend(bridge_channel->bridge, bridge_channel);
1011 case AST_BRIDGE_CHANNEL_STATE_DTMF:
1012 bridge_channel_suspend(bridge_channel->bridge, bridge_channel);
1013 bridge_channel_dtmf_stream(bridge_channel->bridge, bridge_channel);
1014 bridge_channel_unsuspend(bridge_channel->bridge, bridge_channel);
1016 case AST_BRIDGE_CHANNEL_STATE_START_TALKING:
1017 case AST_BRIDGE_CHANNEL_STATE_STOP_TALKING:
1018 ao2_unlock(bridge_channel->bridge);
1019 bridge_channel_talking(bridge_channel->bridge, bridge_channel);
1020 ao2_lock(bridge_channel->bridge);
1027 ast_channel_internal_bridge_set(bridge_channel->chan, NULL);
1029 /* See if we need to dissolve the bridge itself if they hung up */
1030 if (bridge_channel->state == AST_BRIDGE_CHANNEL_STATE_END) {
1031 bridge_check_dissolve(bridge_channel->bridge, bridge_channel);
1034 /* Tell the bridge technology we are leaving so they tear us down */
1035 if (bridge_channel->bridge->technology->leave) {
1036 ast_debug(1, "Giving bridge technology %s notification that %p is leaving bridge %p\n", bridge_channel->bridge->technology->name, bridge_channel, bridge_channel->bridge);
1037 if (bridge_channel->bridge->technology->leave(bridge_channel->bridge, bridge_channel)) {
1038 ast_debug(1, "Bridge technology %s failed to leave %p from bridge %p\n", bridge_channel->bridge->technology->name, bridge_channel, bridge_channel->bridge);
1042 /* Remove channel from the bridge */
1043 bridge_channel->bridge->num--;
1044 AST_LIST_REMOVE(&bridge_channel->bridge->channels, bridge_channel, entry);
1046 bridge_array_remove(bridge_channel->bridge, bridge_channel->chan);
1048 /* Perform the smart bridge operation if needed since a channel has left */
1049 if (ast_test_flag(&bridge_channel->bridge->feature_flags, AST_BRIDGE_FLAG_SMART)) {
1050 smart_bridge_operation(bridge_channel->bridge, NULL, bridge_channel->bridge->num);
1053 ao2_unlock(bridge_channel->bridge);
1055 /* Restore original formats of the channel as they came in */
1056 if (ast_format_cmp(ast_channel_readformat(bridge_channel->chan), &formats[0]) == AST_FORMAT_CMP_NOT_EQUAL) {
1057 ast_debug(1, "Bridge is returning %p to read format %s(%d)\n", bridge_channel, ast_getformatname(&formats[0]), formats[0].id);
1058 if (ast_set_read_format(bridge_channel->chan, &formats[0])) {
1059 ast_debug(1, "Bridge failed to return channel %p to read format %s(%d)\n", bridge_channel, ast_getformatname(&formats[0]), formats[0].id);
1062 if (ast_format_cmp(ast_channel_writeformat(bridge_channel->chan), &formats[1]) == AST_FORMAT_CMP_NOT_EQUAL) {
1063 ast_debug(1, "Bridge is returning %p to write format %s(%d)\n", bridge_channel, ast_getformatname(&formats[1]), formats[1].id);
1064 if (ast_set_write_format(bridge_channel->chan, &formats[1])) {
1065 ast_debug(1, "Bridge failed to return channel %p to write format %s(%d)\n", bridge_channel, ast_getformatname(&formats[1]), formats[1].id);
1069 return bridge_channel->state;
1072 static void bridge_channel_destroy(void *obj)
1074 struct ast_bridge_channel *bridge_channel = obj;
1076 if (bridge_channel->callid) {
1077 bridge_channel->callid = ast_callid_unref(bridge_channel->callid);
1080 if (bridge_channel->bridge) {
1081 ao2_ref(bridge_channel->bridge, -1);
1082 bridge_channel->bridge = NULL;
1084 /* Destroy elements of the bridge channel structure and the bridge channel structure itself */
1085 ast_cond_destroy(&bridge_channel->cond);
1088 static struct ast_bridge_channel *bridge_channel_alloc(struct ast_bridge *bridge)
1090 struct ast_bridge_channel *bridge_channel = ao2_alloc(sizeof(struct ast_bridge_channel), bridge_channel_destroy);
1091 if (!(bridge_channel)) {
1094 ast_cond_init(&bridge_channel->cond, NULL);
1096 bridge_channel->bridge = bridge;
1097 ao2_ref(bridge_channel->bridge, +1);
1099 return bridge_channel;
1102 enum ast_bridge_channel_state ast_bridge_join(struct ast_bridge *bridge,
1103 struct ast_channel *chan,
1104 struct ast_channel *swap,
1105 struct ast_bridge_features *features,
1106 struct ast_bridge_tech_optimizations *tech_args)
1108 struct ast_bridge_channel *bridge_channel = bridge_channel_alloc(bridge);
1109 enum ast_bridge_channel_state state = AST_BRIDGE_CHANNEL_STATE_HANGUP;
1111 if (!bridge_channel) {
1115 memcpy(&bridge_channel->tech_args, tech_args, sizeof(bridge_channel->tech_args));
1118 /* Initialize various other elements of the bridge channel structure that we can't do above */
1119 bridge_channel->chan = chan;
1120 bridge_channel->swap = swap;
1121 bridge_channel->features = features;
1123 state = bridge_channel_join(bridge_channel);
1125 /* Cleanup all the data in the bridge channel after it leaves the bridge. */
1126 ao2_lock(bridge_channel);
1127 bridge_channel->chan = NULL;
1128 bridge_channel->swap = NULL;
1129 bridge_channel->features = NULL;
1130 ao2_unlock(bridge_channel);
1132 ao2_ref(bridge_channel, -1);
1137 /*! \brief Thread responsible for imparted bridged channels */
1138 static void *bridge_channel_thread(void *data)
1140 struct ast_bridge_channel *bridge_channel = data;
1141 enum ast_bridge_channel_state state;
1143 if (bridge_channel->callid) {
1144 ast_callid_threadassoc_add(bridge_channel->callid);
1147 state = bridge_channel_join(bridge_channel);
1149 /* If no other thread is going to take the channel then hang it up, or else we would have to service it until something else came along */
1150 if (bridge_channel->allow_impart_hangup && (state == AST_BRIDGE_CHANNEL_STATE_END || state == AST_BRIDGE_CHANNEL_STATE_HANGUP)) {
1151 ast_hangup(bridge_channel->chan);
1155 ao2_lock(bridge_channel);
1156 bridge_channel->chan = NULL;
1157 bridge_channel->swap = NULL;
1158 bridge_channel->features = NULL;
1159 ao2_unlock(bridge_channel);
1161 ao2_ref(bridge_channel, -1);
1166 int ast_bridge_impart(struct ast_bridge *bridge, struct ast_channel *chan, struct ast_channel *swap, struct ast_bridge_features *features, int allow_hangup)
1168 struct ast_bridge_channel *bridge_channel = bridge_channel_alloc(bridge);
1170 /* Try to allocate a structure for the bridge channel */
1171 if (!(bridge_channel)) {
1175 /* Setup various parameters */
1176 bridge_channel->chan = chan;
1177 bridge_channel->swap = swap;
1178 bridge_channel->features = features;
1179 bridge_channel->allow_impart_hangup = allow_hangup;
1180 bridge_channel->callid = ast_read_threadstorage_callid();
1182 /* Actually create the thread that will handle the channel */
1183 if (ast_pthread_create(&bridge_channel->thread, NULL, bridge_channel_thread, bridge_channel)) {
1184 ao2_ref(bridge_channel, -1);
1191 int ast_bridge_depart(struct ast_bridge *bridge, struct ast_channel *chan)
1193 struct ast_bridge_channel *bridge_channel = NULL;
1198 /* Try to find the channel that we want to depart */
1199 if (!(bridge_channel = find_bridge_channel(bridge, chan))) {
1204 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_DEPART);
1205 thread = bridge_channel->thread;
1209 pthread_join(thread, NULL);
1214 int ast_bridge_remove(struct ast_bridge *bridge, struct ast_channel *chan)
1216 struct ast_bridge_channel *bridge_channel = NULL;
1220 /* Try to find the channel that we want to remove */
1221 if (!(bridge_channel = find_bridge_channel(bridge, chan))) {
1226 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_HANGUP);
1233 int ast_bridge_merge(struct ast_bridge *bridge0, struct ast_bridge *bridge1)
1235 struct ast_bridge_channel *bridge_channel = NULL;
1240 /* If the first bridge currently has 2 channels and is not capable of becoming a multimixing bridge we can not merge */
1241 if ((bridge0->num + bridge1->num) > 2 && (!(bridge0->technology->capabilities & AST_BRIDGE_CAPABILITY_MULTIMIX) && !ast_test_flag(&bridge0->feature_flags, AST_BRIDGE_FLAG_SMART))) {
1242 ao2_unlock(bridge1);
1243 ao2_unlock(bridge0);
1244 ast_debug(1, "Can't merge bridge %p into bridge %p, multimix is needed and it could not be acquired.\n", bridge1, bridge0);
1248 ast_debug(1, "Merging channels from bridge %p into bridge %p\n", bridge1, bridge0);
1250 /* Perform smart bridge operation on bridge we are merging into so it can change bridge technology if needed */
1251 if (smart_bridge_operation(bridge0, NULL, bridge0->num + bridge1->num)) {
1252 ao2_unlock(bridge1);
1253 ao2_unlock(bridge0);
1254 ast_debug(1, "Can't merge bridge %p into bridge %p, tried to perform smart bridge operation and failed.\n", bridge1, bridge0);
1258 /* If a thread is currently executing on bridge1 tell it to stop */
1259 if (bridge1->thread) {
1260 ast_debug(1, "Telling bridge thread on bridge %p to stop as it is being merged into %p\n", bridge1, bridge0);
1261 bridge1->thread = AST_PTHREADT_STOP;
1264 /* Move channels from bridge1 over to bridge0 */
1265 while ((bridge_channel = AST_LIST_REMOVE_HEAD(&bridge1->channels, entry))) {
1266 /* Tell the technology handling bridge1 that the bridge channel is leaving */
1267 if (bridge1->technology->leave) {
1268 ast_debug(1, "Giving bridge technology %s notification that %p is leaving bridge %p\n", bridge1->technology->name, bridge_channel, bridge1);
1269 if (bridge1->technology->leave(bridge1, bridge_channel)) {
1270 ast_debug(1, "Bridge technology %s failed to allow %p to leave bridge %p\n", bridge1->technology->name, bridge_channel, bridge1);
1274 /* Drop channel count and reference count on the bridge they are leaving */
1276 ao2_ref(bridge1, -1);
1278 bridge_array_remove(bridge1, bridge_channel->chan);
1280 /* Now add them into the bridge they are joining, increase channel count, and bump up reference count */
1281 bridge_channel->bridge = bridge0;
1282 AST_LIST_INSERT_TAIL(&bridge0->channels, bridge_channel, entry);
1284 ao2_ref(bridge0, +1);
1286 bridge_array_add(bridge0, bridge_channel->chan);
1288 /* Make the channel compatible with the new bridge it is joining or else formats would go amuck */
1289 bridge_make_compatible(bridge0, bridge_channel);
1291 /* Tell the technology handling bridge0 that the bridge channel is joining */
1292 if (bridge0->technology->join) {
1293 ast_debug(1, "Giving bridge technology %s notification that %p is joining bridge %p\n", bridge0->technology->name, bridge_channel, bridge0);
1294 if (bridge0->technology->join(bridge0, bridge_channel)) {
1295 ast_debug(1, "Bridge technology %s failed to join %p to bridge %p\n", bridge0->technology->name, bridge_channel, bridge0);
1299 /* Poke the bridge channel, this will cause it to wake up and execute the proper threading model for the new bridge it is in */
1300 pthread_kill(bridge_channel->thread, SIGURG);
1301 ao2_lock(bridge_channel);
1302 ast_cond_signal(&bridge_channel->cond);
1303 ao2_unlock(bridge_channel);
1306 ast_debug(1, "Merged channels from bridge %p into bridge %p\n", bridge1, bridge0);
1308 ao2_unlock(bridge1);
1309 ao2_unlock(bridge0);
1314 int ast_bridge_suspend(struct ast_bridge *bridge, struct ast_channel *chan)
1316 struct ast_bridge_channel *bridge_channel;
1320 if (!(bridge_channel = find_bridge_channel(bridge, chan))) {
1325 bridge_channel_suspend(bridge, bridge_channel);
1332 int ast_bridge_unsuspend(struct ast_bridge *bridge, struct ast_channel *chan)
1334 struct ast_bridge_channel *bridge_channel;
1338 if (!(bridge_channel = find_bridge_channel(bridge, chan))) {
1343 bridge_channel_unsuspend(bridge, bridge_channel);
1350 void ast_bridge_technology_suspend(struct ast_bridge_technology *technology)
1352 technology->suspended = 1;
1356 void ast_bridge_technology_unsuspend(struct ast_bridge_technology *technology)
1358 technology->suspended = 0;
1362 int ast_bridge_features_register(enum ast_bridge_builtin_feature feature, ast_bridge_features_hook_callback callback, const char *dtmf)
1364 if (builtin_features_handlers[feature]) {
1368 if (!ast_strlen_zero(dtmf)) {
1369 ast_copy_string(builtin_features_dtmf[feature], dtmf, sizeof(builtin_features_dtmf[feature]));
1372 builtin_features_handlers[feature] = callback;
1377 int ast_bridge_features_unregister(enum ast_bridge_builtin_feature feature)
1379 if (!builtin_features_handlers[feature]) {
1383 builtin_features_handlers[feature] = NULL;
1388 int ast_bridge_features_hook(struct ast_bridge_features *features,
1390 ast_bridge_features_hook_callback callback,
1392 ast_bridge_features_hook_pvt_destructor destructor)
1394 struct ast_bridge_features_hook *hook = NULL;
1396 /* Allocate new memory and setup it's various variables */
1397 if (!(hook = ast_calloc(1, sizeof(*hook)))) {
1401 ast_copy_string(hook->dtmf, dtmf, sizeof(hook->dtmf));
1402 hook->callback = callback;
1403 hook->destructor = destructor;
1404 hook->hook_pvt = hook_pvt;
1406 /* Once done we add it onto the list. Now it will be picked up when DTMF is used */
1407 AST_LIST_INSERT_TAIL(&features->hooks, hook, entry);
1409 features->usable = 1;
1414 int ast_bridge_features_set_talk_detector(struct ast_bridge_features *features,
1415 ast_bridge_talking_indicate_callback talker_cb,
1416 ast_bridge_talking_indicate_destructor talker_destructor,
1419 features->talker_cb = talker_cb;
1420 features->talker_destructor_cb = talker_destructor;
1421 features->talker_pvt_data = pvt_data;
1425 int ast_bridge_features_enable(struct ast_bridge_features *features, enum ast_bridge_builtin_feature feature, const char *dtmf, void *config)
1427 /* If no alternate DTMF stream was provided use the default one */
1428 if (ast_strlen_zero(dtmf)) {
1429 dtmf = builtin_features_dtmf[feature];
1430 /* If no DTMF is still available (ie: it has been disabled) then error out now */
1431 if (ast_strlen_zero(dtmf)) {
1432 ast_debug(1, "Failed to enable built in feature %d on %p, no DTMF string is available for it.\n", feature, features);
1437 if (!builtin_features_handlers[feature]) {
1441 /* The rest is basically pretty easy. We create another hook using the built in feature's callback and DTMF, easy as pie. */
1442 return ast_bridge_features_hook(features, dtmf, builtin_features_handlers[feature], config, NULL);
1445 int ast_bridge_features_set_flag(struct ast_bridge_features *features, enum ast_bridge_feature_flags flag)
1447 ast_set_flag(&features->feature_flags, flag);
1448 features->usable = 1;
1452 int ast_bridge_features_init(struct ast_bridge_features *features)
1454 /* Zero out the structure */
1455 memset(features, 0, sizeof(*features));
1457 /* Initialize the hooks list, just in case */
1458 AST_LIST_HEAD_INIT_NOLOCK(&features->hooks);
1463 int ast_bridge_features_cleanup(struct ast_bridge_features *features)
1465 struct ast_bridge_features_hook *hook = NULL;
1467 /* This is relatively simple, hooks are kept as a list on the features structure so we just pop them off and free them */
1468 while ((hook = AST_LIST_REMOVE_HEAD(&features->hooks, entry))) {
1469 if (hook->destructor) {
1470 hook->destructor(hook->hook_pvt);
1474 if (features->talker_destructor_cb && features->talker_pvt_data) {
1475 features->talker_destructor_cb(features->talker_pvt_data);
1476 features->talker_pvt_data = NULL;
1482 int ast_bridge_dtmf_stream(struct ast_bridge *bridge, const char *dtmf, struct ast_channel *chan)
1484 struct ast_bridge_channel *bridge_channel = NULL;
1488 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel, entry) {
1489 if (bridge_channel->chan == chan) {
1492 ast_copy_string(bridge_channel->dtmf_stream_q, dtmf, sizeof(bridge_channel->dtmf_stream_q));
1493 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_DTMF);
1501 void ast_bridge_set_mixing_interval(struct ast_bridge *bridge, unsigned int mixing_interval)
1504 bridge->internal_mixing_interval = mixing_interval;
1508 void ast_bridge_set_internal_sample_rate(struct ast_bridge *bridge, unsigned int sample_rate)
1512 bridge->internal_sample_rate = sample_rate;
1516 static void cleanup_video_mode(struct ast_bridge *bridge)
1518 switch (bridge->video_mode.mode) {
1519 case AST_BRIDGE_VIDEO_MODE_NONE:
1521 case AST_BRIDGE_VIDEO_MODE_SINGLE_SRC:
1522 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc) {
1523 ast_channel_unref(bridge->video_mode.mode_data.single_src_data.chan_vsrc);
1526 case AST_BRIDGE_VIDEO_MODE_TALKER_SRC:
1527 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc) {
1528 ast_channel_unref(bridge->video_mode.mode_data.talker_src_data.chan_vsrc);
1530 if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc) {
1531 ast_channel_unref(bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc);
1534 memset(&bridge->video_mode, 0, sizeof(bridge->video_mode));
1537 void ast_bridge_set_single_src_video_mode(struct ast_bridge *bridge, struct ast_channel *video_src_chan)
1540 cleanup_video_mode(bridge);
1541 bridge->video_mode.mode = AST_BRIDGE_VIDEO_MODE_SINGLE_SRC;
1542 bridge->video_mode.mode_data.single_src_data.chan_vsrc = ast_channel_ref(video_src_chan);
1543 ast_test_suite_event_notify("BRIDGE_VIDEO_MODE", "Message: video mode set to single source\r\nVideo Mode: %d\r\nVideo Channel: %s", bridge->video_mode.mode, ast_channel_name(video_src_chan));
1544 ast_indicate(video_src_chan, AST_CONTROL_VIDUPDATE);
1548 void ast_bridge_set_talker_src_video_mode(struct ast_bridge *bridge)
1551 cleanup_video_mode(bridge);
1552 bridge->video_mode.mode = AST_BRIDGE_VIDEO_MODE_TALKER_SRC;
1553 ast_test_suite_event_notify("BRIDGE_VIDEO_MODE", "Message: video mode set to talker source\r\nVideo Mode: %d", bridge->video_mode.mode);
1557 void ast_bridge_update_talker_src_video_mode(struct ast_bridge *bridge, struct ast_channel *chan, int talker_energy, int is_keyframe)
1559 struct ast_bridge_video_talker_src_data *data;
1560 /* If the channel doesn't support video, we don't care about it */
1561 if (!ast_format_cap_has_type(ast_channel_nativeformats(chan), AST_FORMAT_TYPE_VIDEO)) {
1566 data = &bridge->video_mode.mode_data.talker_src_data;
1568 if (data->chan_vsrc == chan) {
1569 data->average_talking_energy = talker_energy;
1570 } else if ((data->average_talking_energy < talker_energy) && is_keyframe) {
1571 if (data->chan_old_vsrc) {
1572 ast_channel_unref(data->chan_old_vsrc);
1574 if (data->chan_vsrc) {
1575 data->chan_old_vsrc = data->chan_vsrc;
1576 ast_indicate(data->chan_old_vsrc, AST_CONTROL_VIDUPDATE);
1578 data->chan_vsrc = ast_channel_ref(chan);
1579 data->average_talking_energy = talker_energy;
1580 ast_test_suite_event_notify("BRIDGE_VIDEO_SRC", "Message: video source updated\r\nVideo Channel: %s", ast_channel_name(data->chan_vsrc));
1581 ast_indicate(data->chan_vsrc, AST_CONTROL_VIDUPDATE);
1582 } else if ((data->average_talking_energy < talker_energy) && !is_keyframe) {
1583 ast_indicate(chan, AST_CONTROL_VIDUPDATE);
1584 } else if (!data->chan_vsrc && is_keyframe) {
1585 data->chan_vsrc = ast_channel_ref(chan);
1586 data->average_talking_energy = talker_energy;
1587 ast_test_suite_event_notify("BRIDGE_VIDEO_SRC", "Message: video source updated\r\nVideo Channel: %s", ast_channel_name(data->chan_vsrc));
1588 ast_indicate(chan, AST_CONTROL_VIDUPDATE);
1589 } else if (!data->chan_old_vsrc && is_keyframe) {
1590 data->chan_old_vsrc = ast_channel_ref(chan);
1591 ast_indicate(chan, AST_CONTROL_VIDUPDATE);
1596 int ast_bridge_number_video_src(struct ast_bridge *bridge)
1601 switch (bridge->video_mode.mode) {
1602 case AST_BRIDGE_VIDEO_MODE_NONE:
1604 case AST_BRIDGE_VIDEO_MODE_SINGLE_SRC:
1605 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc) {
1609 case AST_BRIDGE_VIDEO_MODE_TALKER_SRC:
1610 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc) {
1613 if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc) {
1621 int ast_bridge_is_video_src(struct ast_bridge *bridge, struct ast_channel *chan)
1626 switch (bridge->video_mode.mode) {
1627 case AST_BRIDGE_VIDEO_MODE_NONE:
1629 case AST_BRIDGE_VIDEO_MODE_SINGLE_SRC:
1630 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc == chan) {
1634 case AST_BRIDGE_VIDEO_MODE_TALKER_SRC:
1635 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc == chan) {
1637 } else if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc == chan) {
1646 void ast_bridge_remove_video_src(struct ast_bridge *bridge, struct ast_channel *chan)
1649 switch (bridge->video_mode.mode) {
1650 case AST_BRIDGE_VIDEO_MODE_NONE:
1652 case AST_BRIDGE_VIDEO_MODE_SINGLE_SRC:
1653 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc == chan) {
1654 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc) {
1655 ast_channel_unref(bridge->video_mode.mode_data.single_src_data.chan_vsrc);
1657 bridge->video_mode.mode_data.single_src_data.chan_vsrc = NULL;
1660 case AST_BRIDGE_VIDEO_MODE_TALKER_SRC:
1661 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc == chan) {
1662 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc) {
1663 ast_channel_unref(bridge->video_mode.mode_data.talker_src_data.chan_vsrc);
1665 bridge->video_mode.mode_data.talker_src_data.chan_vsrc = NULL;
1666 bridge->video_mode.mode_data.talker_src_data.average_talking_energy = 0;
1668 if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc == chan) {
1669 if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc) {
1670 ast_channel_unref(bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc);
1672 bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc = NULL;