100b77f79037f731a45addaa39d81aad77b0abd9
[asterisk/asterisk.git] / main / channel.c
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 1999 - 2006, Digium, Inc.
5  *
6  * Mark Spencer <markster@digium.com>
7  *
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.
13  *
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.
17  */
18
19 /*! \file
20  *
21  * \brief Channel Management
22  *
23  * \author Mark Spencer <markster@digium.com>
24  */
25
26 #include "asterisk.h"
27
28 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
29
30 #include "asterisk/_private.h"
31
32 #include <sys/time.h>
33 #include <signal.h>
34 #include <math.h>
35
36 #include "asterisk/paths.h"     /* use ast_config_AST_SYSTEM_NAME */
37
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/threadstorage.h"
62 #include "asterisk/slinfactory.h"
63 #include "asterisk/audiohook.h"
64 #include "asterisk/framehook.h"
65 #include "asterisk/timing.h"
66 #include "asterisk/autochan.h"
67 #include "asterisk/stringfields.h"
68 #include "asterisk/global_datastores.h"
69 #include "asterisk/data.h"
70
71 #ifdef HAVE_EPOLL
72 #include <sys/epoll.h>
73 #endif
74
75 #if defined(KEEP_TILL_CHANNEL_PARTY_NUMBER_INFO_NEEDED)
76 #if defined(HAVE_PRI)
77 #include "libpri.h"
78 #endif  /* defined(HAVE_PRI) */
79 #endif  /* defined(KEEP_TILL_CHANNEL_PARTY_NUMBER_INFO_NEEDED) */
80
81 struct ast_epoll_data {
82         struct ast_channel *chan;
83         int which;
84 };
85
86 /* uncomment if you have problems with 'monitoring' synchronized files */
87 #if 0
88 #define MONITOR_CONSTANT_DELAY
89 #define MONITOR_DELAY   150 * 8         /*!< 150 ms of MONITORING DELAY */
90 #endif
91
92 /*! \brief Prevent new channel allocation if shutting down. */
93 static int shutting_down;
94
95 static int uniqueint;
96
97 unsigned long global_fin, global_fout;
98
99 AST_THREADSTORAGE(state2str_threadbuf);
100 #define STATE2STR_BUFSIZE   32
101
102 /*! Default amount of time to use when emulating a digit as a begin and end 
103  *  100ms */
104 #define AST_DEFAULT_EMULATE_DTMF_DURATION 100
105
106 /*! Minimum allowed digit length - 80ms */
107 #define AST_MIN_DTMF_DURATION 80
108
109 /*! Minimum amount of time between the end of the last digit and the beginning 
110  *  of a new one - 45ms */
111 #define AST_MIN_DTMF_GAP 45
112
113 /*! \brief List of channel drivers */
114 struct chanlist {
115         const struct ast_channel_tech *tech;
116         AST_LIST_ENTRY(chanlist) list;
117 };
118
119 #ifdef CHANNEL_TRACE
120 /*! \brief Structure to hold channel context backtrace data */
121 struct ast_chan_trace_data {
122         int enabled;
123         AST_LIST_HEAD_NOLOCK(, ast_chan_trace) trace;
124 };
125
126 /*! \brief Structure to save contexts where an ast_chan has been into */
127 struct ast_chan_trace {
128         char context[AST_MAX_CONTEXT];
129         char exten[AST_MAX_EXTENSION];
130         int priority;
131         AST_LIST_ENTRY(ast_chan_trace) entry;
132 };
133 #endif
134
135 /*! \brief the list of registered channel types */
136 static AST_RWLIST_HEAD_STATIC(backends, chanlist);
137
138 #ifdef LOW_MEMORY
139 #define NUM_CHANNEL_BUCKETS 61
140 #else
141 #define NUM_CHANNEL_BUCKETS 1567
142 #endif
143
144 /*! \brief All active channels on the system */
145 static struct ao2_container *channels;
146
147 /*! \brief map AST_CAUSE's to readable string representations 
148  *
149  * \ref causes.h
150 */
151 static const struct {
152         int cause;
153         const char *name;
154         const char *desc;
155 } causes[] = {
156         { AST_CAUSE_UNALLOCATED, "UNALLOCATED", "Unallocated (unassigned) number" },
157         { AST_CAUSE_NO_ROUTE_TRANSIT_NET, "NO_ROUTE_TRANSIT_NET", "No route to specified transmit network" },
158         { AST_CAUSE_NO_ROUTE_DESTINATION, "NO_ROUTE_DESTINATION", "No route to destination" },
159         { AST_CAUSE_CHANNEL_UNACCEPTABLE, "CHANNEL_UNACCEPTABLE", "Channel unacceptable" },
160         { AST_CAUSE_CALL_AWARDED_DELIVERED, "CALL_AWARDED_DELIVERED", "Call awarded and being delivered in an established channel" },
161         { AST_CAUSE_NORMAL_CLEARING, "NORMAL_CLEARING", "Normal Clearing" },
162         { AST_CAUSE_USER_BUSY, "USER_BUSY", "User busy" },
163         { AST_CAUSE_NO_USER_RESPONSE, "NO_USER_RESPONSE", "No user responding" },
164         { AST_CAUSE_NO_ANSWER, "NO_ANSWER", "User alerting, no answer" },
165         { AST_CAUSE_CALL_REJECTED, "CALL_REJECTED", "Call Rejected" },
166         { AST_CAUSE_NUMBER_CHANGED, "NUMBER_CHANGED", "Number changed" },
167         { AST_CAUSE_DESTINATION_OUT_OF_ORDER, "DESTINATION_OUT_OF_ORDER", "Destination out of order" },
168         { AST_CAUSE_INVALID_NUMBER_FORMAT, "INVALID_NUMBER_FORMAT", "Invalid number format" },
169         { AST_CAUSE_FACILITY_REJECTED, "FACILITY_REJECTED", "Facility rejected" },
170         { AST_CAUSE_RESPONSE_TO_STATUS_ENQUIRY, "RESPONSE_TO_STATUS_ENQUIRY", "Response to STATus ENQuiry" },
171         { AST_CAUSE_NORMAL_UNSPECIFIED, "NORMAL_UNSPECIFIED", "Normal, unspecified" },
172         { AST_CAUSE_NORMAL_CIRCUIT_CONGESTION, "NORMAL_CIRCUIT_CONGESTION", "Circuit/channel congestion" },
173         { AST_CAUSE_NETWORK_OUT_OF_ORDER, "NETWORK_OUT_OF_ORDER", "Network out of order" },
174         { AST_CAUSE_NORMAL_TEMPORARY_FAILURE, "NORMAL_TEMPORARY_FAILURE", "Temporary failure" },
175         { AST_CAUSE_SWITCH_CONGESTION, "SWITCH_CONGESTION", "Switching equipment congestion" },
176         { AST_CAUSE_ACCESS_INFO_DISCARDED, "ACCESS_INFO_DISCARDED", "Access information discarded" },
177         { AST_CAUSE_REQUESTED_CHAN_UNAVAIL, "REQUESTED_CHAN_UNAVAIL", "Requested channel not available" },
178         { AST_CAUSE_PRE_EMPTED, "PRE_EMPTED", "Pre-empted" },
179         { AST_CAUSE_FACILITY_NOT_SUBSCRIBED, "FACILITY_NOT_SUBSCRIBED", "Facility not subscribed" },
180         { AST_CAUSE_OUTGOING_CALL_BARRED, "OUTGOING_CALL_BARRED", "Outgoing call barred" },
181         { AST_CAUSE_INCOMING_CALL_BARRED, "INCOMING_CALL_BARRED", "Incoming call barred" },
182         { AST_CAUSE_BEARERCAPABILITY_NOTAUTH, "BEARERCAPABILITY_NOTAUTH", "Bearer capability not authorized" },
183         { AST_CAUSE_BEARERCAPABILITY_NOTAVAIL, "BEARERCAPABILITY_NOTAVAIL", "Bearer capability not available" },
184         { AST_CAUSE_BEARERCAPABILITY_NOTIMPL, "BEARERCAPABILITY_NOTIMPL", "Bearer capability not implemented" },
185         { AST_CAUSE_CHAN_NOT_IMPLEMENTED, "CHAN_NOT_IMPLEMENTED", "Channel not implemented" },
186         { AST_CAUSE_FACILITY_NOT_IMPLEMENTED, "FACILITY_NOT_IMPLEMENTED", "Facility not implemented" },
187         { AST_CAUSE_INVALID_CALL_REFERENCE, "INVALID_CALL_REFERENCE", "Invalid call reference value" },
188         { AST_CAUSE_INCOMPATIBLE_DESTINATION, "INCOMPATIBLE_DESTINATION", "Incompatible destination" },
189         { AST_CAUSE_INVALID_MSG_UNSPECIFIED, "INVALID_MSG_UNSPECIFIED", "Invalid message unspecified" },
190         { AST_CAUSE_MANDATORY_IE_MISSING, "MANDATORY_IE_MISSING", "Mandatory information element is missing" },
191         { AST_CAUSE_MESSAGE_TYPE_NONEXIST, "MESSAGE_TYPE_NONEXIST", "Message type nonexist." },
192         { AST_CAUSE_WRONG_MESSAGE, "WRONG_MESSAGE", "Wrong message" },
193         { AST_CAUSE_IE_NONEXIST, "IE_NONEXIST", "Info. element nonexist or not implemented" },
194         { AST_CAUSE_INVALID_IE_CONTENTS, "INVALID_IE_CONTENTS", "Invalid information element contents" },
195         { AST_CAUSE_WRONG_CALL_STATE, "WRONG_CALL_STATE", "Message not compatible with call state" },
196         { AST_CAUSE_RECOVERY_ON_TIMER_EXPIRE, "RECOVERY_ON_TIMER_EXPIRE", "Recover on timer expiry" },
197         { AST_CAUSE_MANDATORY_IE_LENGTH_ERROR, "MANDATORY_IE_LENGTH_ERROR", "Mandatory IE length error" },
198         { AST_CAUSE_PROTOCOL_ERROR, "PROTOCOL_ERROR", "Protocol error, unspecified" },
199         { AST_CAUSE_INTERWORKING, "INTERWORKING", "Interworking, unspecified" },
200 };
201
202 struct ast_variable *ast_channeltype_list(void)
203 {
204         struct chanlist *cl;
205         struct ast_variable *var = NULL, *prev = NULL;
206
207         AST_RWLIST_RDLOCK(&backends);
208         AST_RWLIST_TRAVERSE(&backends, cl, list) {
209                 if (prev)  {
210                         if ((prev->next = ast_variable_new(cl->tech->type, cl->tech->description, "")))
211                                 prev = prev->next;
212                 } else {
213                         var = ast_variable_new(cl->tech->type, cl->tech->description, "");
214                         prev = var;
215                 }
216         }
217         AST_RWLIST_UNLOCK(&backends);
218
219         return var;
220 }
221
222 #if defined(KEEP_TILL_CHANNEL_PARTY_NUMBER_INFO_NEEDED)
223 static const char *party_number_ton2str(int ton)
224 {
225 #if defined(HAVE_PRI)
226         switch ((ton >> 4) & 0x07) {
227         case PRI_TON_INTERNATIONAL:
228                 return "International";
229         case PRI_TON_NATIONAL:
230                 return "National";
231         case PRI_TON_NET_SPECIFIC:
232                 return "Network Specific";
233         case PRI_TON_SUBSCRIBER:
234                 return "Subscriber";
235         case PRI_TON_ABBREVIATED:
236                 return "Abbreviated";
237         case PRI_TON_RESERVED:
238                 return "Reserved";
239         case PRI_TON_UNKNOWN:
240         default:
241                 break;
242         }
243 #endif  /* defined(HAVE_PRI) */
244         return "Unknown";
245 }
246 #endif  /* defined(KEEP_TILL_CHANNEL_PARTY_NUMBER_INFO_NEEDED) */
247
248 #if defined(KEEP_TILL_CHANNEL_PARTY_NUMBER_INFO_NEEDED)
249 static const char *party_number_plan2str(int plan)
250 {
251 #if defined(HAVE_PRI)
252         switch (plan & 0x0F) {
253         default:
254         case PRI_NPI_UNKNOWN:
255                 break;
256         case PRI_NPI_E163_E164:
257                 return "Public (E.163/E.164)";
258         case PRI_NPI_X121:
259                 return "Data (X.121)";
260         case PRI_NPI_F69:
261                 return "Telex (F.69)";
262         case PRI_NPI_NATIONAL:
263                 return "National Standard";
264         case PRI_NPI_PRIVATE:
265                 return "Private";
266         case PRI_NPI_RESERVED:
267                 return "Reserved";
268         }
269 #endif  /* defined(HAVE_PRI) */
270         return "Unknown";
271 }
272 #endif  /* defined(KEEP_TILL_CHANNEL_PARTY_NUMBER_INFO_NEEDED) */
273
274 /*! \brief Show channel types - CLI command */
275 static char *handle_cli_core_show_channeltypes(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
276 {
277 #define FORMAT  "%-10.10s  %-40.40s %-12.12s %-12.12s %-12.12s\n"
278         struct chanlist *cl;
279         int count_chan = 0;
280
281         switch (cmd) {
282         case CLI_INIT:
283                 e->command = "core show channeltypes";
284                 e->usage =
285                         "Usage: core show channeltypes\n"
286                         "       Lists available channel types registered in your\n"
287                         "       Asterisk server.\n";
288                 return NULL;
289         case CLI_GENERATE:
290                 return NULL;
291         }
292
293         if (a->argc != 3)
294                 return CLI_SHOWUSAGE;
295
296         ast_cli(a->fd, FORMAT, "Type", "Description",       "Devicestate", "Indications", "Transfer");
297         ast_cli(a->fd, FORMAT, "----------", "-----------", "-----------", "-----------", "--------");
298
299         AST_RWLIST_RDLOCK(&backends);
300         AST_RWLIST_TRAVERSE(&backends, cl, list) {
301                 ast_cli(a->fd, FORMAT, cl->tech->type, cl->tech->description,
302                         (cl->tech->devicestate) ? "yes" : "no",
303                         (cl->tech->indicate) ? "yes" : "no",
304                         (cl->tech->transfer) ? "yes" : "no");
305                 count_chan++;
306         }
307         AST_RWLIST_UNLOCK(&backends);
308
309         ast_cli(a->fd, "----------\n%d channel drivers registered.\n", count_chan);
310
311         return CLI_SUCCESS;
312
313 #undef FORMAT
314 }
315
316 static char *complete_channeltypes(struct ast_cli_args *a)
317 {
318         struct chanlist *cl;
319         int which = 0;
320         int wordlen;
321         char *ret = NULL;
322
323         if (a->pos != 3)
324                 return NULL;
325
326         wordlen = strlen(a->word);
327
328         AST_RWLIST_RDLOCK(&backends);
329         AST_RWLIST_TRAVERSE(&backends, cl, list) {
330                 if (!strncasecmp(a->word, cl->tech->type, wordlen) && ++which > a->n) {
331                         ret = ast_strdup(cl->tech->type);
332                         break;
333                 }
334         }
335         AST_RWLIST_UNLOCK(&backends);
336         
337         return ret;
338 }
339
340 /*! \brief Show details about a channel driver - CLI command */
341 static char *handle_cli_core_show_channeltype(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
342 {
343         struct chanlist *cl = NULL;
344         char buf[512];
345
346         switch (cmd) {
347         case CLI_INIT:
348                 e->command = "core show channeltype";
349                 e->usage =
350                         "Usage: core show channeltype <name>\n"
351                         "       Show details about the specified channel type, <name>.\n";
352                 return NULL;
353         case CLI_GENERATE:
354                 return complete_channeltypes(a);
355         }
356
357         if (a->argc != 4)
358                 return CLI_SHOWUSAGE;
359         
360         AST_RWLIST_RDLOCK(&backends);
361
362         AST_RWLIST_TRAVERSE(&backends, cl, list) {
363                 if (!strncasecmp(cl->tech->type, a->argv[3], strlen(cl->tech->type)))
364                         break;
365         }
366
367
368         if (!cl) {
369                 ast_cli(a->fd, "\n%s is not a registered channel driver.\n", a->argv[3]);
370                 AST_RWLIST_UNLOCK(&backends);
371                 return CLI_FAILURE;
372         }
373
374         ast_cli(a->fd,
375                 "-- Info about channel driver: %s --\n"
376                 "  Device State: %s\n"
377                 "    Indication: %s\n"
378                 "     Transfer : %s\n"
379                 "  Capabilities: %s\n"
380                 "   Digit Begin: %s\n"
381                 "     Digit End: %s\n"
382                 "    Send HTML : %s\n"
383                 " Image Support: %s\n"
384                 "  Text Support: %s\n",
385                 cl->tech->type,
386                 (cl->tech->devicestate) ? "yes" : "no",
387                 (cl->tech->indicate) ? "yes" : "no",
388                 (cl->tech->transfer) ? "yes" : "no",
389                 ast_getformatname_multiple(buf, sizeof(buf), cl->tech->capabilities),
390                 (cl->tech->send_digit_begin) ? "yes" : "no",
391                 (cl->tech->send_digit_end) ? "yes" : "no",
392                 (cl->tech->send_html) ? "yes" : "no",
393                 (cl->tech->send_image) ? "yes" : "no",
394                 (cl->tech->send_text) ? "yes" : "no"
395                 
396         );
397
398         AST_RWLIST_UNLOCK(&backends);
399
400         return CLI_SUCCESS;
401 }
402
403 static struct ast_cli_entry cli_channel[] = {
404         AST_CLI_DEFINE(handle_cli_core_show_channeltypes, "List available channel types"),
405         AST_CLI_DEFINE(handle_cli_core_show_channeltype,  "Give more details on that channel type")
406 };
407
408 static struct ast_frame *kill_read(struct ast_channel *chan)
409 {
410         /* Hangup channel. */
411         return NULL;
412 }
413
414 static struct ast_frame *kill_exception(struct ast_channel *chan)
415 {
416         /* Hangup channel. */
417         return NULL;
418 }
419
420 static int kill_write(struct ast_channel *chan, struct ast_frame *frame)
421 {
422         /* Hangup channel. */
423         return -1;
424 }
425
426 static int kill_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
427 {
428         /* No problem fixing up the channel. */
429         return 0;
430 }
431
432 static int kill_hangup(struct ast_channel *chan)
433 {
434         chan->tech_pvt = NULL;
435         return 0;
436 }
437
438 /*!
439  * \brief Kill the channel channel driver technology descriptor.
440  *
441  * \details
442  * The purpose of this channel technology is to encourage the
443  * channel to hangup as quickly as possible.
444  *
445  * \note Used by DTMF atxfer and zombie channels.
446  */
447 const struct ast_channel_tech ast_kill_tech = {
448         .type = "Kill",
449         .description = "Kill channel (should not see this)",
450         .read = kill_read,
451         .exception = kill_exception,
452         .write = kill_write,
453         .fixup = kill_fixup,
454         .hangup = kill_hangup,
455 };
456
457 #ifdef CHANNEL_TRACE
458 /*! \brief Destructor for the channel trace datastore */
459 static void ast_chan_trace_destroy_cb(void *data)
460 {
461         struct ast_chan_trace *trace;
462         struct ast_chan_trace_data *traced = data;
463         while ((trace = AST_LIST_REMOVE_HEAD(&traced->trace, entry))) {
464                 ast_free(trace);
465         }
466         ast_free(traced);
467 }
468
469 /*! \brief Datastore to put the linked list of ast_chan_trace and trace status */
470 static const struct ast_datastore_info ast_chan_trace_datastore_info = {
471         .type = "ChanTrace",
472         .destroy = ast_chan_trace_destroy_cb
473 };
474
475 /*! \brief Put the channel backtrace in a string */
476 int ast_channel_trace_serialize(struct ast_channel *chan, struct ast_str **buf)
477 {
478         int total = 0;
479         struct ast_chan_trace *trace;
480         struct ast_chan_trace_data *traced;
481         struct ast_datastore *store;
482
483         ast_channel_lock(chan);
484         store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
485         if (!store) {
486                 ast_channel_unlock(chan);
487                 return total;
488         }
489         traced = store->data;
490         ast_str_reset(*buf);
491         AST_LIST_TRAVERSE(&traced->trace, trace, entry) {
492                 if (ast_str_append(buf, 0, "[%d] => %s, %s, %d\n", total, trace->context, trace->exten, trace->priority) < 0) {
493                         ast_log(LOG_ERROR, "Data Buffer Size Exceeded!\n");
494                         total = -1;
495                         break;
496                 }
497                 total++;
498         }
499         ast_channel_unlock(chan);
500         return total;
501 }
502
503 /* !\brief Whether or not context tracing is enabled */
504 int ast_channel_trace_is_enabled(struct ast_channel *chan)
505 {
506         struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
507         if (!store)
508                 return 0;
509         return ((struct ast_chan_trace_data *)store->data)->enabled;
510 }
511
512 /*! \brief Update the context backtrace data if tracing is enabled */
513 static int ast_channel_trace_data_update(struct ast_channel *chan, struct ast_chan_trace_data *traced)
514 {
515         struct ast_chan_trace *trace;
516         if (!traced->enabled)
517                 return 0;
518         /* If the last saved context does not match the current one
519            OR we have not saved any context so far, then save the current context */
520         if ((!AST_LIST_EMPTY(&traced->trace) && strcasecmp(AST_LIST_FIRST(&traced->trace)->context, chan->context)) ||
521             (AST_LIST_EMPTY(&traced->trace))) {
522                 /* Just do some debug logging */
523                 if (AST_LIST_EMPTY(&traced->trace))
524                         ast_debug(1, "Setting initial trace context to %s\n", chan->context);
525                 else
526                         ast_debug(1, "Changing trace context from %s to %s\n", AST_LIST_FIRST(&traced->trace)->context, chan->context);
527                 /* alloc or bail out */
528                 trace = ast_malloc(sizeof(*trace));
529                 if (!trace)
530                         return -1;
531                 /* save the current location and store it in the trace list */
532                 ast_copy_string(trace->context, chan->context, sizeof(trace->context));
533                 ast_copy_string(trace->exten, chan->exten, sizeof(trace->exten));
534                 trace->priority = chan->priority;
535                 AST_LIST_INSERT_HEAD(&traced->trace, trace, entry);
536         }
537         return 0;
538 }
539
540 /*! \brief Update the context backtrace if tracing is enabled */
541 int ast_channel_trace_update(struct ast_channel *chan)
542 {
543         struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
544         if (!store)
545                 return 0;
546         return ast_channel_trace_data_update(chan, store->data);
547 }
548
549 /*! \brief Enable context tracing in the channel */
550 int ast_channel_trace_enable(struct ast_channel *chan)
551 {
552         struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
553         struct ast_chan_trace_data *traced;
554         if (!store) {
555                 store = ast_datastore_alloc(&ast_chan_trace_datastore_info, "ChanTrace");
556                 if (!store) 
557                         return -1;
558                 traced = ast_calloc(1, sizeof(*traced));
559                 if (!traced) {
560                         ast_datastore_free(store);
561                         return -1;
562                 }       
563                 store->data = traced;
564                 AST_LIST_HEAD_INIT_NOLOCK(&traced->trace);
565                 ast_channel_datastore_add(chan, store);
566         }       
567         ((struct ast_chan_trace_data *)store->data)->enabled = 1;
568         ast_channel_trace_data_update(chan, store->data);
569         return 0;
570 }
571
572 /*! \brief Disable context tracing in the channel */
573 int ast_channel_trace_disable(struct ast_channel *chan)
574 {
575         struct ast_datastore *store = ast_channel_datastore_find(chan, &ast_chan_trace_datastore_info, NULL);
576         if (!store)
577                 return 0;
578         ((struct ast_chan_trace_data *)store->data)->enabled = 0;
579         return 0;
580 }
581 #endif /* CHANNEL_TRACE */
582
583 /*! \brief Checks to see if a channel is needing hang up */
584 int ast_check_hangup(struct ast_channel *chan)
585 {
586         if (chan->_softhangup)          /* yes if soft hangup flag set */
587                 return 1;
588         if (ast_tvzero(chan->whentohangup))     /* no if no hangup scheduled */
589                 return 0;
590         if (ast_tvdiff_ms(chan->whentohangup, ast_tvnow()) > 0)         /* no if hangup time has not come yet. */
591                 return 0;
592         ast_debug(4, "Hangup time has come: %" PRIi64 "\n", ast_tvdiff_ms(chan->whentohangup, ast_tvnow()));
593         chan->_softhangup |= AST_SOFTHANGUP_TIMEOUT;    /* record event */
594         return 1;
595 }
596
597 int ast_check_hangup_locked(struct ast_channel *chan)
598 {
599         int res;
600         ast_channel_lock(chan);
601         res = ast_check_hangup(chan);
602         ast_channel_unlock(chan);
603         return res;
604 }
605
606 static int ast_channel_softhangup_cb(void *obj, void *arg, int flags)
607 {
608         struct ast_channel *chan = obj;
609
610         ast_softhangup(chan, AST_SOFTHANGUP_SHUTDOWN);
611
612         return 0;
613 }
614
615 void ast_begin_shutdown(int hangup)
616 {
617         shutting_down = 1;
618
619         if (hangup) {
620                 ao2_callback(channels, OBJ_NODATA | OBJ_MULTIPLE, ast_channel_softhangup_cb, NULL);
621         }
622 }
623
624 /*! \brief returns number of active/allocated channels */
625 int ast_active_channels(void)
626 {
627         return channels ? ao2_container_count(channels) : 0;
628 }
629
630 /*! \brief Cancel a shutdown in progress */
631 void ast_cancel_shutdown(void)
632 {
633         shutting_down = 0;
634 }
635
636 /*! \brief Returns non-zero if Asterisk is being shut down */
637 int ast_shutting_down(void)
638 {
639         return shutting_down;
640 }
641
642 /*! \brief Set when to hangup channel */
643 void ast_channel_setwhentohangup_tv(struct ast_channel *chan, struct timeval offset)
644 {
645         chan->whentohangup = ast_tvzero(offset) ? offset : ast_tvadd(offset, ast_tvnow());
646         ast_queue_frame(chan, &ast_null_frame);
647         return;
648 }
649
650 void ast_channel_setwhentohangup(struct ast_channel *chan, time_t offset)
651 {
652         struct timeval when = { offset, };
653         ast_channel_setwhentohangup_tv(chan, when);
654 }
655
656 /*! \brief Compare a offset with when to hangup channel */
657 int ast_channel_cmpwhentohangup_tv(struct ast_channel *chan, struct timeval offset)
658 {
659         struct timeval whentohangup;
660
661         if (ast_tvzero(chan->whentohangup))
662                 return ast_tvzero(offset) ? 0 : -1;
663
664         if (ast_tvzero(offset))
665                 return 1;
666
667         whentohangup = ast_tvadd(offset, ast_tvnow());
668
669         return ast_tvdiff_ms(whentohangup, chan->whentohangup);
670 }
671
672 int ast_channel_cmpwhentohangup(struct ast_channel *chan, time_t offset)
673 {
674         struct timeval when = { offset, };
675         return ast_channel_cmpwhentohangup_tv(chan, when);
676 }
677
678 /*! \brief Register a new telephony channel in Asterisk */
679 int ast_channel_register(const struct ast_channel_tech *tech)
680 {
681         struct chanlist *chan;
682
683         AST_RWLIST_WRLOCK(&backends);
684
685         AST_RWLIST_TRAVERSE(&backends, chan, list) {
686                 if (!strcasecmp(tech->type, chan->tech->type)) {
687                         ast_log(LOG_WARNING, "Already have a handler for type '%s'\n", tech->type);
688                         AST_RWLIST_UNLOCK(&backends);
689                         return -1;
690                 }
691         }
692
693         if (!(chan = ast_calloc(1, sizeof(*chan)))) {
694                 AST_RWLIST_UNLOCK(&backends);
695                 return -1;
696         }
697         chan->tech = tech;
698         AST_RWLIST_INSERT_HEAD(&backends, chan, list);
699
700         ast_debug(1, "Registered handler for '%s' (%s)\n", chan->tech->type, chan->tech->description);
701
702         ast_verb(2, "Registered channel type '%s' (%s)\n", chan->tech->type, chan->tech->description);
703
704         AST_RWLIST_UNLOCK(&backends);
705
706         return 0;
707 }
708
709 /*! \brief Unregister channel driver */
710 void ast_channel_unregister(const struct ast_channel_tech *tech)
711 {
712         struct chanlist *chan;
713
714         ast_debug(1, "Unregistering channel type '%s'\n", tech->type);
715
716         AST_RWLIST_WRLOCK(&backends);
717
718         AST_RWLIST_TRAVERSE_SAFE_BEGIN(&backends, chan, list) {
719                 if (chan->tech == tech) {
720                         AST_LIST_REMOVE_CURRENT(list);
721                         ast_free(chan);
722                         ast_verb(2, "Unregistered channel type '%s'\n", tech->type);
723                         break;  
724                 }
725         }
726         AST_LIST_TRAVERSE_SAFE_END;
727
728         AST_RWLIST_UNLOCK(&backends);
729 }
730
731 /*! \brief Get handle to channel driver based on name */
732 const struct ast_channel_tech *ast_get_channel_tech(const char *name)
733 {
734         struct chanlist *chanls;
735         const struct ast_channel_tech *ret = NULL;
736
737         AST_RWLIST_RDLOCK(&backends);
738
739         AST_RWLIST_TRAVERSE(&backends, chanls, list) {
740                 if (!strcasecmp(name, chanls->tech->type)) {
741                         ret = chanls->tech;
742                         break;
743                 }
744         }
745
746         AST_RWLIST_UNLOCK(&backends);
747         
748         return ret;
749 }
750
751 /*! \brief Gives the string form of a given hangup cause */
752 const char *ast_cause2str(int cause)
753 {
754         int x;
755
756         for (x = 0; x < ARRAY_LEN(causes); x++) {
757                 if (causes[x].cause == cause)
758                         return causes[x].desc;
759         }
760
761         return "Unknown";
762 }
763
764 /*! \brief Convert a symbolic hangup cause to number */
765 int ast_str2cause(const char *name)
766 {
767         int x;
768
769         for (x = 0; x < ARRAY_LEN(causes); x++)
770                 if (!strncasecmp(causes[x].name, name, strlen(causes[x].name)))
771                         return causes[x].cause;
772
773         return -1;
774 }
775
776 /*! \brief Gives the string form of a given channel state.
777         \note This function is not reentrant.
778  */
779 const char *ast_state2str(enum ast_channel_state state)
780 {
781         char *buf;
782
783         switch (state) {
784         case AST_STATE_DOWN:
785                 return "Down";
786         case AST_STATE_RESERVED:
787                 return "Rsrvd";
788         case AST_STATE_OFFHOOK:
789                 return "OffHook";
790         case AST_STATE_DIALING:
791                 return "Dialing";
792         case AST_STATE_RING:
793                 return "Ring";
794         case AST_STATE_RINGING:
795                 return "Ringing";
796         case AST_STATE_UP:
797                 return "Up";
798         case AST_STATE_BUSY:
799                 return "Busy";
800         case AST_STATE_DIALING_OFFHOOK:
801                 return "Dialing Offhook";
802         case AST_STATE_PRERING:
803                 return "Pre-ring";
804         default:
805                 if (!(buf = ast_threadstorage_get(&state2str_threadbuf, STATE2STR_BUFSIZE)))
806                         return "Unknown";
807                 snprintf(buf, STATE2STR_BUFSIZE, "Unknown (%d)", state);
808                 return buf;
809         }
810 }
811
812 /*! \brief Gives the string form of a given transfer capability */
813 char *ast_transfercapability2str(int transfercapability)
814 {
815         switch (transfercapability) {
816         case AST_TRANS_CAP_SPEECH:
817                 return "SPEECH";
818         case AST_TRANS_CAP_DIGITAL:
819                 return "DIGITAL";
820         case AST_TRANS_CAP_RESTRICTED_DIGITAL:
821                 return "RESTRICTED_DIGITAL";
822         case AST_TRANS_CAP_3_1K_AUDIO:
823                 return "3K1AUDIO";
824         case AST_TRANS_CAP_DIGITAL_W_TONES:
825                 return "DIGITAL_W_TONES";
826         case AST_TRANS_CAP_VIDEO:
827                 return "VIDEO";
828         default:
829                 return "UNKNOWN";
830         }
831 }
832
833 /*! \brief Pick the best audio codec */
834 struct ast_format *ast_best_codec(struct ast_format_cap *cap, struct ast_format *result)
835 {
836         /* This just our opinion, expressed in code.  We are asked to choose
837            the best codec to use, given no information */
838         static const enum ast_format_id prefs[] =
839         {
840                 /*! Okay, ulaw is used by all telephony equipment, so start with it */
841                 AST_FORMAT_ULAW,
842                 /*! Unless of course, you're a silly European, so then prefer ALAW */
843                 AST_FORMAT_ALAW,
844                 AST_FORMAT_G719,
845                 AST_FORMAT_SIREN14,
846                 AST_FORMAT_SIREN7,
847                 AST_FORMAT_TESTLAW,
848                 /*! G.722 is better then all below, but not as common as the above... so give ulaw and alaw priority */
849                 AST_FORMAT_G722,
850                 /*! Okay, well, signed linear is easy to translate into other stuff */
851                 AST_FORMAT_SLINEAR192,
852                 AST_FORMAT_SLINEAR96,
853                 AST_FORMAT_SLINEAR48,
854                 AST_FORMAT_SLINEAR44,
855                 AST_FORMAT_SLINEAR32,
856                 AST_FORMAT_SLINEAR24,
857                 AST_FORMAT_SLINEAR16,
858                 AST_FORMAT_SLINEAR12,
859                 AST_FORMAT_SLINEAR,
860                 /*! G.726 is standard ADPCM, in RFC3551 packing order */
861                 AST_FORMAT_G726,
862                 /*! G.726 is standard ADPCM, in AAL2 packing order */
863                 AST_FORMAT_G726_AAL2,
864                 /*! ADPCM has great sound quality and is still pretty easy to translate */
865                 AST_FORMAT_ADPCM,
866                 /*! Okay, we're down to vocoders now, so pick GSM because it's small and easier to
867                     translate and sounds pretty good */
868                 AST_FORMAT_GSM,
869                 /*! iLBC is not too bad */
870                 AST_FORMAT_ILBC,
871                 /*! Speex is free, but computationally more expensive than GSM */
872                 AST_FORMAT_SPEEX32,
873                 AST_FORMAT_SPEEX16,
874                 AST_FORMAT_SPEEX,
875                 /*! SILK is pretty awesome. */
876                 AST_FORMAT_SILK,
877                 /*! CELT supports crazy high sample rates */
878                 AST_FORMAT_CELT,
879                 /*! Ick, LPC10 sounds terrible, but at least we have code for it, if you're tacky enough
880                     to use it */
881                 AST_FORMAT_LPC10,
882                 /*! G.729a is faster than 723 and slightly less expensive */
883                 AST_FORMAT_G729A,
884                 /*! Down to G.723.1 which is proprietary but at least designed for voice */
885                 AST_FORMAT_G723_1,
886         };
887         char buf[512];
888         int x;
889
890         /* Find the first preferred codec in the format given */
891         for (x = 0; x < ARRAY_LEN(prefs); x++) {
892                 if (ast_format_cap_best_byid(cap, prefs[x], result)) {
893                         return result;
894                 }
895         }
896
897         ast_format_clear(result);
898         ast_log(LOG_WARNING, "Don't know any of %s formats\n", ast_getformatname_multiple(buf, sizeof(buf), cap));
899
900         return NULL;
901 }
902
903 static const struct ast_channel_tech null_tech = {
904         .type = "NULL",
905         .description = "Null channel (should not see this)",
906 };
907
908 static void ast_channel_destructor(void *obj);
909 static void ast_dummy_channel_destructor(void *obj);
910
911 /*! \brief Create a new channel structure */
912 static struct ast_channel * attribute_malloc __attribute__((format(printf, 13, 0)))
913 __ast_channel_alloc_ap(int needqueue, int state, const char *cid_num, const char *cid_name,
914                        const char *acctcode, const char *exten, const char *context,
915                        const char *linkedid, const int amaflag, const char *file, int line,
916                        const char *function, const char *name_fmt, va_list ap)
917 {
918         struct ast_channel *tmp;
919         int x;
920         int flags;
921         struct varshead *headp;
922         char *tech = "", *tech2 = NULL;
923
924         /* If shutting down, don't allocate any new channels */
925         if (shutting_down) {
926                 ast_log(LOG_WARNING, "Channel allocation failed: Refusing due to active shutdown\n");
927                 return NULL;
928         }
929
930 #if defined(REF_DEBUG)
931         tmp = __ao2_alloc_debug(sizeof(*tmp), ast_channel_destructor, "", file, line,
932                 function, 1);
933 #elif defined(__AST_DEBUG_MALLOC)
934         tmp = __ao2_alloc_debug(sizeof(*tmp), ast_channel_destructor, "", file, line,
935                 function, 0);
936 #else
937         tmp = ao2_alloc(sizeof(*tmp), ast_channel_destructor);
938 #endif
939         if (!tmp) {
940                 /* Channel structure allocation failure. */
941                 return NULL;
942         }
943         if (!(tmp->nativeformats = ast_format_cap_alloc())) {
944                 ao2_ref(tmp, -1);
945                 /* format capabilities structure allocation failure */
946                 return NULL;
947         }
948
949         /*
950          * Init file descriptors to unopened state so
951          * the destructor can know not to close them.
952          */
953         tmp->timingfd = -1;
954         for (x = 0; x < ARRAY_LEN(tmp->alertpipe); ++x) {
955                 tmp->alertpipe[x] = -1;
956         }
957         for (x = 0; x < ARRAY_LEN(tmp->fds); ++x) {
958                 tmp->fds[x] = -1;
959         }
960 #ifdef HAVE_EPOLL
961         tmp->epfd = epoll_create(25);
962 #endif
963
964         if (!(tmp->sched = ast_sched_context_create())) {
965                 ast_log(LOG_WARNING, "Channel allocation failed: Unable to create schedule context\n");
966                 return ast_channel_unref(tmp);
967         }
968         
969         ast_party_dialed_init(&tmp->dialed);
970         ast_party_caller_init(&tmp->caller);
971         ast_party_connected_line_init(&tmp->connected);
972         ast_party_redirecting_init(&tmp->redirecting);
973
974         if (cid_name) {
975                 tmp->caller.id.name.valid = 1;
976                 tmp->caller.id.name.str = ast_strdup(cid_name);
977                 if (!tmp->caller.id.name.str) {
978                         return ast_channel_unref(tmp);
979                 }
980         }
981         if (cid_num) {
982                 tmp->caller.id.number.valid = 1;
983                 tmp->caller.id.number.str = ast_strdup(cid_num);
984                 if (!tmp->caller.id.number.str) {
985                         return ast_channel_unref(tmp);
986                 }
987         }
988
989         if ((tmp->timer = ast_timer_open())) {
990                 if (strcmp(ast_timer_get_name(tmp->timer), "timerfd")) {
991                         needqueue = 0;
992                 }
993                 tmp->timingfd = ast_timer_fd(tmp->timer);
994         }
995
996         if (needqueue) {
997                 if (pipe(tmp->alertpipe)) {
998                         ast_log(LOG_WARNING, "Channel allocation failed: Can't create alert pipe! Try increasing max file descriptors with ulimit -n\n");
999                         return ast_channel_unref(tmp);
1000                 } else {
1001                         flags = fcntl(tmp->alertpipe[0], F_GETFL);
1002                         if (fcntl(tmp->alertpipe[0], F_SETFL, flags | O_NONBLOCK) < 0) {
1003                                 ast_log(LOG_WARNING, "Channel allocation failed: Unable to set alertpipe nonblocking! (%d: %s)\n", errno, strerror(errno));
1004                                 return ast_channel_unref(tmp);
1005                         }
1006                         flags = fcntl(tmp->alertpipe[1], F_GETFL);
1007                         if (fcntl(tmp->alertpipe[1], F_SETFL, flags | O_NONBLOCK) < 0) {
1008                                 ast_log(LOG_WARNING, "Channel allocation failed: Unable to set alertpipe nonblocking! (%d: %s)\n", errno, strerror(errno));
1009                                 return ast_channel_unref(tmp);
1010                         }
1011                 }
1012         }
1013
1014         /*
1015          * This is the last place the channel constructor can fail.
1016          *
1017          * The destructor takes advantage of this fact to ensure that the
1018          * AST_CEL_CHANNEL_END is not posted if we have not posted the
1019          * AST_CEL_CHANNEL_START yet.
1020          */
1021         if ((ast_string_field_init(tmp, 128))) {
1022                 return ast_channel_unref(tmp);
1023         }
1024
1025         /* Always watch the alertpipe */
1026         ast_channel_set_fd(tmp, AST_ALERT_FD, tmp->alertpipe[0]);
1027         /* And timing pipe */
1028         ast_channel_set_fd(tmp, AST_TIMING_FD, tmp->timingfd);
1029
1030         /* Initial state */
1031         tmp->_state = state;
1032
1033         tmp->streamid = -1;
1034         
1035         tmp->fin = global_fin;
1036         tmp->fout = global_fout;
1037
1038         if (ast_strlen_zero(ast_config_AST_SYSTEM_NAME)) {
1039                 ast_string_field_build(tmp, uniqueid, "%li.%d", (long) time(NULL), 
1040                         ast_atomic_fetchadd_int(&uniqueint, 1));
1041         } else {
1042                 ast_string_field_build(tmp, uniqueid, "%s-%li.%d", ast_config_AST_SYSTEM_NAME, 
1043                         (long) time(NULL), ast_atomic_fetchadd_int(&uniqueint, 1));
1044         }
1045
1046         if (!ast_strlen_zero(linkedid)) {
1047                 ast_string_field_set(tmp, linkedid, linkedid);
1048         } else {
1049                 ast_string_field_set(tmp, linkedid, tmp->uniqueid);
1050         }
1051
1052         if (!ast_strlen_zero(name_fmt)) {
1053                 char *slash, *slash2;
1054                 /* Almost every channel is calling this function, and setting the name via the ast_string_field_build() call.
1055                  * And they all use slightly different formats for their name string.
1056                  * This means, to set the name here, we have to accept variable args, and call the string_field_build from here.
1057                  * This means, that the stringfields must have a routine that takes the va_lists directly, and 
1058                  * uses them to build the string, instead of forming the va_lists internally from the vararg ... list.
1059                  * This new function was written so this can be accomplished.
1060                  */
1061                 ast_channel_name_set_va(tmp, name_fmt, ap);
1062                 tech = ast_strdupa(ast_channel_name(tmp));
1063                 if ((slash = strchr(tech, '/'))) {
1064                         if ((slash2 = strchr(slash + 1, '/'))) {
1065                                 tech2 = slash + 1;
1066                                 *slash2 = '\0';
1067                         }
1068                         *slash = '\0';
1069                 }
1070         } else {
1071                 /*
1072                  * Start the string with '-' so it becomes an empty string
1073                  * in the destructor.
1074                  */
1075                 ast_channel_name_set(tmp, "-**Unknown**");
1076         }
1077
1078         /* Reminder for the future: under what conditions do we NOT want to track cdrs on channels? */
1079
1080         /* These 4 variables need to be set up for the cdr_init() to work right */
1081         if (amaflag)
1082                 tmp->amaflags = amaflag;
1083         else
1084                 tmp->amaflags = ast_default_amaflags;
1085         
1086         if (!ast_strlen_zero(acctcode))
1087                 ast_string_field_set(tmp, accountcode, acctcode);
1088         else
1089                 ast_string_field_set(tmp, accountcode, ast_default_accountcode);
1090                 
1091         if (!ast_strlen_zero(context))
1092                 ast_copy_string(tmp->context, context, sizeof(tmp->context));
1093         else
1094                 strcpy(tmp->context, "default");
1095
1096         if (!ast_strlen_zero(exten))
1097                 ast_copy_string(tmp->exten, exten, sizeof(tmp->exten));
1098         else
1099                 strcpy(tmp->exten, "s");
1100
1101         tmp->priority = 1;
1102
1103         tmp->cdr = ast_cdr_alloc();
1104         ast_cdr_init(tmp->cdr, tmp);
1105         ast_cdr_start(tmp->cdr);
1106
1107         ast_cel_report_event(tmp, AST_CEL_CHANNEL_START, NULL, NULL, NULL);
1108
1109         headp = &tmp->varshead;
1110         AST_LIST_HEAD_INIT_NOLOCK(headp);
1111         
1112         AST_LIST_HEAD_INIT_NOLOCK(&tmp->datastores);
1113
1114         AST_LIST_HEAD_INIT_NOLOCK(&tmp->autochans);
1115         
1116         ast_string_field_set(tmp, language, defaultlanguage);
1117
1118         tmp->tech = &null_tech;
1119
1120         ao2_link(channels, tmp);
1121
1122         /*
1123          * And now, since the channel structure is built, and has its name, let's
1124          * call the manager event generator with this Newchannel event. This is the
1125          * proper and correct place to make this call, but you sure do have to pass
1126          * a lot of data into this func to do it here!
1127          */
1128         if (ast_get_channel_tech(tech) || (tech2 && ast_get_channel_tech(tech2))) {
1129                 ast_manager_event(tmp, EVENT_FLAG_CALL, "Newchannel",
1130                         "Channel: %s\r\n"
1131                         "ChannelState: %d\r\n"
1132                         "ChannelStateDesc: %s\r\n"
1133                         "CallerIDNum: %s\r\n"
1134                         "CallerIDName: %s\r\n"
1135                         "AccountCode: %s\r\n"
1136                         "Exten: %s\r\n"
1137                         "Context: %s\r\n"
1138                         "Uniqueid: %s\r\n",
1139                         ast_channel_name(tmp), 
1140                         state, 
1141                         ast_state2str(state),
1142                         S_OR(cid_num, ""),
1143                         S_OR(cid_name, ""),
1144                         tmp->accountcode,
1145                         S_OR(exten, ""),
1146                         S_OR(context, ""),
1147                         tmp->uniqueid);
1148         }
1149
1150         return tmp;
1151 }
1152
1153 struct ast_channel *__ast_channel_alloc(int needqueue, int state, const char *cid_num,
1154                                         const char *cid_name, const char *acctcode,
1155                                         const char *exten, const char *context,
1156                                         const char *linkedid, const int amaflag,
1157                                         const char *file, int line, const char *function,
1158                                         const char *name_fmt, ...)
1159 {
1160         va_list ap;
1161         struct ast_channel *result;
1162
1163         va_start(ap, name_fmt);
1164         result = __ast_channel_alloc_ap(needqueue, state, cid_num, cid_name, acctcode, exten, context,
1165                                         linkedid, amaflag, file, line, function, name_fmt, ap);
1166         va_end(ap);
1167
1168         return result;
1169 }
1170
1171 /* only do the minimum amount of work needed here to make a channel
1172  * structure that can be used to expand channel vars */
1173 #if defined(REF_DEBUG) || defined(__AST_DEBUG_MALLOC)
1174 struct ast_channel *__ast_dummy_channel_alloc(const char *file, int line, const char *function)
1175 #else
1176 struct ast_channel *ast_dummy_channel_alloc(void)
1177 #endif
1178 {
1179         struct ast_channel *tmp;
1180         struct varshead *headp;
1181
1182 #if defined(REF_DEBUG)
1183         tmp = __ao2_alloc_debug(sizeof(*tmp), ast_dummy_channel_destructor, "dummy channel",
1184                 file, line, function, 1);
1185 #elif defined(__AST_DEBUG_MALLOC)
1186         tmp = __ao2_alloc_debug(sizeof(*tmp), ast_dummy_channel_destructor, "dummy channel",
1187                 file, line, function, 0);
1188 #else
1189         tmp = ao2_alloc(sizeof(*tmp), ast_dummy_channel_destructor);
1190 #endif
1191         if (!tmp) {
1192                 /* Dummy channel structure allocation failure. */
1193                 return NULL;
1194         }
1195
1196         if ((ast_string_field_init(tmp, 128))) {
1197                 return ast_channel_unref(tmp);
1198         }
1199
1200         headp = &tmp->varshead;
1201         AST_LIST_HEAD_INIT_NOLOCK(headp);
1202
1203         return tmp;
1204 }
1205
1206 static int __ast_queue_frame(struct ast_channel *chan, struct ast_frame *fin, int head, struct ast_frame *after)
1207 {
1208         struct ast_frame *f;
1209         struct ast_frame *cur;
1210         unsigned int new_frames = 0;
1211         unsigned int new_voice_frames = 0;
1212         unsigned int queued_frames = 0;
1213         unsigned int queued_voice_frames = 0;
1214         AST_LIST_HEAD_NOLOCK(, ast_frame) frames;
1215
1216         ast_channel_lock(chan);
1217
1218         /*
1219          * Check the last frame on the queue if we are queuing the new
1220          * frames after it.
1221          */
1222         cur = AST_LIST_LAST(&chan->readq);
1223         if (cur && cur->frametype == AST_FRAME_CONTROL && !head && (!after || after == cur)) {
1224                 switch (cur->subclass.integer) {
1225                 case AST_CONTROL_END_OF_Q:
1226                         if (fin->frametype == AST_FRAME_CONTROL
1227                                 && fin->subclass.integer == AST_CONTROL_HANGUP) {
1228                                 /*
1229                                  * Destroy the end-of-Q marker frame so we can queue the hangup
1230                                  * frame in its place.
1231                                  */
1232                                 AST_LIST_REMOVE(&chan->readq, cur, frame_list);
1233                                 ast_frfree(cur);
1234
1235                                 /*
1236                                  * This has degenerated to a normal queue append anyway.  Since
1237                                  * we just destroyed the last frame in the queue we must make
1238                                  * sure that "after" is NULL or bad things will happen.
1239                                  */
1240                                 after = NULL;
1241                                 break;
1242                         }
1243                         /* Fall through */
1244                 case AST_CONTROL_HANGUP:
1245                         /* Don't queue anything. */
1246                         ast_channel_unlock(chan);
1247                         return 0;
1248                 default:
1249                         break;
1250                 }
1251         }
1252
1253         /* Build copies of all the new frames and count them */
1254         AST_LIST_HEAD_INIT_NOLOCK(&frames);
1255         for (cur = fin; cur; cur = AST_LIST_NEXT(cur, frame_list)) {
1256                 if (!(f = ast_frdup(cur))) {
1257                         if (AST_LIST_FIRST(&frames)) {
1258                                 ast_frfree(AST_LIST_FIRST(&frames));
1259                         }
1260                         ast_channel_unlock(chan);
1261                         return -1;
1262                 }
1263
1264                 AST_LIST_INSERT_TAIL(&frames, f, frame_list);
1265                 new_frames++;
1266                 if (f->frametype == AST_FRAME_VOICE) {
1267                         new_voice_frames++;
1268                 }
1269         }
1270
1271         /* Count how many frames exist on the queue */
1272         AST_LIST_TRAVERSE(&chan->readq, cur, frame_list) {
1273                 queued_frames++;
1274                 if (cur->frametype == AST_FRAME_VOICE) {
1275                         queued_voice_frames++;
1276                 }
1277         }
1278
1279         if ((queued_frames + new_frames > 128 || queued_voice_frames + new_voice_frames > 96)) {
1280                 int count = 0;
1281                 ast_log(LOG_WARNING, "Exceptionally long %squeue length queuing to %s\n", queued_frames + new_frames > 128 ? "" : "voice ", ast_channel_name(chan));
1282                 AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->readq, cur, frame_list) {
1283                         /* Save the most recent frame */
1284                         if (!AST_LIST_NEXT(cur, frame_list)) {
1285                                 break;
1286                         } else if (cur->frametype == AST_FRAME_VOICE || cur->frametype == AST_FRAME_VIDEO || cur->frametype == AST_FRAME_NULL) {
1287                                 if (++count > 64) {
1288                                         break;
1289                                 }
1290                                 AST_LIST_REMOVE_CURRENT(frame_list);
1291                                 ast_frfree(cur);
1292                         }
1293                 }
1294                 AST_LIST_TRAVERSE_SAFE_END;
1295         }
1296
1297         if (after) {
1298                 AST_LIST_INSERT_LIST_AFTER(&chan->readq, &frames, after, frame_list);
1299         } else {
1300                 if (head) {
1301                         AST_LIST_APPEND_LIST(&frames, &chan->readq, frame_list);
1302                         AST_LIST_HEAD_INIT_NOLOCK(&chan->readq);
1303                 }
1304                 AST_LIST_APPEND_LIST(&chan->readq, &frames, frame_list);
1305         }
1306
1307         if (chan->alertpipe[1] > -1) {
1308                 int blah[new_frames];
1309
1310                 memset(blah, 1, sizeof(blah));
1311                 if (write(chan->alertpipe[1], &blah, sizeof(blah)) != (sizeof(blah))) {
1312                         ast_log(LOG_WARNING, "Unable to write to alert pipe on %s (qlen = %d): %s!\n",
1313                                 ast_channel_name(chan), queued_frames, strerror(errno));
1314                 }
1315         } else if (chan->timingfd > -1) {
1316                 ast_timer_enable_continuous(chan->timer);
1317         } else if (ast_test_flag(chan, AST_FLAG_BLOCKING)) {
1318                 pthread_kill(chan->blocker, SIGURG);
1319         }
1320
1321         ast_channel_unlock(chan);
1322
1323         return 0;
1324 }
1325
1326 int ast_queue_frame(struct ast_channel *chan, struct ast_frame *fin)
1327 {
1328         return __ast_queue_frame(chan, fin, 0, NULL);
1329 }
1330
1331 int ast_queue_frame_head(struct ast_channel *chan, struct ast_frame *fin)
1332 {
1333         return __ast_queue_frame(chan, fin, 1, NULL);
1334 }
1335
1336 /*! \brief Queue a hangup frame for channel */
1337 int ast_queue_hangup(struct ast_channel *chan)
1338 {
1339         struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = AST_CONTROL_HANGUP };
1340         /* Yeah, let's not change a lock-critical value without locking */
1341         if (!ast_channel_trylock(chan)) {
1342                 chan->_softhangup |= AST_SOFTHANGUP_DEV;
1343                 manager_event(EVENT_FLAG_CALL, "HangupRequest",
1344                         "Channel: %s\r\n"
1345                         "Uniqueid: %s\r\n",
1346                         ast_channel_name(chan),
1347                         chan->uniqueid);
1348                 ast_channel_unlock(chan);
1349         }
1350         return ast_queue_frame(chan, &f);
1351 }
1352
1353 /*! \brief Queue a hangup frame for channel */
1354 int ast_queue_hangup_with_cause(struct ast_channel *chan, int cause)
1355 {
1356         struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = AST_CONTROL_HANGUP };
1357
1358         if (cause >= 0)
1359                 f.data.uint32 = cause;
1360
1361         /* Yeah, let's not change a lock-critical value without locking */
1362         if (!ast_channel_trylock(chan)) {
1363                 chan->_softhangup |= AST_SOFTHANGUP_DEV;
1364                 if (cause < 0)
1365                         f.data.uint32 = chan->hangupcause;
1366
1367                 manager_event(EVENT_FLAG_CALL, "HangupRequest",
1368                         "Channel: %s\r\n"
1369                         "Uniqueid: %s\r\n"
1370                         "Cause: %d\r\n",
1371                         ast_channel_name(chan),
1372                         chan->uniqueid,
1373                         cause);
1374                 ast_channel_unlock(chan);
1375         }
1376
1377         return ast_queue_frame(chan, &f);
1378 }
1379
1380 /*! \brief Queue a control frame */
1381 int ast_queue_control(struct ast_channel *chan, enum ast_control_frame_type control)
1382 {
1383         struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = control };
1384         return ast_queue_frame(chan, &f);
1385 }
1386
1387 /*! \brief Queue a control frame with payload */
1388 int ast_queue_control_data(struct ast_channel *chan, enum ast_control_frame_type control,
1389                            const void *data, size_t datalen)
1390 {
1391         struct ast_frame f = { AST_FRAME_CONTROL, .subclass.integer = control, .data.ptr = (void *) data, .datalen = datalen };
1392         return ast_queue_frame(chan, &f);
1393 }
1394
1395 /*! \brief Set defer DTMF flag on channel */
1396 int ast_channel_defer_dtmf(struct ast_channel *chan)
1397 {
1398         int pre = 0;
1399
1400         if (chan) {
1401                 pre = ast_test_flag(chan, AST_FLAG_DEFER_DTMF);
1402                 ast_set_flag(chan, AST_FLAG_DEFER_DTMF);
1403         }
1404         return pre;
1405 }
1406
1407 /*! \brief Unset defer DTMF flag on channel */
1408 void ast_channel_undefer_dtmf(struct ast_channel *chan)
1409 {
1410         if (chan)
1411                 ast_clear_flag(chan, AST_FLAG_DEFER_DTMF);
1412 }
1413
1414 struct ast_channel *ast_channel_callback(ao2_callback_data_fn *cb_fn, void *arg,
1415                 void *data, int ao2_flags)
1416 {
1417         return ao2_callback_data(channels, ao2_flags, cb_fn, arg, data);
1418 }
1419
1420 static int ast_channel_by_name_cb(void *obj, void *arg, void *data, int flags)
1421 {
1422         struct ast_channel *chan = obj;
1423         const char *name = (flags & OBJ_KEY) ? arg : ast_channel_name((struct ast_channel *)arg);
1424         size_t name_len = *(size_t *)data;
1425         int ret = CMP_MATCH;
1426
1427         if (ast_strlen_zero(name)) {
1428                 ast_log(LOG_ERROR, "BUG! Must supply a name, or a channel with a name to match on!\n");
1429                 return CMP_STOP;
1430         }
1431
1432         ast_channel_lock(chan);
1433         if (!name_len && (strcasecmp(ast_channel_name(chan), name) || (name_len && strncasecmp(ast_channel_name(chan), name, name_len)))) {
1434                 ret = 0; /* name match failed, keep looking */
1435         }
1436         ast_channel_unlock(chan);
1437
1438         return ret;
1439 }
1440
1441 static int ast_channel_by_exten_cb(void *obj, void *arg, void *data, int flags)
1442 {
1443         struct ast_channel *chan = obj;
1444         char *context = arg, *exten = data;
1445         int ret = CMP_MATCH;
1446
1447         if (ast_strlen_zero(exten) || ast_strlen_zero(context)) {
1448                 ast_log(LOG_ERROR, "BUG! Must have a context and extension to match!\n");
1449                 return CMP_STOP;
1450         }
1451
1452         ast_channel_lock(chan);
1453         if (strcasecmp(chan->context, context) && strcasecmp(chan->macrocontext, context)) {
1454                 ret = 0; /* Context match failed, continue */
1455         } else if (strcasecmp(chan->exten, exten) && strcasecmp(chan->macroexten, exten)) {
1456                 ret = 0; /* Extension match failed, continue */
1457         }
1458         ast_channel_unlock(chan);
1459
1460         return ret;
1461 }
1462
1463 static int ast_channel_by_uniqueid_cb(void *obj, void *arg, void *data, int flags)
1464 {
1465         struct ast_channel *chan = obj;
1466         char *uniqueid = arg;
1467         size_t name_len = *(size_t *) data;
1468         int ret = CMP_MATCH;
1469
1470         if (ast_strlen_zero(uniqueid)) {
1471                 ast_log(LOG_ERROR, "BUG! Must have a uniqueid to match!\n");
1472                 return CMP_STOP;
1473         }
1474
1475         ast_channel_lock(chan);
1476         if (!name_len && (strcasecmp(chan->uniqueid, uniqueid) ||
1477                         (name_len && strncasecmp(chan->uniqueid, uniqueid, name_len)))) {
1478                 ret = 0;
1479         }
1480         ast_channel_unlock(chan);
1481
1482         return ret;
1483 }
1484
1485 struct ast_channel_iterator {
1486         /* storage for non-dynamically allocated iterator */
1487         struct ao2_iterator simple_iterator;
1488         /* pointer to the actual iterator (simple_iterator or a dynamically
1489          * allocated iterator)
1490          */
1491         struct ao2_iterator *active_iterator;
1492 };
1493
1494 struct ast_channel_iterator *ast_channel_iterator_destroy(struct ast_channel_iterator *i)
1495 {
1496         ao2_iterator_destroy(i->active_iterator);
1497         ast_free(i);
1498
1499         return NULL;
1500 }
1501
1502 static struct ast_channel_iterator *channel_iterator_search(const char *name,
1503         size_t name_len, const char *exten, const char *context)
1504 {
1505         struct ast_channel_iterator *i;
1506         char *l_name = (char *) name;
1507         char *l_exten = (char *) exten;
1508         char *l_context = (char *) context;
1509
1510         if (!(i = ast_calloc(1, sizeof(*i)))) {
1511                 return NULL;
1512         }
1513
1514         if (ast_strlen_zero(name)
1515                 && !(i->active_iterator = (void *) ast_channel_callback(ast_channel_by_exten_cb,
1516                         l_context, l_exten, OBJ_MULTIPLE))) {
1517                 ast_free(i);
1518                 return NULL;
1519         } else if (!(i->active_iterator = (void *) ast_channel_callback(ast_channel_by_name_cb,
1520                 l_name, &name_len,
1521                 OBJ_MULTIPLE | (name_len == 0 /* match the whole word, so optimize */ ? OBJ_KEY : 0)))) {
1522                 ast_free(i);
1523                 return NULL;
1524         }
1525
1526         return i;
1527 }
1528
1529 struct ast_channel_iterator *ast_channel_iterator_by_exten_new(const char *exten, const char *context)
1530 {
1531         return channel_iterator_search(NULL, 0, exten, context);
1532 }
1533
1534 struct ast_channel_iterator *ast_channel_iterator_by_name_new(const char *name, size_t name_len)
1535 {
1536         return channel_iterator_search(name, name_len, NULL, NULL);
1537 }
1538
1539 struct ast_channel_iterator *ast_channel_iterator_all_new(void)
1540 {
1541         struct ast_channel_iterator *i;
1542
1543         if (!(i = ast_calloc(1, sizeof(*i)))) {
1544                 return NULL;
1545         }
1546
1547         i->simple_iterator = ao2_iterator_init(channels, 0);
1548         i->active_iterator = &i->simple_iterator;
1549
1550         return i;
1551 }
1552
1553 struct ast_channel *ast_channel_iterator_next(struct ast_channel_iterator *i)
1554 {
1555         return ao2_iterator_next(i->active_iterator);
1556 }
1557
1558 /* Legacy function, not currently used for lookups, but we need a cmp_fn */
1559 static int ast_channel_cmp_cb(void *obj, void *arg, int flags)
1560 {
1561         struct ast_channel *cmp_args = arg;
1562         size_t name_len;
1563         int ret = CMP_MATCH;
1564
1565         /* This is sort of a hack.  Basically, we're using an arbitrary field
1566          * in ast_channel to pass the name_len for a prefix match.  If this
1567          * gets changed, then the uses of ao2_find() must be changed, too. */
1568         name_len = cmp_args->rings;
1569
1570         if (!ast_strlen_zero(ast_channel_name(cmp_args))) { /* match by name */
1571                 ret = ast_channel_by_name_cb(obj, arg, &name_len, flags);
1572         } else if (!ast_strlen_zero(cmp_args->exten)) {
1573                 ret = ast_channel_by_exten_cb(obj, cmp_args->context, cmp_args->exten, flags);
1574         } else if (!ast_strlen_zero(cmp_args->uniqueid)) {
1575                 ret = ast_channel_by_uniqueid_cb(obj, (void *) cmp_args->uniqueid, &name_len, flags);
1576         } else {
1577                 ret = 0;
1578         }
1579
1580         return ret;
1581 }
1582
1583 static struct ast_channel *ast_channel_get_full(const char *name, size_t name_len,
1584         const char *exten, const char *context)
1585 {
1586         struct ast_channel *chan;
1587         char *l_name = (char *) name;
1588         char *l_exten = (char *) exten;
1589         char *l_context = (char *) context;
1590
1591         if (ast_strlen_zero(name)
1592                 && (chan = ast_channel_callback(ast_channel_by_exten_cb, l_context, l_exten, 0))) {
1593                 return chan;
1594         } else if ((chan = ast_channel_callback(ast_channel_by_name_cb, l_name, &name_len,
1595                 (name_len == 0) /* optimize if it is a complete name match */ ? OBJ_KEY : 0))) {
1596                 return chan;
1597         }
1598
1599         /* If we haven't found by name or context yet and don't have a name, give up. */
1600         if (!name) {
1601                 return NULL;
1602         }
1603
1604         /* If name was specified, but the result was NULL, 
1605          * try a search on uniqueid, instead. */
1606         return ast_channel_callback(ast_channel_by_uniqueid_cb, l_name, &name_len, 0);
1607 }
1608
1609 struct ast_channel *ast_channel_get_by_name(const char *name)
1610 {
1611         return ast_channel_get_full(name, 0, NULL, NULL);
1612 }
1613
1614 struct ast_channel *ast_channel_get_by_name_prefix(const char *name, size_t name_len)
1615 {
1616         return ast_channel_get_full(name, name_len, NULL, NULL);
1617 }
1618
1619 struct ast_channel *ast_channel_get_by_exten(const char *exten, const char *context)
1620 {
1621         return ast_channel_get_full(NULL, 0, exten, context);
1622 }
1623
1624 int ast_is_deferrable_frame(const struct ast_frame *frame)
1625 {
1626         /* Do not add a default entry in this switch statement.  Each new
1627          * frame type should be addressed directly as to whether it should
1628          * be queued up or not.
1629          */
1630         switch (frame->frametype) {
1631         case AST_FRAME_CONTROL:
1632         case AST_FRAME_TEXT:
1633         case AST_FRAME_IMAGE:
1634         case AST_FRAME_HTML:
1635                 return 1;
1636
1637         case AST_FRAME_DTMF_END:
1638         case AST_FRAME_DTMF_BEGIN:
1639         case AST_FRAME_VOICE:
1640         case AST_FRAME_VIDEO:
1641         case AST_FRAME_NULL:
1642         case AST_FRAME_IAX:
1643         case AST_FRAME_CNG:
1644         case AST_FRAME_MODEM:
1645                 return 0;
1646         }
1647         return 0;
1648 }
1649
1650 /*! \brief Wait, look for hangups and condition arg */
1651 int ast_safe_sleep_conditional(struct ast_channel *chan, int ms, int (*cond)(void*), void *data)
1652 {
1653         struct ast_frame *f;
1654         struct ast_silence_generator *silgen = NULL;
1655         int res = 0;
1656         AST_LIST_HEAD_NOLOCK(, ast_frame) deferred_frames;
1657
1658         AST_LIST_HEAD_INIT_NOLOCK(&deferred_frames);
1659
1660         /* If no other generator is present, start silencegen while waiting */
1661         if (ast_opt_transmit_silence && !chan->generatordata) {
1662                 silgen = ast_channel_start_silence_generator(chan);
1663         }
1664
1665         while (ms > 0) {
1666                 struct ast_frame *dup_f = NULL;
1667                 if (cond && ((*cond)(data) == 0)) {
1668                         break;
1669                 }
1670                 ms = ast_waitfor(chan, ms);
1671                 if (ms < 0) {
1672                         res = -1;
1673                         break;
1674                 }
1675                 if (ms > 0) {
1676                         f = ast_read(chan);
1677                         if (!f) {
1678                                 res = -1;
1679                                 break;
1680                         }
1681
1682                         if (!ast_is_deferrable_frame(f)) {
1683                                 ast_frfree(f);
1684                                 continue;
1685                         }
1686                         
1687                         if ((dup_f = ast_frisolate(f))) {
1688                                 if (dup_f != f) {
1689                                         ast_frfree(f);
1690                                 }
1691                                 AST_LIST_INSERT_HEAD(&deferred_frames, dup_f, frame_list);
1692                         }
1693                 }
1694         }
1695
1696         /* stop silgen if present */
1697         if (silgen) {
1698                 ast_channel_stop_silence_generator(chan, silgen);
1699         }
1700
1701         /* We need to free all the deferred frames, but we only need to
1702          * queue the deferred frames if there was no error and no
1703          * hangup was received
1704          */
1705         ast_channel_lock(chan);
1706         while ((f = AST_LIST_REMOVE_HEAD(&deferred_frames, frame_list))) {
1707                 if (!res) {
1708                         ast_queue_frame_head(chan, f);
1709                 }
1710                 ast_frfree(f);
1711         }
1712         ast_channel_unlock(chan);
1713
1714         return res;
1715 }
1716
1717 /*! \brief Wait, look for hangups */
1718 int ast_safe_sleep(struct ast_channel *chan, int ms)
1719 {
1720         return ast_safe_sleep_conditional(chan, ms, NULL, NULL);
1721 }
1722
1723 struct ast_channel *ast_channel_release(struct ast_channel *chan)
1724 {
1725         /* Safe, even if already unlinked. */
1726         ao2_unlink(channels, chan);
1727         return ast_channel_unref(chan);
1728 }
1729
1730 void ast_party_name_init(struct ast_party_name *init)
1731 {
1732         init->str = NULL;
1733         init->char_set = AST_PARTY_CHAR_SET_ISO8859_1;
1734         init->presentation = AST_PRES_ALLOWED_USER_NUMBER_NOT_SCREENED;
1735         init->valid = 0;
1736 }
1737
1738 void ast_party_name_copy(struct ast_party_name *dest, const struct ast_party_name *src)
1739 {
1740         if (dest == src) {
1741                 /* Don't copy to self */
1742                 return;
1743         }
1744
1745         ast_free(dest->str);
1746         dest->str = ast_strdup(src->str);
1747         dest->char_set = src->char_set;
1748         dest->presentation = src->presentation;
1749         dest->valid = src->valid;
1750 }
1751
1752 void ast_party_name_set_init(struct ast_party_name *init, const struct ast_party_name *guide)
1753 {
1754         init->str = NULL;
1755         init->char_set = guide->char_set;
1756         init->presentation = guide->presentation;
1757         init->valid = guide->valid;
1758 }
1759
1760 void ast_party_name_set(struct ast_party_name *dest, const struct ast_party_name *src)
1761 {
1762         if (dest == src) {
1763                 /* Don't set to self */
1764                 return;
1765         }
1766
1767         if (src->str && src->str != dest->str) {
1768                 ast_free(dest->str);
1769                 dest->str = ast_strdup(src->str);
1770         }
1771
1772         dest->char_set = src->char_set;
1773         dest->presentation = src->presentation;
1774         dest->valid = src->valid;
1775 }
1776
1777 void ast_party_name_free(struct ast_party_name *doomed)
1778 {
1779         ast_free(doomed->str);
1780         doomed->str = NULL;
1781 }
1782
1783 void ast_party_number_init(struct ast_party_number *init)
1784 {
1785         init->str = NULL;
1786         init->plan = 0;/* Unknown */
1787         init->presentation = AST_PRES_ALLOWED_USER_NUMBER_NOT_SCREENED;
1788         init->valid = 0;
1789 }
1790
1791 void ast_party_number_copy(struct ast_party_number *dest, const struct ast_party_number *src)
1792 {
1793         if (dest == src) {
1794                 /* Don't copy to self */
1795                 return;
1796         }
1797
1798         ast_free(dest->str);
1799         dest->str = ast_strdup(src->str);
1800         dest->plan = src->plan;
1801         dest->presentation = src->presentation;
1802         dest->valid = src->valid;
1803 }
1804
1805 void ast_party_number_set_init(struct ast_party_number *init, const struct ast_party_number *guide)
1806 {
1807         init->str = NULL;
1808         init->plan = guide->plan;
1809         init->presentation = guide->presentation;
1810         init->valid = guide->valid;
1811 }
1812
1813 void ast_party_number_set(struct ast_party_number *dest, const struct ast_party_number *src)
1814 {
1815         if (dest == src) {
1816                 /* Don't set to self */
1817                 return;
1818         }
1819
1820         if (src->str && src->str != dest->str) {
1821                 ast_free(dest->str);
1822                 dest->str = ast_strdup(src->str);
1823         }
1824
1825         dest->plan = src->plan;
1826         dest->presentation = src->presentation;
1827         dest->valid = src->valid;
1828 }
1829
1830 void ast_party_number_free(struct ast_party_number *doomed)
1831 {
1832         ast_free(doomed->str);
1833         doomed->str = NULL;
1834 }
1835
1836 void ast_party_subaddress_init(struct ast_party_subaddress *init)
1837 {
1838         init->str = NULL;
1839         init->type = 0;
1840         init->odd_even_indicator = 0;
1841         init->valid = 0;
1842 }
1843
1844 void ast_party_subaddress_copy(struct ast_party_subaddress *dest, const struct ast_party_subaddress *src)
1845 {
1846         if (dest == src) {
1847                 /* Don't copy to self */
1848                 return;
1849         }
1850
1851         ast_free(dest->str);
1852         dest->str = ast_strdup(src->str);
1853         dest->type = src->type;
1854         dest->odd_even_indicator = src->odd_even_indicator;
1855         dest->valid = src->valid;
1856 }
1857
1858 void ast_party_subaddress_set_init(struct ast_party_subaddress *init, const struct ast_party_subaddress *guide)
1859 {
1860         init->str = NULL;
1861         init->type = guide->type;
1862         init->odd_even_indicator = guide->odd_even_indicator;
1863         init->valid = guide->valid;
1864 }
1865
1866 void ast_party_subaddress_set(struct ast_party_subaddress *dest, const struct ast_party_subaddress *src)
1867 {
1868         if (dest == src) {
1869                 /* Don't set to self */
1870                 return;
1871         }
1872
1873         if (src->str && src->str != dest->str) {
1874                 ast_free(dest->str);
1875                 dest->str = ast_strdup(src->str);
1876         }
1877
1878         dest->type = src->type;
1879         dest->odd_even_indicator = src->odd_even_indicator;
1880         dest->valid = src->valid;
1881 }
1882
1883 void ast_party_subaddress_free(struct ast_party_subaddress *doomed)
1884 {
1885         ast_free(doomed->str);
1886         doomed->str = NULL;
1887 }
1888
1889 void ast_party_id_init(struct ast_party_id *init)
1890 {
1891         ast_party_name_init(&init->name);
1892         ast_party_number_init(&init->number);
1893         ast_party_subaddress_init(&init->subaddress);
1894         init->tag = NULL;
1895 }
1896
1897 void ast_party_id_copy(struct ast_party_id *dest, const struct ast_party_id *src)
1898 {
1899         if (dest == src) {
1900                 /* Don't copy to self */
1901                 return;
1902         }
1903
1904         ast_party_name_copy(&dest->name, &src->name);
1905         ast_party_number_copy(&dest->number, &src->number);
1906         ast_party_subaddress_copy(&dest->subaddress, &src->subaddress);
1907
1908         ast_free(dest->tag);
1909         dest->tag = ast_strdup(src->tag);
1910 }
1911
1912 void ast_party_id_set_init(struct ast_party_id *init, const struct ast_party_id *guide)
1913 {
1914         ast_party_name_set_init(&init->name, &guide->name);
1915         ast_party_number_set_init(&init->number, &guide->number);
1916         ast_party_subaddress_set_init(&init->subaddress, &guide->subaddress);
1917         init->tag = NULL;
1918 }
1919
1920 void ast_party_id_set(struct ast_party_id *dest, const struct ast_party_id *src, const struct ast_set_party_id *update)
1921 {
1922         if (dest == src) {
1923                 /* Don't set to self */
1924                 return;
1925         }
1926
1927         if (!update || update->name) {
1928                 ast_party_name_set(&dest->name, &src->name);
1929         }
1930         if (!update || update->number) {
1931                 ast_party_number_set(&dest->number, &src->number);
1932         }
1933         if (!update || update->subaddress) {
1934                 ast_party_subaddress_set(&dest->subaddress, &src->subaddress);
1935         }
1936
1937         if (src->tag && src->tag != dest->tag) {
1938                 ast_free(dest->tag);
1939                 dest->tag = ast_strdup(src->tag);
1940         }
1941 }
1942
1943 void ast_party_id_free(struct ast_party_id *doomed)
1944 {
1945         ast_party_name_free(&doomed->name);
1946         ast_party_number_free(&doomed->number);
1947         ast_party_subaddress_free(&doomed->subaddress);
1948
1949         ast_free(doomed->tag);
1950         doomed->tag = NULL;
1951 }
1952
1953 int ast_party_id_presentation(const struct ast_party_id *id)
1954 {
1955         int number_priority;
1956         int number_value;
1957         int number_screening;
1958         int name_priority;
1959         int name_value;
1960
1961         /* Determine name presentation priority. */
1962         if (!id->name.valid) {
1963                 name_value = AST_PRES_UNAVAILABLE;
1964                 name_priority = 3;
1965         } else {
1966                 name_value = id->name.presentation & AST_PRES_RESTRICTION;
1967                 switch (name_value) {
1968                 case AST_PRES_RESTRICTED:
1969                         name_priority = 0;
1970                         break;
1971                 case AST_PRES_ALLOWED:
1972                         name_priority = 1;
1973                         break;
1974                 case AST_PRES_UNAVAILABLE:
1975                         name_priority = 2;
1976                         break;
1977                 default:
1978                         name_value = AST_PRES_UNAVAILABLE;
1979                         name_priority = 3;
1980                         break;
1981                 }
1982         }
1983
1984         /* Determine number presentation priority. */
1985         if (!id->number.valid) {
1986                 number_screening = AST_PRES_USER_NUMBER_UNSCREENED;
1987                 number_value = AST_PRES_UNAVAILABLE;
1988                 number_priority = 3;
1989         } else {
1990                 number_screening = id->number.presentation & AST_PRES_NUMBER_TYPE;
1991                 number_value = id->number.presentation & AST_PRES_RESTRICTION;
1992                 switch (number_value) {
1993                 case AST_PRES_RESTRICTED:
1994                         number_priority = 0;
1995                         break;
1996                 case AST_PRES_ALLOWED:
1997                         number_priority = 1;
1998                         break;
1999                 case AST_PRES_UNAVAILABLE:
2000                         number_priority = 2;
2001                         break;
2002                 default:
2003                         number_screening = AST_PRES_USER_NUMBER_UNSCREENED;
2004                         number_value = AST_PRES_UNAVAILABLE;
2005                         number_priority = 3;
2006                         break;
2007                 }
2008         }
2009
2010         /* Select the wining presentation value. */
2011         if (name_priority < number_priority) {
2012                 number_value = name_value;
2013         }
2014
2015         return number_value | number_screening;
2016 }
2017
2018 void ast_party_dialed_init(struct ast_party_dialed *init)
2019 {
2020         init->number.str = NULL;
2021         init->number.plan = 0;/* Unknown */
2022         ast_party_subaddress_init(&init->subaddress);
2023         init->transit_network_select = 0;
2024 }
2025
2026 void ast_party_dialed_copy(struct ast_party_dialed *dest, const struct ast_party_dialed *src)
2027 {
2028         if (dest == src) {
2029                 /* Don't copy to self */
2030                 return;
2031         }
2032
2033         ast_free(dest->number.str);
2034         dest->number.str = ast_strdup(src->number.str);
2035         dest->number.plan = src->number.plan;
2036         ast_party_subaddress_copy(&dest->subaddress, &src->subaddress);
2037         dest->transit_network_select = src->transit_network_select;
2038 }
2039
2040 void ast_party_dialed_set_init(struct ast_party_dialed *init, const struct ast_party_dialed *guide)
2041 {
2042         init->number.str = NULL;
2043         init->number.plan = guide->number.plan;
2044         ast_party_subaddress_set_init(&init->subaddress, &guide->subaddress);
2045         init->transit_network_select = guide->transit_network_select;
2046 }
2047
2048 void ast_party_dialed_set(struct ast_party_dialed *dest, const struct ast_party_dialed *src)
2049 {
2050         if (src->number.str && src->number.str != dest->number.str) {
2051                 ast_free(dest->number.str);
2052                 dest->number.str = ast_strdup(src->number.str);
2053         }
2054         dest->number.plan = src->number.plan;
2055
2056         ast_party_subaddress_set(&dest->subaddress, &src->subaddress);
2057
2058         dest->transit_network_select = src->transit_network_select;
2059 }
2060
2061 void ast_party_dialed_free(struct ast_party_dialed *doomed)
2062 {
2063         ast_free(doomed->number.str);
2064         doomed->number.str = NULL;
2065         ast_party_subaddress_free(&doomed->subaddress);
2066 }
2067
2068 void ast_party_caller_init(struct ast_party_caller *init)
2069 {
2070         ast_party_id_init(&init->id);
2071         ast_party_id_init(&init->ani);
2072         init->ani2 = 0;
2073 }
2074
2075 void ast_party_caller_copy(struct ast_party_caller *dest, const struct ast_party_caller *src)
2076 {
2077         if (dest == src) {
2078                 /* Don't copy to self */
2079                 return;
2080         }
2081
2082         ast_party_id_copy(&dest->id, &src->id);
2083         ast_party_id_copy(&dest->ani, &src->ani);
2084         dest->ani2 = src->ani2;
2085 }
2086
2087 void ast_party_caller_set_init(struct ast_party_caller *init, const struct ast_party_caller *guide)
2088 {
2089         ast_party_id_set_init(&init->id, &guide->id);
2090         ast_party_id_set_init(&init->ani, &guide->ani);
2091         init->ani2 = guide->ani2;
2092 }
2093
2094 void ast_party_caller_set(struct ast_party_caller *dest, const struct ast_party_caller *src, const struct ast_set_party_caller *update)
2095 {
2096         ast_party_id_set(&dest->id, &src->id, update ? &update->id : NULL);
2097         ast_party_id_set(&dest->ani, &src->ani, update ? &update->ani : NULL);
2098         dest->ani2 = src->ani2;
2099 }
2100
2101 void ast_party_caller_free(struct ast_party_caller *doomed)
2102 {
2103         ast_party_id_free(&doomed->id);
2104         ast_party_id_free(&doomed->ani);
2105 }
2106
2107 void ast_party_connected_line_init(struct ast_party_connected_line *init)
2108 {
2109         ast_party_id_init(&init->id);
2110         ast_party_id_init(&init->ani);
2111         init->ani2 = 0;
2112         init->source = AST_CONNECTED_LINE_UPDATE_SOURCE_UNKNOWN;
2113 }
2114
2115 void ast_party_connected_line_copy(struct ast_party_connected_line *dest, const struct ast_party_connected_line *src)
2116 {
2117         if (dest == src) {
2118                 /* Don't copy to self */
2119                 return;
2120         }
2121
2122         ast_party_id_copy(&dest->id, &src->id);
2123         ast_party_id_copy(&dest->ani, &src->ani);
2124         dest->ani2 = src->ani2;
2125         dest->source = src->source;
2126 }
2127
2128 void ast_party_connected_line_set_init(struct ast_party_connected_line *init, const struct ast_party_connected_line *guide)
2129 {
2130         ast_party_id_set_init(&init->id, &guide->id);
2131         ast_party_id_set_init(&init->ani, &guide->ani);
2132         init->ani2 = guide->ani2;
2133         init->source = guide->source;
2134 }
2135
2136 void ast_party_connected_line_set(struct ast_party_connected_line *dest, const struct ast_party_connected_line *src, const struct ast_set_party_connected_line *update)
2137 {
2138         ast_party_id_set(&dest->id, &src->id, update ? &update->id : NULL);
2139         ast_party_id_set(&dest->ani, &src->ani, update ? &update->ani : NULL);
2140         dest->ani2 = src->ani2;
2141         dest->source = src->source;
2142 }
2143
2144 void ast_party_connected_line_collect_caller(struct ast_party_connected_line *connected, struct ast_party_caller *caller)
2145 {
2146         connected->id = caller->id;
2147         connected->ani = caller->ani;
2148         connected->ani2 = caller->ani2;
2149         connected->source = AST_CONNECTED_LINE_UPDATE_SOURCE_UNKNOWN;
2150 }
2151
2152 void ast_party_connected_line_free(struct ast_party_connected_line *doomed)
2153 {
2154         ast_party_id_free(&doomed->id);
2155         ast_party_id_free(&doomed->ani);
2156 }
2157
2158 void ast_party_redirecting_init(struct ast_party_redirecting *init)
2159 {
2160         ast_party_id_init(&init->from);
2161         ast_party_id_init(&init->to);
2162         init->count = 0;
2163         init->reason = AST_REDIRECTING_REASON_UNKNOWN;
2164 }
2165
2166 void ast_party_redirecting_copy(struct ast_party_redirecting *dest, const struct ast_party_redirecting *src)
2167 {
2168         if (dest == src) {
2169                 /* Don't copy to self */
2170                 return;
2171         }
2172
2173         ast_party_id_copy(&dest->from, &src->from);
2174         ast_party_id_copy(&dest->to, &src->to);
2175         dest->count = src->count;
2176         dest->reason = src->reason;
2177 }
2178
2179 void ast_party_redirecting_set_init(struct ast_party_redirecting *init, const struct ast_party_redirecting *guide)
2180 {
2181         ast_party_id_set_init(&init->from, &guide->from);
2182         ast_party_id_set_init(&init->to, &guide->to);
2183         init->count = guide->count;
2184         init->reason = guide->reason;
2185 }
2186
2187 void ast_party_redirecting_set(struct ast_party_redirecting *dest, const struct ast_party_redirecting *src, const struct ast_set_party_redirecting *update)
2188 {
2189         ast_party_id_set(&dest->from, &src->from, update ? &update->from : NULL);
2190         ast_party_id_set(&dest->to, &src->to, update ? &update->to : NULL);
2191         dest->reason = src->reason;
2192         dest->count = src->count;
2193 }
2194
2195 void ast_party_redirecting_free(struct ast_party_redirecting *doomed)
2196 {
2197         ast_party_id_free(&doomed->from);
2198         ast_party_id_free(&doomed->to);
2199 }
2200
2201 /*! \brief Free a channel structure */
2202 static void ast_channel_destructor(void *obj)
2203 {
2204         struct ast_channel *chan = obj;
2205         int fd;
2206 #ifdef HAVE_EPOLL
2207         int i;
2208 #endif
2209         struct ast_var_t *vardata;
2210         struct ast_frame *f;
2211         struct varshead *headp;
2212         struct ast_datastore *datastore;
2213         char device_name[AST_CHANNEL_NAME];
2214
2215         if (ast_channel_name(chan)) {
2216                 /* The string fields were initialized. */
2217                 ast_cel_report_event(chan, AST_CEL_CHANNEL_END, NULL, NULL, NULL);
2218                 ast_cel_check_retire_linkedid(chan);
2219         }
2220
2221         /* Get rid of each of the data stores on the channel */
2222         ast_channel_lock(chan);
2223         while ((datastore = AST_LIST_REMOVE_HEAD(&chan->datastores, entry)))
2224                 /* Free the data store */
2225                 ast_datastore_free(datastore);
2226         ast_channel_unlock(chan);
2227
2228         /* Lock and unlock the channel just to be sure nobody has it locked still
2229            due to a reference that was stored in a datastore. (i.e. app_chanspy) */
2230         ast_channel_lock(chan);
2231         ast_channel_unlock(chan);
2232
2233         if (chan->tech_pvt) {
2234                 ast_log(LOG_WARNING, "Channel '%s' may not have been hung up properly\n", ast_channel_name(chan));
2235                 ast_free(chan->tech_pvt);
2236         }
2237
2238         if (chan->sched) {
2239                 ast_sched_context_destroy(chan->sched);
2240         }
2241
2242         if (ast_channel_name(chan)) {
2243                 char *dashptr;
2244
2245                 /* The string fields were initialized. */
2246                 ast_copy_string(device_name, ast_channel_name(chan), sizeof(device_name));
2247                 if ((dashptr = strrchr(device_name, '-'))) {
2248                         *dashptr = '\0';
2249                 }
2250         } else {
2251                 device_name[0] = '\0';
2252         }
2253
2254         /* Stop monitoring */
2255         if (chan->monitor)
2256                 chan->monitor->stop( chan, 0 );
2257
2258         /* If there is native format music-on-hold state, free it */
2259         if (chan->music_state)
2260                 ast_moh_cleanup(chan);
2261
2262         /* Free translators */
2263         if (chan->readtrans)
2264                 ast_translator_free_path(chan->readtrans);
2265         if (chan->writetrans)
2266                 ast_translator_free_path(chan->writetrans);
2267         if (chan->pbx)
2268                 ast_log(LOG_WARNING, "PBX may not have been terminated properly on '%s'\n", ast_channel_name(chan));
2269
2270         ast_party_dialed_free(&chan->dialed);
2271         ast_party_caller_free(&chan->caller);
2272         ast_party_connected_line_free(&chan->connected);
2273         ast_party_redirecting_free(&chan->redirecting);
2274
2275         /* Close pipes if appropriate */
2276         if ((fd = chan->alertpipe[0]) > -1)
2277                 close(fd);
2278         if ((fd = chan->alertpipe[1]) > -1)
2279                 close(fd);
2280         if (chan->timer) {
2281                 ast_timer_close(chan->timer);
2282         }
2283 #ifdef HAVE_EPOLL
2284         for (i = 0; i < AST_MAX_FDS; i++) {
2285                 if (chan->epfd_data[i])
2286                         free(chan->epfd_data[i]);
2287         }
2288         close(chan->epfd);
2289 #endif
2290         while ((f = AST_LIST_REMOVE_HEAD(&chan->readq, frame_list)))
2291                 ast_frfree(f);
2292         
2293         /* loop over the variables list, freeing all data and deleting list items */
2294         /* no need to lock the list, as the channel is already locked */
2295         headp = &chan->varshead;
2296         while ((vardata = AST_LIST_REMOVE_HEAD(headp, entries)))
2297                 ast_var_delete(vardata);
2298
2299         ast_app_group_discard(chan);
2300
2301         /* Destroy the jitterbuffer */
2302         ast_jb_destroy(chan);
2303
2304         if (chan->cdr) {
2305                 ast_cdr_discard(chan->cdr);
2306                 chan->cdr = NULL;
2307         }
2308
2309         if (chan->zone) {
2310                 chan->zone = ast_tone_zone_unref(chan->zone);
2311         }
2312
2313         ast_string_field_free_memory(chan);
2314
2315         if (device_name[0]) {
2316                 /*
2317                  * We have a device name to notify of a new state.
2318                  *
2319                  * Queue an unknown state, because, while we know that this particular
2320                  * instance is dead, we don't know the state of all other possible
2321                  * instances.
2322                  */
2323                 ast_devstate_changed_literal(AST_DEVICE_UNKNOWN, device_name);
2324         }
2325
2326         chan->nativeformats = ast_format_cap_destroy(chan->nativeformats);
2327 }
2328
2329 /*! \brief Free a dummy channel structure */
2330 static void ast_dummy_channel_destructor(void *obj)
2331 {
2332         struct ast_channel *chan = obj;
2333         struct ast_var_t *vardata;
2334         struct varshead *headp;
2335
2336         headp = &chan->varshead;
2337
2338         ast_party_dialed_free(&chan->dialed);
2339         ast_party_caller_free(&chan->caller);
2340         ast_party_connected_line_free(&chan->connected);
2341         ast_party_redirecting_free(&chan->redirecting);
2342
2343         /* loop over the variables list, freeing all data and deleting list items */
2344         /* no need to lock the list, as the channel is already locked */
2345         while ((vardata = AST_LIST_REMOVE_HEAD(headp, entries)))
2346                 ast_var_delete(vardata);
2347
2348         if (chan->cdr) {
2349                 ast_cdr_discard(chan->cdr);
2350                 chan->cdr = NULL;
2351         }
2352
2353         ast_string_field_free_memory(chan);
2354 }
2355
2356 struct ast_datastore *ast_channel_datastore_alloc(const struct ast_datastore_info *info, const char *uid)
2357 {
2358         return ast_datastore_alloc(info, uid);
2359 }
2360
2361 int ast_channel_datastore_free(struct ast_datastore *datastore)
2362 {
2363         return ast_datastore_free(datastore);
2364 }
2365
2366 int ast_channel_datastore_inherit(struct ast_channel *from, struct ast_channel *to)
2367 {
2368         struct ast_datastore *datastore = NULL, *datastore2;
2369
2370         AST_LIST_TRAVERSE(&from->datastores, datastore, entry) {
2371                 if (datastore->inheritance > 0) {
2372                         datastore2 = ast_datastore_alloc(datastore->info, datastore->uid);
2373                         if (datastore2) {
2374                                 datastore2->data = datastore->info->duplicate ? datastore->info->duplicate(datastore->data) : NULL;
2375                                 datastore2->inheritance = datastore->inheritance == DATASTORE_INHERIT_FOREVER ? DATASTORE_INHERIT_FOREVER : datastore->inheritance - 1;
2376                                 AST_LIST_INSERT_TAIL(&to->datastores, datastore2, entry);
2377                         }
2378                 }
2379         }
2380         return 0;
2381 }
2382
2383 int ast_channel_datastore_add(struct ast_channel *chan, struct ast_datastore *datastore)
2384 {
2385         int res = 0;
2386
2387         AST_LIST_INSERT_HEAD(&chan->datastores, datastore, entry);
2388
2389         return res;
2390 }
2391
2392 int ast_channel_datastore_remove(struct ast_channel *chan, struct ast_datastore *datastore)
2393 {
2394         return AST_LIST_REMOVE(&chan->datastores, datastore, entry) ? 0 : -1;
2395 }
2396
2397 struct ast_datastore *ast_channel_datastore_find(struct ast_channel *chan, const struct ast_datastore_info *info, const char *uid)
2398 {
2399         struct ast_datastore *datastore = NULL;
2400         
2401         if (info == NULL)
2402                 return NULL;
2403
2404         AST_LIST_TRAVERSE(&chan->datastores, datastore, entry) {
2405                 if (datastore->info != info) {
2406                         continue;
2407                 }
2408
2409                 if (uid == NULL) {
2410                         /* matched by type only */
2411                         break;
2412                 }
2413
2414                 if ((datastore->uid != NULL) && !strcasecmp(uid, datastore->uid)) {
2415                         /* Matched by type AND uid */
2416                         break;
2417                 }
2418         }
2419
2420         return datastore;
2421 }
2422
2423 /*! Set the file descriptor on the channel */
2424 void ast_channel_set_fd(struct ast_channel *chan, int which, int fd)
2425 {
2426 #ifdef HAVE_EPOLL
2427         struct epoll_event ev;
2428         struct ast_epoll_data *aed = NULL;
2429
2430         if (chan->fds[which] > -1) {
2431                 epoll_ctl(chan->epfd, EPOLL_CTL_DEL, chan->fds[which], &ev);
2432                 aed = chan->epfd_data[which];
2433         }
2434
2435         /* If this new fd is valid, add it to the epoll */
2436         if (fd > -1) {
2437                 if (!aed && (!(aed = ast_calloc(1, sizeof(*aed)))))
2438                         return;
2439                 
2440                 chan->epfd_data[which] = aed;
2441                 aed->chan = chan;
2442                 aed->which = which;
2443                 
2444                 ev.events = EPOLLIN | EPOLLPRI | EPOLLERR | EPOLLHUP;
2445                 ev.data.ptr = aed;
2446                 epoll_ctl(chan->epfd, EPOLL_CTL_ADD, fd, &ev);
2447         } else if (aed) {
2448                 /* We don't have to keep around this epoll data structure now */
2449                 free(aed);
2450                 chan->epfd_data[which] = NULL;
2451         }
2452 #endif
2453         chan->fds[which] = fd;
2454         return;
2455 }
2456
2457 /*! Add a channel to an optimized waitfor */
2458 void ast_poll_channel_add(struct ast_channel *chan0, struct ast_channel *chan1)
2459 {
2460 #ifdef HAVE_EPOLL
2461         struct epoll_event ev;
2462         int i = 0;
2463
2464         if (chan0->epfd == -1)
2465                 return;
2466
2467         /* Iterate through the file descriptors on chan1, adding them to chan0 */
2468         for (i = 0; i < AST_MAX_FDS; i++) {
2469                 if (chan1->fds[i] == -1)
2470                         continue;
2471                 ev.events = EPOLLIN | EPOLLPRI | EPOLLERR | EPOLLHUP;
2472                 ev.data.ptr = chan1->epfd_data[i];
2473                 epoll_ctl(chan0->epfd, EPOLL_CTL_ADD, chan1->fds[i], &ev);
2474         }
2475
2476 #endif
2477         return;
2478 }
2479
2480 /*! Delete a channel from an optimized waitfor */
2481 void ast_poll_channel_del(struct ast_channel *chan0, struct ast_channel *chan1)
2482 {
2483 #ifdef HAVE_EPOLL
2484         struct epoll_event ev;
2485         int i = 0;
2486
2487         if (chan0->epfd == -1)
2488                 return;
2489
2490         for (i = 0; i < AST_MAX_FDS; i++) {
2491                 if (chan1->fds[i] == -1)
2492                         continue;
2493                 epoll_ctl(chan0->epfd, EPOLL_CTL_DEL, chan1->fds[i], &ev);
2494         }
2495
2496 #endif
2497         return;
2498 }
2499
2500 void ast_channel_clear_softhangup(struct ast_channel *chan, int flag)
2501 {
2502         ast_channel_lock(chan);
2503
2504         chan->_softhangup &= ~flag;
2505
2506         if (!chan->_softhangup) {
2507                 struct ast_frame *fr;
2508
2509                 /* If we have completely cleared the softhangup flag,
2510                  * then we need to fully abort the hangup process.  This requires
2511                  * pulling the END_OF_Q frame out of the channel frame queue if it
2512                  * still happens to be there. */
2513
2514                 fr = AST_LIST_LAST(&chan->readq);
2515                 if (fr && fr->frametype == AST_FRAME_CONTROL &&
2516                                 fr->subclass.integer == AST_CONTROL_END_OF_Q) {
2517                         AST_LIST_REMOVE(&chan->readq, fr, frame_list);
2518                         ast_frfree(fr);
2519                 }
2520         }
2521
2522         ast_channel_unlock(chan);
2523 }
2524
2525 /*! \brief Softly hangup a channel, don't lock */
2526 int ast_softhangup_nolock(struct ast_channel *chan, int cause)
2527 {
2528         ast_debug(1, "Soft-Hanging up channel '%s'\n", ast_channel_name(chan));
2529         /* Inform channel driver that we need to be hung up, if it cares */
2530         chan->_softhangup |= cause;
2531         ast_queue_frame(chan, &ast_null_frame);
2532         /* Interrupt any poll call or such */
2533         if (ast_test_flag(chan, AST_FLAG_BLOCKING))
2534                 pthread_kill(chan->blocker, SIGURG);
2535         return 0;
2536 }
2537
2538 /*! \brief Softly hangup a channel, lock */
2539 int ast_softhangup(struct ast_channel *chan, int cause)
2540 {
2541         int res;
2542
2543         ast_channel_lock(chan);
2544         res = ast_softhangup_nolock(chan, cause);
2545         manager_event(EVENT_FLAG_CALL, "SoftHangupRequest",
2546                 "Channel: %s\r\n"
2547                 "Uniqueid: %s\r\n"
2548                 "Cause: %d\r\n",
2549                 ast_channel_name(chan),
2550                 chan->uniqueid,
2551                 cause);
2552         ast_channel_unlock(chan);
2553
2554         return res;
2555 }
2556
2557 static void free_translation(struct ast_channel *clonechan)
2558 {
2559         if (clonechan->writetrans)
2560                 ast_translator_free_path(clonechan->writetrans);
2561         if (clonechan->readtrans)
2562                 ast_translator_free_path(clonechan->readtrans);
2563         clonechan->writetrans = NULL;
2564         clonechan->readtrans = NULL;
2565         if (ast_format_cap_is_empty(clonechan->nativeformats)) {
2566                 ast_format_clear(&clonechan->rawwriteformat);
2567                 ast_format_clear(&clonechan->rawreadformat);
2568         } else {
2569                 struct ast_format tmpfmt;
2570                 ast_best_codec(clonechan->nativeformats, &tmpfmt);
2571                 ast_format_copy(&clonechan->rawwriteformat, &tmpfmt);
2572                 ast_format_copy(&clonechan->rawreadformat, &tmpfmt);
2573         }
2574 }
2575
2576 void ast_set_hangupsource(struct ast_channel *chan, const char *source, int force)
2577 {
2578         struct ast_channel *bridge;
2579
2580         ast_channel_lock(chan);
2581         if (force || ast_strlen_zero(chan->hangupsource)) {
2582                 ast_string_field_set(chan, hangupsource, source);
2583         }
2584         bridge = ast_bridged_channel(chan);
2585         ast_channel_unlock(chan);
2586
2587         if (bridge && (force || ast_strlen_zero(bridge->hangupsource))) {
2588                 ast_channel_lock(bridge);
2589                 ast_string_field_set(chan, hangupsource, source);
2590                 ast_channel_unlock(bridge);
2591         }
2592 }
2593
2594 /*! \brief Hangup a channel */
2595 int ast_hangup(struct ast_channel *chan)
2596 {
2597         char extra_str[64]; /* used for cel logging below */
2598
2599         ast_autoservice_stop(chan);
2600
2601         ao2_lock(channels);
2602         ast_channel_lock(chan);
2603
2604         if (chan->audiohooks) {
2605                 ast_audiohook_detach_list(chan->audiohooks);
2606                 chan->audiohooks = NULL;
2607         }
2608         ast_framehook_list_destroy(chan);
2609
2610         /*
2611          * Do the masquerade if someone is setup to masquerade into us.
2612          *
2613          * NOTE: We must hold the channel lock after testing for a
2614          * pending masquerade and setting the channel as a zombie to
2615          * prevent __ast_channel_masquerade() from setting up a
2616          * masquerade with a dead channel.
2617          */
2618         while (chan->masq) {
2619                 ast_channel_unlock(chan);
2620                 ao2_unlock(channels);
2621                 if (ast_do_masquerade(chan)) {
2622                         ast_log(LOG_WARNING, "Failed to perform masquerade\n");
2623
2624                         /* Abort the loop or we might never leave. */
2625                         ao2_lock(channels);
2626                         ast_channel_lock(chan);
2627                         break;
2628                 }
2629                 ao2_lock(channels);
2630                 ast_channel_lock(chan);
2631         }
2632
2633         if (chan->masqr) {
2634                 /*
2635                  * This channel is one which will be masqueraded into something.
2636                  * Mark it as a zombie already so ast_do_masquerade() will know
2637                  * to free it later.
2638                  */
2639                 ast_set_flag(chan, AST_FLAG_ZOMBIE);
2640                 ast_channel_unlock(chan);
2641                 ao2_unlock(channels);
2642                 return 0;
2643         }
2644
2645         ao2_unlink(channels, chan);
2646         ao2_unlock(channels);
2647
2648         free_translation(chan);
2649         /* Close audio stream */
2650         if (chan->stream) {
2651                 ast_closestream(chan->stream);
2652                 chan->stream = NULL;
2653         }
2654         /* Close video stream */
2655         if (chan->vstream) {
2656                 ast_closestream(chan->vstream);
2657                 chan->vstream = NULL;
2658         }
2659         if (chan->sched) {
2660                 ast_sched_context_destroy(chan->sched);
2661                 chan->sched = NULL;
2662         }
2663
2664         if (chan->generatordata) {      /* Clear any tone stuff remaining */
2665                 if (chan->generator && chan->generator->release) {
2666                         chan->generator->release(chan, chan->generatordata);
2667                 }
2668         }
2669         chan->generatordata = NULL;
2670         chan->generator = NULL;
2671
2672         snprintf(extra_str, sizeof(extra_str), "%d,%s,%s", chan->hangupcause, chan->hangupsource, S_OR(pbx_builtin_getvar_helper(chan, "DIALSTATUS"), ""));
2673         ast_cel_report_event(chan, AST_CEL_HANGUP, NULL, extra_str, NULL);
2674
2675         if (ast_test_flag(chan, AST_FLAG_BLOCKING)) {
2676                 ast_log(LOG_WARNING, "Hard hangup called by thread %ld on %s, while fd "
2677                         "is blocked by thread %ld in procedure %s!  Expect a failure\n",
2678                         (long) pthread_self(), ast_channel_name(chan), (long)chan->blocker, chan->blockproc);
2679                 ast_assert(ast_test_flag(chan, AST_FLAG_BLOCKING) == 0);
2680         }
2681         if (!ast_test_flag(chan, AST_FLAG_ZOMBIE)) {
2682                 ast_debug(1, "Hanging up channel '%s'\n", ast_channel_name(chan));
2683
2684                 /*
2685                  * This channel is now dead so mark it as a zombie so anyone
2686                  * left holding a reference to this channel will not use it.
2687                  */
2688                 ast_set_flag(chan, AST_FLAG_ZOMBIE);
2689                 if (chan->tech->hangup) {
2690                         chan->tech->hangup(chan);
2691                 }
2692         } else {
2693                 ast_debug(1, "Hanging up zombie '%s'\n", ast_channel_name(chan));
2694         }
2695
2696         ast_channel_unlock(chan);
2697
2698         ast_cc_offer(chan);
2699         ast_manager_event(chan, EVENT_FLAG_CALL, "Hangup",
2700                 "Channel: %s\r\n"
2701                 "Uniqueid: %s\r\n"
2702                 "CallerIDNum: %s\r\n"
2703                 "CallerIDName: %s\r\n"
2704                 "ConnectedLineNum: %s\r\n"
2705                 "ConnectedLineName: %s\r\n"
2706                 "Cause: %d\r\n"
2707                 "Cause-txt: %s\r\n",
2708                 ast_channel_name(chan),
2709                 chan->uniqueid,
2710                 S_COR(chan->caller.id.number.valid, chan->caller.id.number.str, "<unknown>"),
2711                 S_COR(chan->caller.id.name.valid, chan->caller.id.name.str, "<unknown>"),
2712                 S_COR(chan->connected.id.number.valid, chan->connected.id.number.str, "<unknown>"),
2713                 S_COR(chan->connected.id.name.valid, chan->connected.id.name.str, "<unknown>"),
2714                 chan->hangupcause,
2715                 ast_cause2str(chan->hangupcause)
2716                 );
2717
2718         if (chan->cdr && !ast_test_flag(chan->cdr, AST_CDR_FLAG_BRIDGED) &&
2719                 !ast_test_flag(chan->cdr, AST_CDR_FLAG_POST_DISABLED) &&
2720                 (chan->cdr->disposition != AST_CDR_NULL || ast_test_flag(chan->cdr, AST_CDR_FLAG_DIALED))) {
2721                 ast_channel_lock(chan);
2722                 ast_cdr_end(chan->cdr);
2723                 ast_cdr_detach(chan->cdr);
2724                 chan->cdr = NULL;
2725                 ast_channel_unlock(chan);
2726         }
2727
2728         ast_channel_unref(chan);
2729
2730         return 0;
2731 }
2732
2733 int ast_raw_answer(struct ast_channel *chan, int cdr_answer)
2734 {
2735         int res = 0;
2736
2737         ast_channel_lock(chan);
2738
2739         /* You can't answer an outbound call */
2740         if (ast_test_flag(chan, AST_FLAG_OUTGOING)) {
2741                 ast_channel_unlock(chan);
2742                 return 0;
2743         }
2744
2745         /* Stop if we're a zombie or need a soft hangup */
2746         if (ast_test_flag(chan, AST_FLAG_ZOMBIE) || ast_check_hangup(chan)) {
2747                 ast_channel_unlock(chan);
2748                 return -1;
2749         }
2750
2751         ast_channel_unlock(chan);
2752
2753         switch (chan->_state) {
2754         case AST_STATE_RINGING:
2755         case AST_STATE_RING:
2756                 ast_channel_lock(chan);
2757                 if (chan->tech->answer) {
2758                         res = chan->tech->answer(chan);
2759                 }
2760                 ast_setstate(chan, AST_STATE_UP);
2761                 if (cdr_answer) {
2762                         ast_cdr_answer(chan->cdr);
2763                 }
2764                 ast_cel_report_event(chan, AST_CEL_ANSWER, NULL, NULL, NULL);
2765                 ast_channel_unlock(chan);
2766                 break;
2767         case AST_STATE_UP:
2768                 ast_cel_report_event(chan, AST_CEL_ANSWER, NULL, NULL, NULL);
2769                 /* Calling ast_cdr_answer when it it has previously been called
2770                  * is essentially a no-op, so it is safe.
2771                  */
2772                 if (cdr_answer) {
2773                         ast_cdr_answer(chan->cdr);
2774                 }
2775                 break;
2776         default:
2777                 break;
2778         }
2779
2780         ast_indicate(chan, -1);
2781
2782         return res;
2783 }
2784
2785 int __ast_answer(struct ast_channel *chan, unsigned int delay, int cdr_answer)
2786 {
2787         int res = 0;
2788         enum ast_channel_state old_state;
2789
2790         old_state = chan->_state;
2791         if ((res = ast_raw_answer(chan, cdr_answer))) {
2792                 return res;
2793         }
2794
2795         switch (old_state) {
2796         case AST_STATE_RINGING:
2797         case AST_STATE_RING:
2798                 /* wait for media to start flowing, but don't wait any longer
2799                  * than 'delay' or 500 milliseconds, whichever is longer
2800                  */
2801                 do {
2802                         AST_LIST_HEAD_NOLOCK(, ast_frame) frames;
2803                         struct ast_frame *cur, *new;
2804                         int ms = MAX(delay, 500);
2805                         unsigned int done = 0;
2806
2807                         AST_LIST_HEAD_INIT_NOLOCK(&frames);
2808
2809                         for (;;) {
2810                                 ms = ast_waitfor(chan, ms);
2811                                 if (ms < 0) {
2812                                         ast_log(LOG_WARNING, "Error condition occurred when polling channel %s for a voice frame: %s\n", ast_channel_name(chan), strerror(errno));
2813                                         res = -1;
2814                                         break;
2815                                 }
2816                                 if (ms == 0) {
2817                                         ast_debug(2, "Didn't receive a media frame from %s within %d ms of answering. Continuing anyway\n", ast_channel_name(chan), MAX(delay, 500));
2818                                         break;
2819                                 }
2820                                 cur = ast_read(chan);
2821                                 if (!cur || ((cur->frametype == AST_FRAME_CONTROL) &&
2822                                              (cur->subclass.integer == AST_CONTROL_HANGUP))) {
2823                                         if (cur) {
2824                                                 ast_frfree(cur);
2825                                         }
2826                                         res = -1;
2827                                         ast_debug(2, "Hangup of channel %s detected in answer routine\n", ast_channel_name(chan));
2828                                         break;
2829                                 }
2830
2831                                 if ((new = ast_frisolate(cur)) != cur) {
2832                                         ast_frfree(cur);
2833                                 }
2834
2835                                 AST_LIST_INSERT_HEAD(&frames, new, frame_list);
2836
2837                                 /* if a specific delay period was requested, continue
2838                                  * until that delay has passed. don't stop just because
2839                                  * incoming media has arrived.
2840                                  */
2841                                 if (delay) {
2842                                         continue;
2843                                 }
2844
2845                                 switch (new->frametype) {
2846                                         /* all of these frametypes qualify as 'media' */
2847                                 case AST_FRAME_VOICE:
2848                                 case AST_FRAME_VIDEO:
2849                                 case AST_FRAME_TEXT:
2850                                 case AST_FRAME_DTMF_BEGIN:
2851                                 case AST_FRAME_DTMF_END:
2852                                 case AST_FRAME_IMAGE:
2853                                 case AST_FRAME_HTML:
2854                                 case AST_FRAME_MODEM:
2855                                         done = 1;
2856                                         break;
2857                                 case AST_FRAME_CONTROL:
2858                                 case AST_FRAME_IAX:
2859                                 case AST_FRAME_NULL:
2860                                 case AST_FRAME_CNG:
2861                                         break;
2862                                 }
2863
2864                                 if (done) {
2865                                         break;
2866                                 }
2867                         }
2868
2869                         if (res == 0) {
2870                                 ast_channel_lock(chan);
2871                                 while ((cur = AST_LIST_REMOVE_HEAD(&frames, frame_list))) {
2872                                         ast_queue_frame_head(chan, cur);
2873                                         ast_frfree(cur);
2874                                 }
2875                                 ast_channel_unlock(chan);
2876                         }
2877                 } while (0);
2878                 break;
2879         default:
2880                 break;
2881         }
2882
2883         return res;
2884 }
2885
2886 int ast_answer(struct ast_channel *chan)
2887 {
2888         return __ast_answer(chan, 0, 1);
2889 }
2890
2891 void ast_deactivate_generator(struct ast_channel *chan)
2892 {
2893         ast_channel_lock(chan);
2894         if (chan->generatordata) {
2895                 if (chan->generator && chan->generator->release)
2896                         chan->generator->release(chan, chan->generatordata);
2897                 chan->generatordata = NULL;
2898                 chan->generator = NULL;
2899                 ast_channel_set_fd(chan, AST_GENERATOR_FD, -1);
2900                 ast_clear_flag(chan, AST_FLAG_WRITE_INT);
2901                 ast_settimeout(chan, 0, NULL, NULL);
2902         }
2903         ast_channel_unlock(chan);
2904 }
2905
2906 static void generator_write_format_change(struct ast_channel *chan)
2907 {
2908         ast_channel_lock(chan);
2909         if (chan->generator && chan->generator->write_format_change) {
2910                 chan->generator->write_format_change(chan, chan->generatordata);
2911         }
2912         ast_channel_unlock(chan);
2913 }
2914
2915 static int generator_force(const void *data)
2916 {
2917         /* Called if generator doesn't have data */
2918         void *tmp;
2919         int res;
2920         int (*generate)(struct ast_channel *chan, void *tmp, int datalen, int samples) = NULL;
2921         struct ast_channel *chan = (struct ast_channel *)data;
2922
2923         ast_channel_lock(chan);
2924         tmp = chan->generatordata;
2925         chan->generatordata = NULL;
2926         if (chan->generator)
2927                 generate = chan->generator->generate;
2928         ast_channel_unlock(chan);
2929
2930         if (!tmp || !generate)
2931                 return 0;
2932
2933         res = generate(chan, tmp, 0, ast_format_rate(&chan->writeformat) / 50);
2934
2935         chan->generatordata = tmp;
2936
2937         if (res) {
2938                 ast_debug(1, "Auto-deactivating generator\n");
2939                 ast_deactivate_generator(chan);
2940         }
2941
2942         return 0;
2943 }
2944
2945 int ast_activate_generator(struct ast_channel *chan, struct ast_generator *gen, void *params)
2946 {
2947         int res = 0;
2948
2949         ast_channel_lock(chan);
2950         if (chan->generatordata) {
2951                 if (chan->generator && chan->generator->release)
2952                         chan->generator->release(chan, chan->generatordata);
2953                 chan->generatordata = NULL;
2954         }
2955         if (gen->alloc && !(chan->generatordata = gen->alloc(chan, params))) {
2956                 res = -1;
2957         }
2958         if (!res) {
2959                 ast_settimeout(chan, 50, generator_force, chan);
2960                 chan->generator = gen;
2961         }
2962         ast_channel_unlock(chan);
2963
2964         ast_prod(chan);
2965
2966         return res;
2967 }
2968
2969 /*! \brief Wait for x amount of time on a file descriptor to have input.  */
2970 int ast_waitfor_n_fd(int *fds, int n, int *ms, int *exception)
2971 {
2972         int winner = -1;
2973         ast_waitfor_nandfds(NULL, 0, fds, n, exception, &winner, ms);
2974         return winner;
2975 }
2976
2977 /*! \brief Wait for x amount of time on a file descriptor to have input.  */
2978 #ifdef HAVE_EPOLL
2979 static struct ast_channel *ast_waitfor_nandfds_classic(struct ast_channel **c, int n, int *fds, int nfds,
2980                                         int *exception, int *outfd, int *ms)
2981 #else
2982 struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds, int nfds,
2983                                         int *exception, int *outfd, int *ms)
2984 #endif
2985 {
2986         struct timeval start = { 0 , 0 };
2987         struct pollfd *pfds = NULL;
2988         int res;
2989         long rms;
2990         int x, y, max;
2991         int sz;
2992         struct timeval now = { 0, 0 };
2993         struct timeval whentohangup = { 0, 0 }, diff;
2994         struct ast_channel *winner = NULL;
2995         struct fdmap {
2996                 int chan;
2997                 int fdno;
2998         } *fdmap = NULL;
2999
3000         if ((sz = n * AST_MAX_FDS + nfds)) {
3001                 pfds = alloca(sizeof(*pfds) * sz);
3002                 fdmap = alloca(sizeof(*fdmap) * sz);
3003         }
3004
3005         if (outfd)
3006                 *outfd = -99999;
3007         if (exception)
3008                 *exception = 0;
3009         
3010         /* Perform any pending masquerades */
3011         for (x = 0; x < n; x++) {
3012                 if (c[x]->masq && ast_do_masquerade(c[x])) {
3013                         ast_log(LOG_WARNING, "Masquerade failed\n");
3014                         *ms = -1;
3015                         return NULL;
3016                 }
3017
3018                 ast_channel_lock(c[x]);
3019                 if (!ast_tvzero(c[x]->whentohangup)) {
3020                         if (ast_tvzero(whentohangup))
3021                                 now = ast_tvnow();
3022                         diff = ast_tvsub(c[x]->whentohangup, now);
3023                         if (diff.tv_sec < 0 || ast_tvzero(diff)) {
3024                                 /* Should already be hungup */
3025                                 c[x]->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
3026                                 ast_channel_unlock(c[x]);
3027                                 return c[x];
3028                         }
3029                         if (ast_tvzero(whentohangup) || ast_tvcmp(diff, whentohangup) < 0)
3030                                 whentohangup = diff;
3031                 }
3032                 ast_channel_unlock(c[x]);
3033         }
3034         /* Wait full interval */
3035         rms = *ms;
3036         /* INT_MAX, not LONG_MAX, because it matters on 64-bit */
3037         if (!ast_tvzero(whentohangup) && whentohangup.tv_sec < INT_MAX / 1000) {
3038                 rms = whentohangup.tv_sec * 1000 + whentohangup.tv_usec / 1000;              /* timeout in milliseconds */
3039                 if (*ms >= 0 && *ms < rms) {                                                 /* original *ms still smaller */
3040                         rms =  *ms;
3041                 }
3042         } else if (!ast_tvzero(whentohangup) && rms < 0) {
3043                 /* Tiny corner case... call would need to last >24 days */
3044                 rms = INT_MAX;
3045         }
3046         /*
3047          * Build the pollfd array, putting the channels' fds first,
3048          * followed by individual fds. Order is important because
3049          * individual fd's must have priority over channel fds.
3050          */
3051         max = 0;
3052         for (x = 0; x < n; x++) {
3053                 for (y = 0; y < AST_MAX_FDS; y++) {
3054                         fdmap[max].fdno = y;  /* fd y is linked to this pfds */
3055                         fdmap[max].chan = x;  /* channel x is linked to this pfds */
3056                         max += ast_add_fd(&pfds[max], c[x]->fds[y]);
3057                 }
3058                 CHECK_BLOCKING(c[x]);
3059         }
3060         /* Add the individual fds */
3061         for (x = 0; x < nfds; x++) {
3062                 fdmap[max].chan = -1;
3063                 max += ast_add_fd(&pfds[max], fds[x]);
3064         }
3065
3066         if (*ms > 0)
3067                 start = ast_tvnow();
3068         
3069         if (sizeof(int) == 4) { /* XXX fix timeout > 600000 on linux x86-32 */
3070                 do {
3071                         int kbrms = rms;
3072                         if (kbrms > 600000)
3073                                 kbrms = 600000;
3074                         res = ast_poll(pfds, max, kbrms);
3075                         if (!res)
3076                                 rms -= kbrms;
3077                 } while (!res && (rms > 0));
3078         } else {
3079                 res = ast_poll(pfds, max, rms);
3080         }
3081         for (x = 0; x < n; x++)
3082                 ast_clear_flag(c[x], AST_FLAG_BLOCKING);
3083         if (res < 0) { /* Simulate a timeout if we were interrupted */
3084                 if (errno != EINTR)
3085                         *ms = -1;
3086                 return NULL;
3087         }
3088         if (!ast_tvzero(whentohangup)) {   /* if we have a timeout, check who expired */
3089                 now = ast_tvnow();
3090                 for (x = 0; x < n; x++) {
3091                         if (!ast_tvzero(c[x]->whentohangup) && ast_tvcmp(c[x]->whentohangup, now) <= 0) {
3092                                 c[x]->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
3093                                 if (winner == NULL)
3094                                         winner = c[x];
3095                         }
3096                 }
3097         }
3098         if (res == 0) { /* no fd ready, reset timeout and done */
3099                 *ms = 0;        /* XXX use 0 since we may not have an exact timeout. */
3100                 return winner;
3101         }
3102         /*
3103          * Then check if any channel or fd has a pending event.
3104          * Remember to check channels first and fds last, as they
3105          * must have priority on setting 'winner'
3106          */
3107         for (x = 0; x < max; x++) {
3108                 res = pfds[x].revents;
3109                 if (res == 0)
3110                         continue;
3111                 if (fdmap[x].chan >= 0) {       /* this is a channel */
3112                         winner = c[fdmap[x].chan];      /* override previous winners */
3113                         if (res & POLLPRI)
3114                                 ast_set_flag(winner, AST_FLAG_EXCEPTION);
3115                         else
3116                                 ast_clear_flag(winner, AST_FLAG_EXCEPTION);
3117                         winner->fdno = fdmap[x].fdno;
3118                 } else {                        /* this is an fd */
3119                         if (outfd)
3120                                 *outfd = pfds[x].fd;
3121                         if (exception)
3122                                 *exception = (res & POLLPRI) ? -1 : 0;
3123                         winner = NULL;
3124                 }
3125         }
3126         if (*ms > 0) {
3127                 *ms -= ast_tvdiff_ms(ast_tvnow(), start);
3128                 if (*ms < 0)
3129                         *ms = 0;
3130         }
3131         return winner;
3132 }
3133
3134 #ifdef HAVE_EPOLL
3135 static struct ast_channel *ast_waitfor_nandfds_simple(struct ast_channel *chan, int *ms)
3136 {
3137         struct timeval start = { 0 , 0 };
3138         int res = 0;
3139         struct epoll_event ev[1];
3140         long diff, rms = *ms;
3141         struct ast_channel *winner = NULL;
3142         struct ast_epoll_data *aed = NULL;
3143
3144
3145         /* See if this channel needs to be masqueraded */
3146         if (chan->masq && ast_do_masquerade(chan)) {
3147                 ast_log(LOG_WARNING, "Failed to perform masquerade on %s\n", ast_channel_name(chan));
3148                 *ms = -1;
3149                 return NULL;
3150         }
3151
3152         ast_channel_lock(chan);
3153         /* Figure out their timeout */
3154         if (!ast_tvzero(chan->whentohangup)) {
3155                 if ((diff = ast_tvdiff_ms(chan->whentohangup, ast_tvnow())) < 0) {
3156                         /* They should already be hungup! */
3157                         chan->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
3158                         ast_channel_unlock(chan);
3159                         return NULL;
3160                 }
3161                 /* If this value is smaller then the current one... make it priority */
3162                 if (rms > diff)
3163                         rms = diff;
3164         }
3165
3166         ast_channel_unlock(chan);
3167
3168         /* Time to make this channel block... */
3169         CHECK_BLOCKING(chan);
3170
3171         if (*ms > 0)
3172                 start = ast_tvnow();
3173
3174         /* We don't have to add any file descriptors... they are already added, we just have to wait! */
3175         res = epoll_wait(chan->epfd, ev, 1, rms);
3176
3177         /* Stop blocking */
3178         ast_clear_flag(chan, AST_FLAG_BLOCKING);
3179
3180         /* Simulate a timeout if we were interrupted */
3181         if (res < 0) {
3182                 if (errno != EINTR)
3183                         *ms = -1;
3184                 return NULL;
3185         }
3186
3187         /* If this channel has a timeout see if it expired */
3188         if (!ast_tvzero(chan->whentohangup)) {
3189                 if (ast_tvdiff_ms(ast_tvnow(), chan->whentohangup) >= 0) {
3190                         chan->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
3191                         winner = chan;
3192                 }
3193         }
3194
3195         /* No fd ready, reset timeout and be done for now */
3196         if (!res) {
3197                 *ms = 0;
3198                 return winner;
3199         }
3200
3201         /* See what events are pending */
3202         aed = ev[0].data.ptr;
3203         chan->fdno = aed->which;
3204         if (ev[0].events & EPOLLPRI)
3205                 ast_set_flag(chan, AST_FLAG_EXCEPTION);
3206         else
3207                 ast_clear_flag(chan, AST_FLAG_EXCEPTION);
3208
3209         if (*ms > 0) {
3210                 *ms -= ast_tvdiff_ms(ast_tvnow(), start);
3211                 if (*ms < 0)
3212                         *ms = 0;
3213         }
3214
3215         return chan;
3216 }
3217
3218 static struct ast_channel *ast_waitfor_nandfds_complex(struct ast_channel **c, int n, int *ms)
3219 {
3220         struct timeval start = { 0 , 0 };
3221         int res = 0, i;
3222         struct epoll_event ev[25] = { { 0, } };
3223         struct timeval now = { 0, 0 };
3224         long whentohangup = 0, diff = 0, rms = *ms;
3225         struct ast_channel *winner = NULL;
3226
3227         for (i = 0; i < n; i++) {
3228                 if (c[i]->masq && ast_do_masquerade(c[i])) {
3229                         ast_log(LOG_WARNING, "Masquerade failed\n");
3230                         *ms = -1;
3231                         return NULL;
3232                 }
3233
3234                 ast_channel_lock(c[i]);
3235                 if (!ast_tvzero(c[i]->whentohangup)) {
3236                         if (whentohangup == 0)
3237                                 now = ast_tvnow();
3238                         if ((diff = ast_tvdiff_ms(c[i]->whentohangup, now)) < 0) {
3239                                 c[i]->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
3240                                 ast_channel_unlock(c[i]);
3241                                 return c[i];
3242                         }
3243                         if (!whentohangup || whentohangup > diff)
3244                                 whentohangup = diff;
3245                 }
3246                 ast_channel_unlock(c[i]);
3247                 CHECK_BLOCKING(c[i]);
3248         }
3249
3250         rms = *ms;
3251         if (whentohangup) {
3252                 rms = whentohangup;
3253                 if (*ms >= 0 && *ms < rms)
3254                         rms = *ms;
3255         }
3256
3257         if (*ms > 0)
3258                 start = ast_tvnow();
3259
3260         res = epoll_wait(c[0]->epfd, ev, 25, rms);
3261
3262         for (i = 0; i < n; i++)
3263                 ast_clear_flag(c[i], AST_FLAG_BLOCKING);
3264
3265         if (res < 0) {
3266                 if (errno != EINTR)
3267                         *ms = -1;
3268                 return NULL;
3269         }
3270
3271         if (whentohangup) {
3272                 now = ast_tvnow();
3273                 for (i = 0; i < n; i++) {
3274                         if (!ast_tvzero(c[i]->whentohangup) && ast_tvdiff_ms(now, c[i]->whentohangup) >= 0) {
3275                                 c[i]->_softhangup |= AST_SOFTHANGUP_TIMEOUT;
3276                                 if (!winner)
3277                                         winner = c[i];
3278                         }
3279                 }
3280         }
3281
3282         if (!res) {
3283                 *ms = 0;
3284                 return winner;
3285         }
3286
3287         for (i = 0; i < res; i++) {
3288                 struct ast_epoll_data *aed = ev[i].data.ptr;
3289
3290                 if (!ev[i].events || !aed)
3291                         continue;
3292
3293                 winner = aed->chan;
3294                 if (ev[i].events & EPOLLPRI)
3295                         ast_set_flag(winner, AST_FLAG_EXCEPTION);
3296                 else
3297                         ast_clear_flag(winner, AST_FLAG_EXCEPTION);
3298                 winner->fdno = aed->which;
3299         }
3300
3301         if (*ms > 0) {
3302                 *ms -= ast_tvdiff_ms(ast_tvnow(), start);
3303                 if (*ms < 0)
3304                         *ms = 0;
3305         }
3306
3307         return winner;
3308 }
3309
3310 struct ast_channel *ast_waitfor_nandfds(struct ast_channel **c, int n, int *fds, int nfds,
3311                                         int *exception, int *outfd, int *ms)
3312 {
3313         /* Clear all provided values in one place. */
3314         if (outfd)
3315                 *outfd = -99999;
3316         if (exception)
3317                 *exception = 0;
3318
3319         /* If no epoll file descriptor is available resort to classic nandfds */
3320         if (!n || nfds || c[0]->epfd == -1)
3321                 return ast_waitfor_nandfds_classic(c, n, fds, nfds, exception, outfd, ms);
3322         else if (!nfds && n == 1)
3323                 return ast_waitfor_nandfds_simple(c[0], ms);
3324         else
3325                 return ast_waitfor_nandfds_complex(c, n, ms);
3326 }
3327 #endif
3328
3329 struct ast_channel *ast_waitfor_n(struct ast_channel **c, int n, int *ms)
3330 {
3331         return ast_waitfor_nandfds(c, n, NULL, 0, NULL, NULL, ms);
3332 }
3333
3334 int ast_waitfor(struct ast_channel *c, int ms)
3335 {
3336         int oldms = ms; /* -1 if no timeout */
3337
3338         ast_waitfor_nandfds(&c, 1, NULL, 0, NULL, NULL, &ms);
3339         if ((ms < 0) && (oldms < 0))
3340                 ms = 0;
3341         return ms;
3342 }
3343
3344 /* XXX never to be called with ms = -1 */
3345 int ast_waitfordigit(struct ast_channel *c, int ms)
3346 {
3347         return ast_waitfordigit_full(c, ms, -1, -1);
3348 }
3349
3350 int ast_settimeout(struct ast_channel *c, unsigned int rate, int (*func)(const void *data), void *data)
3351 {
3352         int res;
3353         unsigned int real_rate = rate, max_rate;
3354
3355         ast_channel_lock(c);
3356
3357         if (c->timingfd == -1) {
3358                 ast_channel_unlock(c);
3359                 return -1;
3360         }
3361
3362         if (!func) {
3363                 rate = 0;
3364                 data = NULL;
3365         }
3366
3367         if (rate && rate > (max_rate = ast_timer_get_max_rate(c->timer))) {
3368                 real_rate = max_rate;
3369         }
3370
3371         ast_debug(1, "Scheduling timer at (%u requested / %u actual) timer ticks per second\n", rate, real_rate);
3372
3373         res = ast_timer_set_rate(c->timer, real_rate);
3374
3375         c->timingfunc = func;
3376         c->timingdata = data;
3377
3378         ast_channel_unlock(c);
3379
3380         return res;
3381 }
3382
3383 int ast_waitfordigit_full(struct ast_channel *c, int ms, int audiofd, int cmdfd)
3384 {
3385         /* Stop if we're a zombie or need a soft hangup */
3386         if (ast_test_flag(c, AST_FLAG_ZOMBIE) || ast_check_hangup(c))
3387                 return -1;
3388
3389         /* Only look for the end of DTMF, don't bother with the beginning and don't emulate things */
3390         ast_set_flag(c, AST_FLAG_END_DTMF_ONLY);
3391
3392         /* Wait for a digit, no more than ms milliseconds total. */
3393         
3394         while (ms) {
3395                 struct ast_channel *rchan;
3396                 int outfd=-1;
3397
3398                 errno = 0;
3399                 rchan = ast_waitfor_nandfds(&c, 1, &cmdfd, (cmdfd > -1) ? 1 : 0, NULL, &outfd, &ms);
3400                 
3401                 if (!rchan && outfd < 0 && ms) {
3402                         if (errno == 0 || errno == EINTR)
3403                                 continue;
3404                         ast_log(LOG_WARNING, "Wait failed (%s)\n", strerror(errno));
3405                         ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3406                         return -1;
3407                 } else if (outfd > -1) {
3408                         /* The FD we were watching has something waiting */
3409                         ast_log(LOG_WARNING, "The FD we were waiting for has something waiting. Waitfordigit returning numeric 1\n");
3410                         ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3411                         return 1;
3412                 } else if (rchan) {
3413                         int res;
3414                         struct ast_frame *f = ast_read(c);
3415                         if (!f)
3416                                 return -1;
3417
3418                         switch (f->frametype) {
3419                         case AST_FRAME_DTMF_BEGIN:
3420                                 break;
3421                         case AST_FRAME_DTMF_END:
3422                                 res = f->subclass.integer;
3423                                 ast_frfree(f);
3424                                 ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3425                                 return res;
3426                         case AST_FRAME_CONTROL:
3427                                 switch (f->subclass.integer) {
3428                                 case AST_CONTROL_HANGUP:
3429                                         ast_frfree(f);
3430                                         ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3431                                         return -1;
3432                                 case AST_CONTROL_RINGING:
3433                                 case AST_CONTROL_ANSWER:
3434                                 case AST_CONTROL_SRCUPDATE:
3435                                 case AST_CONTROL_SRCCHANGE:
3436                                 case AST_CONTROL_CONNECTED_LINE:
3437                                 case AST_CONTROL_REDIRECTING:
3438                                 case AST_CONTROL_UPDATE_RTP_PEER:
3439                                 case -1:
3440                                         /* Unimportant */
3441                                         break;
3442                                 default:
3443                                         ast_log(LOG_WARNING, "Unexpected control subclass '%d'\n", f->subclass.integer);
3444                                         break;
3445                                 }
3446                                 break;
3447                         case AST_FRAME_VOICE:
3448                                 /* Write audio if appropriate */
3449                                 if (audiofd > -1) {
3450                                         if (write(audiofd, f->data.ptr, f->datalen) < 0) {
3451                                                 ast_log(LOG_WARNING, "write() failed: %s\n", strerror(errno));
3452                                         }
3453                                 }
3454                         default:
3455                                 /* Ignore */
3456                                 break;
3457                         }
3458                         ast_frfree(f);
3459                 }
3460         }
3461
3462         ast_clear_flag(c, AST_FLAG_END_DTMF_ONLY);
3463
3464         return 0; /* Time is up */
3465 }
3466
3467 static void send_dtmf_event(struct ast_channel *chan, const char *direction, const char digit, const char *begin, const char *end)
3468 {
3469         ast_manager_event(chan, EVENT_FLAG_DTMF,
3470                         "DTMF",
3471                         "Channel: %s\r\n"
3472                         "Uniqueid: %s\r\n"
3473                         "Digit: %c\r\n"
3474                         "Direction: %s\r\n"
3475                         "Begin: %s\r\n"
3476                         "End: %s\r\n",
3477                         ast_channel_name(chan), chan->uniqueid, digit, direction, begin, end);
3478 }
3479
3480 static void ast_read_generator_actions(struct ast_channel *chan, struct ast_frame *f)
3481 {
3482         if (chan->generator && chan->generator->generate && chan->generatordata &&  !ast_internal_timing_enabled(chan)) {
3483                 void *tmp = chan->generatordata;
3484                 int (*generate)(struct ast_channel *chan, void *tmp, int datalen, int samples) = chan->generator->generate;
3485                 int res;
3486                 int samples;
3487
3488                 if (chan->timingfunc) {
3489                         ast_debug(1, "Generator got voice, switching to phase locked mode\n");
3490                         ast_settimeout(chan, 0, NULL, NULL);
3491                 }
3492
3493                 chan->generatordata = NULL;     /* reset, to let writes go through */
3494
3495                 if (ast_format_cmp(&f->subclass.format, &chan->writeformat) == AST_FORMAT_CMP_NOT_EQUAL) {
3496                         float factor;
3497                         factor = ((float) ast_format_rate(&chan->writeformat)) / ((float) ast_format_rate(&f->subclass.format));
3498                         samples = (int) ( ((float) f->samples) * factor );
3499                 } else {
3500                         samples = f->samples;
3501                 }
3502
3503                 /* This unlock is here based on two assumptions that hold true at this point in the
3504                  * code. 1) this function is only called from within __ast_read() and 2) all generators
3505                  * call ast_write() in their generate callback.
3506                  *
3507                  * The reason this is added is so that when ast_write is called, the lock that occurs 
3508                  * there will not recursively lock the channel. Doing this will cause intended deadlock 
3509                  * avoidance not to work in deeper functions
3510                  */
3511                 ast_channel_unlock(chan);
3512                 res = generate(chan, tmp, f->datalen, samples);
3513                 ast_channel_lock(chan);
3514                 chan->generatordata = tmp;
3515                 if (res) {
3516                         ast_debug(1, "Auto-deactivating generator\n");
3517                         ast_deactivate_generator(chan);
3518                 }
3519
3520         } else if (f->frametype == AST_FRAME_CNG) {
3521                 if (chan->generator && !chan->timingfunc && (chan->timingfd > -1)) {
3522                         ast_debug(1, "Generator got CNG, switching to timed mode\n");
3523                         ast_settimeout(chan, 50, generator_force, chan);
3524                 }
3525         }
3526 }
3527
3528 static inline void queue_dtmf_readq(struct ast_channel *chan, struct ast_frame *f)
3529 {
3530         struct ast_frame *fr = &chan->dtmff;
3531
3532         fr->frametype = AST_FRAME_DTMF_END;
3533         fr->subclass.integer = f->subclass.integer;
3534         fr->len = f->len;
3535
3536         /* The only time this function will be called is for a frame that just came
3537          * out of the channel driver.  So, we want to stick it on the tail of the
3538          * readq. */
3539
3540         ast_queue_frame(chan, fr);
3541 }
3542
3543 /*!
3544  * \brief Determine whether or not we should ignore DTMF in the readq
3545  */
3546 static inline int should_skip_dtmf(struct ast_channel *chan)
3547 {
3548         if (ast_test_flag(chan, AST_FLAG_DEFER_DTMF | AST_FLAG_EMULATE_DTMF)) {
3549                 /* We're in the middle of emulating a digit, or DTMF has been
3550                  * explicitly deferred.  Skip this digit, then. */
3551                 return 1;
3552         }
3553                         
3554         if (!ast_tvzero(chan->dtmf_tv) && 
3555                         ast_tvdiff_ms(ast_tvnow(), chan->dtmf_tv) < AST_MIN_DTMF_GAP) {
3556                 /* We're not in the middle of a digit, but it hasn't been long enough
3557                  * since the last digit, so we'll have to skip DTMF for now. */
3558                 return 1;
3559         }
3560
3561         return 0;
3562 }
3563
3564 /*!
3565  * \brief calculates the number of samples to jump forward with in a monitor stream.
3566  
3567  * \note When using ast_seekstream() with the read and write streams of a monitor,
3568  * the number of samples to seek forward must be of the same sample rate as the stream
3569  * or else the jump will not be calculated correctly.
3570  *
3571  * \retval number of samples to seek forward after rate conversion.
3572  */
3573 static inline int calc_monitor_jump(int samples, int sample_rate, int seek_rate)
3574 {
3575         int diff = sample_rate - seek_rate;
3576
3577         if (diff > 0) {
3578                 samples = samples / (float) (sample_rate / seek_rate);
3579         } else if (diff < 0) {
3580                 samples = samples * (float) (seek_rate / sample_rate);
3581         }
3582
3583         return samples;
3584 }
3585
3586 static struct ast_frame *__ast_read(struct ast_channel *chan, int dropaudio)
3587 {
3588         struct ast_frame *f = NULL;     /* the return value */
3589         int blah;
3590         int prestate;
3591         int cause = 0;
3592
3593         /* this function is very long so make sure there is only one return
3594          * point at the end (there are only two exceptions to this).
3595          */
3596
3597         if (chan->masq) {
3598                 if (ast_do_masquerade(chan))
3599                         ast_log(LOG_WARNING, "Failed to perform masquerade\n");
3600                 else
3601                         f =  &ast_null_frame;
3602                 return f;
3603         }
3604
3605         /* if here, no masq has happened, lock the channel and proceed */
3606         ast_channel_lock(chan);
3607
3608         /* Stop if we're a zombie or need a soft hangup */
3609         if (ast_test_flag(chan, AST_FLAG_ZOMBIE) || ast_check_hangup(chan)) {
3610                 if (chan->generator)
3611                         ast_deactivate_generator(chan);
3612
3613                 /*
3614                  * It is possible for chan->_softhangup to be set and there
3615                  * still be control frames that need to be read.  Instead of
3616                  * just going to 'done' in the case of ast_check_hangup(), we
3617                  * need to queue the end-of-Q frame so that it can mark the end
3618                  * of the read queue.  If there are frames to be read,
3619                  * ast_queue_control() will be called repeatedly, but will only
3620                  * queue the first end-of-Q frame.
3621                  */
3622                 if (chan->_softhangup) {
3623                         ast_queue_control(chan, AST_CONTROL_END_OF_Q);
3624                 } else {
3625                         goto done;
3626                 }
3627         } else {
3628 #ifdef AST_DEVMODE
3629                 /*
3630                  * The ast_waitfor() code records which of the channel's file
3631                  * descriptors reported that data is available.  In theory,
3632                  * ast_read() should only be called after ast_waitfor() reports
3633                  * that a channel has data available for reading.  However,
3634                  * there still may be some edge cases throughout the code where
3635                  * ast_read() is called improperly.  This can potentially cause
3636                  * problems, so if this is a developer build, make a lot of
3637                  * noise if this happens so that it can be addressed.
3638                  *
3639                  * One of the potential problems is blocking on a dead channel.
3640                  */
3641                 if (chan->fdno == -1) {
3642                         ast_log(LOG_ERROR,
3643                                 "ast_read() on chan '%s' called with no recorded file descriptor.\n",
3644                                 ast_channel_name(chan));
3645                 }
3646 #endif
3647         }
3648
3649         prestate = chan->_state;
3650
3651         /* Read and ignore anything on the alertpipe, but read only
3652            one sizeof(blah) per frame that we send from it */
3653         if (chan->alertpipe[0] > -1) {
3654                 int flags = fcntl(chan->alertpipe[0], F_GETFL);
3655                 /* For some odd reason, the alertpipe occasionally loses nonblocking status,
3656                  * which immediately causes a deadlock scenario.  Detect and prevent this. */
3657                 if ((flags & O_NONBLOCK) == 0) {
3658                         ast_log(LOG_ERROR, "Alertpipe on channel %s lost O_NONBLOCK?!!\n", ast_channel_name(chan));
3659                         if (fcntl(chan->alertpipe[0], F_SETFL, flags | O_NONBLOCK) < 0) {
3660                                 ast_log(LOG_WARNING, "Unable to set alertpipe nonblocking! (%d: %s)\n", errno, strerror(errno));
3661                                 f = &ast_null_frame;
3662                                 goto done;
3663                         }
3664                 }
3665                 if (read(chan->alertpipe[0], &blah, sizeof(blah)) < 0) {
3666                         if (errno != EINTR && errno != EAGAIN)
3667                                 ast_log(LOG_WARNING, "read() failed: %s\n", strerror(errno));
3668                 }
3669         }
3670
3671         if (chan->timingfd > -1 && chan->fdno == AST_TIMING_FD) {
3672                 enum ast_timer_event res;
3673
3674                 ast_clear_flag(chan, AST_FLAG_EXCEPTION);
3675
3676                 res = ast_timer_get_event(chan->timer);
3677
3678                 switch (res) {
3679                 case AST_TIMING_EVENT_EXPIRED:
3680                         ast_timer_ack(chan->timer, 1);
3681
3682                         if (chan->timingfunc) {
3683                                 /* save a copy of func/data before unlocking the channel */
3684                                 int (*func)(const void *) = chan->timingfunc;
3685                                 void *data = chan->timingdata;
3686                                 chan->fdno = -1;
3687                                 ast_channel_unlock(chan);
3688                                 func(data);
3689                         } else {
3690                                 ast_timer_set_rate(chan->timer, 0);
3691                                 chan->fdno = -1;
3692                                 ast_channel_unlock(chan);
3693                         }
3694
3695                         /* cannot 'goto done' because the channel is already unlocked */
3696                         return &ast_null_frame;
3697
3698                 case AST_TIMING_EVENT_CONTINUOUS:
3699                         if (AST_LIST_EMPTY(&chan->readq) || 
3700                                 !AST_LIST_NEXT(AST_LIST_FIRST(&chan->readq), frame_list)) {
3701                                 ast_timer_disable_continuous(chan->timer);
3702                         }
3703                         break;
3704                 }
3705
3706         } else if (chan->fds[AST_GENERATOR_FD] > -1 && chan->fdno == AST_GENERATOR_FD) {
3707                 /* if the AST_GENERATOR_FD is set, call the generator with args
3708                  * set to -1 so it can do whatever it needs to.
3709                  */
3710                 void *tmp = chan->generatordata;
3711                 chan->generatordata = NULL;     /* reset to let ast_write get through */
3712                 chan->generator->generate(chan, tmp, -1, -1);
3713                 chan->generatordata = tmp;
3714                 f = &ast_null_frame;
3715                 chan->fdno = -1;
3716                 goto done;
3717         } else if (chan->fds[AST_JITTERBUFFER_FD] > -1 && chan->fdno == AST_JITTERBUFFER_FD) {
3718                 ast_clear_flag(chan, AST_FLAG_EXCEPTION);
3719         }
3720
3721         /* Check for pending read queue */
3722         if (!AST_LIST_EMPTY(&chan->readq)) {
3723                 int skip_dtmf = should_skip_dtmf(chan);
3724
3725                 AST_LIST_TRAVERSE_SAFE_BEGIN(&chan->readq, f, frame_list) {
3726                         /* We have to be picky about which frame we pull off of the readq because
3727                          * there are cases where we want to leave DTMF frames on the queue until
3728                          * some later time. */
3729
3730                         if ( (f->frametype == AST_FRAME_DTMF_BEGIN || f->frametype == AST_FRAME_DTMF_END) && skip_dtmf) {
3731                                 continue;
3732                         }
3733
3734                         AST_LIST_REMOVE_CURRENT(frame_list);
3735                         break;
3736                 }
3737                 AST_LIST_TRAVERSE_SAFE_END;
3738                 
3739                 if (!f) {
3740                         /* There were no acceptable frames on the readq. */
3741                         f = &ast_null_frame;
3742                         if (chan->alertpipe[0] > -1) {
3743                                 int poke = 0;
3744                                 /* Restore the state of the alertpipe since we aren't ready for any
3745                                  * of the frames in the readq. */
3746                                 if (write(chan->alertpipe[1], &poke, sizeof(poke)) != sizeof(poke)) {
3747                                         ast_log(LOG_ERROR, "Failed to write to alertpipe: %s\n", strerror(errno));
3748                                 }
3749                         }
3750                 }
3751
3752                 /* Interpret hangup and end-of-Q frames to return NULL */
3753                 /* XXX why not the same for frames from the channel ? */
3754                 if (f->frametype == AST_FRAME_CONTROL) {
3755                         switch (f->subclass.integer) {
3756                         case AST_CONTROL_HANGUP:
3757                                 chan->_softhangup |= AST_SOFTHANGUP_DEV;
3758                                 cause = f->data.uint32;
3759                                 /* Fall through */
3760                         case AST_CONTROL_END_OF_Q:
3761                                 ast_frfree(f);
3762                                 f = NULL;
3763                                 break;
3764                         default:
3765                                 break;
3766                         }
3767                 }
3768         } else {
3769                 chan->blocker = pthread_self();
3770                 if (ast_test_flag(chan, AST_FLAG_EXCEPTION)) {
3771                         if (chan->tech->exception)
3772                                 f = chan->tech->exception(chan);
3773                         else {
3774                                 ast_log(LOG_WARNING, "Exception flag set on '%s', but no exception handler\n", ast_channel_name(chan));
3775                                 f = &ast_null_frame;
3776                         }
3777                         /* Clear the exception flag */
3778                         ast_clear_flag(chan, AST_FLAG_EXCEPTION);
3779                 } else if (chan->tech && chan->tech->read)
3780                         f = chan->tech->read(chan);
3781                 else
3782                         ast_log(LOG_WARNING, "No read routine on channel %s\n", ast_channel_name(chan));
3783         }
3784
3785         /* Perform the framehook read event here. After the frame enters the framehook list
3786          * there is no telling what will happen, <insert mad scientist laugh here>!!! */
3787         f = ast_framehook_list_read_event(chan->framehooks, f);
3788
3789         /*
3790          * Reset the recorded file descriptor that triggered this read so that we can
3791          * easily detect when ast_read() is called without properly using ast_waitfor().
3792          */
3793         chan->fdno = -1;
3794
3795         if (f) {
3796                 struct ast_frame *readq_tail = AST_LIST_LAST(&chan->readq);
3797                 struct ast_control_read_action_payload *read_action_payload;
3798                 struct ast_party_connected_line connected;
3799
3800                 /* if the channel driver returned more than one frame, stuff the excess
3801                    into the readq for the next ast_read call
3802                 */
3803                 if (AST_LIST_NEXT(f, frame_list)) {
3804                         ast_queue_frame(chan, AST_LIST_NEXT(f, frame_list));
3805                         ast_frfree(AST_LIST_NEXT(f, frame_list));
3806                         AST_LIST_NEXT(f, frame_list) = NULL;
3807                 }
3808
3809                 switch (f->frametype) {
3810                 case AST_FRAME_CONTROL:
3811                         if (f->subclass.integer == AST_CONTROL_ANSWER) {
3812                                 if (!ast_test_flag(chan, AST_FLAG_OUTGOING)) {
3813                                         ast_debug(1, "Ignoring answer on an inbound call!\n");
3814                                         ast_frfree(f);
3815                                         f = &ast_null_frame;
3816                                 } else if (prestate == AST_STATE_UP && ast_bridged_channel(chan)) {
3817                                         ast_debug(1, "Dropping duplicate answer!\n");