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>
28 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
32 #include "asterisk/logger.h"
33 #include "asterisk/channel.h"
34 #include "asterisk/options.h"
35 #include "asterisk/utils.h"
36 #include "asterisk/lock.h"
37 #include "asterisk/linkedlists.h"
38 #include "asterisk/bridging.h"
39 #include "asterisk/bridging_technology.h"
40 #include "asterisk/app.h"
41 #include "asterisk/file.h"
42 #include "asterisk/module.h"
43 #include "asterisk/astobj2.h"
45 static AST_RWLIST_HEAD_STATIC(bridge_technologies, ast_bridge_technology);
47 /* Initial starting point for the bridge array of channels */
48 #define BRIDGE_ARRAY_START 128
50 /* Grow rate of bridge array of channels */
51 #define BRIDGE_ARRAY_GROW 32
53 static void cleanup_video_mode(struct ast_bridge *bridge);
55 /*! Default DTMF keys for built in features */
56 static char builtin_features_dtmf[AST_BRIDGE_BUILTIN_END][MAXIMUM_DTMF_FEATURE_STRING];
58 /*! Function handlers for the built in features */
59 static void *builtin_features_handlers[AST_BRIDGE_BUILTIN_END];
61 int __ast_bridge_technology_register(struct ast_bridge_technology *technology, struct ast_module *module)
63 struct ast_bridge_technology *current = NULL;
65 /* Perform a sanity check to make sure the bridge technology conforms to our needed requirements */
66 if (ast_strlen_zero(technology->name) || !technology->capabilities || !technology->write) {
67 ast_log(LOG_WARNING, "Bridge technology %s failed registration sanity check.\n", technology->name);
71 AST_RWLIST_WRLOCK(&bridge_technologies);
73 /* Look for duplicate bridge technology already using this name, or already registered */
74 AST_RWLIST_TRAVERSE(&bridge_technologies, current, entry) {
75 if ((!strcasecmp(current->name, technology->name)) || (current == technology)) {
76 ast_log(LOG_WARNING, "A bridge technology of %s already claims to exist in our world.\n", technology->name);
77 AST_RWLIST_UNLOCK(&bridge_technologies);
82 /* Copy module pointer so reference counting can keep the module from unloading */
83 technology->mod = module;
85 /* Insert our new bridge technology into the list and print out a pretty message */
86 AST_RWLIST_INSERT_TAIL(&bridge_technologies, technology, entry);
88 AST_RWLIST_UNLOCK(&bridge_technologies);
90 if (option_verbose > 1) {
91 ast_verbose(VERBOSE_PREFIX_2 "Registered bridge technology %s\n", technology->name);
97 int ast_bridge_technology_unregister(struct ast_bridge_technology *technology)
99 struct ast_bridge_technology *current = NULL;
101 AST_RWLIST_WRLOCK(&bridge_technologies);
103 /* Ensure the bridge technology is registered before removing it */
104 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&bridge_technologies, current, entry) {
105 if (current == technology) {
106 AST_RWLIST_REMOVE_CURRENT(entry);
107 if (option_verbose > 1) {
108 ast_verbose(VERBOSE_PREFIX_2 "Unregistered bridge technology %s\n", technology->name);
113 AST_RWLIST_TRAVERSE_SAFE_END;
115 AST_RWLIST_UNLOCK(&bridge_technologies);
117 return current ? 0 : -1;
120 void ast_bridge_change_state(struct ast_bridge_channel *bridge_channel, enum ast_bridge_channel_state new_state)
122 /* Change the state on the bridge channel */
123 bridge_channel->state = new_state;
125 /* Only poke the channel's thread if it is not us */
126 if (!pthread_equal(pthread_self(), bridge_channel->thread)) {
127 pthread_kill(bridge_channel->thread, SIGURG);
128 ao2_lock(bridge_channel);
129 ast_cond_signal(&bridge_channel->cond);
130 ao2_unlock(bridge_channel);
136 /*! \brief Helper function to poke the bridge thread */
137 static void bridge_poke(struct ast_bridge *bridge)
139 /* Poke the thread just in case */
140 if (bridge->thread != AST_PTHREADT_NULL && bridge->thread != AST_PTHREADT_STOP) {
141 pthread_kill(bridge->thread, SIGURG);
147 /*! \brief Helper function to add a channel to the bridge array
149 * \note This function assumes the bridge is locked.
151 static void bridge_array_add(struct ast_bridge *bridge, struct ast_channel *chan)
153 /* We have to make sure the bridge thread is not using the bridge array before messing with it */
154 while (bridge->waiting) {
159 bridge->array[bridge->array_num++] = chan;
161 ast_debug(1, "Added channel %s(%p) to bridge array on %p, new count is %d\n", chan->name, chan, bridge, (int)bridge->array_num);
163 /* If the next addition of a channel will exceed our array size grow it out */
164 if (bridge->array_num == bridge->array_size) {
165 struct ast_channel **tmp;
166 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);
167 if (!(tmp = ast_realloc(bridge->array, (bridge->array_size + BRIDGE_ARRAY_GROW) * sizeof(struct ast_channel *)))) {
168 ast_log(LOG_ERROR, "Failed to allocate more space for another channel on bridge '%p', this is not going to end well\n", bridge);
172 bridge->array_size += BRIDGE_ARRAY_GROW;
178 /*! \brief Helper function to remove a channel from the bridge array
180 * \note This function assumes the bridge is locked.
182 static void bridge_array_remove(struct ast_bridge *bridge, struct ast_channel *chan)
186 /* We have to make sure the bridge thread is not using the bridge array before messing with it */
187 while (bridge->waiting) {
192 for (i = 0; i < bridge->array_num; i++) {
193 if (bridge->array[i] == chan) {
194 bridge->array[i] = (bridge->array[(bridge->array_num - 1)] != chan ? bridge->array[(bridge->array_num - 1)] : NULL);
195 bridge->array[(bridge->array_num - 1)] = NULL;
197 ast_debug(1, "Removed channel %p from bridge array on %p, new count is %d\n", chan, bridge, (int)bridge->array_num);
205 /*! \brief Helper function to find a bridge channel given a channel */
206 static struct ast_bridge_channel *find_bridge_channel(struct ast_bridge *bridge, struct ast_channel *chan)
208 struct ast_bridge_channel *bridge_channel = NULL;
210 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel, entry) {
211 if (bridge_channel->chan == chan) {
216 return bridge_channel;
219 /*! \brief Internal function to see whether a bridge should dissolve, and if so do it */
220 static void bridge_check_dissolve(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
222 struct ast_bridge_channel *bridge_channel2 = NULL;
224 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))) {
228 ast_debug(1, "Dissolving bridge %p\n", bridge);
230 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel2, entry) {
231 if (bridge_channel2->state != AST_BRIDGE_CHANNEL_STATE_END && bridge_channel2->state != AST_BRIDGE_CHANNEL_STATE_DEPART) {
232 ast_bridge_change_state(bridge_channel2, AST_BRIDGE_CHANNEL_STATE_HANGUP);
236 /* Since all the channels are going away let's go ahead and stop our on thread */
242 /*! \brief Internal function to handle DTMF from a channel */
243 static struct ast_frame *bridge_handle_dtmf(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, struct ast_frame *frame)
245 struct ast_bridge_features *features = (bridge_channel->features ? bridge_channel->features : &bridge->features);
246 struct ast_bridge_features_hook *hook = NULL;
248 /* If the features structure we grabbed is not usable immediately return the frame */
249 if (!features->usable) {
253 /* 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 */
254 AST_LIST_TRAVERSE(&features->hooks, hook, entry) {
255 if (hook->dtmf[0] == frame->subclass.integer) {
258 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_FEATURE);
266 /*! \brief Internal function used to determine whether a control frame should be dropped or not */
267 static int bridge_drop_control_frame(int subclass)
270 case AST_CONTROL_ANSWER:
278 void ast_bridge_notify_talking(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, int started_talking)
280 if (started_talking) {
281 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_START_TALKING);
283 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_STOP_TALKING);
287 void ast_bridge_handle_trip(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, struct ast_channel *chan, int outfd)
289 /* If no bridge channel has been provided and the actual channel has been provided find it */
290 if (chan && !bridge_channel) {
291 bridge_channel = find_bridge_channel(bridge, chan);
294 /* If a bridge channel with actual channel is present read a frame and handle it */
295 if (chan && bridge_channel) {
296 struct ast_frame *frame = (((bridge->features.mute) || (bridge_channel->features && bridge_channel->features->mute)) ? ast_read_noaudio(chan) : ast_read(chan));
298 /* This is pretty simple... see if they hung up */
299 if (!frame || (frame->frametype == AST_FRAME_CONTROL && frame->subclass.integer == AST_CONTROL_HANGUP)) {
300 /* Signal the thread that is handling the bridged channel that it should be ended */
301 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_END);
302 } else if (frame->frametype == AST_FRAME_CONTROL && bridge_drop_control_frame(frame->subclass.integer)) {
303 ast_debug(1, "Dropping control frame from bridge channel %p\n", bridge_channel);
304 } else if (frame->frametype == AST_FRAME_DTMF_BEGIN || frame->frametype == AST_FRAME_DTMF_END) {
305 int dtmf_passthrough = bridge_channel->features ?
306 bridge_channel->features->dtmf_passthrough :
307 bridge->features.dtmf_passthrough;
309 if (frame->frametype == AST_FRAME_DTMF_BEGIN) {
310 frame = bridge_handle_dtmf(bridge, bridge_channel, frame);
313 if (frame && dtmf_passthrough) {
314 bridge->technology->write(bridge, bridge_channel, frame);
317 /* Simply write the frame out to the bridge technology if it still exists */
318 bridge->technology->write(bridge, bridge_channel, frame);
327 /* If a file descriptor actually tripped pass it off to the bridge technology */
328 if (outfd > -1 && bridge->technology->fd) {
329 bridge->technology->fd(bridge, bridge_channel, outfd);
333 /* If all else fails just poke the bridge */
334 if (bridge->technology->poke && bridge_channel) {
335 bridge->technology->poke(bridge, bridge_channel);
342 /*! \brief Generic thread loop, TODO: Rethink this/improve it */
343 static int generic_thread_loop(struct ast_bridge *bridge)
345 while (!bridge->stop && !bridge->refresh && bridge->array_num) {
346 struct ast_channel *winner = NULL;
349 /* Move channels around for priority reasons if we have more than one channel in our array */
350 if (bridge->array_num > 1) {
351 struct ast_channel *first = bridge->array[0];
352 memmove(bridge->array, bridge->array + 1, sizeof(struct ast_channel *) * (bridge->array_num - 1));
353 bridge->array[(bridge->array_num - 1)] = first;
356 /* Wait on the channels */
359 winner = ast_waitfor_n(bridge->array, (int)bridge->array_num, &to);
363 /* Process whatever they did */
364 ast_bridge_handle_trip(bridge, NULL, winner, -1);
370 /*! \brief Bridge thread function */
371 static void *bridge_thread(void *data)
373 struct ast_bridge *bridge = data;
378 ast_debug(1, "Started bridge thread for %p\n", bridge);
380 /* Loop around until we are told to stop */
381 while (!bridge->stop && bridge->array_num && !res) {
382 /* In case the refresh bit was set simply set it back to off */
385 ast_debug(1, "Launching bridge thread function %p for bridge %p\n", (bridge->technology->thread ? bridge->technology->thread : &generic_thread_loop), bridge);
387 /* Execute the appropriate thread function. If the technology does not provide one we use the generic one */
388 res = (bridge->technology->thread ? bridge->technology->thread(bridge) : generic_thread_loop(bridge));
391 ast_debug(1, "Ending bridge thread for %p\n", bridge);
393 /* Indicate the bridge thread is no longer active */
394 bridge->thread = AST_PTHREADT_NULL;
402 /*! \brief Helper function used to find the "best" bridge technology given a specified capabilities */
403 static struct ast_bridge_technology *find_best_technology(uint32_t capabilities)
405 struct ast_bridge_technology *current = NULL, *best = NULL;
407 AST_RWLIST_RDLOCK(&bridge_technologies);
408 AST_RWLIST_TRAVERSE(&bridge_technologies, current, entry) {
409 if (current->suspended) {
410 ast_debug(1, "Bridge technology %s is suspended. Skipping.\n", current->name);
413 if (!(current->capabilities & capabilities)) {
414 ast_debug(1, "Bridge technology %s does not have the capabilities we need.\n", current->name);
417 if (best && best->preference < current->preference) {
418 ast_debug(1, "Bridge technology %s has preference %d while %s has preference %d. Skipping.\n", current->name, current->preference, best->name, best->preference);
425 /* Increment it's module reference count if present so it does not get unloaded while in use */
427 ast_module_ref(best->mod);
429 ast_debug(1, "Chose bridge technology %s\n", best->name);
432 AST_RWLIST_UNLOCK(&bridge_technologies);
437 static void destroy_bridge(void *obj)
439 struct ast_bridge *bridge = obj;
441 ast_debug(1, "Actually destroying bridge %p, nobody wants it anymore\n", bridge);
443 /* Pass off the bridge to the technology to destroy if needed */
444 if (bridge->technology->destroy) {
445 ast_debug(1, "Giving bridge technology %s the bridge structure %p to destroy\n", bridge->technology->name, bridge);
446 if (bridge->technology->destroy(bridge)) {
447 ast_debug(1, "Bridge technology %s failed to destroy bridge structure %p... trying our best\n", bridge->technology->name, bridge);
451 /* We are no longer using the bridge technology so decrement the module reference count on it */
452 if (bridge->technology->mod) {
453 ast_module_unref(bridge->technology->mod);
456 /* Last but not least clean up the features configuration */
457 ast_bridge_features_cleanup(&bridge->features);
459 /* Drop the array of channels */
460 ast_free(bridge->array);
462 cleanup_video_mode(bridge);
467 struct ast_bridge *ast_bridge_new(uint32_t capabilities, int flags)
469 struct ast_bridge *bridge = NULL;
470 struct ast_bridge_technology *bridge_technology = NULL;
472 /* If we need to be a smart bridge see if we can move between 1to1 and multimix bridges */
473 if (flags & AST_BRIDGE_FLAG_SMART) {
474 struct ast_bridge *other_bridge;
476 if (!(other_bridge = ast_bridge_new((capabilities & AST_BRIDGE_CAPABILITY_1TO1MIX) ? AST_BRIDGE_CAPABILITY_MULTIMIX : AST_BRIDGE_CAPABILITY_1TO1MIX, 0))) {
480 ast_bridge_destroy(other_bridge);
483 /* If capabilities were provided use our helper function to find the "best" bridge technology, otherwise we can
484 * just look for the most basic capability needed, single 1to1 mixing. */
485 bridge_technology = (capabilities ? find_best_technology(capabilities) : find_best_technology(AST_BRIDGE_CAPABILITY_1TO1MIX));
487 /* If no bridge technology was found we can't possibly do bridging so fail creation of the bridge */
488 if (!bridge_technology) {
492 /* We have everything we need to create this bridge... so allocate the memory, link things together, and fire her up! */
493 if (!(bridge = ao2_alloc(sizeof(*bridge), destroy_bridge))) {
497 bridge->technology = bridge_technology;
498 bridge->thread = AST_PTHREADT_NULL;
500 /* Create an array of pointers for the channels that will be joining us */
501 bridge->array = ast_calloc(BRIDGE_ARRAY_START, sizeof(struct ast_channel*));
502 bridge->array_size = BRIDGE_ARRAY_START;
504 ast_set_flag(&bridge->feature_flags, flags);
506 /* Pass off the bridge to the technology to manipulate if needed */
507 if (bridge->technology->create) {
508 ast_debug(1, "Giving bridge technology %s the bridge structure %p to setup\n", bridge->technology->name, bridge);
509 if (bridge->technology->create(bridge)) {
510 ast_debug(1, "Bridge technology %s failed to setup bridge structure %p\n", bridge->technology->name, bridge);
519 int ast_bridge_check(uint32_t capabilities)
521 struct ast_bridge_technology *bridge_technology = NULL;
523 if (!(bridge_technology = find_best_technology(capabilities))) {
527 ast_module_unref(bridge_technology->mod);
532 int ast_bridge_destroy(struct ast_bridge *bridge)
534 struct ast_bridge_channel *bridge_channel = NULL;
542 ast_debug(1, "Telling all channels in bridge %p to end and leave the party\n", bridge);
544 /* Drop every bridged channel, the last one will cause the bridge thread (if it exists) to exit */
545 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel, entry) {
546 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_END);
556 static int bridge_make_compatible(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
558 struct ast_format formats[2];
559 ast_format_copy(&formats[0], &bridge_channel->chan->readformat);
560 ast_format_copy(&formats[1], &bridge_channel->chan->writeformat);
562 /* Are the formats currently in use something ths bridge can handle? */
563 if (!ast_format_cap_iscompatible(bridge->technology->format_capabilities, &bridge_channel->chan->readformat)) {
564 struct ast_format best_format;
565 ast_best_codec(bridge->technology->format_capabilities, &best_format);
567 /* Read format is a no go... */
570 ast_debug(1, "Bridge technology %s wants to read any of formats %s but channel has %s\n", bridge->technology->name,
571 ast_getformatname_multiple(codec_buf, sizeof(codec_buf), bridge->technology->format_capabilities),
572 ast_getformatname(&formats[0]));
574 /* Switch read format to the best one chosen */
575 if (ast_set_read_format(bridge_channel->chan, &best_format)) {
576 ast_log(LOG_WARNING, "Failed to set channel %s to read format %s\n", bridge_channel->chan->name, ast_getformatname(&best_format));
579 ast_debug(1, "Bridge %p put channel %s into read format %s\n", bridge, bridge_channel->chan->name, ast_getformatname(&best_format));
581 ast_debug(1, "Bridge %p is happy that channel %s already has read format %s\n", bridge, bridge_channel->chan->name, ast_getformatname(&formats[0]));
584 if (!ast_format_cap_iscompatible(bridge->technology->format_capabilities, &formats[1])) {
585 struct ast_format best_format;
586 ast_best_codec(bridge->technology->format_capabilities, &best_format);
588 /* Write format is a no go... */
591 ast_debug(1, "Bridge technology %s wants to write any of formats %s but channel has %s\n", bridge->technology->name,
592 ast_getformatname_multiple(codec_buf, sizeof(codec_buf), bridge->technology->format_capabilities),
593 ast_getformatname(&formats[1]));
595 /* Switch write format to the best one chosen */
596 if (ast_set_write_format(bridge_channel->chan, &best_format)) {
597 ast_log(LOG_WARNING, "Failed to set channel %s to write format %s\n", bridge_channel->chan->name, ast_getformatname(&best_format));
600 ast_debug(1, "Bridge %p put channel %s into write format %s\n", bridge, bridge_channel->chan->name, ast_getformatname(&best_format));
602 ast_debug(1, "Bridge %p is happy that channel %s already has write format %s\n", bridge, bridge_channel->chan->name, ast_getformatname(&formats[1]));
608 /*! \brief Perform the smart bridge operation. Basically sees if a new bridge technology should be used instead of the current one. */
609 static int smart_bridge_operation(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, int count)
611 uint32_t new_capabilities = 0;
612 struct ast_bridge_technology *new_technology = NULL, *old_technology = bridge->technology;
613 struct ast_bridge temp_bridge = {
614 .technology = bridge->technology,
615 .bridge_pvt = bridge->bridge_pvt,
617 struct ast_bridge_channel *bridge_channel2 = NULL;
619 /* Based on current feature determine whether we want to change bridge technologies or not */
620 if (bridge->technology->capabilities & AST_BRIDGE_CAPABILITY_1TO1MIX) {
622 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);
625 new_capabilities = AST_BRIDGE_CAPABILITY_MULTIMIX;
626 } else if (bridge->technology->capabilities & AST_BRIDGE_CAPABILITY_MULTIMIX) {
628 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);
631 new_capabilities = AST_BRIDGE_CAPABILITY_1TO1MIX;
634 if (!new_capabilities) {
635 ast_debug(1, "Bridge '%p' has no new capabilities, not performing smart bridge operation.\n", bridge);
639 /* Attempt to find a new bridge technology to satisfy the capabilities */
640 if (!(new_technology = find_best_technology(new_capabilities))) {
644 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);
646 /* If a thread is currently executing for the current technology tell it to stop */
647 if (bridge->thread != AST_PTHREADT_NULL) {
648 /* 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. */
649 if (new_technology->capabilities & AST_BRIDGE_CAPABILITY_THREAD) {
650 ast_debug(1, "Telling current bridge thread for bridge %p to refresh\n", bridge);
654 pthread_t bridge_thread = bridge->thread;
655 ast_debug(1, "Telling current bridge thread for bridge %p to stop\n", bridge);
659 pthread_join(bridge_thread, NULL);
664 /* 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 */
665 bridge->bridge_pvt = NULL;
666 bridge->technology = new_technology;
668 /* Pass the bridge to the new bridge technology so it can set it up */
669 if (new_technology->create) {
670 ast_debug(1, "Giving bridge technology %s the bridge structure %p to setup\n", new_technology->name, bridge);
671 if (new_technology->create(bridge)) {
672 ast_debug(1, "Bridge technology %s failed to setup bridge structure %p\n", new_technology->name, bridge);
676 /* Move existing channels over to the new technology, while taking them away from the old one */
677 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel2, entry) {
678 /* Skip over channel that initiated the smart bridge operation */
679 if (bridge_channel == bridge_channel2) {
683 /* First we part them from the old technology */
684 if (old_technology->leave) {
685 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);
686 if (old_technology->leave(&temp_bridge, bridge_channel2)) {
687 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);
691 /* Second we make them compatible again with the bridge */
692 bridge_make_compatible(bridge, bridge_channel2);
694 /* Third we join them to the new technology */
695 if (new_technology->join) {
696 ast_debug(1, "Giving bridge technology %s notification that %p is joining bridge %p\n", new_technology->name, bridge_channel2, bridge);
697 if (new_technology->join(bridge, bridge_channel2)) {
698 ast_debug(1, "Bridge technology %s failed to join %p to bridge %p\n", new_technology->name, bridge_channel2, bridge);
702 /* Fourth we tell them to wake up so they become aware that they above has happened */
703 pthread_kill(bridge_channel2->thread, SIGURG);
704 ao2_lock(bridge_channel2);
705 ast_cond_signal(&bridge_channel2->cond);
706 ao2_unlock(bridge_channel2);
709 /* 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 */
710 if (old_technology->destroy) {
711 ast_debug(1, "Giving bridge technology %s the bridge structure %p (really %p) to destroy\n", old_technology->name, &temp_bridge, bridge);
712 if (old_technology->destroy(&temp_bridge)) {
713 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);
717 /* Finally if the old technology has module referencing remove our reference, we are no longer going to use it */
718 if (old_technology->mod) {
719 ast_module_unref(old_technology->mod);
725 /*! \brief Run in a multithreaded model. Each joined channel does writing/reading in their own thread. TODO: Improve */
726 static enum ast_bridge_channel_state bridge_channel_join_multithreaded(struct ast_bridge_channel *bridge_channel)
728 int fds[4] = { -1, }, nfds = 0, i = 0, outfd = -1, ms = -1;
729 struct ast_channel *chan = NULL;
731 /* Add any file descriptors we may want to monitor */
732 if (bridge_channel->bridge->technology->fd) {
733 for (i = 0; i < 4; i ++) {
734 if (bridge_channel->fds[i] >= 0) {
735 fds[nfds++] = bridge_channel->fds[i];
740 ao2_unlock(bridge_channel->bridge);
742 /* Wait for data to either come from the channel or us to be signalled */
743 if (!bridge_channel->suspended) {
744 ast_debug(10, "Going into a multithreaded waitfor for bridge channel %p of bridge %p\n", bridge_channel, bridge_channel->bridge);
745 chan = ast_waitfor_nandfds(&bridge_channel->chan, 1, fds, nfds, NULL, &outfd, &ms);
747 ao2_lock(bridge_channel);
748 ast_debug(10, "Going into a multithreaded signal wait for bridge channel %p of bridge %p\n", bridge_channel, bridge_channel->bridge);
749 ast_cond_wait(&bridge_channel->cond, ao2_object_get_lockaddr(bridge_channel));
750 ao2_unlock(bridge_channel);
753 ao2_lock(bridge_channel->bridge);
755 if (!bridge_channel->suspended) {
756 ast_bridge_handle_trip(bridge_channel->bridge, bridge_channel, chan, outfd);
759 return bridge_channel->state;
762 /*! \brief Run in a singlethreaded model. Each joined channel yields itself to the main bridge thread. TODO: Improve */
763 static enum ast_bridge_channel_state bridge_channel_join_singlethreaded(struct ast_bridge_channel *bridge_channel)
765 ao2_unlock(bridge_channel->bridge);
766 ao2_lock(bridge_channel);
767 if (bridge_channel->state == AST_BRIDGE_CHANNEL_STATE_WAIT) {
768 ast_debug(1, "Going into a single threaded signal wait for bridge channel %p of bridge %p\n", bridge_channel, bridge_channel->bridge);
769 ast_cond_wait(&bridge_channel->cond, ao2_object_get_lockaddr(bridge_channel));
771 ao2_unlock(bridge_channel);
772 ao2_lock(bridge_channel->bridge);
774 return bridge_channel->state;
777 /*! \brief Internal function that suspends a channel from a bridge */
778 static void bridge_channel_suspend(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
780 bridge_channel->suspended = 1;
782 bridge_array_remove(bridge, bridge_channel->chan);
784 if (bridge->technology->suspend) {
785 bridge->technology->suspend(bridge, bridge_channel);
791 /*! \brief Internal function that unsuspends a channel from a bridge */
792 static void bridge_channel_unsuspend(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
794 bridge_channel->suspended =0;
796 bridge_array_add(bridge, bridge_channel->chan);
798 if (bridge->technology->unsuspend) {
799 bridge->technology->unsuspend(bridge, bridge_channel);
806 * \brief Internal function that executes a feature on a bridge channel
807 * \note Neither the bridge nor the bridge_channel locks should be held when entering
810 static void bridge_channel_feature(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
812 struct ast_bridge_features *features = (bridge_channel->features ? bridge_channel->features : &bridge->features);
813 struct ast_bridge_features_hook *hook = NULL;
814 char dtmf[MAXIMUM_DTMF_FEATURE_STRING] = "";
815 int look_for_dtmf = 1, dtmf_len = 0;
817 /* 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 */
818 ast_set_flag(bridge_channel->chan, AST_FLAG_END_DTMF_ONLY);
820 /* Wait for DTMF on the channel and put it into a buffer. If the buffer matches any feature hook execute the hook. */
821 while (look_for_dtmf) {
822 int res = ast_waitfordigit(bridge_channel->chan, 3000);
824 /* If the above timed out simply exit */
826 ast_debug(1, "DTMF feature string collection on bridge channel %p timed out\n", bridge_channel);
828 } else if (res < 0) {
829 ast_debug(1, "DTMF feature string collection failed on bridge channel %p for some reason\n", bridge_channel);
833 /* Add the above DTMF into the DTMF string so we can do our matching */
834 dtmf[dtmf_len++] = res;
836 ast_debug(1, "DTMF feature string on bridge channel %p is now '%s'\n", bridge_channel, dtmf);
838 /* Assume that we do not want to look for DTMF any longer */
841 /* See if a DTMF feature hook matches or can match */
842 AST_LIST_TRAVERSE(&features->hooks, hook, entry) {
843 /* If this hook matches just break out now */
844 if (!strcmp(hook->dtmf, dtmf)) {
845 ast_debug(1, "DTMF feature hook %p matched DTMF string '%s' on bridge channel %p\n", hook, dtmf, bridge_channel);
848 } else if (!strncmp(hook->dtmf, dtmf, dtmf_len)) {
849 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);
852 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);
856 /* If we have reached the maximum length of a DTMF feature string bail out */
857 if (dtmf_len == MAXIMUM_DTMF_FEATURE_STRING) {
862 /* Since we are done bringing DTMF in return to using both begin and end frames */
863 ast_clear_flag(bridge_channel->chan, AST_FLAG_END_DTMF_ONLY);
865 /* If a hook was actually matched execute it on this channel, otherwise stream up the DTMF to the other channels */
867 hook->callback(bridge, bridge_channel, hook->hook_pvt);
869 ast_bridge_dtmf_stream(bridge, dtmf, bridge_channel->chan);
872 /* if the channel is still in feature state, revert it back to wait state */
873 if (bridge_channel->state == AST_BRIDGE_CHANNEL_STATE_FEATURE) {
874 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_WAIT);
880 static void bridge_channel_talking(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
882 struct ast_bridge_features *features = (bridge_channel->features ? bridge_channel->features : &bridge->features);
884 if (features && features->talker_cb) {
885 features->talker_cb(bridge, bridge_channel, features->talker_pvt_data);
887 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_WAIT);
890 /*! \brief Internal function that plays back DTMF on a bridge channel */
891 static void bridge_channel_dtmf_stream(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel)
895 ast_copy_string(dtmf_q, bridge_channel->dtmf_stream_q, sizeof(dtmf_q));
896 bridge_channel->dtmf_stream_q[0] = '\0';
898 ast_debug(1, "Playing DTMF stream '%s' out to bridge channel %p\n", dtmf_q, bridge_channel);
899 ast_dtmf_stream(bridge_channel->chan, NULL, dtmf_q, 250, 0);
901 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_WAIT);
906 /*! \brief Join a channel to a bridge and handle anything the bridge may want us to do */
907 static enum ast_bridge_channel_state bridge_channel_join(struct ast_bridge_channel *bridge_channel)
909 struct ast_format formats[2];
910 enum ast_bridge_channel_state state;
911 ast_format_copy(&formats[0], &bridge_channel->chan->readformat);
912 ast_format_copy(&formats[1], &bridge_channel->chan->writeformat);
914 /* Record the thread that will be the owner of us */
915 bridge_channel->thread = pthread_self();
917 ast_debug(1, "Joining bridge channel %p to bridge %p\n", bridge_channel, bridge_channel->bridge);
919 ao2_lock(bridge_channel->bridge);
921 state = bridge_channel->state;
923 /* Add channel into the bridge */
924 AST_LIST_INSERT_TAIL(&bridge_channel->bridge->channels, bridge_channel, entry);
925 bridge_channel->bridge->num++;
927 bridge_array_add(bridge_channel->bridge, bridge_channel->chan);
929 if (bridge_channel->swap) {
930 struct ast_bridge_channel *bridge_channel2 = NULL;
932 /* If we are performing a swap operation we do not need
933 * to execute the smart bridge operation as the actual number
934 * of channels involved will not have changed, we just need to
935 * tell the other channel to leave */
936 if ((bridge_channel2 = find_bridge_channel(bridge_channel->bridge, bridge_channel->swap))) {
937 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);
938 ast_bridge_change_state(bridge_channel2, AST_BRIDGE_CHANNEL_STATE_HANGUP);
941 bridge_channel->swap = NULL;
942 } else if (ast_test_flag(&bridge_channel->bridge->feature_flags, AST_BRIDGE_FLAG_SMART)) {
943 /* Perform the smart bridge operation, basically see if we need to move around between technologies */
944 smart_bridge_operation(bridge_channel->bridge, bridge_channel, bridge_channel->bridge->num);
947 /* Make the channel compatible with the bridge */
948 bridge_make_compatible(bridge_channel->bridge, bridge_channel);
950 /* Tell the bridge technology we are joining so they set us up */
951 if (bridge_channel->bridge->technology->join) {
952 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);
953 if (bridge_channel->bridge->technology->join(bridge_channel->bridge, bridge_channel)) {
954 ast_debug(1, "Bridge technology %s failed to join %p to bridge %p\n", bridge_channel->bridge->technology->name, bridge_channel, bridge_channel->bridge);
958 /* Actually execute the respective threading model, and keep our bridge thread alive */
959 while (bridge_channel->state == AST_BRIDGE_CHANNEL_STATE_WAIT) {
960 /* Update bridge pointer on channel */
961 bridge_channel->chan->bridge = bridge_channel->bridge;
962 /* If the technology requires a thread and one is not running, start it up */
963 if (bridge_channel->bridge->thread == AST_PTHREADT_NULL && (bridge_channel->bridge->technology->capabilities & AST_BRIDGE_CAPABILITY_THREAD)) {
964 bridge_channel->bridge->stop = 0;
965 ast_debug(1, "Starting a bridge thread for bridge %p\n", bridge_channel->bridge);
966 ao2_ref(bridge_channel->bridge, +1);
967 if (ast_pthread_create(&bridge_channel->bridge->thread, NULL, bridge_thread, bridge_channel->bridge)) {
968 ast_debug(1, "Failed to create a bridge thread for bridge %p, giving it another go.\n", bridge_channel->bridge);
969 ao2_ref(bridge_channel->bridge, -1);
973 /* Execute the threading model */
974 state = (bridge_channel->bridge->technology->capabilities & AST_BRIDGE_CAPABILITY_MULTITHREADED ? bridge_channel_join_multithreaded(bridge_channel) : bridge_channel_join_singlethreaded(bridge_channel));
975 /* Depending on the above state see what we need to do */
977 case AST_BRIDGE_CHANNEL_STATE_FEATURE:
978 bridge_channel_suspend(bridge_channel->bridge, bridge_channel);
979 ao2_unlock(bridge_channel->bridge);
980 bridge_channel_feature(bridge_channel->bridge, bridge_channel);
981 ao2_lock(bridge_channel->bridge);
982 bridge_channel_unsuspend(bridge_channel->bridge, bridge_channel);
984 case AST_BRIDGE_CHANNEL_STATE_DTMF:
985 bridge_channel_suspend(bridge_channel->bridge, bridge_channel);
986 bridge_channel_dtmf_stream(bridge_channel->bridge, bridge_channel);
987 bridge_channel_unsuspend(bridge_channel->bridge, bridge_channel);
989 case AST_BRIDGE_CHANNEL_STATE_START_TALKING:
990 case AST_BRIDGE_CHANNEL_STATE_STOP_TALKING:
991 ao2_unlock(bridge_channel->bridge);
992 bridge_channel_talking(bridge_channel->bridge, bridge_channel);
993 ao2_lock(bridge_channel->bridge);
1000 bridge_channel->chan->bridge = NULL;
1002 /* See if we need to dissolve the bridge itself if they hung up */
1003 if (bridge_channel->state == AST_BRIDGE_CHANNEL_STATE_END) {
1004 bridge_check_dissolve(bridge_channel->bridge, bridge_channel);
1007 /* Tell the bridge technology we are leaving so they tear us down */
1008 if (bridge_channel->bridge->technology->leave) {
1009 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);
1010 if (bridge_channel->bridge->technology->leave(bridge_channel->bridge, bridge_channel)) {
1011 ast_debug(1, "Bridge technology %s failed to leave %p from bridge %p\n", bridge_channel->bridge->technology->name, bridge_channel, bridge_channel->bridge);
1015 /* Remove channel from the bridge */
1016 bridge_channel->bridge->num--;
1017 AST_LIST_REMOVE(&bridge_channel->bridge->channels, bridge_channel, entry);
1019 bridge_array_remove(bridge_channel->bridge, bridge_channel->chan);
1021 /* Perform the smart bridge operation if needed since a channel has left */
1022 if (ast_test_flag(&bridge_channel->bridge->feature_flags, AST_BRIDGE_FLAG_SMART)) {
1023 smart_bridge_operation(bridge_channel->bridge, NULL, bridge_channel->bridge->num);
1026 ao2_unlock(bridge_channel->bridge);
1028 /* Restore original formats of the channel as they came in */
1029 if (ast_format_cmp(&bridge_channel->chan->readformat, &formats[0]) == AST_FORMAT_CMP_NOT_EQUAL) {
1030 ast_debug(1, "Bridge is returning %p to read format %s(%d)\n", bridge_channel, ast_getformatname(&formats[0]), formats[0].id);
1031 if (ast_set_read_format(bridge_channel->chan, &formats[0])) {
1032 ast_debug(1, "Bridge failed to return channel %p to read format %s(%d)\n", bridge_channel, ast_getformatname(&formats[0]), formats[0].id);
1035 if (ast_format_cmp(&bridge_channel->chan->writeformat, &formats[1]) == AST_FORMAT_CMP_NOT_EQUAL) {
1036 ast_debug(1, "Bridge is returning %p to write format %s(%d)\n", bridge_channel, ast_getformatname(&formats[1]), formats[1].id);
1037 if (ast_set_write_format(bridge_channel->chan, &formats[1])) {
1038 ast_debug(1, "Bridge failed to return channel %p to write format %s(%d)\n", bridge_channel, ast_getformatname(&formats[1]), formats[1].id);
1042 return bridge_channel->state;
1045 static void bridge_channel_destroy(void *obj)
1047 struct ast_bridge_channel *bridge_channel = obj;
1049 if (bridge_channel->bridge) {
1050 ao2_ref(bridge_channel->bridge, -1);
1051 bridge_channel->bridge = NULL;
1053 /* Destroy elements of the bridge channel structure and the bridge channel structure itself */
1054 ast_cond_destroy(&bridge_channel->cond);
1057 static struct ast_bridge_channel *bridge_channel_alloc(struct ast_bridge *bridge)
1059 struct ast_bridge_channel *bridge_channel = ao2_alloc(sizeof(struct ast_bridge_channel), bridge_channel_destroy);
1060 if (!(bridge_channel)) {
1063 ast_cond_init(&bridge_channel->cond, NULL);
1065 bridge_channel->bridge = bridge;
1066 ao2_ref(bridge_channel->bridge, +1);
1068 return bridge_channel;
1071 enum ast_bridge_channel_state ast_bridge_join(struct ast_bridge *bridge,
1072 struct ast_channel *chan,
1073 struct ast_channel *swap,
1074 struct ast_bridge_features *features,
1075 struct ast_bridge_tech_optimizations *tech_args)
1077 struct ast_bridge_channel *bridge_channel = bridge_channel_alloc(bridge);
1078 enum ast_bridge_channel_state state = AST_BRIDGE_CHANNEL_STATE_HANGUP;
1080 if (!bridge_channel) {
1084 memcpy(&bridge_channel->tech_args, tech_args, sizeof(bridge_channel->tech_args));
1087 /* Initialize various other elements of the bridge channel structure that we can't do above */
1088 bridge_channel->chan = chan;
1089 bridge_channel->swap = swap;
1090 bridge_channel->features = features;
1092 state = bridge_channel_join(bridge_channel);
1094 /* Cleanup all the data in the bridge channel after it leaves the bridge. */
1095 ao2_lock(bridge_channel);
1096 bridge_channel->chan = NULL;
1097 bridge_channel->swap = NULL;
1098 bridge_channel->features = NULL;
1099 ao2_unlock(bridge_channel);
1101 ao2_ref(bridge_channel, -1);
1106 /*! \brief Thread responsible for imparted bridged channels */
1107 static void *bridge_channel_thread(void *data)
1109 struct ast_bridge_channel *bridge_channel = data;
1110 enum ast_bridge_channel_state state;
1112 state = bridge_channel_join(bridge_channel);
1114 /* 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 */
1115 if (state == AST_BRIDGE_CHANNEL_STATE_END || state == AST_BRIDGE_CHANNEL_STATE_HANGUP) {
1116 ast_hangup(bridge_channel->chan);
1120 ao2_lock(bridge_channel);
1121 bridge_channel->chan = NULL;
1122 bridge_channel->swap = NULL;
1123 bridge_channel->features = NULL;
1124 ao2_unlock(bridge_channel);
1126 ao2_ref(bridge_channel, -1);
1131 int ast_bridge_impart(struct ast_bridge *bridge, struct ast_channel *chan, struct ast_channel *swap, struct ast_bridge_features *features)
1133 struct ast_bridge_channel *bridge_channel = bridge_channel_alloc(bridge);
1134 /* Try to allocate a structure for the bridge channel */
1135 if (!(bridge_channel)) {
1139 /* Setup various parameters */
1140 bridge_channel->chan = chan;
1141 bridge_channel->swap = swap;
1142 bridge_channel->features = features;
1144 /* Actually create the thread that will handle the channel */
1145 if (ast_pthread_create(&bridge_channel->thread, NULL, bridge_channel_thread, bridge_channel)) {
1146 ao2_ref(bridge_channel, -1);
1153 int ast_bridge_depart(struct ast_bridge *bridge, struct ast_channel *chan)
1155 struct ast_bridge_channel *bridge_channel = NULL;
1160 /* Try to find the channel that we want to depart */
1161 if (!(bridge_channel = find_bridge_channel(bridge, chan))) {
1166 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_DEPART);
1167 thread = bridge_channel->thread;
1171 pthread_join(thread, NULL);
1176 int ast_bridge_remove(struct ast_bridge *bridge, struct ast_channel *chan)
1178 struct ast_bridge_channel *bridge_channel = NULL;
1182 /* Try to find the channel that we want to remove */
1183 if (!(bridge_channel = find_bridge_channel(bridge, chan))) {
1188 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_HANGUP);
1195 int ast_bridge_merge(struct ast_bridge *bridge0, struct ast_bridge *bridge1)
1197 struct ast_bridge_channel *bridge_channel = NULL;
1202 /* If the first bridge currently has 2 channels and is not capable of becoming a multimixing bridge we can not merge */
1203 if ((bridge0->num + bridge1->num) > 2 && (!(bridge0->technology->capabilities & AST_BRIDGE_CAPABILITY_MULTIMIX) && !ast_test_flag(&bridge0->feature_flags, AST_BRIDGE_FLAG_SMART))) {
1204 ao2_unlock(bridge1);
1205 ao2_unlock(bridge0);
1206 ast_debug(1, "Can't merge bridge %p into bridge %p, multimix is needed and it could not be acquired.\n", bridge1, bridge0);
1210 ast_debug(1, "Merging channels from bridge %p into bridge %p\n", bridge1, bridge0);
1212 /* Perform smart bridge operation on bridge we are merging into so it can change bridge technology if needed */
1213 if (smart_bridge_operation(bridge0, NULL, bridge0->num + bridge1->num)) {
1214 ao2_unlock(bridge1);
1215 ao2_unlock(bridge0);
1216 ast_debug(1, "Can't merge bridge %p into bridge %p, tried to perform smart bridge operation and failed.\n", bridge1, bridge0);
1220 /* If a thread is currently executing on bridge1 tell it to stop */
1221 if (bridge1->thread) {
1222 ast_debug(1, "Telling bridge thread on bridge %p to stop as it is being merged into %p\n", bridge1, bridge0);
1223 bridge1->thread = AST_PTHREADT_STOP;
1226 /* Move channels from bridge1 over to bridge0 */
1227 while ((bridge_channel = AST_LIST_REMOVE_HEAD(&bridge1->channels, entry))) {
1228 /* Tell the technology handling bridge1 that the bridge channel is leaving */
1229 if (bridge1->technology->leave) {
1230 ast_debug(1, "Giving bridge technology %s notification that %p is leaving bridge %p\n", bridge1->technology->name, bridge_channel, bridge1);
1231 if (bridge1->technology->leave(bridge1, bridge_channel)) {
1232 ast_debug(1, "Bridge technology %s failed to allow %p to leave bridge %p\n", bridge1->technology->name, bridge_channel, bridge1);
1236 /* Drop channel count and reference count on the bridge they are leaving */
1238 ao2_ref(bridge1, -1);
1240 bridge_array_remove(bridge1, bridge_channel->chan);
1242 /* Now add them into the bridge they are joining, increase channel count, and bump up reference count */
1243 bridge_channel->bridge = bridge0;
1244 AST_LIST_INSERT_TAIL(&bridge0->channels, bridge_channel, entry);
1246 ao2_ref(bridge0, +1);
1248 bridge_array_add(bridge0, bridge_channel->chan);
1250 /* Make the channel compatible with the new bridge it is joining or else formats would go amuck */
1251 bridge_make_compatible(bridge0, bridge_channel);
1253 /* Tell the technology handling bridge0 that the bridge channel is joining */
1254 if (bridge0->technology->join) {
1255 ast_debug(1, "Giving bridge technology %s notification that %p is joining bridge %p\n", bridge0->technology->name, bridge_channel, bridge0);
1256 if (bridge0->technology->join(bridge0, bridge_channel)) {
1257 ast_debug(1, "Bridge technology %s failed to join %p to bridge %p\n", bridge0->technology->name, bridge_channel, bridge0);
1261 /* Poke the bridge channel, this will cause it to wake up and execute the proper threading model for the new bridge it is in */
1262 pthread_kill(bridge_channel->thread, SIGURG);
1263 ao2_lock(bridge_channel);
1264 ast_cond_signal(&bridge_channel->cond);
1265 ao2_unlock(bridge_channel);
1268 ast_debug(1, "Merged channels from bridge %p into bridge %p\n", bridge1, bridge0);
1270 ao2_unlock(bridge1);
1271 ao2_unlock(bridge0);
1276 int ast_bridge_suspend(struct ast_bridge *bridge, struct ast_channel *chan)
1278 struct ast_bridge_channel *bridge_channel;
1282 if (!(bridge_channel = find_bridge_channel(bridge, chan))) {
1287 bridge_channel_suspend(bridge, bridge_channel);
1294 int ast_bridge_unsuspend(struct ast_bridge *bridge, struct ast_channel *chan)
1296 struct ast_bridge_channel *bridge_channel;
1300 if (!(bridge_channel = find_bridge_channel(bridge, chan))) {
1305 bridge_channel_unsuspend(bridge, bridge_channel);
1312 void ast_bridge_technology_suspend(struct ast_bridge_technology *technology)
1314 technology->suspended = 1;
1318 void ast_bridge_technology_unsuspend(struct ast_bridge_technology *technology)
1320 technology->suspended = 0;
1324 int ast_bridge_features_register(enum ast_bridge_builtin_feature feature, ast_bridge_features_hook_callback callback, const char *dtmf)
1326 if (builtin_features_handlers[feature]) {
1330 if (!ast_strlen_zero(dtmf)) {
1331 ast_copy_string(builtin_features_dtmf[feature], dtmf, sizeof(builtin_features_dtmf[feature]));
1334 builtin_features_handlers[feature] = callback;
1339 int ast_bridge_features_unregister(enum ast_bridge_builtin_feature feature)
1341 if (!builtin_features_handlers[feature]) {
1345 builtin_features_handlers[feature] = NULL;
1350 int ast_bridge_features_hook(struct ast_bridge_features *features,
1352 ast_bridge_features_hook_callback callback,
1354 ast_bridge_features_hook_pvt_destructor destructor)
1356 struct ast_bridge_features_hook *hook = NULL;
1358 /* Allocate new memory and setup it's various variables */
1359 if (!(hook = ast_calloc(1, sizeof(*hook)))) {
1363 ast_copy_string(hook->dtmf, dtmf, sizeof(hook->dtmf));
1364 hook->callback = callback;
1365 hook->destructor = destructor;
1366 hook->hook_pvt = hook_pvt;
1368 /* Once done we add it onto the list. Now it will be picked up when DTMF is used */
1369 AST_LIST_INSERT_TAIL(&features->hooks, hook, entry);
1371 features->usable = 1;
1376 int ast_bridge_features_set_talk_detector(struct ast_bridge_features *features,
1377 ast_bridge_talking_indicate_callback talker_cb,
1378 ast_bridge_talking_indicate_destructor talker_destructor,
1381 features->talker_cb = talker_cb;
1382 features->talker_destructor_cb = talker_destructor;
1383 features->talker_pvt_data = pvt_data;
1387 int ast_bridge_features_enable(struct ast_bridge_features *features, enum ast_bridge_builtin_feature feature, const char *dtmf, void *config)
1389 /* If no alternate DTMF stream was provided use the default one */
1390 if (ast_strlen_zero(dtmf)) {
1391 dtmf = builtin_features_dtmf[feature];
1392 /* If no DTMF is still available (ie: it has been disabled) then error out now */
1393 if (ast_strlen_zero(dtmf)) {
1394 ast_debug(1, "Failed to enable built in feature %d on %p, no DTMF string is available for it.\n", feature, features);
1399 if (!builtin_features_handlers[feature]) {
1403 /* The rest is basically pretty easy. We create another hook using the built in feature's callback and DTMF, easy as pie. */
1404 return ast_bridge_features_hook(features, dtmf, builtin_features_handlers[feature], config, NULL);
1407 int ast_bridge_features_set_flag(struct ast_bridge_features *features, enum ast_bridge_feature_flags flag)
1409 ast_set_flag(&features->feature_flags, flag);
1410 features->usable = 1;
1414 int ast_bridge_features_init(struct ast_bridge_features *features)
1416 /* Zero out the structure */
1417 memset(features, 0, sizeof(*features));
1419 /* Initialize the hooks list, just in case */
1420 AST_LIST_HEAD_INIT_NOLOCK(&features->hooks);
1425 int ast_bridge_features_cleanup(struct ast_bridge_features *features)
1427 struct ast_bridge_features_hook *hook = NULL;
1429 /* This is relatively simple, hooks are kept as a list on the features structure so we just pop them off and free them */
1430 while ((hook = AST_LIST_REMOVE_HEAD(&features->hooks, entry))) {
1431 if (hook->destructor) {
1432 hook->destructor(hook->hook_pvt);
1436 if (features->talker_destructor_cb && features->talker_pvt_data) {
1437 features->talker_destructor_cb(features->talker_pvt_data);
1438 features->talker_pvt_data = NULL;
1444 int ast_bridge_dtmf_stream(struct ast_bridge *bridge, const char *dtmf, struct ast_channel *chan)
1446 struct ast_bridge_channel *bridge_channel = NULL;
1450 AST_LIST_TRAVERSE(&bridge->channels, bridge_channel, entry) {
1451 if (bridge_channel->chan == chan) {
1454 ast_copy_string(bridge_channel->dtmf_stream_q, dtmf, sizeof(bridge_channel->dtmf_stream_q));
1455 ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_DTMF);
1463 void ast_bridge_set_mixing_interval(struct ast_bridge *bridge, unsigned int mixing_interval)
1466 bridge->internal_mixing_interval = mixing_interval;
1470 void ast_bridge_set_internal_sample_rate(struct ast_bridge *bridge, unsigned int sample_rate)
1474 bridge->internal_sample_rate = sample_rate;
1478 static void cleanup_video_mode(struct ast_bridge *bridge)
1480 switch (bridge->video_mode.mode) {
1481 case AST_BRIDGE_VIDEO_MODE_NONE:
1483 case AST_BRIDGE_VIDEO_MODE_SINGLE_SRC:
1484 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc) {
1485 ast_channel_unref(bridge->video_mode.mode_data.single_src_data.chan_vsrc);
1488 case AST_BRIDGE_VIDEO_MODE_TALKER_SRC:
1489 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc) {
1490 ast_channel_unref(bridge->video_mode.mode_data.talker_src_data.chan_vsrc);
1492 if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc) {
1493 ast_channel_unref(bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc);
1496 memset(&bridge->video_mode, 0, sizeof(bridge->video_mode));
1499 void ast_bridge_set_single_src_video_mode(struct ast_bridge *bridge, struct ast_channel *video_src_chan)
1502 cleanup_video_mode(bridge);
1503 bridge->video_mode.mode = AST_BRIDGE_VIDEO_MODE_SINGLE_SRC;
1504 bridge->video_mode.mode_data.single_src_data.chan_vsrc = ast_channel_ref(video_src_chan);
1505 ast_indicate(video_src_chan, AST_CONTROL_VIDUPDATE);
1509 void ast_bridge_set_talker_src_video_mode(struct ast_bridge *bridge)
1512 cleanup_video_mode(bridge);
1513 bridge->video_mode.mode = AST_BRIDGE_VIDEO_MODE_TALKER_SRC;
1517 void ast_bridge_update_talker_src_video_mode(struct ast_bridge *bridge, struct ast_channel *chan, int talker_energy, int is_keyframe)
1519 struct ast_bridge_video_talker_src_data *data;
1520 /* If the channel doesn't support video, we don't care about it */
1521 if (!ast_format_cap_has_type(chan->nativeformats, AST_FORMAT_TYPE_VIDEO)) {
1526 data = &bridge->video_mode.mode_data.talker_src_data;
1528 if (data->chan_vsrc == chan) {
1529 data->average_talking_energy = talker_energy;
1530 } else if ((data->average_talking_energy < talker_energy) && is_keyframe) {
1531 if (data->chan_old_vsrc) {
1532 ast_channel_unref(data->chan_old_vsrc);
1534 if (data->chan_vsrc) {
1535 data->chan_old_vsrc = data->chan_vsrc;
1536 ast_indicate(data->chan_old_vsrc, AST_CONTROL_VIDUPDATE);
1538 data->chan_vsrc = ast_channel_ref(chan);
1539 data->average_talking_energy = talker_energy;
1540 } else if ((data->average_talking_energy < talker_energy) && !is_keyframe) {
1541 ast_indicate(chan, AST_CONTROL_VIDUPDATE);
1542 } else if (!data->chan_vsrc && is_keyframe) {
1543 data->chan_vsrc = ast_channel_ref(chan);
1544 data->average_talking_energy = talker_energy;
1545 ast_indicate(chan, AST_CONTROL_VIDUPDATE);
1546 } else if (!data->chan_old_vsrc && is_keyframe) {
1547 data->chan_old_vsrc = ast_channel_ref(chan);
1548 ast_indicate(chan, AST_CONTROL_VIDUPDATE);
1553 int ast_bridge_number_video_src(struct ast_bridge *bridge)
1558 switch (bridge->video_mode.mode) {
1559 case AST_BRIDGE_VIDEO_MODE_NONE:
1561 case AST_BRIDGE_VIDEO_MODE_SINGLE_SRC:
1562 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc) {
1566 case AST_BRIDGE_VIDEO_MODE_TALKER_SRC:
1567 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc) {
1570 if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc) {
1578 int ast_bridge_is_video_src(struct ast_bridge *bridge, struct ast_channel *chan)
1583 switch (bridge->video_mode.mode) {
1584 case AST_BRIDGE_VIDEO_MODE_NONE:
1586 case AST_BRIDGE_VIDEO_MODE_SINGLE_SRC:
1587 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc == chan) {
1591 case AST_BRIDGE_VIDEO_MODE_TALKER_SRC:
1592 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc == chan) {
1594 } else if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc == chan) {
1603 void ast_bridge_remove_video_src(struct ast_bridge *bridge, struct ast_channel *chan)
1606 switch (bridge->video_mode.mode) {
1607 case AST_BRIDGE_VIDEO_MODE_NONE:
1609 case AST_BRIDGE_VIDEO_MODE_SINGLE_SRC:
1610 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc == chan) {
1611 if (bridge->video_mode.mode_data.single_src_data.chan_vsrc) {
1612 ast_channel_unref(bridge->video_mode.mode_data.single_src_data.chan_vsrc);
1614 bridge->video_mode.mode_data.single_src_data.chan_vsrc = NULL;
1617 case AST_BRIDGE_VIDEO_MODE_TALKER_SRC:
1618 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc == chan) {
1619 if (bridge->video_mode.mode_data.talker_src_data.chan_vsrc) {
1620 ast_channel_unref(bridge->video_mode.mode_data.talker_src_data.chan_vsrc);
1622 bridge->video_mode.mode_data.talker_src_data.chan_vsrc = NULL;
1623 bridge->video_mode.mode_data.talker_src_data.average_talking_energy = 0;
1625 if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc == chan) {
1626 if (bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc) {
1627 ast_channel_unref(bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc);
1629 bridge->video_mode.mode_data.talker_src_data.chan_old_vsrc = NULL;