2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@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 Management
23 * \author Mark Spencer <markster@digium.com>
28 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
30 #include "asterisk/_private.h"
36 #include "asterisk/paths.h" /* use ast_config_AST_SYSTEM_NAME */
38 #include "asterisk/pbx.h"
39 #include "asterisk/frame.h"
40 #include "asterisk/mod_format.h"
41 #include "asterisk/sched.h"
42 #include "asterisk/channel.h"
43 #include "asterisk/musiconhold.h"
44 #include "asterisk/say.h"
45 #include "asterisk/file.h"
46 #include "asterisk/cli.h"
47 #include "asterisk/translate.h"
48 #include "asterisk/manager.h"
49 #include "asterisk/cel.h"
50 #include "asterisk/chanvars.h"
51 #include "asterisk/linkedlists.h"
52 #include "asterisk/indications.h"
53 #include "asterisk/monitor.h"
54 #include "asterisk/causes.h"
55 #include "asterisk/callerid.h"
56 #include "asterisk/utils.h"
57 #include "asterisk/lock.h"
58 #include "asterisk/app.h"
59 #include "asterisk/transcap.h"
60 #include "asterisk/devicestate.h"
61 #include "asterisk/sha1.h"
62 #include "asterisk/threadstorage.h"
63 #include "asterisk/slinfactory.h"
64 #include "asterisk/audiohook.h"
65 #include "asterisk/timing.h"
66 #include "asterisk/autochan.h"
67 #include "asterisk/stringfields.h"
68 #include "asterisk/data.h"
71 #include <sys/epoll.h>
74 struct ast_epoll_data {
75 struct ast_channel *chan;
79 /* uncomment if you have problems with 'monitoring' synchronized files */
81 #define MONITOR_CONSTANT_DELAY
82 #define MONITOR_DELAY 150 * 8 /*!< 150 ms of MONITORING DELAY */
85 /*! \brief Prevent new channel allocation if shutting down. */
86 static int shutting_down;
90 unsigned long global_fin, global_fout;
92 AST_THREADSTORAGE(state2str_threadbuf);
93 #define STATE2STR_BUFSIZE 32
95 /*! Default amount of time to use when emulating a digit as a begin and end
97 #define AST_DEFAULT_EMULATE_DTMF_DURATION 100
99 /*! Minimum allowed digit length - 80ms */
100 #define AST_MIN_DTMF_DURATION 80
102 /*! Minimum amount of time between the end of the last digit and the beginning
103 * of a new one - 45ms */
104 #define AST_MIN_DTMF_GAP 45
106 /*! \brief List of channel drivers */
108 const struct ast_channel_tech *tech;
109 AST_LIST_ENTRY(chanlist) list;
113 /*! \brief Structure to hold channel context backtrace data */
114 struct ast_chan_trace_data {
116 AST_LIST_HEAD_NOLOCK(, ast_chan_trace) trace;
119 /*! \brief Structure to save contexts where an ast_chan has been into */
120 struct ast_chan_trace {
121 char context[AST_MAX_CONTEXT];
122 char exten[AST_MAX_EXTENSION];
124 AST_LIST_ENTRY(ast_chan_trace) entry;
128 /*! \brief the list of registered channel types */
129 static AST_RWLIST_HEAD_STATIC(backends, chanlist);
132 #define NUM_CHANNEL_BUCKETS 61
134 #define NUM_CHANNEL_BUCKETS 1567
137 #define DATA_EXPORT_CHANNEL(MEMBER) \
138 MEMBER(ast_channel, blockproc, AST_DATA_STRING) \
139 MEMBER(ast_channel, appl, AST_DATA_STRING) \
140 MEMBER(ast_channel, data, AST_DATA_STRING) \
141 MEMBER(ast_channel, name, AST_DATA_STRING) \
142 MEMBER(ast_channel, language, AST_DATA_STRING) \
143 MEMBER(ast_channel, musicclass, AST_DATA_STRING) \
144 MEMBER(ast_channel, accountcode, AST_DATA_STRING) \
145 MEMBER(ast_channel, peeraccount, AST_DATA_STRING) \
146 MEMBER(ast_channel, userfield, AST_DATA_STRING) \
147 MEMBER(ast_channel, call_forward, AST_DATA_STRING) \
148 MEMBER(ast_channel, uniqueid, AST_DATA_STRING) \
149 MEMBER(ast_channel, linkedid, AST_DATA_STRING) \
150 MEMBER(ast_channel, parkinglot, AST_DATA_STRING) \
151 MEMBER(ast_channel, hangupsource, AST_DATA_STRING) \
152 MEMBER(ast_channel, dialcontext, AST_DATA_STRING) \
153 MEMBER(ast_channel, _softhangup, AST_DATA_INTEGER) \
154 MEMBER(ast_channel, streamid, AST_DATA_INTEGER) \
155 MEMBER(ast_channel, vstreamid, AST_DATA_INTEGER) \
156 MEMBER(ast_channel, oldwriteformat, AST_DATA_INTEGER) \
157 MEMBER(ast_channel, _state, AST_DATA_INTEGER) \
158 MEMBER(ast_channel, rings, AST_DATA_INTEGER) \
159 MEMBER(ast_channel, priority, AST_DATA_INTEGER) \
160 MEMBER(ast_channel, macropriority, AST_DATA_INTEGER) \
161 MEMBER(ast_channel, amaflags, AST_DATA_INTEGER) \
162 MEMBER(ast_channel, adsicpe, AST_DATA_INTEGER) \
163 MEMBER(ast_channel, fin, AST_DATA_UNSIGNED_INTEGER) \
164 MEMBER(ast_channel, fout, AST_DATA_UNSIGNED_INTEGER) \
165 MEMBER(ast_channel, hangupcause, AST_DATA_INTEGER) \
166 MEMBER(ast_channel, flags, AST_DATA_UNSIGNED_INTEGER) \
167 MEMBER(ast_channel, nativeformats, AST_DATA_INTEGER) \
168 MEMBER(ast_channel, readformat, AST_DATA_INTEGER) \
169 MEMBER(ast_channel, writeformat, AST_DATA_INTEGER) \
170 MEMBER(ast_channel, rawreadformat, AST_DATA_INTEGER) \
171 MEMBER(ast_channel, rawwriteformat, AST_DATA_INTEGER) \
172 MEMBER(ast_channel, emulate_dtmf_duration, AST_DATA_UNSIGNED_INTEGER) \
173 MEMBER(ast_channel, visible_indication, AST_DATA_INTEGER) \
174 MEMBER(ast_channel, transfercapability, AST_DATA_INTEGER) \
175 MEMBER(ast_channel, context, AST_DATA_STRING) \
176 MEMBER(ast_channel, exten, AST_DATA_STRING) \
177 MEMBER(ast_channel, macrocontext, AST_DATA_STRING) \
178 MEMBER(ast_channel, macroexten, AST_DATA_STRING)
180 AST_DATA_STRUCTURE(ast_channel, DATA_EXPORT_CHANNEL);
183 /*! \brief All active channels on the system */
184 static struct ao2_container *channels;
186 /*! \brief map AST_CAUSE's to readable string representations
190 static const struct {
195 { AST_CAUSE_UNALLOCATED, "UNALLOCATED", "Unallocated (unassigned) number" },
196 { AST_CAUSE_NO_ROUTE_TRANSIT_NET, "NO_ROUTE_TRANSIT_NET", "No route to specified transmit network" },
197 { AST_CAUSE_NO_ROUTE_DESTINATION, "NO_ROUTE_DESTINATION", "No route to destination" },
198 { AST_CAUSE_CHANNEL_UNACCEPTABLE, "CHANNEL_UNACCEPTABLE", "Channel unacceptable" },
199 { AST_CAUSE_CALL_AWARDED_DELIVERED, "CALL_AWARDED_DELIVERED", "Call awarded and being delivered in an established channel" },
200 { AST_CAUSE_NORMAL_CLEARING, "NORMAL_CLEARING", "Normal Clearing" },
201 { AST_CAUSE_USER_BUSY, "USER_BUSY", "User busy" },
202 { AST_CAUSE_NO_USER_RESPONSE, "NO_USER_RESPONSE", "No user responding" },
203 { AST_CAUSE_NO_ANSWER, "NO_ANSWER", "User alerting, no answer" },
204 { AST_CAUSE_CALL_REJECTED, "CALL_REJECTED", "Call Rejected" },
205 { AST_CAUSE_NUMBER_CHANGED, "NUMBER_CHANGED", "Number changed" },
206 { AST_CAUSE_DESTINATION_OUT_OF_ORDER, "DESTINATION_OUT_OF_ORDER", "Destination out of order" },
207 { AST_CAUSE_INVALID_NUMBER_FORMAT, "INVALID_NUMBER_FORMAT", "Invalid number format" },
208 { AST_CAUSE_FACILITY_REJECTED, "FACILITY_REJECTED", "Facility rejected" },
209 { AST_CAUSE_RESPONSE_TO_STATUS_ENQUIRY, "RESPONSE_TO_STATUS_ENQUIRY", "Response to STATus ENQuiry" },
210 { AST_CAUSE_NORMAL_UNSPECIFIED, "NORMAL_UNSPECIFIED", "Normal, unspecified" },
211 { AST_CAUSE_NORMAL_CIRCUIT_CONGESTION, "NORMAL_CIRCUIT_CONGESTION", "Circuit/channel congestion" },
212 { AST_CAUSE_NETWORK_OUT_OF_ORDER, "NETWORK_OUT_OF_ORDER", "Network out of order" },
213 { AST_CAUSE_NORMAL_TEMPORARY_FAILURE, "NORMAL_TEMPORARY_FAILURE", "Temporary failure" },
214 { AST_CAUSE_SWITCH_CONGESTION, "SWITCH_CONGESTION", "Switching equipment congestion" },
215 { AST_CAUSE_ACCESS_INFO_DISCARDED, "ACCESS_INFO_DISCARDED", "Access information discarded" },
216 { AST_CAUSE_REQUESTED_CHAN_UNAVAIL, "REQUESTED_CHAN_UNAVAIL", "Requested channel not available" },
217 { AST_CAUSE_PRE_EMPTED, "PRE_EMPTED", "Pre-empted" },
218 { AST_CAUSE_FACILITY_NOT_SUBSCRIBED, "FACILITY_NOT_SUBSCRIBED", "Facility not subscribed" },
219 { AST_CAUSE_OUTGOING_CALL_BARRED, "OUTGOING_CALL_BARRED", "Outgoing call barred" },
220 { AST_CAUSE_INCOMING_CALL_BARRED, "INCOMING_CALL_BARRED", "Incoming call barred" },
221 { AST_CAUSE_BEARERCAPABILITY_NOTAUTH, "BEARERCAPABILITY_NOTAUTH", "Bearer capability not authorized" },
222 { AST_CAUSE_BEARERCAPABILITY_NOTAVAIL, "BEARERCAPABILITY_NOTAVAIL", "Bearer capability not available" },
223 { AST_CAUSE_BEARERCAPABILITY_NOTIMPL, "BEARERCAPABILITY_NOTIMPL", "Bearer capability not implemented" },
224 { AST_CAUSE_CHAN_NOT_IMPLEMENTED, "CHAN_NOT_IMPLEMENTED", "Channel not implemented" },
225 { AST_CAUSE_FACILITY_NOT_IMPLEMENTED, "FACILITY_NOT_IMPLEMENTED", "Facility not implemented" },
226 { AST_CAUSE_INVALID_CALL_REFERENCE, "INVALID_CALL_REFERENCE", "Invalid call reference value" },
227 { AST_CAUSE_INCOMPATIBLE_DESTINATION, "INCOMPATIBLE_DESTINATION", "Incompatible destination" },
228 { AST_CAUSE_INVALID_MSG_UNSPECIFIED, "INVALID_MSG_UNSPECIFIED", "Invalid message unspecified" },
229 { AST_CAUSE_MANDATORY_IE_MISSING, "MANDATORY_IE_MISSING", "Mandatory information element is missing" },
230 { AST_CAUSE_MESSAGE_TYPE_NONEXIST, "MESSAGE_TYPE_NONEXIST", "Message type nonexist." },
231 { AST_CAUSE_WRONG_MESSAGE, "WRONG_MESSAGE", "Wrong message" },
232 { AST_CAUSE_IE_NONEXIST, "IE_NONEXIST", "Info. element nonexist or not implemented" },
233 { AST_CAUSE_INVALID_IE_CONTENTS, "INVALID_IE_CONTENTS", "Invalid information element contents" },
234 { AST_CAUSE_WRONG_CALL_STATE, "WRONG_CALL_STATE", "Message not compatible with call state" },
235 { AST_CAUSE_RECOVERY_ON_TIMER_EXPIRE, "RECOVERY_ON_TIMER_EXPIRE", "Recover on timer expiry" },
236 { AST_CAUSE_MANDATORY_IE_LENGTH_ERROR, "MANDATORY_IE_LENGTH_ERROR", "Mandatory IE length error" },
237 { AST_CAUSE_PROTOCOL_ERROR, "PROTOCOL_ERROR", "Protocol error, unspecified" },
238 { AST_CAUSE_INTERWORKING, "INTERWORKING", "Interworking, unspecified" },
241 struct ast_variable *ast_channeltype_list(void)
244 struct ast_variable *var = NULL, *prev = NULL;
246 AST_RWLIST_RDLOCK(&backends);
247 AST_RWLIST_TRAVERSE(&backends, cl, list) {
249 if ((prev->next = ast_variable_new(cl->tech->type, cl->tech->description, "")))
252 var = ast_variable_new(cl->tech->type, cl->tech->description, "");
256 AST_RWLIST_UNLOCK(&backends);
261 int ast_channel_data_add_structure(struct ast_data *tree, struct ast_channel *chan)
263 return ast_data_add_structure(ast_channel, tree, chan);
266 int ast_channel_data_cmp_structure(const struct ast_data_search *tree,
267 struct ast_channel *chan, const char *structure_name)
269 return ast_data_search_cmp_structure(tree, ast_channel, chan, structure_name);
272 /*! \brief Show channel types - CLI command */
273 static char *handle_cli_core_show_channeltypes(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
275 #define FORMAT "%-10.10s %-40.40s %-12.12s %-12.12s %-12.12s\n"
281 e->command = "core show channeltypes";
283 "Usage: core show channeltypes\n"
284 " Lists available channel types registered in your\n"
285 " Asterisk server.\n";
292 return CLI_SHOWUSAGE;
294 ast_cli(a->fd, FORMAT, "Type", "Description", "Devicestate", "Indications", "Transfer");
295 ast_cli(a->fd, FORMAT, "----------", "-----------", "-----------", "-----------", "--------");
297 AST_RWLIST_RDLOCK(&backends);
298 AST_RWLIST_TRAVERSE(&backends, cl, list) {
299 ast_cli(a->fd, FORMAT, cl->tech->type, cl->tech->description,
300 (cl->tech->devicestate) ? "yes" : "no",
301 (cl->tech->indicate) ? "yes" : "no",
302 (cl->tech->transfer) ? "yes" : "no");
305 AST_RWLIST_UNLOCK(&backends);
307 ast_cli(a->fd, "----------\n%d channel drivers registered.\n", count_chan);
314 static char *complete_channeltypes(struct ast_cli_args *a)
324 wordlen = strlen(a->word);
326 AST_RWLIST_RDLOCK(&backends);
327 AST_RWLIST_TRAVERSE(&backends, cl, list) {
328 if (!strncasecmp(a->word, cl->tech->type, wordlen) && ++which > a->n) {
329 ret = ast_strdup(cl->tech->type);
333 AST_RWLIST_UNLOCK(&backends);
338 /*! \brief Show details about a channel driver - CLI command */
339 static char *handle_cli_core_show_channeltype(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
341 struct chanlist *cl = NULL;
346 e->command = "core show channeltype";
348 "Usage: core show channeltype <name>\n"
349 " Show details about the specified channel type, <name>.\n";
352 return complete_channeltypes(a);
356 return CLI_SHOWUSAGE;
358 AST_RWLIST_RDLOCK(&backends);
360 AST_RWLIST_TRAVERSE(&backends, cl, list) {
361 if (!strncasecmp(cl->tech->type, a->argv[3], strlen(cl->tech->type)))
367 ast_cli(a->fd, "\n%s is not a registered channel driver.\n", a->argv[3]);
368 AST_RWLIST_UNLOCK(&backends);
373 "-- Info about channel driver: %s --\n"
374 " Device State: %s\n"
377 " Capabilities: %s\n"
381 " Image Support: %s\n"
382 " Text Support: %s\n",
384 (cl->tech->devicestate) ? "yes" : "no",
385 (cl->tech->indicate) ? "yes" : "no",
386 (cl->tech->transfer) ? "yes" : "no",
387 ast_getformatname_multiple(buf, sizeof(buf), (cl->tech->capabilities) ? cl->tech->capabilities : -1),
388 (cl->tech->send_digit_begin) ? "yes" : "no",
389 (cl->tech->send_digit_end) ? "yes" : "no",
390 (cl->tech->send_html) ? "yes" : "no",
391 (cl->tech->send_image) ? "yes" : "no",
392 (cl->tech->send_text) ? "yes" : "no"
396 AST_RWLIST_UNLOCK(&backends);
401 static struct ast_cli_entry cli_channel[] = {
402 AST_CLI_DEFINE(handle_cli_core_show_channeltypes, "List available channel types"),
403 AST_CLI_DEFINE(handle_cli_core_show_channeltype, "Give more details on that channel type")
407 /*! \brief Destructor for the channel trace datastore */
408 static void ast_chan_trace_destroy_cb(void *data)
410 struct ast_chan_trace *trace;
411 struct ast_chan_trace_data *traced = data;
412 while ((trace = AST_LIST_REMOVE_HEAD(&traced->trace, entry))) {
418 /*! \brief Datastore to put the linked list of ast_chan_trace and trace status */
419 static const struct ast_datastore_info ast_chan_trace_datastore_info = {
421 .destroy = ast_chan_trace_destroy_cb
424 /*! \brief Put the channel backtrace in a string */
425 int ast_channel_trace_serialize(struct ast_channel *chan, struct ast_str **buf)
428 struct ast_chan_trace *trace;
429 struct ast_chan_trace_data *traced;
430 struct ast_datastore *store;
432 ast_channel_lock(chan);
433 store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
435 ast_channel_unlock(chan);
438 traced = store->data;
440 AST_LIST_TRAVERSE(&traced->trace, trace, entry) {
441 if (ast_str_append(buf, 0, "[%d] => %s, %s, %d\n", total, trace->context, trace->exten, trace->priority) < 0) {
442 ast_log(LOG_ERROR, "Data Buffer Size Exceeded!\n");
448 ast_channel_unlock(chan);
452 /* !\brief Whether or not context tracing is enabled */
453 int ast_channel_trace_is_enabled(struct ast_channel *chan)
455 struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
458 return ((struct ast_chan_trace_data *)store->data)->enabled;
461 /*! \brief Update the context backtrace data if tracing is enabled */
462 static int ast_channel_trace_data_update(struct ast_channel *chan, struct ast_chan_trace_data *traced)
464 struct ast_chan_trace *trace;
465 if (!traced->enabled)
467 /* If the last saved context does not match the current one
468 OR we have not saved any context so far, then save the current context */
469 if ((!AST_LIST_EMPTY(&traced->trace) && strcasecmp(AST_LIST_FIRST(&traced->trace)->context, chan->context)) ||
470 (AST_LIST_EMPTY(&traced->trace))) {
471 /* Just do some debug logging */
472 if (AST_LIST_EMPTY(&traced->trace))
473 ast_log(LOG_DEBUG, "Setting initial trace context to %s\n", chan->context);
475 ast_log(LOG_DEBUG, "Changing trace context from %s to %s\n", AST_LIST_FIRST(&traced->trace)->context, chan->context);
476 /* alloc or bail out */
477 trace = ast_malloc(sizeof(*trace));
480 /* save the current location and store it in the trace list */
481 ast_copy_string(trace->context, chan->context, sizeof(trace->context));
482 ast_copy_string(trace->exten, chan->exten, sizeof(trace->exten));
483 trace->priority = chan->priority;
484 AST_LIST_INSERT_HEAD(&traced->trace, trace, entry);
489 /*! \brief Update the context backtrace if tracing is enabled */
490 int ast_channel_trace_update(struct ast_channel *chan)
492 struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
495 return ast_channel_trace_data_update(chan, store->data);
498 /*! \brief Enable context tracing in the channel */
499 int ast_channel_trace_enable(struct ast_channel *chan)
501 struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
502 struct ast_chan_trace_data *traced;
504 store = ast_datastore_alloc(&ast_chan_trace_datastore_info, "ChanTrace");
507 traced = ast_calloc(1, sizeof(*traced));
509 ast_datastore_free(store);
512 store->data = traced;
513 AST_LIST_HEAD_INIT_NOLOCK(&traced->trace);
514 ast_channel_datastore_add(chan, store);
516 ((struct ast_chan_trace_data *)store->data)->enabled = 1;
517 ast_channel_trace_data_update(chan, store->data);
521 /*! \brief Disable context tracing in the channel */
522 int ast_channel_trace_disable(struct ast_channel *chan)
524 struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
527 ((struct ast_chan_trace_data *)store->data)->enabled = 0;
530 #endif /* CHANNEL_TRACE */
532 /*! \brief Checks to see if a channel is needing hang up */
533 int ast_check_hangup(struct ast_channel *chan)
535 if (chan->_softhangup) /* yes if soft hangup flag set */
537 if (ast_tvzero(chan->whentohangup)) /* no if no hangup scheduled */
539 if (ast_tvdiff_ms(chan->whentohangup, ast_tvnow()) > 0) /* no if hangup time has not come yet. */
541 ast_debug(4, "Hangup time has come: %" PRIi64 "\n", ast_tvdiff_ms(chan->whentohangup, ast_tvnow()));
542 chan->_softhangup |= AST_SOFTHANGUP_TIMEOUT; /* record event */
546 int ast_check_hangup_locked(struct ast_channel *chan)
549 ast_channel_lock(chan);
550 res = ast_check_hangup(chan);
551 ast_channel_unlock(chan);
555 static int ast_channel_softhangup_cb(void *obj, void *arg, int flags)
557 struct ast_channel *chan = obj;
559 ast_softhangup(chan, AST_SOFTHANGUP_SHUTDOWN);
564 void ast_begin_shutdown(int hangup)
569 ao2_callback(channels, OBJ_NODATA | OBJ_MULTIPLE, ast_channel_softhangup_cb, NULL);
573 /*! \brief returns number of active/allocated channels */
574 int ast_active_channels(void)
576 return channels ? ao2_container_count(channels) : 0;
579 /*! \brief Cancel a shutdown in progress */
580 void ast_cancel_shutdown(void)
585 /*! \brief Returns non-zero if Asterisk is being shut down */
586 int ast_shutting_down(void)
588 return shutting_down;
591 /*! \brief Set when to hangup channel */
592 void ast_channel_setwhentohangup_tv(struct ast_channel *chan, struct timeval offset)
594 chan->whentohangup = ast_tvzero(offset) ? offset : ast_tvadd(offset, ast_tvnow());
595 ast_queue_frame(chan, &ast_null_frame);
599 void ast_channel_setwhentohangup(struct ast_channel *chan, time_t offset)
601 struct timeval when = { offset, };
602 ast_channel_setwhentohangup_tv(chan, when);
605 /*! \brief Compare a offset with when to hangup channel */
606 int ast_channel_cmpwhentohangup_tv(struct ast_channel *chan, struct timeval offset)
608 struct timeval whentohangup;
610 if (ast_tvzero(chan->whentohangup))
611 return ast_tvzero(offset) ? 0 : -1;
613 if (ast_tvzero(offset))
616 whentohangup = ast_tvadd(offset, ast_tvnow());
618 return ast_tvdiff_ms(whentohangup, chan->whentohangup);
621 int ast_channel_cmpwhentohangup(struct ast_channel *chan, time_t offset)
623 struct timeval when = { offset, };
624 return ast_channel_cmpwhentohangup_tv(chan, when);
627 /*! \brief Register a new telephony channel in Asterisk */
628 int ast_channel_register(const struct ast_channel_tech *tech)
630 struct chanlist *chan;
632 AST_RWLIST_WRLOCK(&backends);
634 AST_RWLIST_TRAVERSE(&backends, chan, list) {
635 if (!strcasecmp(tech->type, chan->tech->type)) {
636 ast_log(LOG_WARNING, "Already have a handler for type '%s'\n", tech->type);
637 AST_RWLIST_UNLOCK(&backends);
642 if (!(chan = ast_calloc(1, sizeof(*chan)))) {
643 AST_RWLIST_UNLOCK(&backends);
647 AST_RWLIST_INSERT_HEAD(&backends, chan, list);
649 ast_debug(1, "Registered handler for '%s' (%s)\n", chan->tech->type, chan->tech->description);
651 ast_verb(2, "Registered channel type '%s' (%s)\n", chan->tech->type, chan->tech->description);
653 AST_RWLIST_UNLOCK(&backends);
658 /*! \brief Unregister channel driver */
659 void ast_channel_unregister(const struct ast_channel_tech *tech)
661 struct chanlist *chan;
663 ast_debug(1, "Unregistering channel type '%s'\n", tech->type);
665 AST_RWLIST_WRLOCK(&backends);
667 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&backends, chan, list) {
668 if (chan->tech == tech) {
669 AST_LIST_REMOVE_CURRENT(list);
671 ast_verb(2, "Unregistered channel type '%s'\n", tech->type);
675 AST_LIST_TRAVERSE_SAFE_END;
677 AST_RWLIST_UNLOCK(&backends);
680 /*! \brief Get handle to channel driver based on name */
681 const struct ast_channel_tech *ast_get_channel_tech(const char *name)
683 struct chanlist *chanls;
684 const struct ast_channel_tech *ret = NULL;
686 AST_RWLIST_RDLOCK(&backends);
688 AST_RWLIST_TRAVERSE(&backends, chanls, list) {
689 if (!strcasecmp(name, chanls->tech->type)) {
695 AST_RWLIST_UNLOCK(&backends);
700 /*! \brief Gives the string form of a given hangup cause */
701 const char *ast_cause2str(int cause)
705 for (x = 0; x < ARRAY_LEN(causes); x++) {
706 if (causes[x].cause == cause)
707 return causes[x].desc;
713 /*! \brief Convert a symbolic hangup cause to number */
714 int ast_str2cause(const char *name)
718 for (x = 0; x < ARRAY_LEN(causes); x++)
719 if (!strncasecmp(causes[x].name, name, strlen(causes[x].name)))
720 return causes[x].cause;
725 /*! \brief Gives the string form of a given channel state.
726 \note This function is not reentrant.
728 const char *ast_state2str(enum ast_channel_state state)
735 case AST_STATE_RESERVED:
737 case AST_STATE_OFFHOOK:
739 case AST_STATE_DIALING:
743 case AST_STATE_RINGING:
749 case AST_STATE_DIALING_OFFHOOK:
750 return "Dialing Offhook";
751 case AST_STATE_PRERING:
754 if (!(buf = ast_threadstorage_get(&state2str_threadbuf, STATE2STR_BUFSIZE)))
756 snprintf(buf, STATE2STR_BUFSIZE, "Unknown (%d)", state);
761 /*! \brief Gives the string form of a given transfer capability */
762 char *ast_transfercapability2str(int transfercapability)
764 switch (transfercapability) {
765 case AST_TRANS_CAP_SPEECH:
767 case AST_TRANS_CAP_DIGITAL:
769 case AST_TRANS_CAP_RESTRICTED_DIGITAL:
770 return "RESTRICTED_DIGITAL";
771 case AST_TRANS_CAP_3_1K_AUDIO:
773 case AST_TRANS_CAP_DIGITAL_W_TONES:
774 return "DIGITAL_W_TONES";
775 case AST_TRANS_CAP_VIDEO:
782 /*! \brief Pick the best audio codec */
783 format_t ast_best_codec(format_t fmts)
785 /* This just our opinion, expressed in code. We are asked to choose
786 the best codec to use, given no information */
788 static const format_t prefs[] =
790 /*! Okay, ulaw is used by all telephony equipment, so start with it */
792 /*! Unless of course, you're a silly European, so then prefer ALAW */
797 /*! G.722 is better then all below, but not as common as the above... so give ulaw and alaw priority */
799 /*! Okay, well, signed linear is easy to translate into other stuff */
800 AST_FORMAT_SLINEAR16,
802 /*! G.726 is standard ADPCM, in RFC3551 packing order */
804 /*! G.726 is standard ADPCM, in AAL2 packing order */
805 AST_FORMAT_G726_AAL2,
806 /*! ADPCM has great sound quality and is still pretty easy to translate */
808 /*! Okay, we're down to vocoders now, so pick GSM because it's small and easier to
809 translate and sounds pretty good */
811 /*! iLBC is not too bad */
813 /*! Speex is free, but computationally more expensive than GSM */
815 /*! Ick, LPC10 sounds terrible, but at least we have code for it, if you're tacky enough
818 /*! G.729a is faster than 723 and slightly less expensive */
820 /*! Down to G.723.1 which is proprietary but at least designed for voice */
825 /* Strip out video */
826 fmts &= AST_FORMAT_AUDIO_MASK;
828 /* Find the first preferred codec in the format given */
829 for (x = 0; x < ARRAY_LEN(prefs); x++) {
834 ast_log(LOG_WARNING, "Don't know any of %s formats\n", ast_getformatname_multiple(buf, sizeof(buf), fmts));
839 static const struct ast_channel_tech null_tech = {
841 .description = "Null channel (should not see this)",
844 static void ast_channel_destructor(void *obj);
845 static void ast_dummy_channel_destructor(void *obj);
847 /*! \brief Create a new channel structure */
848 static struct ast_channel * attribute_malloc __attribute__((format(printf, 13, 0)))
849 __ast_channel_alloc_ap(int needqueue, int state, const char *cid_num, const char *cid_name,
850 const char *acctcode, const char *exten, const char *context,
851 const char *linkedid, const int amaflag, const char *file, int line,
852 const char *function, const char *name_fmt, va_list ap1, va_list ap2)
854 struct ast_channel *tmp;
857 struct varshead *headp;
859 /* If shutting down, don't allocate any new channels */
861 ast_log(LOG_WARNING, "Channel allocation failed: Refusing due to active shutdown\n");
865 #if defined(REF_DEBUG)
866 if (!(tmp = __ao2_alloc_debug(sizeof(*tmp), ast_channel_destructor, "", file, line, function, 1))) {
869 #elif defined(__AST_DEBUG_MALLOC)
870 if (!(tmp = __ao2_alloc_debug(sizeof(*tmp), ast_channel_destructor, "", file, line, function, 0))) {
874 if (!(tmp = ao2_alloc(sizeof(*tmp), ast_channel_destructor))) {
879 if (!(tmp->sched = sched_context_create())) {
880 ast_log(LOG_WARNING, "Channel allocation failed: Unable to create schedule context\n");
881 return ast_channel_unref(tmp);
884 if ((ast_string_field_init(tmp, 128))) {
885 return ast_channel_unref(tmp);
889 if (!(tmp->cid.cid_name = ast_strdup(cid_name))) {
890 return ast_channel_unref(tmp);
894 if (!(tmp->cid.cid_num = ast_strdup(cid_num))) {
895 return ast_channel_unref(tmp);
900 tmp->epfd = epoll_create(25);
903 for (x = 0; x < AST_MAX_FDS; x++) {
906 tmp->epfd_data[x] = NULL;
910 if ((tmp->timer = ast_timer_open())) {
912 tmp->timingfd = ast_timer_fd(tmp->timer);
918 if (pipe(tmp->alertpipe)) {
919 ast_log(LOG_WARNING, "Channel allocation failed: Can't create alert pipe! Try increasing max file descriptors with ulimit -n\n");
922 ast_timer_close(tmp->timer);
925 sched_context_destroy(tmp->sched);
926 ast_string_field_free_memory(tmp);
927 ast_free(tmp->cid.cid_name);
928 ast_free(tmp->cid.cid_num);
932 flags = fcntl(tmp->alertpipe[0], F_GETFL);
933 if (fcntl(tmp->alertpipe[0], F_SETFL, flags | O_NONBLOCK) < 0) {
934 ast_log(LOG_WARNING, "Channel allocation failed: Unable to set alertpipe nonblocking! (%d: %s)\n", errno, strerror(errno));
935 close(tmp->alertpipe[0]);
936 close(tmp->alertpipe[1]);
937 goto alertpipe_failed;
939 flags = fcntl(tmp->alertpipe[1], F_GETFL);
940 if (fcntl(tmp->alertpipe[1], F_SETFL, flags | O_NONBLOCK) < 0) {
941 ast_log(LOG_WARNING, "Channel allocation failed: Unable to set alertpipe nonblocking! (%d: %s)\n", errno, strerror(errno));
942 close(tmp->alertpipe[0]);
943 close(tmp->alertpipe[1]);
944 goto alertpipe_failed;
947 } else /* Make sure we've got it done right if they don't */
948 tmp->alertpipe[0] = tmp->alertpipe[1] = -1;
950 /* Always watch the alertpipe */
951 ast_channel_set_fd(tmp, AST_ALERT_FD, tmp->alertpipe[0]);
952 /* And timing pipe */
953 ast_channel_set_fd(tmp, AST_TIMING_FD, tmp->timingfd);
954 ast_string_field_set(tmp, name, "**Unknown**");
961 tmp->fin = global_fin;
962 tmp->fout = global_fout;
964 if (ast_strlen_zero(ast_config_AST_SYSTEM_NAME)) {
965 ast_string_field_build(tmp, uniqueid, "%li.%d", (long) time(NULL),
966 ast_atomic_fetchadd_int(&uniqueint, 1));
968 ast_string_field_build(tmp, uniqueid, "%s-%li.%d", ast_config_AST_SYSTEM_NAME,
969 (long) time(NULL), ast_atomic_fetchadd_int(&uniqueint, 1));
972 if (!ast_strlen_zero(linkedid)) {
973 ast_string_field_set(tmp, linkedid, linkedid);
976 ast_string_field_set(tmp, linkedid, tmp->uniqueid);
979 if (!ast_strlen_zero(name_fmt)) {
980 /* Almost every channel is calling this function, and setting the name via the ast_string_field_build() call.
981 * And they all use slightly different formats for their name string.
982 * This means, to set the name here, we have to accept variable args, and call the string_field_build from here.
983 * This means, that the stringfields must have a routine that takes the va_lists directly, and
984 * uses them to build the string, instead of forming the va_lists internally from the vararg ... list.
985 * This new function was written so this can be accomplished.
987 ast_string_field_build_va(tmp, name, name_fmt, ap1, ap2);
990 /* Reminder for the future: under what conditions do we NOT want to track cdrs on channels? */
992 /* These 4 variables need to be set up for the cdr_init() to work right */
994 tmp->amaflags = amaflag;
996 tmp->amaflags = ast_default_amaflags;
998 if (!ast_strlen_zero(acctcode))
999 ast_string_field_set(tmp, accountcode, acctcode);
1001 ast_string_field_set(tmp, accountcode, ast_default_accountcode);
1003 if (!ast_strlen_zero(context))
1004 ast_copy_string(tmp->context, context, sizeof(tmp->context));
1006 strcpy(tmp->context, "default");
1008 if (!ast_strlen_zero(exten))
1009 ast_copy_string(tmp->exten, exten, sizeof(tmp->exten));
1011 strcpy(tmp->exten, "s");
1015 tmp->cdr = ast_cdr_alloc();
1016 ast_cdr_init(tmp->cdr, tmp);
1017 ast_cdr_start(tmp->cdr);
1019 ast_cel_report_event(tmp, AST_CEL_CHANNEL_START, NULL, NULL, NULL);
1021 headp = &tmp->varshead;
1022 AST_LIST_HEAD_INIT_NOLOCK(headp);
1024 AST_LIST_HEAD_INIT_NOLOCK(&tmp->datastores);
1026 AST_LIST_HEAD_INIT_NOLOCK(&tmp->autochans);
1028 ast_string_field_set(tmp, language, defaultlanguage);
1030 tmp->tech = &null_tech;
1032 ao2_link(channels, tmp);
1035 * and now, since the channel structure is built, and has its name, let's
1036 * call the manager event generator with this Newchannel event. This is the
1037 * proper and correct place to make this call, but you sure do have to pass
1038 * a lot of data into this func to do it here!
1040 if (!ast_strlen_zero(name_fmt)) {
1041 ast_manager_event(tmp, EVENT_FLAG_CALL, "Newchannel",
1043 "ChannelState: %d\r\n"
1044 "ChannelStateDesc: %s\r\n"
1045 "CallerIDNum: %s\r\n"
1046 "CallerIDName: %s\r\n"
1047 "AccountCode: %s\r\n"
1053 ast_state2str(state),
1065 struct ast_channel *__ast_channel_alloc(int needqueue, int state, const char *cid_num,
1066 const char *cid_name, const char *acctcode,
1067 const char *exten, const char *context,
1068 const char *linkedid, const int amaflag,
1069 const char *file, int line, const char *function,
1070 const char *name_fmt, ...)
1073 struct ast_channel *result;
1075 va_start(ap1, name_fmt);
1076 va_start(ap2, name_fmt);
1077 result = __ast_channel_alloc_ap(needqueue, state, cid_num, cid_name, acctcode, exten, context,
1078 linkedid, amaflag, file, line, function, name_fmt, ap1, ap2);
1085 /* only do the minimum amount of work needed here to make a channel
1086 * structure that can be used to expand channel vars */
1087 #if defined(REF_DEBUG) || defined(__AST_DEBUG_MALLOC)
1088 struct ast_channel *__ast_dummy_channel_alloc(const char *file, int line, const char *function)
1090 struct ast_channel *ast_dummy_channel_alloc(void)
1093 struct ast_channel *tmp;
1094 struct varshead *headp;
1096 #if defined(REF_DEBUG)
1097 if (!(tmp = __ao2_alloc_debug(sizeof(*tmp), ast_dummy_channel_destructor, "dummy channel", file, line, function, 1))) {
1100 #elif defined(__AST_DEBUG_MALLOC)
1101 if (!(tmp = __ao2_alloc_debug(sizeof(*tmp), ast_dummy_channel_destructor, "dummy channel", file, line, function, 0))) {
1105 if (!(tmp = ao2_alloc(sizeof(*tmp), ast_dummy_channel_destructor))) {
1110 if ((ast_string_field_init(tmp, 128))) {
1111 ast_channel_unref(tmp);
1115 headp = &tmp->varshead;
1116 AST_LIST_HEAD_INIT_NOLOCK(headp);
1121 static int __ast_queue_frame(struct ast_channel *chan, struct ast_frame *fin, int head, struct ast_frame *after)
1123 struct ast_frame *f;
1124 struct ast_frame *cur;
1126 unsigned int new_frames = 0;
1127 unsigned int new_voice_frames = 0;
1128 unsigned int queued_frames = 0;
1129 unsigned int queued_voice_frames = 0;
1130 AST_LIST_HEAD_NOLOCK(, ast_frame) frames;
1132 ast_channel_lock(chan);
1134 /* See if the last frame on the queue is a hangup, if so don't queue anything */
1135 if ((cur = AST_LIST_LAST(&chan->readq)) &&
1136 (cur->frametype == AST_FRAME_CONTROL) &&
1137 (cur->subclass.integer == AST_CONTROL_HANGUP)) {
1138 ast_channel_unlock(chan);
1142 /* Build copies of all the frames and count them */
1143 AST_LIST_HEAD_INIT_NOLOCK(&frames);
1144 for (cur = fin; cur; cur = AST_LIST_NEXT(cur, frame_list)) {
1145 if (!(f = ast_frdup(cur))) {
1146 ast_frfree(AST_LIST_FIRST(&frames));
1147 ast_channel_unlock(chan);
1151 AST_LIST_INSERT_TAIL(&frames, f, frame_list);
1153 if (f->frametype == AST_FRAME_VOICE) {
1158 /* Count how many frames exist on the queue */
1159 AST_LIST_TRAVERSE(&chan->readq, cur, frame_list) {
1161 if (cur->frametype == AST_FRAME_VOICE) {
1162 queued_voice_frames++;
1166 if ((queued_frames + new_frames > 128 || queued_voice_frames + new_voice_frames > 96)) {
1168 ast_log(LOG_WARNING, "Exceptionally long %squeue length queuing to %s\n", queued_frames + new_frames > 128 ? "" : "voice ", chan->name);
1169 AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->readq, cur, frame_list) {
1170 /* Save the most recent frame */
1171 if (!AST_LIST_NEXT(cur, frame_list)) {
1173 } else if (cur->frametype == AST_FRAME_VOICE || cur->frametype == AST_FRAME_VIDEO || cur->frametype == AST_FRAME_NULL) {
1177 AST_LIST_REMOVE_CURRENT(frame_list);
1181 AST_LIST_TRAVERSE_SAFE_END;
1185 AST_LIST_INSERT_LIST_AFTER(&chan->readq, &frames, after, frame_list);
1188 AST_LIST_APPEND_LIST(&frames, &chan->readq, frame_list);
1189 AST_LIST_HEAD_INIT_NOLOCK(&chan->readq);
1191 AST_LIST_APPEND_LIST(&chan->readq, &frames, frame_list);
1194 if (chan->alertpipe[1] > -1) {
1195 if (write(chan->alertpipe[1], &blah, new_frames * sizeof(blah)) != (new_frames * sizeof(blah))) {
1196 ast_log(LOG_WARNING, "Unable to write to alert pipe on %s (qlen = %d): %s!\n",
1197 chan->name, queued_frames, strerror(errno));
1199 } else if (chan->timingfd > -1) {
1200 ast_timer_enable_continuous(chan->timer);
1201 } else if (ast_test_flag(chan, AST_FLAG_BLOCKING)) {
1202 pthread_kill(chan->blocker, SIGURG);
1205 ast_channel_unlock(chan);
1210 int ast_queue_frame(struct ast_channel *chan, struct ast_frame *fin)
1212 return __ast_queue_frame(chan, fin, 0, NULL);
1215 int ast_queue_frame_head(struct ast_channel *chan, struct ast_frame *fin)
1217 return __ast_queue_frame(chan, fin, 1, NULL);
1220 /*! \brief Queue a hangup frame for channel */
1221 int ast_queue_hangup(struct ast_channel *chan)
1223 struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = AST_CONTROL_HANGUP };
1224 /* Yeah, let's not change a lock-critical value without locking */
1225 if (!ast_channel_trylock(chan)) {
1226 chan->_softhangup |= AST_SOFTHANGUP_DEV;
1227 ast_channel_unlock(chan);
1229 return ast_queue_frame(chan, &f);
1232 /*! \brief Queue a hangup frame for channel */
1233 int ast_queue_hangup_with_cause(struct ast_channel *chan, int cause)
1235 struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = AST_CONTROL_HANGUP };
1238 f.data.uint32 = cause;
1240 /* Yeah, let's not change a lock-critical value without locking */
1241 if (!ast_channel_trylock(chan)) {
1242 chan->_softhangup |= AST_SOFTHANGUP_DEV;
1244 f.data.uint32 = chan->hangupcause;
1246 ast_channel_unlock(chan);
1249 return ast_queue_frame(chan, &f);
1252 /*! \brief Queue a control frame */
1253 int ast_queue_control(struct ast_channel *chan, enum ast_control_frame_type control)
1255 struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = control };
1256 return ast_queue_frame(chan, &f);
1259 /*! \brief Queue a control frame with payload */
1260 int ast_queue_control_data(struct ast_channel *chan, enum ast_control_frame_type control,
1261 const void *data, size_t datalen)
1263 struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = control, .data.ptr = (void *) data, .datalen = datalen };
1264 return ast_queue_frame(chan, &f);
1267 /*! \brief Set defer DTMF flag on channel */
1268 int ast_channel_defer_dtmf(struct ast_channel *chan)
1273 pre = ast_test_flag(chan, AST_FLAG_DEFER_DTMF);
1274 ast_set_flag(chan, AST_FLAG_DEFER_DTMF);
1279 /*! \brief Unset defer DTMF flag on channel */
1280 void ast_channel_undefer_dtmf(struct ast_channel *chan)
1283 ast_clear_flag(chan, AST_FLAG_DEFER_DTMF);
1286 struct ast_channel *ast_channel_callback(ao2_callback_data_fn *cb_fn, void *arg,
1287 void *data, int ao2_flags)
1289 return ao2_callback_data(channels, ao2_flags, cb_fn, arg, data);
1292 struct ast_channel_iterator {
1293 /* storage for non-dynamically allocated iterator */
1294 struct ao2_iterator simple_iterator;
1295 /* pointer to the actual iterator (simple_iterator or a dynamically
1296 * allocated iterator)
1298 struct ao2_iterator *active_iterator;
1301 struct ast_channel_iterator *ast_channel_iterator_destroy(struct ast_channel_iterator *i)
1303 ao2_iterator_destroy(i->active_iterator);
1309 static struct ast_channel_iterator *channel_iterator_search(const char *name,
1310 size_t name_len, const char *exten,
1311 const char *context)
1313 struct ast_channel_iterator *i;
1314 struct ast_channel tmp_chan = {
1316 /* This is sort of a hack. Basically, we're using an arbitrary field
1317 * in ast_channel to pass the name_len for a prefix match. If this
1318 * gets changed, then the compare callback must be changed, too. */
1322 if (!(i = ast_calloc(1, sizeof(*i)))) {
1327 ast_copy_string(tmp_chan.exten, exten, sizeof(tmp_chan.exten));
1331 ast_copy_string(tmp_chan.context, context, sizeof(tmp_chan.context));
1334 if (!(i->active_iterator = ao2_find(channels, &tmp_chan,
1335 OBJ_MULTIPLE | ((!ast_strlen_zero(name) && (name_len == 0)) ? OBJ_POINTER : 0)))) {
1343 struct ast_channel_iterator *ast_channel_iterator_by_exten_new(const char *exten, const char *context)
1345 return channel_iterator_search(NULL, 0, exten, context);
1348 struct ast_channel_iterator *ast_channel_iterator_by_name_new(const char *name, size_t name_len)
1350 return channel_iterator_search(name, name_len, NULL, NULL);
1353 struct ast_channel_iterator *ast_channel_iterator_all_new(void)
1355 struct ast_channel_iterator *i;
1357 if (!(i = ast_calloc(1, sizeof(*i)))) {
1361 i->simple_iterator = ao2_iterator_init(channels, 0);
1362 i->active_iterator = &i->simple_iterator;
1367 struct ast_channel *ast_channel_iterator_next(struct ast_channel_iterator *i)
1369 return ao2_iterator_next(i->active_iterator);
1372 static int ast_channel_cmp_cb(void *obj, void *arg, int flags)
1374 struct ast_channel *chan = obj, *cmp_args = arg;
1376 int ret = CMP_MATCH;
1378 /* This is sort of a hack. Basically, we're using an arbitrary field
1379 * in ast_channel to pass the name_len for a prefix match. If this
1380 * gets changed, then the uses of ao2_find() must be changed, too. */
1381 name_len = cmp_args->rings;
1383 ast_channel_lock(chan);
1385 if (!ast_strlen_zero(cmp_args->name)) { /* match by name */
1386 if ((!name_len && strcasecmp(chan->name, cmp_args->name)) ||
1387 (name_len && strncasecmp(chan->name, cmp_args->name, name_len))) {
1388 ret = 0; /* name match failed */
1390 } else if (!ast_strlen_zero(cmp_args->exten)) {
1391 if (cmp_args->context && strcasecmp(chan->context, cmp_args->context) &&
1392 strcasecmp(chan->macrocontext, cmp_args->context)) {
1393 ret = 0; /* context match failed */
1395 if (ret && strcasecmp(chan->exten, cmp_args->exten) &&
1396 strcasecmp(chan->macroexten, cmp_args->exten)) {
1397 ret = 0; /* exten match failed */
1399 } else if (!ast_strlen_zero(cmp_args->uniqueid)) {
1400 if ((!name_len && strcasecmp(chan->uniqueid, cmp_args->uniqueid)) ||
1401 (name_len && strncasecmp(chan->uniqueid, cmp_args->uniqueid, name_len))) {
1402 ret = 0; /* uniqueid match failed */
1408 ast_channel_unlock(chan);
1413 static struct ast_channel *ast_channel_get_full(const char *name, size_t name_len,
1414 const char *exten, const char *context)
1416 struct ast_channel tmp_chan = {
1418 /* This is sort of a hack. Basically, we're using an arbitrary field
1419 * in ast_channel to pass the name_len for a prefix match. If this
1420 * gets changed, then the compare callback must be changed, too. */
1423 struct ast_channel *chan;
1426 ast_copy_string(tmp_chan.exten, exten, sizeof(tmp_chan.exten));
1430 ast_copy_string(tmp_chan.context, context, sizeof(tmp_chan.context));
1433 if ((chan = ao2_find(channels, &tmp_chan,
1434 (!ast_strlen_zero(name) && (name_len == 0)) ? OBJ_POINTER : 0))) {
1442 /* If name was specified, but the result was NULL,
1443 * try a search on uniqueid, instead. */
1446 struct ast_channel tmp_chan2 = {
1451 return ao2_find(channels, &tmp_chan2, 0);
1455 struct ast_channel *ast_channel_get_by_name(const char *name)
1457 return ast_channel_get_full(name, 0, NULL, NULL);
1460 struct ast_channel *ast_channel_get_by_name_prefix(const char *name, size_t name_len)
1462 return ast_channel_get_full(name, name_len, NULL, NULL);
1465 struct ast_channel *ast_channel_get_by_exten(const char *exten, const char *context)
1467 return ast_channel_get_full(NULL, 0, exten, context);
1470 /*! \brief Wait, look for hangups and condition arg */
1471 int ast_safe_sleep_conditional(struct ast_channel *chan, int ms, int (*cond)(void*), void *data)
1473 struct ast_frame *f;
1474 struct ast_silence_generator *silgen = NULL;
1477 /* If no other generator is present, start silencegen while waiting */
1478 if (ast_opt_transmit_silence && !chan->generatordata) {
1479 silgen = ast_channel_start_silence_generator(chan);
1483 if (cond && ((*cond)(data) == 0)) {
1486 ms = ast_waitfor(chan, ms);
1501 /* stop silgen if present */
1503 ast_channel_stop_silence_generator(chan, silgen);
1509 /*! \brief Wait, look for hangups */
1510 int ast_safe_sleep(struct ast_channel *chan, int ms)
1512 return ast_safe_sleep_conditional(chan, ms, NULL, NULL);
1515 static void free_cid(struct ast_callerid *cid)
1518 ast_free(cid->cid_dnid);
1520 ast_free(cid->cid_num);
1522 ast_free(cid->cid_name);
1524 ast_free(cid->cid_ani);
1525 cid->cid_dnid = cid->cid_num = cid->cid_name = cid->cid_ani = NULL;
1526 ast_party_subaddress_free(&cid->subaddress);
1527 ast_party_subaddress_free(&cid->dialed_subaddress);
1530 struct ast_channel *ast_channel_release(struct ast_channel *chan)
1532 /* Safe, even if already unlinked. */
1533 ao2_unlink(channels, chan);
1534 return ast_channel_unref(chan);
1537 void ast_party_subaddress_init(struct ast_party_subaddress *init)
1541 init->odd_even_indicator = 0;
1545 void ast_party_subaddress_copy(struct ast_party_subaddress *dest, const struct ast_party_subaddress *src)
1548 /* Don't copy to self */
1553 ast_free(dest->str);
1555 dest->str = ast_strdup(src->str);
1556 dest->type = src->type;
1557 dest->odd_even_indicator = src->odd_even_indicator;
1558 dest->valid = src->valid;
1561 void ast_party_subaddress_set_init(struct ast_party_subaddress *init, const struct ast_party_subaddress *guide)
1564 init->type = guide->type;
1565 init->odd_even_indicator = guide->odd_even_indicator;
1566 init->valid = guide->valid;
1569 void ast_party_subaddress_set(struct ast_party_subaddress *dest, const struct ast_party_subaddress *src)
1572 /* Don't set to self */
1576 if (src->str && src->str != dest->str) {
1578 ast_free(dest->str);
1580 dest->str = ast_strdup(src->str);
1583 dest->type = src->type;
1584 dest->odd_even_indicator = src->odd_even_indicator;
1585 dest->valid = src->valid;
1588 void ast_party_subaddress_free(struct ast_party_subaddress *doomed)
1591 ast_free(doomed->str);
1598 * \brief Initialize the given party id structure.
1600 * \param init Party id structure to initialize.
1604 static void ast_party_id_init(struct ast_party_id *init)
1606 init->number = NULL;
1608 init->number_type = 0; /* Unknown */
1609 init->number_presentation = AST_PRES_ALLOWED_USER_NUMBER_NOT_SCREENED;
1610 ast_party_subaddress_init(&init->subaddress);
1615 * \brief Copy the source party id information to the destination party id.
1617 * \param dest Destination party id
1618 * \param src Source party id
1622 static void ast_party_id_copy(struct ast_party_id *dest, const struct ast_party_id *src)
1625 /* Don't copy to self */
1630 ast_free(dest->number);
1632 dest->number = ast_strdup(src->number);
1635 ast_free(dest->name);
1637 dest->name = ast_strdup(src->name);
1639 dest->number_type = src->number_type;
1640 dest->number_presentation = src->number_presentation;
1641 ast_party_subaddress_copy(&dest->subaddress, &src->subaddress);
1646 * \brief Initialize the given party id structure using the given guide
1647 * for a set update operation.
1650 * The initialization is needed to allow a set operation to know if a
1651 * value needs to be updated. Simple integers need the guide's original
1652 * value in case the set operation is not trying to set a new value.
1653 * String values are simply set to NULL pointers if they are not going
1656 * \param init Party id structure to initialize.
1657 * \param guide Source party id to use as a guide in initializing.
1661 static void ast_party_id_set_init(struct ast_party_id *init, const struct ast_party_id *guide)
1663 init->number = NULL;
1665 init->number_type = guide->number_type;
1666 init->number_presentation = guide->number_presentation;
1667 ast_party_subaddress_set_init(&init->subaddress, &guide->subaddress);
1672 * \brief Set the source party id information into the destination party id.
1674 * \param dest Destination party id
1675 * \param src Source party id
1679 static void ast_party_id_set(struct ast_party_id *dest, const struct ast_party_id *src)
1682 /* Don't set to self */
1686 if (src->name && src->name != dest->name) {
1688 ast_free(dest->name);
1690 dest->name = ast_strdup(src->name);
1693 if (src->number && src->number != dest->number) {
1695 ast_free(dest->number);
1697 dest->number = ast_strdup(src->number);
1700 dest->number_type = src->number_type;
1701 dest->number_presentation = src->number_presentation;
1702 ast_party_subaddress_set(&dest->subaddress, &src->subaddress);
1707 * \brief Destroy the party id contents
1709 * \param doomed The party id to destroy.
1713 static void ast_party_id_free(struct ast_party_id *doomed)
1715 if (doomed->number) {
1716 ast_free(doomed->number);
1717 doomed->number = NULL;
1721 ast_free(doomed->name);
1722 doomed->name = NULL;
1724 ast_party_subaddress_free(&doomed->subaddress);
1727 void ast_party_caller_init(struct ast_party_caller *init)
1729 ast_party_id_init(&init->id);
1734 void ast_party_caller_copy(struct ast_callerid *dest, const struct ast_callerid *src)
1737 /* Don't copy to self */
1742 /* Copy caller-id specific information ONLY from struct ast_callerid */
1745 ast_free(dest->cid_num);
1747 dest->cid_num = ast_strdup(src->cid_num);
1751 ast_free(dest->cid_name);
1753 dest->cid_name = ast_strdup(src->cid_name);
1755 dest->cid_ton = src->cid_ton;
1756 dest->cid_pres = src->cid_pres;
1761 ast_free(dest->cid_ani);
1763 dest->cid_ani = ast_strdup(src->cid_ani);
1765 dest->cid_ani2 = src->cid_ani2;
1767 ast_party_subaddress_copy(&dest->subaddress, &src->subaddress);
1771 /* The src and dest parameter types will become struct ast_party_caller ptrs. */
1772 /* This is future code */
1774 ast_party_id_copy(&dest->id, &src->id);
1777 ast_free(dest->ani);
1779 dest->ani = ast_strdup(src->ani);
1781 dest->ani2 = src->ani2;
1785 void ast_party_connected_line_init(struct ast_party_connected_line *init)
1787 ast_party_id_init(&init->id);
1790 init->source = AST_CONNECTED_LINE_UPDATE_SOURCE_UNKNOWN;
1793 void ast_party_connected_line_copy(struct ast_party_connected_line *dest, const struct ast_party_connected_line *src)
1796 /* Don't copy to self */
1800 ast_party_id_copy(&dest->id, &src->id);
1803 ast_free(dest->ani);
1805 dest->ani = ast_strdup(src->ani);
1807 dest->ani2 = src->ani2;
1808 dest->source = src->source;
1811 void ast_party_connected_line_set_init(struct ast_party_connected_line *init, const struct ast_party_connected_line *guide)
1813 ast_party_id_set_init(&init->id, &guide->id);
1815 init->ani2 = guide->ani2;
1816 init->source = guide->source;
1819 void ast_party_connected_line_set(struct ast_party_connected_line *dest, const struct ast_party_connected_line *src)
1821 ast_party_id_set(&dest->id, &src->id);
1823 if (src->ani && src->ani != dest->ani) {
1825 ast_free(dest->ani);
1827 dest->ani = ast_strdup(src->ani);
1830 dest->ani2 = src->ani2;
1831 dest->source = src->source;
1834 void ast_party_connected_line_collect_caller(struct ast_party_connected_line *connected, struct ast_callerid *cid)
1836 connected->id.number = cid->cid_num;
1837 connected->id.name = cid->cid_name;
1838 connected->id.number_type = cid->cid_ton;
1839 connected->id.number_presentation = cid->cid_pres;
1840 connected->id.subaddress = cid->subaddress;
1842 connected->ani = cid->cid_ani;
1843 connected->ani2 = cid->cid_ani2;
1844 connected->source = AST_CONNECTED_LINE_UPDATE_SOURCE_UNKNOWN;
1847 void ast_party_connected_line_free(struct ast_party_connected_line *doomed)
1849 ast_party_id_free(&doomed->id);
1852 ast_free(doomed->ani);
1857 void ast_party_redirecting_copy(struct ast_party_redirecting *dest, const struct ast_party_redirecting *src)
1860 /* Don't copy to self */
1864 ast_party_id_copy(&dest->from, &src->from);
1865 ast_party_id_copy(&dest->to, &src->to);
1866 dest->count = src->count;
1867 dest->reason = src->reason;
1870 void ast_party_redirecting_set_init(struct ast_party_redirecting *init, const struct ast_party_redirecting *guide)
1872 ast_party_id_set_init(&init->from, &guide->from);
1873 ast_party_id_set_init(&init->to, &guide->to);
1874 init->count = guide->count;
1875 init->reason = guide->reason;
1878 void ast_party_redirecting_free(struct ast_party_redirecting *doomed)
1880 ast_party_id_free(&doomed->from);
1881 ast_party_id_free(&doomed->to);
1884 /*! \brief Free a channel structure */
1885 static void ast_channel_destructor(void *obj)
1887 struct ast_channel *chan = obj;
1892 struct ast_var_t *vardata;
1893 struct ast_frame *f;
1894 struct varshead *headp;
1895 struct ast_datastore *datastore = NULL;
1896 char name[AST_CHANNEL_NAME], *dashptr;
1898 headp = &chan->varshead;
1900 ast_cel_report_event(chan, AST_CEL_CHANNEL_END, NULL, NULL, NULL);
1901 ast_cel_check_retire_linkedid(chan);
1903 /* Get rid of each of the data stores on the channel */
1904 ast_channel_lock(chan);
1905 while ((datastore = AST_LIST_REMOVE_HEAD(&chan->datastores, entry)))
1906 /* Free the data store */
1907 ast_datastore_free(datastore);
1908 ast_channel_unlock(chan);
1910 /* Lock and unlock the channel just to be sure nobody has it locked still
1911 due to a reference that was stored in a datastore. (i.e. app_chanspy) */
1912 ast_channel_lock(chan);
1913 ast_channel_unlock(chan);
1915 if (chan->tech_pvt) {
1916 ast_log(LOG_WARNING, "Channel '%s' may not have been hung up properly\n", chan->name);
1917 ast_free(chan->tech_pvt);
1921 sched_context_destroy(chan->sched);
1923 ast_copy_string(name, chan->name, sizeof(name));
1924 if ((dashptr = strrchr(name, '-'))) {
1928 /* Stop monitoring */
1930 chan->monitor->stop( chan, 0 );
1932 /* If there is native format music-on-hold state, free it */
1933 if (chan->music_state)
1934 ast_moh_cleanup(chan);
1936 /* Free translators */
1937 if (chan->readtrans)
1938 ast_translator_free_path(chan->readtrans);
1939 if (chan->writetrans)
1940 ast_translator_free_path(chan->writetrans);
1942 ast_log(LOG_WARNING, "PBX may not have been terminated properly on '%s'\n", chan->name);
1944 free_cid(&chan->cid);
1945 ast_party_connected_line_free(&chan->connected);
1946 ast_party_redirecting_free(&chan->redirecting);
1948 /* Close pipes if appropriate */
1949 if ((fd = chan->alertpipe[0]) > -1)
1951 if ((fd = chan->alertpipe[1]) > -1)
1954 ast_timer_close(chan->timer);
1957 for (i = 0; i < AST_MAX_FDS; i++) {
1958 if (chan->epfd_data[i])
1959 free(chan->epfd_data[i]);
1963 while ((f = AST_LIST_REMOVE_HEAD(&chan->readq, frame_list)))
1966 /* loop over the variables list, freeing all data and deleting list items */
1967 /* no need to lock the list, as the channel is already locked */
1969 while ((vardata = AST_LIST_REMOVE_HEAD(headp, entries)))
1970 ast_var_delete(vardata);
1972 ast_app_group_discard(chan);
1974 /* Destroy the jitterbuffer */
1975 ast_jb_destroy(chan);
1978 ast_cdr_discard(chan->cdr);
1983 chan->zone = ast_tone_zone_unref(chan->zone);
1986 ast_string_field_free_memory(chan);
1988 /* Queue an unknown state, because, while we know that this particular
1989 * instance is dead, we don't know the state of all other possible
1991 ast_devstate_changed_literal(AST_DEVICE_UNKNOWN, name);
1994 /*! \brief Free a dummy channel structure */
1995 static void ast_dummy_channel_destructor(void *obj)
1997 struct ast_channel *chan = obj;
1998 struct ast_var_t *vardata;
1999 struct varshead *headp;
2001 headp = &chan->varshead;
2003 free_cid(&chan->cid);
2005 /* loop over the variables list, freeing all data and deleting list items */
2006 /* no need to lock the list, as the channel is already locked */
2007 while ((vardata = AST_LIST_REMOVE_HEAD(headp, entries)))
2008 ast_var_delete(vardata);
2011 ast_cdr_discard(chan->cdr);
2015 ast_string_field_free_memory(chan);
2018 struct ast_datastore *ast_channel_datastore_alloc(const struct ast_datastore_info *info, const char *uid)
2020 return ast_datastore_alloc(info, uid);
2023 int ast_channel_datastore_free(struct ast_datastore *datastore)
2025 return ast_datastore_free(datastore);
2028 int ast_channel_datastore_inherit(struct ast_channel *from, struct ast_channel *to)
2030 struct ast_datastore *datastore = NULL, *datastore2;
2032 AST_LIST_TRAVERSE(&from->datastores, datastore, entry) {
2033 if (datastore->inheritance > 0) {
2034 datastore2 = ast_datastore_alloc(datastore->info, datastore->uid);
2036 datastore2->data = datastore->info->duplicate ? datastore->info->duplicate(datastore->data) : NULL;
2037 datastore2->inheritance = datastore->inheritance == DATASTORE_INHERIT_FOREVER ? DATASTORE_INHERIT_FOREVER : datastore->inheritance - 1;
2038 AST_LIST_INSERT_TAIL(&to->datastores, datastore2, entry);
2045 int ast_channel_datastore_add(struct ast_channel *chan, struct ast_datastore *datastore)
2049 AST_LIST_INSERT_HEAD(&chan->datastores, datastore, entry);
2054 int ast_channel_datastore_remove(struct ast_channel *chan, struct ast_datastore *datastore)
2056 return AST_LIST_REMOVE(&chan->datastores, datastore, entry) ? 0 : -1;
2059 struct ast_datastore *ast_channel_datastore_find(struct ast_channel *chan, const struct ast_datastore_info *info, const char *uid)
2061 struct ast_datastore *datastore = NULL;
2066 AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->datastores, datastore, entry) {
2067 if (datastore->info != info) {
2072 /* matched by type only */
2076 if ((datastore->uid != NULL) && !strcasecmp(uid, datastore->uid)) {
2077 /* Matched by type AND uid */
2081 AST_LIST_TRAVERSE_SAFE_END;
2086 /*! Set the file descriptor on the channel */
2087 void ast_channel_set_fd(struct ast_channel *chan, int which, int fd)
2090 struct epoll_event ev;
2091 struct ast_epoll_data *aed = NULL;
2093 if (chan->fds[which] > -1) {
2094 epoll_ctl(chan->epfd, EPOLL_CTL_DEL, chan->fds[which], &ev);
2095 aed = chan->epfd_data[which];
2098 /* If this new fd is valid, add it to the epoll */
2100 if (!aed && (!(aed = ast_calloc(1, sizeof(*aed)))))
2103 chan->epfd_data[which] = aed;
2107 ev.events = EPOLLIN | EPOLLPRI | EPOLLERR | EPOLLHUP;
2109 epoll_ctl(chan->epfd, EPOLL_CTL_ADD, fd, &ev);
2111 /* We don't have to keep around this epoll data structure now */
2113 chan->epfd_data[which] = NULL;
2116 chan->fds[which] = fd;
2120 /*! Add a channel to an optimized waitfor */
2121 void ast_poll_channel_add(struct ast_channel *chan0, struct ast_channel *chan1)
2124 struct epoll_event ev;
2127 if (chan0->epfd == -1)
2130 /* Iterate through the file descriptors on chan1, adding them to chan0 */
2131 for (i = 0; i < AST_MAX_FDS; i++) {
2132 if (chan1->fds[i] == -1)
2134 ev.events = EPOLLIN | EPOLLPRI | EPOLLERR | EPOLLHUP;
2135 ev.data.ptr = chan1->epfd_data[i];
2136 epoll_ctl(chan0->epfd, EPOLL_CTL_ADD, chan1->fds[i], &ev);
2143 /*! Delete a channel from an optimized waitfor */
2144 void ast_poll_channel_del(struct ast_channel *chan0, struct ast_channel *chan1)
2147 struct epoll_event ev;
2150 if (chan0->epfd == -1)
2153 for (i = 0; i < AST_MAX_FDS; i++) {
2154 if (chan1->fds[i] == -1)
2156 epoll_ctl(chan0->epfd, EPOLL_CTL_DEL, chan1->fds[i], &ev);
2163 /*! \brief Softly hangup a channel, don't lock */
2164 int ast_softhangup_nolock(struct ast_channel *chan, int cause)
2166 ast_debug(1, "Soft-Hanging up channel '%s'\n", chan->name);
2167 /* Inform channel driver that we need to be hung up, if it cares */
2168 chan->_softhangup |= cause;
2169 ast_queue_frame(chan, &ast_null_frame);
2170 /* Interrupt any poll call or such */
2171 if (ast_test_flag(chan, AST_FLAG_BLOCKING))
2172 pthread_kill(chan->blocker, SIGURG);
2176 /*! \brief Softly hangup a channel, lock */
2177 int ast_softhangup(struct ast_channel *chan, int cause)
2181 ast_channel_lock(chan);
2182 res = ast_softhangup_nolock(chan, cause);
2183 ast_channel_unlock(chan);
2188 static void free_translation(struct ast_channel *clonechan)
2190 if (clonechan->writetrans)
2191 ast_translator_free_path(clonechan->writetrans);
2192 if (clonechan->readtrans)
2193 ast_translator_free_path(clonechan->readtrans);
2194 clonechan->writetrans = NULL;
2195 clonechan->readtrans = NULL;
2196 clonechan->rawwriteformat = clonechan->nativeformats;
2197 clonechan->rawreadformat = clonechan->nativeformats;
2200 void ast_set_hangupsource(struct ast_channel *chan, const char *source, int force)
2202 struct ast_channel *bridge;
2204 ast_channel_lock(chan);
2205 if (force || ast_strlen_zero(chan->hangupsource)) {
2206 ast_string_field_set(chan, hangupsource, source);
2208 bridge = ast_bridged_channel(chan);
2209 ast_channel_unlock(chan);
2211 if (bridge && (force || ast_strlen_zero(bridge->hangupsource))) {
2212 ast_channel_lock(bridge);
2213 ast_string_field_set(chan, hangupsource, source);
2214 ast_channel_unlock(bridge);
2218 /*! \brief Hangup a channel */
2219 int ast_hangup(struct ast_channel *chan)
2222 char extra_str[64]; /* used for cel logging below */
2224 /* Don't actually hang up a channel that will masquerade as someone else, or
2225 if someone is going to masquerade as us */
2226 ast_channel_lock(chan);
2228 if (chan->audiohooks) {
2229 ast_audiohook_detach_list(chan->audiohooks);
2230 chan->audiohooks = NULL;
2233 ast_autoservice_stop(chan);
2236 ast_channel_unlock(chan);
2237 if (ast_do_masquerade(chan)) {
2238 ast_log(LOG_WARNING, "Failed to perform masquerade\n");
2240 ast_channel_lock(chan);
2244 ast_log(LOG_WARNING, "%s getting hung up, but someone is trying to masq into us?!?\n", chan->name);
2245 ast_channel_unlock(chan);
2248 /* If this channel is one which will be masqueraded into something,
2249 mark it as a zombie already, so we know to free it later */
2251 ast_set_flag(chan, AST_FLAG_ZOMBIE);
2252 ast_channel_unlock(chan);
2255 ast_channel_unlock(chan);
2257 ao2_unlink(channels, chan);
2259 ast_channel_lock(chan);
2260 free_translation(chan);
2261 /* Close audio stream */
2263 ast_closestream(chan->stream);
2264 chan->stream = NULL;
2266 /* Close video stream */
2267 if (chan->vstream) {
2268 ast_closestream(chan->vstream);
2269 chan->vstream = NULL;
2272 sched_context_destroy(chan->sched);
2276 if (chan->generatordata) /* Clear any tone stuff remaining */
2277 if (chan->generator && chan->generator->release)
2278 chan->generator->release(chan, chan->generatordata);
2279 chan->generatordata = NULL;
2280 chan->generator = NULL;
2282 snprintf(extra_str, sizeof(extra_str), "%d,%s,%s", chan->hangupcause, chan->hangupsource, S_OR(pbx_builtin_getvar_helper(chan, "DIALSTATUS"), ""));
2283 ast_cel_report_event(chan, AST_CEL_HANGUP, NULL, extra_str, NULL);
2285 if (ast_test_flag(chan, AST_FLAG_BLOCKING)) {
2286 ast_log(LOG_WARNING, "Hard hangup called by thread %ld on %s, while fd "
2287 "is blocked by thread %ld in procedure %s! Expect a failure\n",
2288 (long)pthread_self(), chan->name, (long)chan->blocker, chan->blockproc);
2289 ast_assert(ast_test_flag(chan, AST_FLAG_BLOCKING) == 0);
2291 if (!ast_test_flag(chan, AST_FLAG_ZOMBIE)) {
2292 ast_debug(1, "Hanging up channel '%s'\n", chan->name);
2293 if (chan->tech->hangup)
2294 res = chan->tech->hangup(chan);
2296 ast_debug(1, "Hanging up zombie '%s'\n", chan->name);
2299 ast_channel_unlock(chan);
2301 ast_manager_event(chan, EVENT_FLAG_CALL, "Hangup",
2304 "CallerIDNum: %s\r\n"
2305 "CallerIDName: %s\r\n"
2307 "Cause-txt: %s\r\n",
2310 S_OR(chan->cid.cid_num, "<unknown>"),
2311 S_OR(chan->cid.cid_name, "<unknown>"),
2313 ast_cause2str(chan->hangupcause)
2316 if (chan->cdr && !ast_test_flag(chan->cdr, AST_CDR_FLAG_BRIDGED) &&
2317 !ast_test_flag(chan->cdr, AST_CDR_FLAG_POST_DISABLED) &&
2318 (chan->cdr->disposition != AST_CDR_NULL || ast_test_flag(chan->cdr, AST_CDR_FLAG_DIALED))) {
2319 ast_channel_lock(chan);
2321 ast_cdr_end(chan->cdr);
2322 ast_cdr_detach(chan->cdr);
2324 ast_channel_unlock(chan);
2327 chan = ast_channel_release(chan);
2332 int ast_raw_answer(struct ast_channel *chan, int cdr_answer)
2336 ast_channel_lock(chan);
2338 /* You can't answer an outbound call */
2339 if (ast_test_flag(chan, AST_FLAG_OUTGOING)) {
2340 ast_channel_unlock(chan);
2344 /* Stop if we're a zombie or need a soft hangup */
2345 if (ast_test_flag(chan, AST_FLAG_ZOMBIE) || ast_check_hangup(chan)) {
2346 ast_channel_unlock(chan);
2350 ast_channel_unlock(chan);
2352 switch (chan->_state) {
2353 case AST_STATE_RINGING:
2354 case AST_STATE_RING:
2355 ast_channel_lock(chan);
2356 if (chan->tech->answer) {
2357 res = chan->tech->answer(chan);
2359 ast_setstate(chan, AST_STATE_UP);
2361 ast_cdr_answer(chan->cdr);
2363 ast_cel_report_event(chan, AST_CEL_ANSWER, NULL, NULL, NULL);
2364 ast_channel_unlock(chan);
2367 ast_cel_report_event(chan, AST_CEL_ANSWER, NULL, NULL, NULL);
2368 /* Calling ast_cdr_answer when it it has previously been called
2369 * is essentially a no-op, so it is safe.
2372 ast_cdr_answer(chan->cdr);
2379 ast_indicate(chan, -1);
2380 chan->visible_indication = 0;
2385 int __ast_answer(struct ast_channel *chan, unsigned int delay, int cdr_answer)
2388 enum ast_channel_state old_state;
2390 old_state = chan->_state;
2391 if ((res = ast_raw_answer(chan, cdr_answer))) {
2395 switch (old_state) {
2396 case AST_STATE_RINGING:
2397 case AST_STATE_RING:
2398 /* wait for media to start flowing, but don't wait any longer
2399 * than 'delay' or 500 milliseconds, whichever is longer
2402 AST_LIST_HEAD_NOLOCK(, ast_frame) frames;
2403 struct ast_frame *cur, *new;
2404 int ms = MAX(delay, 500);
2405 unsigned int done = 0;
2407 AST_LIST_HEAD_INIT_NOLOCK(&frames);
2410 ms = ast_waitfor(chan, ms);
2412 ast_log(LOG_WARNING, "Error condition occurred when polling channel %s for a voice frame: %s\n", chan->name, strerror(errno));
2417 ast_debug(2, "Didn't receive a media frame from %s within %d ms of answering. Continuing anyway\n", chan->name, MAX(delay, 500));
2420 cur = ast_read(chan);
2421 if (!cur || ((cur->frametype == AST_FRAME_CONTROL) &&
2422 (cur->subclass.integer == AST_CONTROL_HANGUP))) {
2427 ast_debug(2, "Hangup of channel %s detected in answer routine\n", chan->name);
2431 if ((new = ast_frisolate(cur)) != cur) {
2435 AST_LIST_INSERT_HEAD(&frames, new, frame_list);
2437 /* if a specific delay period was requested, continue
2438 * until that delay has passed. don't stop just because
2439 * incoming media has arrived.
2445 switch (new->frametype) {
2446 /* all of these frametypes qualify as 'media' */
2447 case AST_FRAME_VOICE:
2448 case AST_FRAME_VIDEO:
2449 case AST_FRAME_TEXT:
2450 case AST_FRAME_DTMF_BEGIN:
2451 case AST_FRAME_DTMF_END:
2452 case AST_FRAME_IMAGE:
2453 case AST_FRAME_HTML:
2454 case AST_FRAME_MODEM:
2457 case AST_FRAME_CONTROL:
2459 case AST_FRAME_NULL:
2470 ast_channel_lock(chan);
2471 while ((cur = AST_LIST_REMOVE_HEAD(&frames, frame_list))) {
2472 ast_queue_frame_head(chan, cur);
2475 ast_channel_unlock(chan);
2486 int ast_answer(struct ast_channel *chan)
2488 return __ast_answer(chan, 0, 1);
2491 void ast_deactivate_generator(struct ast_channel *chan)
2493 ast_channel_lock(chan);
2494 if (chan->generatordata) {
2495 if (chan->generator && chan->generator->release)
2496 chan->generator->release(chan, chan->generatordata);
2497 chan->generatordata = NULL;
2498 chan->generator = NULL;
2499 ast_channel_set_fd(chan, AST_GENERATOR_FD, -1);
2500 ast_clear_flag(chan, AST_FLAG_WRITE_INT);
2501 ast_settimeout(chan, 0, NULL, NULL);
2503 ast_channel_unlock(chan);
2506 static int generator_force(const void *data)
2508 /* Called if generator doesn't have data */
2511 int (*generate)(struct ast_channel *chan, void *tmp, int datalen, int samples) = NULL;
2512 struct ast_channel *chan = (struct ast_channel *)data;
2514 ast_channel_lock(chan);
2515 tmp = chan->generatordata;
2516 chan->generatordata = NULL;
2517 if (chan->generator)
2518 generate = chan->generator->generate;
2519 ast_channel_unlock(chan);
2521 if (!tmp || !generate)
2524 res = generate(chan, tmp, 0, ast_format_rate(chan->writeformat & AST_FORMAT_AUDIO_MASK) / 50);
2526 chan->generatordata = tmp;
2529 ast_debug(1, "Auto-deactivating generator\n");
2530 ast_deactivate_generator(chan);
2536 int ast_activate_generator(struct ast_channel *chan, struct ast_generator *gen, void *params)
2540 ast_channel_lock(chan);
2542 if (chan->generatordata) {
2543 if (chan->generator && chan->generator->release)
2544 chan->generator->release(chan, chan->generatordata);
2545 chan->generatordata = NULL;
2549 if (gen->alloc && !(chan->generatordata = gen->alloc(chan, params))) {
2554 ast_settimeout(chan, 50, generator_force, chan);
2555 chan->generator = gen;
2558 ast_channel_unlock(chan);
2563 /*! \brief Wait for x amount of time on a file descriptor to have input. */
2564 int ast_waitfor_n_fd(int *fds, int n, int *ms, int *exception)
2567 ast_waitfor_nandfds(NULL, 0, fds, n, exception, &winner, ms);
2571 /*! \brief Wait for x amount of time on a file descriptor to have input. */
2573 static struct ast_channel *ast_waitfor_nandfds_classic(struct ast_channel **c, int n, int *fds, int nfds,
2574 int *exception, int *outfd, int *ms)
2576 struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds, int nfds,
2577 int *exception, int *outfd, int *ms)
2580 struct timeval start = { 0 , 0 };
2581 struct pollfd *pfds = NULL;
2586 struct timeval now = { 0, 0 };
2587 struct timeval whentohangup = { 0, 0 }, diff;
2588 struct ast_channel *winner = NULL;
2594 if ((sz = n * AST_MAX_FDS + nfds)) {
2595 pfds = alloca(sizeof(*pfds) * sz);
2596 fdmap = alloca(sizeof(*fdmap) * sz);
2604 /* Perform any pending masquerades */
2605 for (x = 0; x < n; x++) {
2606 if (c[x]->masq && ast_do_masquerade(c[x])) {
2607 ast_log(LOG_WARNING, "Masquerade failed\n");
2612 ast_channel_lock(c[x]);
2613 if (!ast_tvzero(c[x]->whentohangup)) {
2614 if (ast_tvzero(whentohangup))
2616 diff = ast_tvsub(c[x]->whentohangup, now);
2617 if (diff.tv_sec < 0 || ast_tvzero(diff)) {
2618 /* Should already be hungup */
2619 c[x]->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
2620 ast_channel_unlock(c[x]);
2623 if (ast_tvzero(whentohangup) || ast_tvcmp(diff, whentohangup) < 0)
2624 whentohangup = diff;
2626 ast_channel_unlock(c[x]);
2628 /* Wait full interval */
2630 if (!ast_tvzero(whentohangup)) {
2631 rms = whentohangup.tv_sec * 1000 + whentohangup.tv_usec / 1000; /* timeout in milliseconds */
2632 if (*ms >= 0 && *ms < rms) /* original *ms still smaller */
2636 * Build the pollfd array, putting the channels' fds first,
2637 * followed by individual fds. Order is important because
2638 * individual fd's must have priority over channel fds.
2641 for (x = 0; x < n; x++) {
2642 for (y = 0; y < AST_MAX_FDS; y++) {
2643 fdmap[max].fdno = y; /* fd y is linked to this pfds */
2644 fdmap[max].chan = x; /* channel x is linked to this pfds */
2645 max += ast_add_fd(&pfds[max], c[x]->fds[y]);
2647 CHECK_BLOCKING(c[x]);
2649 /* Add the individual fds */
2650 for (x = 0; x < nfds; x++) {
2651 fdmap[max].chan = -1;
2652 max += ast_add_fd(&pfds[max], fds[x]);
2656 start = ast_tvnow();
2658 if (sizeof(int) == 4) { /* XXX fix timeout > 600000 on linux x86-32 */
2663 res = ast_poll(pfds, max, kbrms);
2666 } while (!res && (rms > 0));
2668 res = ast_poll(pfds, max, rms);
2670 for (x = 0; x < n; x++)
2671 ast_clear_flag(c[x], AST_FLAG_BLOCKING);
2672 if (res < 0) { /* Simulate a timeout if we were interrupted */
2677 if (!ast_tvzero(whentohangup)) { /* if we have a timeout, check who expired */
2679 for (x = 0; x < n; x++) {
2680 if (!ast_tvzero(c[x]->whentohangup) && ast_tvcmp(c[x]->whentohangup, now) <= 0) {
2681 c[x]->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
2687 if (res == 0) { /* no fd ready, reset timeout and done */
2688 *ms = 0; /* XXX use 0 since we may not have an exact timeout. */
2692 * Then check if any channel or fd has a pending event.
2693 * Remember to check channels first and fds last, as they
2694 * must have priority on setting 'winner'
2696 for (x = 0; x < max; x++) {
2697 res = pfds[x].revents;
2700 if (fdmap[x].chan >= 0) { /* this is a channel */
2701 winner = c[fdmap[x].chan]; /* override previous winners */
2703 ast_set_flag(winner, AST_FLAG_EXCEPTION);
2705 ast_clear_flag(winner, AST_FLAG_EXCEPTION);
2706 winner->fdno = fdmap[x].fdno;
2707 } else { /* this is an fd */
2709 *outfd = pfds[x].fd;
2711 *exception = (res & POLLPRI) ? -1 : 0;
2716 *ms -= ast_tvdiff_ms(ast_tvnow(), start);
2724 static struct ast_channel *ast_waitfor_nandfds_simple(struct ast_channel *chan, int *ms)
2726 struct timeval start = { 0 , 0 };
2728 struct epoll_event ev[1];
2729 long diff, rms = *ms;
2730 struct ast_channel *winner = NULL;
2731 struct ast_epoll_data *aed = NULL;
2734 /* See if this channel needs to be masqueraded */
2735 if (chan->masq && ast_do_masquerade(chan)) {
2736 ast_log(LOG_WARNING, "Failed to perform masquerade on %s\n", chan->name);
2741 ast_channel_lock(chan);
2742 /* Figure out their timeout */
2743 if (!ast_tvzero(chan->whentohangup)) {
2744 if ((diff = ast_tvdiff_ms(chan->whentohangup, ast_tvnow())) < 0) {
2745 /* They should already be hungup! */
2746 chan->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
2747 ast_channel_unlock(chan);
2750 /* If this value is smaller then the current one... make it priority */
2755 ast_channel_unlock(chan);
2757 /* Time to make this channel block... */
2758 CHECK_BLOCKING(chan);
2761 start = ast_tvnow();
2763 /* We don't have to add any file descriptors... they are already added, we just have to wait! */
2764 res = epoll_wait(chan->epfd, ev, 1, rms);
2767 ast_clear_flag(chan, AST_FLAG_BLOCKING);
2769 /* Simulate a timeout if we were interrupted */
2776 /* If this channel has a timeout see if it expired */
2777 if (!ast_tvzero(chan->whentohangup)) {
2778 if (ast_tvdiff_ms(ast_tvnow(), chan->whentohangup) >= 0) {
2779 chan->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
2784 /* No fd ready, reset timeout and be done for now */
2790 /* See what events are pending */
2791 aed = ev[0].data.ptr;
2792 chan->fdno = aed->which;
2793 if (ev[0].events & EPOLLPRI)
2794 ast_set_flag(chan, AST_FLAG_EXCEPTION);
2796 ast_clear_flag(chan, AST_FLAG_EXCEPTION);
2799 *ms -= ast_tvdiff_ms(ast_tvnow(), start);
2807 static struct ast_channel *ast_waitfor_nandfds_complex(struct ast_channel **c, int n, int *ms)
2809 struct timeval start = { 0 , 0 };
2811 struct epoll_event ev[25] = { { 0, } };
2812 struct timeval now = { 0, 0 };
2813 long whentohangup = 0, diff = 0, rms = *ms;
2814 struct ast_channel *winner = NULL;
2816 for (i = 0; i < n; i++) {
2817 if (c[i]->masq && ast_do_masquerade(c[i])) {
2818 ast_log(LOG_WARNING, "Masquerade failed\n");
2823 ast_channel_lock(c[i]);
2824 if (!ast_tvzero(c[i]->whentohangup)) {
2825 if (whentohangup == 0)
2827 if ((diff = ast_tvdiff_ms(c[i]->whentohangup, now)) < 0) {
2828 c[i]->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
2829 ast_channel_unlock(c[i]);
2832 if (!whentohangup || whentohangup > diff)
2833 whentohangup = diff;
2835 ast_channel_unlock(c[i]);
2836 CHECK_BLOCKING(c[i]);
2842 if (*ms >= 0 && *ms < rms)
2847 start = ast_tvnow();
2849 res = epoll_wait(c[0]->epfd, ev, 25, rms);
2851 for (i = 0; i < n; i++)
2852 ast_clear_flag(c[i], AST_FLAG_BLOCKING);
2862 for (i = 0; i < n; i++) {
2863 if (!ast_tvzero(c[i]->whentohangup) && ast_tvdiff_ms(now, c[i]->whentohangup) >= 0) {
2864 c[i]->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
2876 for (i = 0; i < res; i++) {
2877 struct ast_epoll_data *aed = ev[i].data.ptr;
2879 if (!ev[i].events || !aed)
2883 if (ev[i].events & EPOLLPRI)
2884 ast_set_flag(winner, AST_FLAG_EXCEPTION);
2886 ast_clear_flag(winner, AST_FLAG_EXCEPTION);
2887 winner->fdno = aed->which;
2891 *ms -= ast_tvdiff_ms(ast_tvnow(), start);
2899 struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds, int nfds,
2900 int *exception, int *outfd, int *ms)
2902 /* Clear all provided values in one place. */
2908 /* If no epoll file descriptor is available resort to classic nandfds */
2909 if (!n || nfds || c[0]->epfd == -1)
2910 return ast_waitfor_nandfds_classic(c, n, fds, nfds, exception, outfd, ms);
2911 else if (!nfds && n == 1)
2912 return ast_waitfor_nandfds_simple(c[0], ms);
2914 return ast_waitfor_nandfds_complex(c, n, ms);
2918 struct ast_channel *ast_waitfor_n(struct ast_channel **c, int n, int *ms)
2920 return ast_waitfor_nandfds(c, n, NULL, 0, NULL, NULL, ms);
2923 int ast_waitfor(struct ast_channel *c, int ms)
2925 int oldms = ms; /* -1 if no timeout */
2927 ast_waitfor_nandfds(&c, 1, NULL, 0, NULL, NULL, &ms);
2928 if ((ms < 0) && (oldms < 0))
2933 /* XXX never to be called with ms = -1 */
2934 int ast_waitfordigit(struct ast_channel *c, int ms)
2936 return ast_waitfordigit_full(c, ms, -1, -1);
2939 int ast_settimeout(struct ast_channel *c, unsigned int rate, int (*func)(const void *data), void *data)
2942 unsigned int real_rate = rate, max_rate;
2944 ast_channel_lock(c);
2946 if (c->timingfd == -1) {
2947 ast_channel_unlock(c);
2956 if (rate && rate > (max_rate = ast_timer_get_max_rate(c->timer))) {
2957 real_rate = max_rate;
2960 ast_debug(1, "Scheduling timer at (%u requested / %u actual) timer ticks per second\n", rate, real_rate);
2962 res = ast_timer_set_rate(c->timer, real_rate);
2964 c->timingfunc = func;
2965 c->timingdata = data;
2967 ast_channel_unlock(c);
2972 int ast_waitfordigit_full(struct ast_channel *c, int ms, int audiofd, int cmdfd)
2974 /* Stop if we're a zombie or need a soft hangup */
2975 if (ast_test_flag(c, AST_FLAG_ZOMBIE) || ast_check_hangup(c))
2978 /* Only look for the end of DTMF, don't bother with the beginning and don't emulate things */
2979 ast_set_flag(c, AST_FLAG_END_DTMF_ONLY);
2981 /* Wait for a digit, no more than ms milliseconds total. */
2984 struct ast_channel *rchan;
2988 rchan = ast_waitfor_nandfds(&c, 1, &cmdfd, (cmdfd > -1) ? 1 : 0, NULL, &outfd, &ms);
2990 if (!rchan && outfd < 0 && ms) {
2991 if (errno == 0 || errno == EINTR)
2993 ast_log(LOG_WARNING, "Wait failed (%s)\n", strerror(errno));
2994 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
2996 } else if (outfd > -1) {
2997 /* The FD we were watching has something waiting */
2998 ast_log(LOG_WARNING, "The FD we were waiting for has something waiting. Waitfordigit returning numeric 1\n");
2999 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3003 struct ast_frame *f = ast_read(c);
3007 switch (f->frametype) {
3008 case AST_FRAME_DTMF_BEGIN:
3010 case AST_FRAME_DTMF_END:
3011 res = f->subclass.integer;
3013 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3015 case AST_FRAME_CONTROL:
3016 switch (f->subclass.integer) {
3017 case AST_CONTROL_HANGUP:
3019 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3021 case AST_CONTROL_RINGING:
3022 case AST_CONTROL_ANSWER:
3023 case AST_CONTROL_SRCUPDATE:
3024 case AST_CONTROL_SRCCHANGE:
3025 case AST_CONTROL_CONNECTED_LINE:
3026 case AST_CONTROL_REDIRECTING:
3030 ast_log(LOG_WARNING, "Unexpected control subclass '%d'\n", f->subclass.integer);
3034 case AST_FRAME_VOICE:
3035 /* Write audio if appropriate */
3037 if (write(audiofd, f->data.ptr, f->datalen) < 0) {
3038 ast_log(LOG_WARNING, "write() failed: %s\n", strerror(errno));
3049 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3051 return 0; /* Time is up */
3054 static void send_dtmf_event(struct ast_channel *chan, const char *direction, const char digit, const char *begin, const char *end)
3056 ast_manager_event(chan, EVENT_FLAG_DTMF,
3064 chan->name, chan->uniqueid, digit, direction, begin, end);
3067 static void ast_read_generator_actions(struct ast_channel *chan, struct ast_frame *f)
3069 if (chan->generator && chan->generator->generate && chan->generatordata && !ast_internal_timing_enabled(chan)) {
3070 void *tmp = chan->generatordata;
3071 int (*generate)(struct ast_channel *chan, void *tmp, int datalen, int samples) = chan->generator->generate;
3075 if (chan->timingfunc) {
3076 ast_debug(1, "Generator got voice, switching to phase locked mode\n");
3077 ast_settimeout(chan, 0, NULL, NULL);
3080 chan->generatordata = NULL; /* reset, to let writes go through */
3082 if (f->subclass.codec != chan->writeformat) {
3084 factor = ((float) ast_format_rate(chan->writeformat)) / ((float) ast_format_rate(f->subclass.codec));
3085 samples = (int) ( ((float) f->samples) * factor );
3087 samples = f->samples;
3090 /* This unlock is here based on two assumptions that hold true at this point in the
3091 * code. 1) this function is only called from within __ast_read() and 2) all generators
3092 * call ast_write() in their generate callback.
3094 * The reason this is added is so that when ast_write is called, the lock that occurs
3095 * there will not recursively lock the channel. Doing this will cause intended deadlock
3096 * avoidance not to work in deeper functions
3098 ast_channel_unlock(chan);
3099 res = generate(chan, tmp, f->datalen, samples);
3100 ast_channel_lock(chan);
3101 chan->generatordata = tmp;
3103 ast_debug(1, "Auto-deactivating generator\n");
3104 ast_deactivate_generator(chan);
3107 } else if (f->frametype == AST_FRAME_CNG) {
3108 if (chan->generator && !chan->timingfunc && (chan->timingfd > -1)) {
3109 ast_debug(1, "Generator got CNG, switching to timed mode\n");
3110 ast_settimeout(chan, 50, generator_force, chan);
3115 static inline void queue_dtmf_readq(struct ast_channel *chan, struct ast_frame *f)
3117 struct ast_frame *fr = &chan->dtmff;
3119 fr->frametype = AST_FRAME_DTMF_END;
3120 fr->subclass.integer = f->subclass.integer;
3123 /* The only time this function will be called is for a frame that just came
3124 * out of the channel driver. So, we want to stick it on the tail of the
3127 ast_queue_frame(chan, fr);
3131 * \brief Determine whether or not we should ignore DTMF in the readq
3133 static inline int should_skip_dtmf(struct ast_channel *chan)
3135 if (ast_test_flag(chan, AST_FLAG_DEFER_DTMF | AST_FLAG_EMULATE_DTMF)) {
3136 /* We're in the middle of emulating a digit, or DTMF has been
3137 * explicitly deferred. Skip this digit, then. */
3141 if (!ast_tvzero(chan->dtmf_tv) &&
3142 ast_tvdiff_ms(ast_tvnow(), chan->dtmf_tv) < AST_MIN_DTMF_GAP) {
3143 /* We're not in the middle of a digit, but it hasn't been long enough
3144 * since the last digit, so we'll have to skip DTMF for now. */
3152 * \brief calculates the number of samples to jump forward with in a monitor stream.
3154 * \note When using ast_seekstream() with the read and write streams of a monitor,
3155 * the number of samples to seek forward must be of the same sample rate as the stream
3156 * or else the jump will not be calculated correctly.
3158 * \retval number of samples to seek forward after rate conversion.
3160 static inline int calc_monitor_jump(int samples, int sample_rate, int seek_rate)
3162 int diff = sample_rate - seek_rate;
3165 samples = samples / (float) (sample_rate / seek_rate);
3166 } else if (diff < 0) {
3167 samples = samples * (float) (seek_rate / sample_rate);
3173 static struct ast_frame *__ast_read(struct ast_channel *chan, int dropaudio)
3175 struct ast_frame *f = NULL; /* the return value */
3180 /* this function is very long so make sure there is only one return
3181 * point at the end (there are only two exceptions to this).
3185 if (ast_do_masquerade(chan))
3186 ast_log(LOG_WARNING, "Failed to perform masquerade\n");
3188 f = &ast_null_frame;
3192 /* if here, no masq has happened, lock the channel and proceed */
3193 ast_channel_lock(chan);
3195 /* Stop if we're a zombie or need a soft hangup */
3196 if (ast_test_flag(chan, AST_FLAG_ZOMBIE) || ast_check_hangup(chan)) {
3197 if (chan->generator)
3198 ast_deactivate_generator(chan);
3204 * The ast_waitfor() code records which of the channel's file descriptors reported that
3205 * data is available. In theory, ast_read() should only be called after ast_waitfor()
3206 * reports that a channel has data available for reading. However, there still may be
3207 * some edge cases throughout the code where ast_read() is called improperly. This can
3208 * potentially cause problems, so if this is a developer build, make a lot of noise if
3209 * this happens so that it can be addressed.
3211 if (chan->fdno == -1) {
3212 ast_log(LOG_ERROR, "ast_read() called with no recorded file descriptor.\n");
3216 prestate = chan->_state;
3218 /* Read and ignore anything on the alertpipe, but read only
3219 one sizeof(blah) per frame that we send from it */
3220 if (chan->alertpipe[0] > -1) {
3221 int flags = fcntl(chan->alertpipe[0], F_GETFL);
3222 /* For some odd reason, the alertpipe occasionally loses nonblocking status,
3223 * which immediately causes a deadlock scenario. Detect and prevent this. */
3224 if ((flags & O_NONBLOCK) == 0) {
3225 ast_log(LOG_ERROR, "Alertpipe on channel %s lost O_NONBLOCK?!!\n", chan->name);
3226 if (fcntl(chan->alertpipe[0], F_SETFL, flags | O_NONBLOCK) < 0) {
3227 ast_log(LOG_WARNING, "Unable to set alertpipe nonblocking! (%d: %s)\n", errno, strerror(errno));
3228 f = &ast_null_frame;
3232 if (read(chan->alertpipe[0], &blah, sizeof(blah)) < 0) {
3233 if (errno != EINTR && errno != EAGAIN)
3234 ast_log(LOG_WARNING, "read() failed: %s\n", strerror(errno));
3238 if (chan->timingfd > -1 && chan->fdno == AST_TIMING_FD) {
3239 enum ast_timer_event res;
3241 ast_clear_flag(chan, AST_FLAG_EXCEPTION);
3243 res = ast_timer_get_event(chan->timer);
3246 case AST_TIMING_EVENT_EXPIRED:
3247 ast_timer_ack(chan->timer, 1);
3249 if (chan->timingfunc) {
3250 /* save a copy of func/data before unlocking the channel */
3251 int (*func)(const void *) = chan->timingfunc;
3252 void *data = chan->timingdata;
3254 ast_channel_unlock(chan);
3257 ast_timer_set_rate(chan->timer, 0);
3259 ast_channel_unlock(chan);
3262 /* cannot 'goto done' because the channel is already unlocked */
3263 return &ast_null_frame;
3265 case AST_TIMING_EVENT_CONTINUOUS:
3266 if (AST_LIST_EMPTY(&chan->readq) ||
3267 !AST_LIST_NEXT(AST_LIST_FIRST(&chan->readq), frame_list)) {
3268 ast_timer_disable_continuous(chan->timer);
3273 } else if (chan->fds[AST_GENERATOR_FD] > -1 && chan->fdno == AST_GENERATOR_FD) {
3274 /* if the AST_GENERATOR_FD is set, call the generator with args
3275 * set to -1 so it can do whatever it needs to.
3277 void *tmp = chan->generatordata;
3278 chan->generatordata = NULL; /* reset to let ast_write get through */
3279 chan->generator->generate(chan, tmp, -1, -1);
3280 chan->generatordata = tmp;
3281 f = &ast_null_frame;
3286 /* Check for pending read queue */
3287 if (!AST_LIST_EMPTY(&chan->readq)) {
3288 int skip_dtmf = should_skip_dtmf(chan);
3290 AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->readq, f, frame_list) {
3291 /* We have to be picky about which frame we pull off of the readq because