Asterisk - The Open Source Telephony Project GIT-master-f36a736
channel_internal_api.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2012, 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 Accessor API
22 *
23 * This file is intended to be the only file that ever accesses the
24 * internals of an ast_channel. All other files should use the
25 * accessor functions defined here.
26 *
27 * \author Terry Wilson
28 */
29
30/*** MODULEINFO
31 <support_level>core</support_level>
32 ***/
33
34#include "asterisk.h"
35
36#include <unistd.h>
37#include <fcntl.h>
38
39#include "asterisk/alertpipe.h"
40#include "asterisk/paths.h"
41#include "asterisk/channel.h"
43#include "asterisk/endpoints.h"
48#include "asterisk/stream.h"
49#include "asterisk/test.h"
50#include "asterisk/vector.h"
51
52/*!
53 * \brief Channel UniqueId structure
54 * \note channel creation time used for determining LinkedId Propagation
55 */
57 time_t creation_time; /*!< Creation time */
58 int creation_unique; /*!< sub-second unique value */
59 char unique_id[AST_MAX_UNIQUEID]; /*!< Unique Identifier */
60 char tenant_id[AST_MAX_TENANT_ID]; /*!< Multi-tenant identifier */
61};
62
63/*!
64 * \brief Main Channel structure associated with a channel.
65 *
66 * \note When adding fields to this structure, it is important to add the field
67 * 'in position' with like-aligned fields, so as to keep the compiler from
68 * having to add padding to align fields. The structure's fields are sorted
69 * in this order: pointers, structures, long, int/enum, short, char. This
70 * is especially important on 64-bit architectures, where mixing 4-byte
71 * and 8-byte fields causes 4 bytes of padding to be added before many
72 * 8-byte fields.
73 */
75 const struct ast_channel_tech *tech; /*!< Technology (point to channel driver) */
76 void *tech_pvt; /*!< Private data used by the technology driver */
77 void *music_state; /*!< Music State*/
78 void *generatordata; /*!< Current generator data if there is any */
79 struct ast_generator *generator; /*!< Current active data generator */
80 struct ast_channel *masq; /*!< Channel that will masquerade as us */
81 struct ast_channel *masqr; /*!< Who we are masquerading as */
82 const char *blockproc; /*!< Procedure causing blocking */
83 const char *appl; /*!< Current application */
84 const char *data; /*!< Data passed to current application */
85 struct ast_sched_context *sched; /*!< Schedule context */
86 struct ast_filestream *stream; /*!< Stream itself. */
87 struct ast_filestream *vstream; /*!< Video Stream itself. */
90 struct ast_pbx *pbx; /*!< PBX private structure for this channel */
91 struct ast_trans_pvt *writetrans; /*!< Write translation path */
92 struct ast_trans_pvt *readtrans; /*!< Read translation path */
95 struct ast_cdr *cdr; /*!< Call Detail Record */
96 struct ast_tone_zone *zone; /*!< Tone zone as set in indications.conf or
97 * in the CHANNEL dialplan function */
98 ast_callid callid; /*!< Bound call identifier pointer */
99 struct ao2_container *dialed_causes; /*!< Contains tech-specific and Asterisk cause data from dialed channels */
100
102 AST_STRING_FIELD(name); /*!< ASCII unique channel name */
103 AST_STRING_FIELD(language); /*!< Language requested for voice prompts */
104 AST_STRING_FIELD(musicclass); /*!< Default music class */
105 AST_STRING_FIELD(latest_musicclass); /*!< Latest active music class */
106 AST_STRING_FIELD(accountcode); /*!< Account code for billing */
107 AST_STRING_FIELD(peeraccount); /*!< Peer account code for billing */
108 AST_STRING_FIELD(userfield); /*!< Userfield for CEL billing */
109 AST_STRING_FIELD(call_forward); /*!< Where to forward to if asked to dial on this interface */
110 AST_STRING_FIELD(parkinglot); /*! Default parking lot, if empty, default parking lot */
111 AST_STRING_FIELD(hangupsource); /*! Who is responsible for hanging up this channel */
112 AST_STRING_FIELD(dialcontext); /*!< Dial: Extension context that we were called from */
113 );
114
115 struct ast_channel_id uniqueid; /*!< Unique Channel Identifier - can be specified on creation */
116 struct ast_channel_id linkedid; /*!< Linked Channel Identifier - oldest propagated when bridged */
117
118 struct timeval whentohangup; /*!< Non-zero, set to actual time when channel is to be hung up */
119 pthread_t blocker; /*!< If anyone is blocking, this is them */
120
121 /*!
122 * \brief Dialed/Called information.
123 * \note Set on incoming channels to indicate the originally dialed party.
124 * \note Dialed Number Identifier (DNID)
125 */
127
128 /*!
129 * \brief Channel Caller ID information.
130 * \note The caller id information is the caller id of this
131 * channel when it is used to initiate a call.
132 */
134
135 /*!
136 * \brief Channel Connected Line ID information.
137 * \note The connected line information identifies the channel
138 * connected/bridged to this channel.
139 */
141
142 /*!
143 * \brief Channel Connected Line ID information that was last indicated.
144 */
146
147 /*! \brief Redirecting/Diversion information */
149
150 struct ast_frame dtmff; /*!< DTMF frame */
151 struct varshead varshead; /*!< A linked list for channel variables. See \ref AstChanVar */
152 ast_group_t callgroup; /*!< Call group for call pickups */
153 ast_group_t pickupgroup; /*!< Pickup group - which calls groups can be picked up? */
154 struct ast_namedgroups *named_callgroups; /*!< Named call group for call pickups */
155 struct ast_namedgroups *named_pickupgroups; /*!< Named pickup group - which call groups can be picked up? */
156 struct timeval creationtime; /*!< The time of channel creation */
157 struct timeval answertime; /*!< The time the channel was answered */
159 struct ast_jb jb; /*!< The jitterbuffer state */
160 struct timeval dtmf_tv; /*!< The time that an in process digit began, or the last digit ended */
161 struct ast_hangup_handler_list hangup_handlers;/*!< Hangup handlers on the channel. */
162 struct ast_datastore_list datastores; /*!< Data stores on the channel */
163 struct ast_autochan_list autochans; /*!< Autochans on the channel */
164 unsigned long insmpl; /*!< Track the read/written samples for monitor use */
165 unsigned long outsmpl; /*!< Track the read/written samples for monitor use */
166
167 int blocker_tid; /*!< If anyone is blocking, this is their thread id */
168 AST_VECTOR(, int) fds; /*!< File descriptors for channel -- Drivers will poll on
169 * these file descriptors, so at least one must be non -1.
170 * See \arg \ref AstFileDesc */
171 int softhangup; /*!< Whether or not we have been hung up... Do not set this value
172 * directly, use ast_softhangup() */
173 int fdno; /*!< Which fd had an event detected on */
174 int streamid; /*!< For streaming playback, the schedule ID */
175 int vstreamid; /*!< For streaming video playback, the schedule ID */
176 struct ast_format *oldwriteformat; /*!< Original writer format */
177 int timingfd; /*!< Timing fd */
178 enum ast_channel_state state; /*!< State of line -- Don't write directly, use ast_setstate() */
179 int rings; /*!< Number of rings so far */
180 int priority; /*!< Dialplan: Current extension priority */
181 int amaflags; /*!< Set BEFORE PBX is started to determine AMA flags */
182 enum ast_channel_adsicpe adsicpe; /*!< Whether or not ADSI is detected on CPE */
183 unsigned int fin; /*!< Frames in counters. The high bit is a debug mask, so
184 * the counter is only in the remaining bits */
185 unsigned int fout; /*!< Frames out counters. The high bit is a debug mask, so
186 * the counter is only in the remaining bits */
187 int hangupcause; /*!< Why is the channel hanged up. See causes.h */
188 unsigned int finalized:1; /*!< Whether or not the channel has been successfully allocated */
189 struct ast_flags flags; /*!< channel flags of AST_FLAG_ type */
190 int alertpipe[2];
191 struct ast_format_cap *nativeformats; /*!< Kinds of data this channel can natively handle */
192 struct ast_format *readformat; /*!< Requested read format (after translation) */
193 struct ast_format *writeformat; /*!< Requested write format (before translation) */
194 struct ast_format *rawreadformat; /*!< Raw read format (before translation) */
195 struct ast_format *rawwriteformat; /*!< Raw write format (after translation) */
196 unsigned int emulate_dtmf_duration; /*!< Number of ms left to emulate DTMF for */
197 int visible_indication; /*!< Indication currently playing on the channel */
198 int hold_state; /*!< Current Hold/Unhold state */
199
200 unsigned short transfercapability; /*!< ISDN Transfer Capability - AST_FLAG_DIGITAL is not enough */
201
202 struct ast_bridge *bridge; /*!< Bridge this channel is participating in */
203 struct ast_bridge_channel *bridge_channel;/*!< The bridge_channel this channel is linked with. */
204 struct ast_timer *timer; /*!< timer object that provided timingfd */
205
206 char context[AST_MAX_CONTEXT]; /*!< Dialplan: Current extension context */
207 char exten[AST_MAX_EXTENSION]; /*!< Dialplan: Current extension number */
208 char lastcontext[AST_MAX_CONTEXT]; /*!< Dialplan: Previous extension context */
209 char lastexten[AST_MAX_EXTENSION]; /*!< Dialplan: Previous extension number */
210 char unbridged; /*!< non-zero if the bridge core needs to re-evaluate the current
211 bridging technology which is in use by this channel's bridge. */
212 char is_t38_active; /*!< non-zero if T.38 is active on this channel. */
213 char dtmf_digit_to_emulate; /*!< Digit being emulated */
214 char sending_dtmf_digit; /*!< Digit this channel is currently sending out. (zero if not sending) */
215 struct timeval sending_dtmf_tv; /*!< The time this channel started sending the current digit. (Invalid if sending_dtmf_digit is zero.) */
216 struct stasis_topic *topic; /*!< Topic for this channel */
217 struct stasis_forward *channel_forward; /*!< Subscription for event forwarding to all channel topic */
218 struct stasis_forward *endpoint_forward; /*!< Subscription for event forwarding to endpoint's topic */
219 struct ast_stream_topology *stream_topology; /*!< Stream topology */
220 void *stream_topology_change_source; /*!< Source that initiated a stream topology change */
221 struct ast_stream *default_streams[AST_MEDIA_TYPE_END]; /*!< Default streams indexed by media type */
222 struct ast_channel_snapshot *snapshot; /*!< The current up to date snapshot of the channel */
223 struct ast_flags snapshot_segment_flags; /*!< Flags regarding the segments of the snapshot */
224};
225
226/*! \brief The monotonically increasing integer counter for channel uniqueids */
227static int uniqueint;
228
229/* ACCESSORS */
230
231#define DEFINE_STRINGFIELD_SETTERS_FOR(field, assert_on_null) \
232void ast_channel_##field##_set(struct ast_channel *chan, const char *value) \
233{ \
234 if ((assert_on_null)) ast_assert(!ast_strlen_zero(value)); \
235 if (!strcmp(value, chan->field)) return; \
236 ast_string_field_set(chan, field, value); \
237} \
238 \
239void ast_channel_##field##_build_va(struct ast_channel *chan, const char *fmt, va_list ap) \
240{ \
241 ast_string_field_build_va(chan, field, fmt, ap); \
242} \
243void ast_channel_##field##_build(struct ast_channel *chan, const char *fmt, ...) \
244{ \
245 va_list ap; \
246 va_start(ap, fmt); \
247 ast_channel_##field##_build_va(chan, fmt, ap); \
248 va_end(ap); \
249}
250
251#define DEFINE_STRINGFIELD_SETTERS_AND_INVALIDATE_FOR(field, publish, assert_on_null, invalidate) \
252void ast_channel_##field##_set(struct ast_channel *chan, const char *value) \
253{ \
254 if ((assert_on_null)) ast_assert(!ast_strlen_zero(value)); \
255 if (!strcmp(value, chan->field)) return; \
256 ast_string_field_set(chan, field, value); \
257 ast_channel_snapshot_invalidate_segment(chan, invalidate); \
258 if (publish && ast_channel_internal_is_finalized(chan)) ast_channel_publish_snapshot(chan); \
259} \
260 \
261void ast_channel_##field##_build_va(struct ast_channel *chan, const char *fmt, va_list ap) \
262{ \
263 ast_string_field_build_va(chan, field, fmt, ap); \
264 ast_channel_snapshot_invalidate_segment(chan, invalidate); \
265 if (publish && ast_channel_internal_is_finalized(chan)) ast_channel_publish_snapshot(chan); \
266} \
267void ast_channel_##field##_build(struct ast_channel *chan, const char *fmt, ...) \
268{ \
269 va_list ap; \
270 va_start(ap, fmt); \
271 ast_channel_##field##_build_va(chan, fmt, ap); \
272 va_end(ap); \
273}
274
278DEFINE_STRINGFIELD_SETTERS_FOR(latest_musicclass, 0);
286
287#define DEFINE_STRINGFIELD_GETTER_FOR(field) const char *ast_channel_##field(const struct ast_channel *chan) \
288{ \
289 return chan->field; \
290}
291
303
304const char *ast_channel_uniqueid(const struct ast_channel *chan)
305{
306 ast_assert(chan->uniqueid.unique_id[0] != '\0');
307 return chan->uniqueid.unique_id;
308}
309
310const char *ast_channel_linkedid(const struct ast_channel *chan)
311{
312 ast_assert(chan->linkedid.unique_id[0] != '\0');
313 return chan->linkedid.unique_id;
314}
315
316const char *ast_channel_tenantid(const struct ast_channel *chan)
317{
318 /* It's ok for tenantid to be empty, so no need to assert */
319 return chan->linkedid.tenant_id;
320}
321
322void ast_channel_tenantid_set(struct ast_channel *chan, const char *value)
323{
324 if (ast_strlen_zero(value)) {
325 return;
326 }
329}
330
331const char *ast_channel_appl(const struct ast_channel *chan)
332{
333 return chan->appl;
334}
335void ast_channel_appl_set(struct ast_channel *chan, const char *value)
336{
337 chan->appl = value;
339}
340const char *ast_channel_blockproc(const struct ast_channel *chan)
341{
342 return chan->blockproc;
343}
344void ast_channel_blockproc_set(struct ast_channel *chan, const char *value)
345{
346 chan->blockproc = value;
347}
348const char *ast_channel_data(const struct ast_channel *chan)
349{
350 return chan->data;
351}
352void ast_channel_data_set(struct ast_channel *chan, const char *value)
353{
354 chan->data = value;
356}
357
358const char *ast_channel_context(const struct ast_channel *chan)
359{
360 return chan->context;
361}
362const char *ast_channel_lastcontext(const struct ast_channel *chan)
363{
364 return chan->lastcontext;
365}
366void ast_channel_context_set(struct ast_channel *chan, const char *value)
367{
368 if (!*chan->lastcontext || strcmp(value, chan->context)) {
369 /* only copy to last context when it changes, unless it's empty to begin with */
370 ast_copy_string(chan->lastcontext, chan->context, sizeof(chan->lastcontext));
371 }
372 ast_copy_string(chan->context, value, sizeof(chan->context));
374}
375const char *ast_channel_exten(const struct ast_channel *chan)
376{
377 return chan->exten;
378}
379const char *ast_channel_lastexten(const struct ast_channel *chan)
380{
381 return chan->lastexten;
382}
383void ast_channel_exten_set(struct ast_channel *chan, const char *value)
384{
385 if (!*chan->lastexten || strcmp(value, chan->exten)) {
386 /* only copy to last exten when it changes, unless it's empty to begin with */
387 ast_copy_string(chan->lastexten, chan->exten, sizeof(chan->lastexten));
388 }
389 ast_copy_string(chan->exten, value, sizeof(chan->exten));
391}
392
394{
395 return chan->dtmf_digit_to_emulate;
396}
398{
400}
401
403{
404 return chan->sending_dtmf_digit;
405}
407{
409}
410
411struct timeval ast_channel_sending_dtmf_tv(const struct ast_channel *chan)
412{
413 return chan->sending_dtmf_tv;
414}
415void ast_channel_sending_dtmf_tv_set(struct ast_channel *chan, struct timeval value)
416{
417 chan->sending_dtmf_tv = value;
418}
419
421{
422 return chan->amaflags;
423}
424
426{
427 if (chan->amaflags == value) {
428 return;
429 }
430 chan->amaflags = value;
432}
433int ast_channel_fdno(const struct ast_channel *chan)
434{
435 return chan->fdno;
436}
438{
439 chan->fdno = value;
440}
442{
443 return chan->hangupcause;
444}
446{
447 chan->hangupcause = value;
449}
450int ast_channel_priority(const struct ast_channel *chan)
451{
452 return chan->priority;
453}
455{
456 chan->priority = value;
458}
459int ast_channel_rings(const struct ast_channel *chan)
460{
461 return chan->rings;
462}
464{
465 chan->rings = value;
466}
467int ast_channel_streamid(const struct ast_channel *chan)
468{
469 return chan->streamid;
470}
472{
473 chan->streamid = value;
474}
475int ast_channel_timingfd(const struct ast_channel *chan)
476{
477 return chan->timingfd;
478}
480{
481 chan->timingfd = value;
482}
484{
485 return chan->visible_indication;
486}
488{
490}
491int ast_channel_hold_state(const struct ast_channel *chan)
492{
493 return chan->hold_state;
494}
496{
497 chan->hold_state = value;
498}
499int ast_channel_vstreamid(const struct ast_channel *chan)
500{
501 return chan->vstreamid;
502}
504{
505 chan->vstreamid = value;
506}
507unsigned short ast_channel_transfercapability(const struct ast_channel *chan)
508{
509 return chan->transfercapability;
510}
511void ast_channel_transfercapability_set(struct ast_channel *chan, unsigned short value)
512{
514}
515unsigned int ast_channel_emulate_dtmf_duration(const struct ast_channel *chan)
516{
517 return chan->emulate_dtmf_duration;
518}
520{
522}
523unsigned int ast_channel_fin(const struct ast_channel *chan)
524{
525 return chan->fin;
526}
527void ast_channel_fin_set(struct ast_channel *chan, unsigned int value)
528{
529 chan->fin = value;
530}
531unsigned int ast_channel_fout(const struct ast_channel *chan)
532{
533 return chan->fout;
534}
535void ast_channel_fout_set(struct ast_channel *chan, unsigned int value)
536{
537 chan->fout = value;
538}
539unsigned long ast_channel_insmpl(const struct ast_channel *chan)
540{
541 return chan->insmpl;
542}
543void ast_channel_insmpl_set(struct ast_channel *chan, unsigned long value)
544{
545 chan->insmpl = value;
546}
547unsigned long ast_channel_outsmpl(const struct ast_channel *chan)
548{
549 return chan->outsmpl;
550}
551void ast_channel_outsmpl_set(struct ast_channel *chan, unsigned long value)
552{
553 chan->outsmpl = value;
554}
555void *ast_channel_generatordata(const struct ast_channel *chan)
556{
557 return chan->generatordata;
558}
560{
561 chan->generatordata = value;
562}
563void *ast_channel_music_state(const struct ast_channel *chan)
564{
565 return chan->music_state;
566}
568{
569 chan->music_state = value;
570}
571void *ast_channel_tech_pvt(const struct ast_channel *chan)
572{
573 return chan->tech_pvt;
574}
576{
577 chan->tech_pvt = value;
578 if (value != NULL) {
580 }
581}
582void *ast_channel_timingdata(const struct ast_channel *chan)
583{
584 return chan->timingdata;
585}
587{
588 chan->timingdata = value;
589}
591{
592 return chan->audiohooks;
593}
595{
596 chan->audiohooks = value;
597}
598struct ast_cdr *ast_channel_cdr(const struct ast_channel *chan)
599{
600 return chan->cdr;
601}
602void ast_channel_cdr_set(struct ast_channel *chan, struct ast_cdr *value)
603{
604 chan->cdr = value;
605}
606struct ast_channel *ast_channel_masq(const struct ast_channel *chan)
607{
608 return chan->masq;
609}
611{
612 chan->masq = value;
613}
614struct ast_channel *ast_channel_masqr(const struct ast_channel *chan)
615{
616 return chan->masqr;
617}
619{
620 chan->masqr = value;
621}
623{
624 return chan->stream;
625}
627{
628 chan->stream = value;
629}
631{
632 return chan->vstream;
633}
635{
636 chan->vstream = value;
637}
639{
640 return chan->nativeformats;
641}
642
644{
645 enum ast_media_type type;
646
647 ast_assert(chan != NULL);
648
650 if (chan->stream_topology) {
651 chan->default_streams[type] =
653 } else {
654 chan->default_streams[type] = NULL;
655 }
656 }
657}
658
660 struct ast_stream_topology *topology)
661{
663 chan->stream_topology = topology;
665}
666
668 struct ast_channel *chan, void *change_source)
669{
670 chan->stream_topology_change_source = change_source;
671}
672
674{
676}
677
679 struct ast_format_cap *value)
680{
681 SCOPE_ENTER(2, "%s: %sFormats: %s\n", S_OR(ast_channel_name(chan), "<initializing>"),
682 S_COR(ast_channel_is_multistream(chan), "Multistream", ""),
684
685 ast_assert(chan != NULL);
686
688
689 /* If chan->stream_topology is NULL, the channel is being destroyed
690 * and topology is destroyed.
691 */
692 if (!chan->stream_topology) {
693 SCOPE_EXIT_RTN("Channel is being initialized or destroyed\n");
694 }
695
696 if (!ast_channel_is_multistream(chan) || !value) {
697 struct ast_stream_topology *new_topology;
698
701 SCOPE_EXIT_RTN("New %stopology set\n", value ? "" : "empty ");
702 }
703 SCOPE_EXIT_RTN("Set native formats but not topology\n");
704}
705
707{
708 return chan->framehooks;
709}
711{
712 chan->framehooks = value;
713}
715{
716 return chan->generator;
717}
719{
720 chan->generator = value;
721}
722struct ast_pbx *ast_channel_pbx(const struct ast_channel *chan)
723{
724 return chan->pbx;
725}
726void ast_channel_pbx_set(struct ast_channel *chan, struct ast_pbx *value)
727{
728 chan->pbx = value;
729}
731{
732 return chan->sched;
733}
735{
736 chan->sched = value;
737}
738struct ast_timer *ast_channel_timer(const struct ast_channel *chan)
739{
740 return chan->timer;
741}
743{
744 chan->timer = value;
745}
746struct ast_tone_zone *ast_channel_zone(const struct ast_channel *chan)
747{
748 return chan->zone;
749}
751{
752 chan->zone = value;
753}
755{
756 return chan->readtrans;
757}
759{
760 chan->readtrans = value;
761}
763{
764 return chan->writetrans;
765}
767{
768 chan->writetrans = value;
769}
770const struct ast_channel_tech *ast_channel_tech(const struct ast_channel *chan)
771{
772 return chan->tech;
773}
775{
776 if (value->read_stream || value->write_stream) {
777 ast_assert(value->read_stream && value->write_stream);
778 }
779
780 chan->tech = value;
781}
783{
784 return chan->adsicpe;
785}
787{
788 chan->adsicpe = value;
789}
791{
792 return chan->state;
793}
795{
796 return chan->callid;
797}
799{
800 char call_identifier_from[AST_CALLID_BUFFER_LENGTH];
801 char call_identifier_to[AST_CALLID_BUFFER_LENGTH];
802 call_identifier_from[0] = '\0';
803 ast_callid_strnprint(call_identifier_to, sizeof(call_identifier_to), callid);
804 if (chan->callid) {
805 ast_callid_strnprint(call_identifier_from, sizeof(call_identifier_from), chan->callid);
806 ast_debug(3, "Channel Call ID changing from %s to %s\n", call_identifier_from, call_identifier_to);
807 }
808
809 chan->callid = callid;
810
811 ast_test_suite_event_notify("CallIDChange",
812 "State: CallIDChange\r\n"
813 "Channel: %s\r\n"
814 "CallID: %s\r\n"
815 "PriorCallID: %s",
816 ast_channel_name(chan),
817 call_identifier_to,
818 call_identifier_from);
819}
820
822{
823 chan->state = value;
824}
825void ast_channel_set_oldwriteformat(struct ast_channel *chan, struct ast_format *format)
826{
827 ao2_replace(chan->oldwriteformat, format);
828}
829void ast_channel_set_rawreadformat(struct ast_channel *chan, struct ast_format *format)
830{
831 ao2_replace(chan->rawreadformat, format);
832}
833void ast_channel_set_rawwriteformat(struct ast_channel *chan, struct ast_format *format)
834{
835 ao2_replace(chan->rawwriteformat, format);
836}
837void ast_channel_set_readformat(struct ast_channel *chan, struct ast_format *format)
838{
839 ao2_replace(chan->readformat, format);
840}
841void ast_channel_set_writeformat(struct ast_channel *chan, struct ast_format *format)
842{
843 ao2_replace(chan->writeformat, format);
844}
846{
847 return chan->oldwriteformat;
848}
850{
851 return chan->rawreadformat;
852}
854{
855 return chan->rawwriteformat;
856}
858{
859 return chan->readformat;
860}
862{
863 return chan->writeformat;
864}
866{
867 return &chan->hangup_handlers;
868}
870{
871 return &chan->datastores;
872}
874{
875 return &chan->autochans;
876}
878{
879 return &chan->readq;
880}
882{
883 return &chan->dtmff;
884}
885struct ast_jb *ast_channel_jb(struct ast_channel *chan)
886{
887 return &chan->jb;
888}
890{
891 return &chan->caller;
892}
894{
895 return &chan->connected;
896}
898{
899 return &chan->connected_indicated;
900}
902{
903 return ast_party_id_merge(&chan->connected.id, &chan->connected.priv);
904}
906{
907 return &chan->dialed;
908}
910{
911 return &chan->redirecting;
912}
914{
915 return ast_party_id_merge(&chan->redirecting.orig, &chan->redirecting.priv_orig);
916}
918{
919 return ast_party_id_merge(&chan->redirecting.from, &chan->redirecting.priv_from);
920}
922{
923 return ast_party_id_merge(&chan->redirecting.to, &chan->redirecting.priv_to);
924}
925struct timeval *ast_channel_dtmf_tv(struct ast_channel *chan)
926{
927 return &chan->dtmf_tv;
928}
929struct timeval *ast_channel_whentohangup(struct ast_channel *chan)
930{
931 return &chan->whentohangup;
932}
934{
935 return &chan->varshead;
936}
938{
939 chan->dtmff = *value;
940}
941void ast_channel_jb_set(struct ast_channel *chan, struct ast_jb *value)
942{
943 chan->jb = *value;
944}
946{
947 chan->caller = *value;
949}
951{
952 chan->connected = *value;
954}
956{
957 chan->dialed = *value;
959}
961{
962 chan->redirecting = *value;
964}
965void ast_channel_dtmf_tv_set(struct ast_channel *chan, struct timeval *value)
966{
967 chan->dtmf_tv = *value;
968}
969void ast_channel_whentohangup_set(struct ast_channel *chan, struct timeval *value)
970{
971 chan->whentohangup = *value;
972}
974{
975 chan->varshead = *value;
976}
977struct timeval ast_channel_creationtime(struct ast_channel *chan)
978{
979 return chan->creationtime;
980}
981void ast_channel_creationtime_set(struct ast_channel *chan, struct timeval *value)
982{
983 chan->creationtime = *value;
985}
986
987struct timeval ast_channel_answertime(struct ast_channel *chan)
988{
989 return chan->answertime;
990}
991
992void ast_channel_answertime_set(struct ast_channel *chan, struct timeval *value)
993{
994 chan->answertime = *value;
995}
996
997/* Evil softhangup accessors */
999{
1000 return chan->softhangup;
1001}
1003{
1004 chan->softhangup = value;
1005}
1007{
1008 chan->softhangup |= value;
1009}
1011{
1012 chan ->softhangup &= ~value;
1013}
1014
1016{
1017 return chan->unbridged;
1018}
1019
1021{
1022 int res;
1023 ast_channel_lock(chan);
1024 res = ast_channel_unbridged_nolock(chan);
1025 ast_channel_unlock(chan);
1026 return res;
1027}
1028
1030{
1031 chan->unbridged = !!value;
1033}
1034
1036{
1037 ast_channel_lock(chan);
1039 ast_channel_unlock(chan);
1040}
1041
1043{
1044 return chan->is_t38_active;
1045}
1046
1048{
1049 int res;
1050
1051 ast_channel_lock(chan);
1053 ast_channel_unlock(chan);
1054 return res;
1055}
1056
1057void ast_channel_set_is_t38_active_nolock(struct ast_channel *chan, int is_t38_active)
1058{
1059 chan->is_t38_active = !!is_t38_active;
1060}
1061
1062void ast_channel_set_is_t38_active(struct ast_channel *chan, int is_t38_active)
1063{
1064 ast_channel_lock(chan);
1065 ast_channel_set_is_t38_active_nolock(chan, is_t38_active);
1066 ast_channel_unlock(chan);
1067}
1068
1070{
1071 chan->callid = 0;
1072}
1073
1074/* Typedef accessors */
1076{
1077 return chan->callgroup;
1078}
1080{
1081 chan->callgroup = value;
1082}
1084{
1085 return chan->pickupgroup;
1086}
1088{
1089 chan->pickupgroup = value;
1090}
1091struct ast_namedgroups *ast_channel_named_callgroups(const struct ast_channel *chan)
1092{
1093 return chan->named_callgroups;
1094}
1095void ast_channel_named_callgroups_set(struct ast_channel *chan, struct ast_namedgroups *value)
1096{
1099}
1100struct ast_namedgroups *ast_channel_named_pickupgroups(const struct ast_channel *chan)
1101{
1102 return chan->named_pickupgroups;
1103}
1104void ast_channel_named_pickupgroups_set(struct ast_channel *chan, struct ast_namedgroups *value)
1105{
1108}
1109
1110/* Alertpipe functions */
1112{
1113 return ast_alertpipe_write(chan->alertpipe);
1114}
1115
1117{
1118 return ast_alertpipe_flush(chan->alertpipe);
1119}
1120
1122{
1123 return ast_alertpipe_read(chan->alertpipe);
1124}
1125
1127{
1128 return ast_alertpipe_writable(chan->alertpipe);
1129}
1130
1132{
1133 return ast_alertpipe_readable(chan->alertpipe);
1134}
1135
1137{
1139}
1140
1142{
1144}
1145
1147{
1148 return ast_alertpipe_init(chan->alertpipe);
1149}
1150
1152{
1153 return ast_alertpipe_readfd(chan->alertpipe);
1154}
1155
1157{
1158 ast_alertpipe_swap(chan1->alertpipe, chan2->alertpipe);
1159}
1160
1161/* file descriptor array accessors */
1162void ast_channel_internal_fd_set(struct ast_channel *chan, int which, int value)
1163{
1164 int pos;
1165
1166 /* This ensures that if the vector has to grow with unused positions they will be
1167 * initialized to -1.
1168 */
1169 for (pos = AST_VECTOR_SIZE(&chan->fds); pos < which; pos++) {
1170 AST_VECTOR_REPLACE(&chan->fds, pos, -1);
1171 }
1172
1173 AST_VECTOR_REPLACE(&chan->fds, which, value);
1174}
1175void ast_channel_internal_fd_clear(struct ast_channel *chan, int which)
1176{
1177 if (which >= AST_VECTOR_SIZE(&chan->fds)) {
1178 return;
1179 }
1180
1181 AST_VECTOR_REPLACE(&chan->fds, which, -1);
1182}
1184{
1186}
1187int ast_channel_fd(const struct ast_channel *chan, int which)
1188{
1189 return (which >= AST_VECTOR_SIZE(&chan->fds)) ? -1 : AST_VECTOR_GET(&chan->fds, which);
1190}
1191int ast_channel_fd_isset(const struct ast_channel *chan, int which)
1192{
1193 return ast_channel_fd(chan, which) > -1;
1194}
1195
1196int ast_channel_fd_count(const struct ast_channel *chan)
1197{
1198 return AST_VECTOR_SIZE(&chan->fds);
1199}
1200
1202{
1203 int pos = AST_EXTENDED_FDS;
1204
1205 while (ast_channel_fd_isset(chan, pos)) {
1206 pos += 1;
1207 }
1208
1209 AST_VECTOR_REPLACE(&chan->fds, pos, value);
1210
1211 return pos;
1212}
1213
1214pthread_t ast_channel_blocker(const struct ast_channel *chan)
1215{
1216 return chan->blocker;
1217}
1218void ast_channel_blocker_set(struct ast_channel *chan, pthread_t value)
1219{
1220 chan->blocker = value;
1221}
1222
1224{
1225 return chan->blocker_tid;
1226}
1228{
1229 chan->blocker_tid = value;
1230}
1231
1233{
1234 return chan->timingfunc;
1235}
1237{
1238 chan->timingfunc = value;
1239}
1240
1242{
1243 return chan->bridge;
1244}
1246{
1247 chan->bridge = value;
1250}
1251
1253{
1254 return chan->bridge_channel;
1255}
1257{
1259}
1260
1262{
1263 return &chan->flags;
1264}
1265
1266static int collect_names_cb(void *obj, void *arg, int flags)
1267{
1268 struct ast_control_pvt_cause_code *cause_code = obj;
1269 struct ast_str **str = arg;
1270
1271 ast_str_append(str, 0, "%s%s", (ast_str_strlen(*str) ? "," : ""), cause_code->chan_name);
1272
1273 return 0;
1274}
1275
1277{
1278 struct ast_str *chanlist = ast_str_create(128);
1279
1280 if (!chanlist) {
1281 return NULL;
1282 }
1283
1285
1286 return chanlist;
1287}
1288
1290{
1291 return ao2_find(chan->dialed_causes, chan_name, OBJ_KEY);
1292}
1293
1294int ast_channel_dialed_causes_add(const struct ast_channel *chan, const struct ast_control_pvt_cause_code *cause_code, int datalen)
1295{
1296 struct ast_control_pvt_cause_code *ao2_cause_code;
1298 ao2_cause_code = ao2_alloc(datalen, NULL);
1299
1300 if (ao2_cause_code) {
1301 memcpy(ao2_cause_code, cause_code, datalen);
1302 ao2_link(chan->dialed_causes, ao2_cause_code);
1303 ao2_ref(ao2_cause_code, -1);
1304 return 0;
1305 } else {
1306 return -1;
1307 }
1308}
1309
1311{
1313}
1314
1315/*! \brief Hash function for pvt cause code frames */
1316static int pvt_cause_hash_fn(const void *vpc, const int flags)
1317{
1318 const struct ast_control_pvt_cause_code *pc = vpc;
1320}
1321
1322/*! \brief Comparison function for pvt cause code frames */
1323static int pvt_cause_cmp_fn(void *obj, void *vstr, int flags)
1324{
1325 struct ast_control_pvt_cause_code *pc = obj;
1326 char *str = ast_tech_to_upper(ast_strdupa(vstr));
1327 char *pc_str = ast_tech_to_upper(ast_strdupa(pc->chan_name));
1328 return !strcmp(pc_str, str) ? CMP_MATCH | CMP_STOP : 0;
1329}
1330
1331#define DIALED_CAUSES_BUCKETS 37
1332
1333struct ast_channel *__ast_channel_internal_alloc_with_initializers(void (*destructor)(void *obj), const struct ast_assigned_ids *assignedids,
1334 const struct ast_channel *requestor, const struct ast_channel_initializers *initializers, const char *file, int line, const char *function)
1335{
1336 struct ast_channel *tmp;
1337
1338 tmp = __ao2_alloc(sizeof(*tmp), destructor,
1339 AO2_ALLOC_OPT_LOCK_MUTEX, "", file, line, function);
1340
1341 if (!tmp) {
1342 return NULL;
1343 }
1344
1345 if ((ast_string_field_init(tmp, 128))) {
1346 return ast_channel_unref(tmp);
1347 }
1348
1351 if (!tmp->dialed_causes) {
1352 return ast_channel_unref(tmp);
1353 }
1354
1355 /* Check initializers validity here for early abort. Unfortunately, we can't do much here because
1356 * tenant ID is part of linked ID, which would overwrite it further down. */
1357 if (initializers) {
1358 if (initializers->version == 0) {
1359 ast_log(LOG_ERROR, "Channel initializers must have a non-zero version.\n");
1360 return ast_channel_unref(tmp);
1361 } else if (initializers->version != AST_CHANNEL_INITIALIZERS_VERSION) {
1362 ast_log(LOG_ERROR, "ABI mismatch for ast_channel_initializers. "
1363 "Please ensure all modules were compiled for "
1364 "this version of Asterisk.\n");
1365 return ast_channel_unref(tmp);
1366 }
1367 }
1368
1369 /* set the creation time in the uniqueid */
1370 tmp->uniqueid.creation_time = time(NULL);
1371 tmp->uniqueid.creation_unique = ast_atomic_fetchadd_int(&uniqueint, 1);
1372
1373 /* use provided id or default to historical {system-}time.# format */
1374 if (assignedids && !ast_strlen_zero(assignedids->uniqueid)) {
1375 ast_copy_string(tmp->uniqueid.unique_id, assignedids->uniqueid, sizeof(tmp->uniqueid.unique_id));
1377 snprintf(tmp->uniqueid.unique_id, sizeof(tmp->uniqueid.unique_id), "%li.%d",
1378 (long)(tmp->uniqueid.creation_time),
1379 tmp->uniqueid.creation_unique);
1380 } else {
1381 snprintf(tmp->uniqueid.unique_id, sizeof(tmp->uniqueid.unique_id), "%s-%li.%d",
1383 (long)(tmp->uniqueid.creation_time),
1384 tmp->uniqueid.creation_unique);
1385 }
1386
1387 /* copy linked id from parent channel if known */
1388 if (requestor) {
1389 tmp->linkedid = requestor->linkedid;
1390 } else {
1391 tmp->linkedid = tmp->uniqueid;
1392 }
1393
1394 /* Things like tenant ID need to be set here, otherwise they would be overwritten by
1395 * things like inheriting linked ID above. */
1396 if (initializers) {
1397 ast_copy_string(tmp->linkedid.tenant_id, initializers->tenantid, sizeof(tmp->linkedid.tenant_id));
1398 }
1399
1401
1402 /* Force all channel snapshot segments to be created on first use, so we don't have to check if
1403 * an old snapshot exists.
1404 */
1405 ast_set_flag(&tmp->snapshot_segment_flags, AST_FLAGS_ALL);
1406
1407 return tmp;
1408}
1409
1410struct ast_channel *__ast_channel_internal_alloc(void (*destructor)(void *obj), const struct ast_assigned_ids *assignedids,
1411 const struct ast_channel *requestor, const char *file, int line, const char *function)
1412{
1413 return __ast_channel_internal_alloc_with_initializers(destructor, assignedids, requestor, NULL, file, line, function);
1414}
1415
1417{
1418 ast_assert(a->linkedid.creation_time != 0);
1419 ast_assert(b->linkedid.creation_time != 0);
1420
1421 if (a->linkedid.creation_time < b->linkedid.creation_time) {
1422 return a;
1423 }
1424 if (b->linkedid.creation_time < a->linkedid.creation_time) {
1425 return b;
1426 }
1427 if (a->linkedid.creation_unique < b->linkedid.creation_unique) {
1428 return a;
1429 }
1430 return b;
1431}
1432
1434{
1435 if (dest->linkedid.creation_time == source->linkedid.creation_time
1437 && !strcmp(dest->linkedid.unique_id, source->linkedid.unique_id)) {
1438 return;
1439 }
1440 dest->linkedid = source->linkedid;
1443}
1444
1446{
1447 struct ast_channel_id temp;
1448
1449 /* This operation is used as part of masquerading and so does not invalidate the peer
1450 * segment. This is due to the masquerade process invalidating all segments.
1451 */
1452
1453 temp = a->uniqueid;
1454 a->uniqueid = b->uniqueid;
1455 b->uniqueid = temp;
1456
1457 temp = a->linkedid;
1458 a->linkedid = b->linkedid;
1459 b->linkedid = temp;
1460}
1461
1463{
1464 struct stasis_topic *topic;
1465 struct stasis_forward *forward;
1466
1467 topic = a->topic;
1468 a->topic = b->topic;
1469 b->topic = topic;
1470
1471 forward = a->channel_forward;
1472 a->channel_forward = b->channel_forward;
1473 b->channel_forward = forward;
1474}
1475
1477{
1478 struct stasis_forward *temp;
1479
1480 temp = a->endpoint_forward;
1481 a->endpoint_forward = b->endpoint_forward;
1482 b->endpoint_forward = temp;
1483}
1484
1486{
1487 struct ast_channel_snapshot *snapshot;
1488
1489 snapshot = a->snapshot;
1490 a->snapshot = b->snapshot;
1491 b->snapshot = snapshot;
1492}
1493
1494void ast_channel_internal_set_fake_ids(struct ast_channel *chan, const char *uniqueid, const char *linkedid)
1495{
1496 ast_copy_string(chan->uniqueid.unique_id, uniqueid, sizeof(chan->uniqueid.unique_id));
1497 ast_copy_string(chan->linkedid.unique_id, linkedid, sizeof(chan->linkedid.unique_id));
1498}
1499
1501{
1502 if (chan->dialed_causes) {
1503 ao2_t_ref(chan->dialed_causes, -1,
1504 "done with dialed causes since the channel is going away");
1505 chan->dialed_causes = NULL;
1506 }
1507
1509
1512
1513 ao2_cleanup(chan->topic);
1514 chan->topic = NULL;
1515
1517
1518 AST_VECTOR_FREE(&chan->fds);
1519}
1520
1522{
1523 chan->finalized = 1;
1524}
1525
1527{
1528 return chan->finalized;
1529}
1530
1532{
1533 if (!chan) {
1534 return ast_channel_topic_all();
1535 }
1536
1537 return chan->topic;
1538}
1539
1541 struct ast_endpoint *endpoint)
1542{
1543 ast_assert(chan != NULL);
1544 ast_assert(endpoint != NULL);
1545
1546 chan->endpoint_forward =
1548 ast_endpoint_topic(endpoint));
1549 if (!chan->endpoint_forward) {
1550 return -1;
1551 }
1552
1553 return 0;
1554}
1555
1557{
1558 char *topic_name;
1559 int ret;
1560 ast_assert(chan->topic == NULL);
1561
1562 if (ast_strlen_zero(chan->uniqueid.unique_id)) {
1563 static int dummy_id;
1564 ret = ast_asprintf(&topic_name, "channel:dummy-%d", ast_atomic_fetchadd_int(&dummy_id, +1));
1565 } else {
1566 ret = ast_asprintf(&topic_name, "channel:%s", chan->uniqueid.unique_id);
1567 }
1568
1569 if (ret < 0) {
1570 return -1;
1571 }
1572
1573 chan->topic = stasis_topic_create(topic_name);
1574 ast_free(topic_name);
1575 if (!chan->topic) {
1576 return -1;
1577 }
1578
1581 if (!chan->channel_forward) {
1582 ao2_ref(chan->topic, -1);
1583 chan->topic = NULL;
1584 return -1;
1585 }
1586
1587 return 0;
1588}
1589
1591
1593{
1594 enum ast_channel_error *error_code = ast_threadstorage_get(&channel_errno, sizeof(*error_code));
1595 if (!error_code) {
1596 return;
1597 }
1598
1599 *error_code = error;
1600}
1601
1603{
1604 enum ast_channel_error *error_code = ast_threadstorage_get(&channel_errno, sizeof(*error_code));
1605 if (!error_code) {
1607 }
1608
1609 return *error_code;
1610}
1611
1613 const struct ast_channel *chan)
1614{
1615 ast_assert(chan != NULL);
1616
1617 return chan->stream_topology;
1618}
1619
1621 struct ast_stream_topology *topology)
1622{
1623 struct ast_stream_topology *new_topology;
1624 SCOPE_ENTER(1, "%s: %s\n", ast_channel_name(chan),
1625 ast_str_tmp(256, ast_stream_topology_to_str(topology, &STR_TMP)));
1626
1627 ast_assert(chan != NULL);
1628
1629 /* A non-MULTISTREAM channel can't manipulate topology directly */
1631
1632 /* Unless the channel is being destroyed, we always want a topology on
1633 * it even if its empty.
1634 */
1635 if (!topology) {
1636 new_topology = ast_stream_topology_alloc();
1637 } else {
1638 new_topology = topology;
1639 }
1640
1641 if (new_topology) {
1642 ast_channel_internal_set_stream_topology(chan, new_topology);
1643 }
1644
1645 SCOPE_EXIT_RTN_VALUE(new_topology, "Used %s topology\n", topology ? "provided" : "empty");
1646}
1647
1649 enum ast_media_type type)
1650{
1651 ast_assert(chan != NULL);
1653
1654 return chan->default_streams[type];
1655}
1656
1658 struct ast_channel *chan2)
1659{
1660 struct ast_stream_topology *tmp_topology;
1661
1662 ast_assert(chan1 != NULL && chan2 != NULL);
1663
1664 tmp_topology = chan1->stream_topology;
1665 chan1->stream_topology = chan2->stream_topology;
1666 chan2->stream_topology = tmp_topology;
1667
1670}
1671
1673{
1674 return (chan && chan->tech && chan->tech->read_stream && chan->tech->write_stream);
1675}
1676
1678{
1679 return chan->snapshot;
1680}
1681
1683{
1684 ao2_cleanup(chan->snapshot);
1685 chan->snapshot = ao2_bump(snapshot);
1686}
1687
1689{
1690 return &chan->snapshot_segment_flags;
1691}
void ast_alertpipe_close(int alert_pipe[2])
Close an alert pipe.
Definition: alertpipe.c:79
ssize_t ast_alertpipe_write(int alert_pipe[2])
Write an event to an alert pipe.
Definition: alertpipe.c:120
void ast_alertpipe_swap(int alert_pipe_1[2], int alert_pipe_2[2])
Swap the file descriptors from two alert pipes.
Definition: alertpipe.h:161
void ast_alertpipe_clear(int alert_pipe[2])
Sets the alert pipe file descriptors to default values.
Definition: alertpipe.h:98
ast_alert_status_t ast_alertpipe_flush(int alert_pipe[2])
Consume all alerts written to the alert pipe.
Definition: alertpipe.c:134
int ast_alertpipe_readable(int alert_pipe[2])
Determine if the alert pipe is readable.
Definition: alertpipe.h:114
int ast_alertpipe_readfd(int alert_pipe[2])
Get the alert pipe's read file descriptor.
Definition: alertpipe.h:146
int ast_alertpipe_init(int alert_pipe[2])
Initialize an alert pipe.
Definition: alertpipe.c:38
ast_alert_status_t
Definition: alertpipe.h:24
int ast_alertpipe_writable(int alert_pipe[2])
Determine if the alert pipe is writable.
Definition: alertpipe.h:130
ast_alert_status_t ast_alertpipe_read(int alert_pipe[2])
Read an event from an alert pipe.
Definition: alertpipe.c:102
const char * str
Definition: app_jack.c:147
static char dialcontext[AST_MAX_CONTEXT]
Asterisk main include file. File version handling, generic pbx functions.
#define ast_free(a)
Definition: astmm.h:180
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition: astmm.h:298
#define ast_asprintf(ret, fmt,...)
A wrapper for asprintf()
Definition: astmm.h:267
#define ast_log
Definition: astobj2.c:42
#define ao2_t_ref(o, delta, tag)
Definition: astobj2.h:460
#define ao2_link(container, obj)
Add an object to a container.
Definition: astobj2.h:1532
@ CMP_MATCH
Definition: astobj2.h:1027
@ CMP_STOP
Definition: astobj2.h:1028
#define OBJ_KEY
Definition: astobj2.h:1151
@ AO2_ALLOC_OPT_LOCK_MUTEX
Definition: astobj2.h:363
#define ao2_callback(c, flags, cb_fn, arg)
ao2_callback() is a generic function that applies cb_fn() to all objects in a container,...
Definition: astobj2.h:1693
#define ao2_cleanup(obj)
Definition: astobj2.h:1934
#define ao2_find(container, arg, flags)
Definition: astobj2.h:1736
#define ao2_replace(dst, src)
Replace one object reference with another cleaning up the original.
Definition: astobj2.h:501
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition: astobj2.h:459
#define ao2_bump(obj)
Bump refcount on an AO2 object by one, returning the object.
Definition: astobj2.h:480
@ OBJ_NODATA
Definition: astobj2.h:1044
@ OBJ_MULTIPLE
Definition: astobj2.h:1049
@ OBJ_UNLINK
Definition: astobj2.h:1039
#define ao2_alloc(data_size, destructor_fn)
Definition: astobj2.h:409
void * __ao2_alloc(size_t data_size, ao2_destructor_fn destructor_fn, unsigned int options, const char *tag, const char *file, int line, const char *func) attribute_warn_unused_result
Definition: astobj2.c:768
#define ao2_container_alloc_hash(ao2_options, container_options, n_buckets, hash_fn, sort_fn, cmp_fn)
Allocate and initialize a hash container with the desired number of buckets.
Definition: astobj2.h:1303
static int tmp()
Definition: bt_open.c:389
static char language[MAX_LANGUAGE]
Definition: chan_iax2.c:324
static char accountcode[AST_MAX_ACCOUNT_CODE]
Definition: chan_iax2.c:473
static const char type[]
Definition: chan_ooh323.c:109
General Asterisk PBX channel definitions.
const char * ast_channel_name(const struct ast_channel *chan)
int(* ast_timing_func_t)(const void *data)
Definition: channel.h:919
#define AST_EXTENDED_FDS
Definition: channel.h:197
#define ast_channel_lock(chan)
Definition: channel.h:2968
struct ast_namedgroups * ast_ref_namedgroups(struct ast_namedgroups *groups)
Definition: channel.c:7760
unsigned long long ast_group_t
Definition: channel.h:215
ast_channel_error
Definition: channel.h:4841
@ AST_CHANNEL_ERROR_UNKNOWN
Definition: channel.h:4843
int ast_queue_frame(struct ast_channel *chan, struct ast_frame *f)
Queue one or more frames to a channel's frame queue.
Definition: channel.c:1158
ama_flags
Channel AMA Flags.
Definition: channel.h:1197
ast_channel_adsicpe
Definition: channel.h:888
#define AST_CHANNEL_INITIALIZERS_VERSION
struct ABI version
Definition: channel.h:620
#define AST_MAX_FDS
Definition: channel.h:196
#define ast_channel_unref(c)
Decrease channel reference count.
Definition: channel.h:3004
struct ast_party_id ast_party_id_merge(struct ast_party_id *base, struct ast_party_id *overlay)
Merge a given party id into another given party id.
Definition: channel.c:1921
#define AST_MAX_TENANT_ID
Definition: channel.h:149
#define AST_MAX_UNIQUEID
Definition: channel.h:170
#define AST_MAX_CONTEXT
Definition: channel.h:135
struct ast_namedgroups * ast_unref_namedgroups(struct ast_namedgroups *groups)
Definition: channel.c:7754
#define ast_channel_unlock(chan)
Definition: channel.h:2969
#define AST_MAX_EXTENSION
Definition: channel.h:134
Internal channel functions for channel.c to use.
void ast_channel_internal_set_stream_topology_change_source(struct ast_channel *chan, void *change_source)
void ast_channel_internal_alertpipe_swap(struct ast_channel *chan1, struct ast_channel *chan2)
Swap the interal alertpipe between two channels.
void ast_channel_exten_set(struct ast_channel *chan, const char *value)
static struct ast_threadstorage channel_errno
const char * ast_channel_linkedid(const struct ast_channel *chan)
struct ast_bridge * ast_channel_internal_bridge(const struct ast_channel *chan)
void * ast_channel_get_stream_topology_change_source(struct ast_channel *chan)
Retrieve the source that initiated the last stream topology change.
struct timeval ast_channel_answertime(struct ast_channel *chan)
static void channel_set_default_streams(struct ast_channel *chan)
void ast_channel_rings_set(struct ast_channel *chan, int value)
void ast_channel_internal_copy_linkedid(struct ast_channel *dest, struct ast_channel *source)
Copy the full linkedid channel id structure from one channel to another.
void ast_channel_named_pickupgroups_set(struct ast_channel *chan, struct ast_namedgroups *value)
struct ast_channel * ast_channel_masq(const struct ast_channel *chan)
int ast_channel_blocker_tid(const struct ast_channel *chan)
void ast_channel_stream_set(struct ast_channel *chan, struct ast_filestream *value)
void ast_channel_appl_set(struct ast_channel *chan, const char *value)
void ast_channel_dtmff_set(struct ast_channel *chan, struct ast_frame *value)
void ast_channel_visible_indication_set(struct ast_channel *chan, int value)
const char * ast_channel_blockproc(const struct ast_channel *chan)
void ast_channel_caller_set(struct ast_channel *chan, struct ast_party_caller *value)
void ast_channel_internal_set_stream_topology(struct ast_channel *chan, struct ast_stream_topology *topology)
struct ast_stream_topology * ast_channel_set_stream_topology(struct ast_channel *chan, struct ast_stream_topology *topology)
Set the topology of streams on a channel.
void ast_channel_set_unbridged_nolock(struct ast_channel *chan, int value)
Variant of ast_channel_set_unbridged. Use this if the channel is already locked prior to calling.
struct ast_namedgroups * ast_channel_named_pickupgroups(const struct ast_channel *chan)
void * ast_channel_tech_pvt(const struct ast_channel *chan)
void ast_channel_internal_set_fake_ids(struct ast_channel *chan, const char *uniqueid, const char *linkedid)
Set uniqueid and linkedid string value only (not time)
const char * ast_channel_data(const struct ast_channel *chan)
void ast_channel_dialed_set(struct ast_channel *chan, struct ast_party_dialed *value)
struct ast_party_id ast_channel_redirecting_effective_to(struct ast_channel *chan)
struct ast_control_pvt_cause_code * ast_channel_dialed_causes_find(const struct ast_channel *chan, const char *chan_name)
Retrieve a ref-counted cause code information structure.
struct ast_format * ast_channel_rawreadformat(struct ast_channel *chan)
struct ast_party_id ast_channel_redirecting_effective_from(struct ast_channel *chan)
void * ast_channel_music_state(const struct ast_channel *chan)
void ast_channel_blockproc_set(struct ast_channel *chan, const char *value)
unsigned int ast_channel_fin(const struct ast_channel *chan)
void ast_channel_callid_cleanup(struct ast_channel *chan)
void ast_channel_insmpl_set(struct ast_channel *chan, unsigned long value)
void ast_channel_set_oldwriteformat(struct ast_channel *chan, struct ast_format *format)
void ast_channel_softhangup_internal_flag_clear(struct ast_channel *chan, int value)
struct varshead * ast_channel_varshead(struct ast_channel *chan)
int ast_channel_rings(const struct ast_channel *chan)
void ast_channel_generator_set(struct ast_channel *chan, struct ast_generator *value)
void ast_channel_blocker_set(struct ast_channel *chan, pthread_t value)
void ast_channel_tenantid_set(struct ast_channel *chan, const char *value)
void ast_channel_sending_dtmf_digit_set(struct ast_channel *chan, char value)
void * ast_channel_timingdata(const struct ast_channel *chan)
#define DEFINE_STRINGFIELD_GETTER_FOR(field)
int ast_channel_internal_alert_readfd(struct ast_channel *chan)
const char * ast_channel_tenantid(const struct ast_channel *chan)
void ast_channel_dtmf_tv_set(struct ast_channel *chan, struct timeval *value)
int ast_channel_internal_is_finalized(struct ast_channel *chan)
struct ast_flags * ast_channel_snapshot_segment_flags(struct ast_channel *chan)
void ast_channel_internal_swap_endpoint_forward(struct ast_channel *a, struct ast_channel *b)
Swap endpoint_forward between two channels.
void ast_channel_nativeformats_set(struct ast_channel *chan, struct ast_format_cap *value)
int ast_channel_fdno(const struct ast_channel *chan)
void ast_channel_internal_fd_clear_all(struct ast_channel *chan)
void ast_channel_internal_bridge_channel_set(struct ast_channel *chan, struct ast_bridge_channel *value)
void ast_channel_internal_alertpipe_close(struct ast_channel *chan)
struct ast_channel * __ast_channel_internal_alloc_with_initializers(void(*destructor)(void *obj), const struct ast_assigned_ids *assignedids, const struct ast_channel *requestor, const struct ast_channel_initializers *initializers, const char *file, int line, const char *function)
struct stasis_topic * ast_channel_topic(struct ast_channel *chan)
A topic which publishes the events for a particular channel.
void ast_channel_answertime_set(struct ast_channel *chan, struct timeval *value)
void ast_channel_hold_state_set(struct ast_channel *chan, int value)
struct ast_trans_pvt * ast_channel_readtrans(const struct ast_channel *chan)
const char * ast_channel_lastexten(const struct ast_channel *chan)
struct ast_format_cap * ast_channel_nativeformats(const struct ast_channel *chan)
void ast_channel_data_set(struct ast_channel *chan, const char *value)
void ast_channel_blocker_tid_set(struct ast_channel *chan, int value)
struct timeval ast_channel_sending_dtmf_tv(const struct ast_channel *chan)
void ast_channel_jb_set(struct ast_channel *chan, struct ast_jb *value)
struct ast_party_redirecting * ast_channel_redirecting(struct ast_channel *chan)
enum ast_channel_error ast_channel_internal_errno(void)
void ast_channel_snapshot_set(struct ast_channel *chan, struct ast_channel_snapshot *snapshot)
struct ast_trans_pvt * ast_channel_writetrans(const struct ast_channel *chan)
static int uniqueint
The monotonically increasing integer counter for channel uniqueids.
unsigned short ast_channel_transfercapability(const struct ast_channel *chan)
struct ast_namedgroups * ast_channel_named_callgroups(const struct ast_channel *chan)
ast_group_t ast_channel_pickupgroup(const struct ast_channel *chan)
void ast_channel_vstreamid_set(struct ast_channel *chan, int value)
#define DEFINE_STRINGFIELD_SETTERS_FOR(field, assert_on_null)
void ast_channel_internal_swap_stream_topology(struct ast_channel *chan1, struct ast_channel *chan2)
void ast_channel_timingdata_set(struct ast_channel *chan, void *value)
struct ast_format * ast_channel_oldwriteformat(struct ast_channel *chan)
int ast_channel_internal_alert_readable(struct ast_channel *chan)
struct ast_cdr * ast_channel_cdr(const struct ast_channel *chan)
struct ast_flags * ast_channel_flags(struct ast_channel *chan)
void ast_channel_redirecting_set(struct ast_channel *chan, struct ast_party_redirecting *value)
int ast_channel_priority(const struct ast_channel *chan)
void ast_channel_writetrans_set(struct ast_channel *chan, struct ast_trans_pvt *value)
void ast_channel_streamid_set(struct ast_channel *chan, int value)
void ast_channel_callid_set(struct ast_channel *chan, ast_callid callid)
void ast_channel_generatordata_set(struct ast_channel *chan, void *value)
struct ast_party_connected_line * ast_channel_connected(struct ast_channel *chan)
struct ast_str * ast_channel_dialed_causes_channels(const struct ast_channel *chan)
Retrieve a comma-separated list of channels for which dialed cause information is available.
void ast_channel_softhangup_internal_flag_set(struct ast_channel *chan, int value)
ast_callid ast_channel_callid(const struct ast_channel *chan)
const char * ast_channel_uniqueid(const struct ast_channel *chan)
const char * ast_channel_context(const struct ast_channel *chan)
char ast_channel_dtmf_digit_to_emulate(const struct ast_channel *chan)
unsigned long ast_channel_insmpl(const struct ast_channel *chan)
int ast_channel_fd_add(struct ast_channel *chan, int value)
Add a file descriptor to the channel without a fixed position.
ast_alert_status_t ast_channel_internal_alert_flush(struct ast_channel *chan)
void ast_channel_timingfd_set(struct ast_channel *chan, int value)
pthread_t ast_channel_blocker(const struct ast_channel *chan)
void ast_channel_sending_dtmf_tv_set(struct ast_channel *chan, struct timeval value)
int ast_channel_is_t38_active_nolock(struct ast_channel *chan)
ast_channel_is_t38_active variant. Use this if the channel is already locked prior to calling.
void ast_channel_internal_swap_topics(struct ast_channel *a, struct ast_channel *b)
Swap topics beteween two channels.
const char * ast_channel_appl(const struct ast_channel *chan)
void ast_channel_internal_cleanup(struct ast_channel *chan)
int ast_channel_unbridged_nolock(struct ast_channel *chan)
ast_channel_unbridged variant. Use this if the channel is already locked prior to calling.
void ast_channel_framehooks_set(struct ast_channel *chan, struct ast_framehook_list *value)
struct timeval ast_channel_creationtime(struct ast_channel *chan)
struct ast_channel_snapshot * ast_channel_snapshot(const struct ast_channel *chan)
struct ast_bridge_channel * ast_channel_internal_bridge_channel(const struct ast_channel *chan)
struct ast_framehook_list * ast_channel_framehooks(const struct ast_channel *chan)
void ast_channel_audiohooks_set(struct ast_channel *chan, struct ast_audiohook_list *value)
int ast_channel_fd(const struct ast_channel *chan, int which)
void ast_channel_timer_set(struct ast_channel *chan, struct ast_timer *value)
void ast_channel_internal_fd_set(struct ast_channel *chan, int which, int value)
void ast_channel_fin_set(struct ast_channel *chan, unsigned int value)
void ast_channel_set_rawreadformat(struct ast_channel *chan, struct ast_format *format)
struct ast_audiohook_list * ast_channel_audiohooks(const struct ast_channel *chan)
void ast_channel_tech_pvt_set(struct ast_channel *chan, void *value)
enum ama_flags ast_channel_amaflags(const struct ast_channel *chan)
void ast_channel_readtrans_set(struct ast_channel *chan, struct ast_trans_pvt *value)
void ast_channel_callgroup_set(struct ast_channel *chan, ast_group_t value)
void ast_channel_internal_bridge_set(struct ast_channel *chan, struct ast_bridge *value)
void * ast_channel_generatordata(const struct ast_channel *chan)
struct ast_format * ast_channel_rawwriteformat(struct ast_channel *chan)
void ast_channel_set_is_t38_active_nolock(struct ast_channel *chan, int is_t38_active)
Variant of ast_channel_set_is_t38_active. Use this if the channel is already locked prior to calling.
unsigned int ast_channel_fout(const struct ast_channel *chan)
struct ast_stream_topology * ast_channel_get_stream_topology(const struct ast_channel *chan)
Retrieve the topology of streams on a channel.
void ast_channel_set_unbridged(struct ast_channel *chan, int value)
Sets the unbridged flag and queues a NULL frame on the channel to trigger a check by bridge_channel_w...
void ast_channel_outsmpl_set(struct ast_channel *chan, unsigned long value)
int ast_channel_hangupcause(const struct ast_channel *chan)
int ast_channel_timingfd(const struct ast_channel *chan)
void ast_channel_fdno_set(struct ast_channel *chan, int value)
void ast_channel_set_rawwriteformat(struct ast_channel *chan, struct ast_format *format)
struct ast_party_dialed * ast_channel_dialed(struct ast_channel *chan)
void ast_channel_creationtime_set(struct ast_channel *chan, struct timeval *value)
struct ast_tone_zone * ast_channel_zone(const struct ast_channel *chan)
struct ast_party_id ast_channel_redirecting_effective_orig(struct ast_channel *chan)
enum ast_channel_adsicpe ast_channel_adsicpe(const struct ast_channel *chan)
int ast_channel_dialed_causes_add(const struct ast_channel *chan, const struct ast_control_pvt_cause_code *cause_code, int datalen)
Add cause code information to the channel.
void ast_channel_named_callgroups_set(struct ast_channel *chan, struct ast_namedgroups *value)
int ast_channel_alert_write(struct ast_channel *chan)
struct ast_channel * __ast_channel_internal_alloc(void(*destructor)(void *obj), const struct ast_assigned_ids *assignedids, const struct ast_channel *requestor, const char *file, int line, const char *function)
const char * ast_channel_lastcontext(const struct ast_channel *chan)
int ast_channel_vstreamid(const struct ast_channel *chan)
struct ast_readq_list * ast_channel_readq(struct ast_channel *chan)
void ast_channel_set_is_t38_active(struct ast_channel *chan, int is_t38_active)
Sets the is_t38_active flag.
struct ast_jb * ast_channel_jb(struct ast_channel *chan)
ast_timing_func_t ast_channel_timingfunc(const struct ast_channel *chan)
static int collect_names_cb(void *obj, void *arg, int flags)
void ast_channel_set_readformat(struct ast_channel *chan, struct ast_format *format)
void ast_channel_dtmf_digit_to_emulate_set(struct ast_channel *chan, char value)
void ast_channel_softhangup_internal_flag_add(struct ast_channel *chan, int value)
struct timeval * ast_channel_whentohangup(struct ast_channel *chan)
struct ast_stream * ast_channel_get_default_stream(struct ast_channel *chan, enum ast_media_type type)
Retrieve the default stream of a specific media type on a channel.
struct ast_filestream * ast_channel_vstream(const struct ast_channel *chan)
ast_alert_status_t ast_channel_internal_alert_read(struct ast_channel *chan)
struct ast_format * ast_channel_writeformat(struct ast_channel *chan)
void ast_channel_internal_swap_uniqueid_and_linkedid(struct ast_channel *a, struct ast_channel *b)
Swap uniqueid and linkedid beteween two channels.
struct ast_generator * ast_channel_generator(const struct ast_channel *chan)
ast_group_t ast_channel_callgroup(const struct ast_channel *chan)
struct ast_party_id ast_channel_connected_effective_id(struct ast_channel *chan)
int ast_channel_unbridged(struct ast_channel *chan)
This function will check if the bridge needs to be re-evaluated due to external changes.
int ast_channel_hold_state(const struct ast_channel *chan)
void ast_channel_emulate_dtmf_duration_set(struct ast_channel *chan, unsigned int value)
void ast_channel_amaflags_set(struct ast_channel *chan, enum ama_flags value)
struct ast_party_connected_line * ast_channel_connected_indicated(struct ast_channel *chan)
void ast_channel_cdr_set(struct ast_channel *chan, struct ast_cdr *value)
void ast_channel_context_set(struct ast_channel *chan, const char *value)
int ast_channel_streamid(const struct ast_channel *chan)
void ast_channel_connected_set(struct ast_channel *chan, struct ast_party_connected_line *value)
void ast_channel_state_set(struct ast_channel *chan, enum ast_channel_state value)
int ast_channel_internal_setup_topics(struct ast_channel *chan)
void ast_channel_timingfunc_set(struct ast_channel *chan, ast_timing_func_t value)
struct ast_sched_context * ast_channel_sched(const struct ast_channel *chan)
int ast_channel_forward_endpoint(struct ast_channel *chan, struct ast_endpoint *endpoint)
Forward channel stasis messages to the given endpoint.
int ast_channel_fd_count(const struct ast_channel *chan)
Retrieve the number of file decriptor positions present on the channel.
static int pvt_cause_cmp_fn(void *obj, void *vstr, int flags)
Comparison function for pvt cause code frames.
struct ast_frame * ast_channel_dtmff(struct ast_channel *chan)
void ast_channel_internal_swap_snapshots(struct ast_channel *a, struct ast_channel *b)
Swap snapshots beteween two channels.
void ast_channel_music_state_set(struct ast_channel *chan, void *value)
unsigned int ast_channel_emulate_dtmf_duration(const struct ast_channel *chan)
struct ast_filestream * ast_channel_stream(const struct ast_channel *chan)
void ast_channel_internal_fd_clear(struct ast_channel *chan, int which)
struct ast_pbx * ast_channel_pbx(const struct ast_channel *chan)
void ast_channel_fout_set(struct ast_channel *chan, unsigned int value)
struct ast_autochan_list * ast_channel_autochans(struct ast_channel *chan)
const struct ast_channel_tech * ast_channel_tech(const struct ast_channel *chan)
void ast_channel_zone_set(struct ast_channel *chan, struct ast_tone_zone *value)
struct ast_channel * ast_channel_masqr(const struct ast_channel *chan)
int ast_channel_softhangup_internal_flag(struct ast_channel *chan)
enum ast_channel_state ast_channel_state(const struct ast_channel *chan)
struct timeval * ast_channel_dtmf_tv(struct ast_channel *chan)
struct ast_party_caller * ast_channel_caller(struct ast_channel *chan)
char ast_channel_sending_dtmf_digit(const struct ast_channel *chan)
int ast_channel_visible_indication(const struct ast_channel *chan)
struct ast_timer * ast_channel_timer(const struct ast_channel *chan)
struct ast_hangup_handler_list * ast_channel_hangup_handlers(struct ast_channel *chan)
void ast_channel_transfercapability_set(struct ast_channel *chan, unsigned short value)
unsigned long ast_channel_outsmpl(const struct ast_channel *chan)
void ast_channel_masqr_set(struct ast_channel *chan, struct ast_channel *value)
void ast_channel_internal_finalize(struct ast_channel *chan)
void ast_channel_internal_alertpipe_clear(struct ast_channel *chan)
void ast_channel_priority_set(struct ast_channel *chan, int value)
#define DIALED_CAUSES_BUCKETS
void ast_channel_hangupcause_set(struct ast_channel *chan, int value)
void ast_channel_internal_errno_set(enum ast_channel_error error)
void ast_channel_whentohangup_set(struct ast_channel *chan, struct timeval *value)
void ast_channel_pickupgroup_set(struct ast_channel *chan, ast_group_t value)
static int pvt_cause_hash_fn(const void *vpc, const int flags)
Hash function for pvt cause code frames.
int ast_channel_fd_isset(const struct ast_channel *chan, int which)
void ast_channel_adsicpe_set(struct ast_channel *chan, enum ast_channel_adsicpe value)
void ast_channel_dialed_causes_clear(const struct ast_channel *chan)
Clear all cause information from the channel.
#define DEFINE_STRINGFIELD_SETTERS_AND_INVALIDATE_FOR(field, publish, assert_on_null, invalidate)
int ast_channel_is_multistream(struct ast_channel *chan)
Determine if a channel is multi-stream capable.
int ast_channel_internal_alertpipe_init(struct ast_channel *chan)
void ast_channel_sched_set(struct ast_channel *chan, struct ast_sched_context *value)
void ast_channel_tech_set(struct ast_channel *chan, const struct ast_channel_tech *value)
const char * ast_channel_exten(const struct ast_channel *chan)
int ast_channel_is_t38_active(struct ast_channel *chan)
This function will check if T.38 is active on the channel.
struct ast_datastore_list * ast_channel_datastores(struct ast_channel *chan)
void ast_channel_masq_set(struct ast_channel *chan, struct ast_channel *value)
void ast_channel_varshead_set(struct ast_channel *chan, struct varshead *value)
void ast_channel_pbx_set(struct ast_channel *chan, struct ast_pbx *value)
struct ast_channel * ast_channel_internal_oldest_linkedid(struct ast_channel *a, struct ast_channel *b)
Determine which channel has an older linkedid.
void ast_channel_set_writeformat(struct ast_channel *chan, struct ast_format *format)
void ast_channel_vstream_set(struct ast_channel *chan, struct ast_filestream *value)
struct ast_format * ast_channel_readformat(struct ast_channel *chan)
int ast_channel_alert_writable(struct ast_channel *chan)
ast_channel_state
ast_channel states
Definition: channelstate.h:35
ast_media_type
Types of media.
Definition: codec.h:30
@ AST_MEDIA_TYPE_UNKNOWN
Definition: codec.h:31
@ AST_MEDIA_TYPE_END
Definition: codec.h:36
Endpoint abstractions.
const char * ast_format_cap_get_names(const struct ast_format_cap *cap, struct ast_str **buf)
Get the names of codecs of a set of formats.
Definition: format_cap.c:734
static const char name[]
Definition: format_mp3.c:68
#define SCOPE_EXIT_RTN(...)
#define SCOPE_EXIT_RTN_VALUE(__return_value,...)
#define SCOPE_ENTER(level,...)
struct stasis_topic * ast_channel_topic_all(void)
A topic which publishes the events for all channels.
struct stasis_topic * ast_endpoint_topic(struct ast_endpoint *endpoint)
Returns the topic for a specific endpoint.
void ast_channel_snapshot_invalidate_segment(struct ast_channel *chan, enum ast_channel_snapshot_segment_invalidation segment)
Invalidate a channel snapshot segment from being reused.
void ast_channel_publish_snapshot(struct ast_channel *chan)
Publish a ast_channel_snapshot for a channel.
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_PEER
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_CALLER
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_HANGUP
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_BRIDGE
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_BASE
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_CONNECTED
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_DIALPLAN
struct ast_frame ast_null_frame
Definition: main/frame.c:79
void ast_callid_strnprint(char *buffer, size_t buffer_size, ast_callid callid)
copy a string representation of the callid into a target string
Definition: logger.c:2288
#define ast_debug(level,...)
Log a DEBUG message.
#define AST_CALLID_BUFFER_LENGTH
unsigned int ast_callid
#define LOG_ERROR
Tone Indication Support.
int ast_atomic_fetchadd_int(volatile int *p, int v)
Atomically add v to *p and return the previous value of *p.
Definition: lock.h:757
Asterisk file paths, configured in asterisk.conf.
const char * ast_config_AST_SYSTEM_NAME
Definition: options.c:170
#define NULL
Definition: resample.c:96
struct stasis_forward * stasis_forward_cancel(struct stasis_forward *forward)
Definition: stasis.c:1549
struct stasis_topic * stasis_topic_create(const char *name)
Create a new topic.
Definition: stasis.c:618
struct stasis_forward * stasis_forward_all(struct stasis_topic *from_topic, struct stasis_topic *to_topic)
Create a subscription which forwards all messages from one topic to another.
Definition: stasis.c:1579
Endpoint abstractions.
Media Stream API.
struct ast_stream_topology * ast_stream_topology_alloc(void)
Create a stream topology.
Definition: stream.c:652
const char * ast_stream_topology_to_str(const struct ast_stream_topology *topology, struct ast_str **buf)
Get a string representing the topology for debugging/display purposes.
Definition: stream.c:939
void ast_stream_topology_free(struct ast_stream_topology *topology)
Unreference and destroy a stream topology.
Definition: stream.c:746
struct ast_stream_topology * ast_stream_topology_create_from_format_cap(struct ast_format_cap *cap)
A helper function that, given a format capabilities structure, creates a topology and separates the m...
Definition: stream.c:851
struct ast_stream * ast_stream_topology_get_first_stream_by_type(const struct ast_stream_topology *topology, enum ast_media_type type)
Gets the first active stream of a specific type from the topology.
Definition: stream.c:967
#define AST_DECLARE_STRING_FIELDS(field_list)
Declare the fields needed in a structure.
Definition: stringfields.h:341
#define AST_STRING_FIELD(name)
Declare a string field.
Definition: stringfields.h:303
#define ast_string_field_init(x, size)
Initialize a field pool and fields.
Definition: stringfields.h:359
#define ast_string_field_free_memory(x)
free all memory - to be called before destroying the object
Definition: stringfields.h:374
int ast_str_append(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Append to a thread local dynamic string.
Definition: strings.h:1139
#define S_OR(a, b)
returns the equivalent of logic or for strings: first one if not empty, otherwise second one.
Definition: strings.h:80
static force_inline int attribute_pure ast_str_hash(const char *str)
Compute a hash value on a string.
Definition: strings.h:1259
#define S_COR(a, b, c)
returns the equivalent of logic or for strings, with an additional boolean check: second one if not e...
Definition: strings.h:87
char * ast_tech_to_upper(char *dev_str)
Convert the tech portion of a device string to upper case.
Definition: strings.h:1236
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
#define ast_str_tmp(init_len, __expr)
Provides a temporary ast_str and returns a copy of its buffer.
Definition: strings.h:1189
#define ast_str_create(init_len)
Create a malloc'ed dynamic length string.
Definition: strings.h:659
size_t ast_str_strlen(const struct ast_str *buf)
Returns the current length of the string stored within buf.
Definition: strings.h:730
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
Definition: strings.h:425
Generic container type.
Structure to pass both assignedid values to channel drivers.
Definition: channel.h:606
const char * uniqueid
Definition: channel.h:607
Structure that contains information regarding a channel in a bridge.
struct ast_channel * chan
Structure that contains information about a bridge.
Definition: bridge.h:349
Responsible for call detail data.
Definition: cdr.h:279
Channel UniqueId structure.
char unique_id[AST_MAX_UNIQUEID]
char tenant_id[AST_MAX_TENANT_ID]
Helper struct for initializing additional channel information on channel creation.
Definition: channel.h:615
const char * tenantid
Definition: channel.h:626
uint32_t version
struct ABI version
Definition: channel.h:625
Structure representing a snapshot of channel state.
Structure to describe a channel "technology", ie a channel driver See for examples:
Definition: channel.h:648
int(*const write_stream)(struct ast_channel *chan, int stream_num, struct ast_frame *frame)
Write a frame on a specific stream, in standard format (see frame.h)
Definition: channel.h:773
struct ast_frame *(*const read_stream)(struct ast_channel *chan)
Read a frame (or chain of frames from the same stream), in standard format (see frame....
Definition: channel.h:767
Main Channel structure associated with a channel.
struct ast_filestream * stream
struct ast_cdr * cdr
struct ast_stream * default_streams[AST_MEDIA_TYPE_END]
struct ast_channel_id uniqueid
struct stasis_topic * topic
const ast_string_field language
const char * appl
const ast_string_field latest_musicclass
struct ast_bridge_channel * bridge_channel
struct ast_framehook_list * framehooks
const ast_string_field dialcontext
char lastexten[AST_MAX_EXTENSION]
struct timeval creationtime
struct ast_frame dtmff
char lastcontext[AST_MAX_CONTEXT]
const ast_string_field musicclass
struct ast_sched_context * sched
struct ast_channel_snapshot * snapshot
struct ast_datastore_list datastores
unsigned long outsmpl
struct ast_tone_zone * zone
struct ao2_container * dialed_causes
ast_timing_func_t timingfunc
const ast_string_field peeraccount
enum ast_channel_adsicpe adsicpe
struct ast_format * rawwriteformat
struct ast_generator * generator
struct ast_bridge * bridge
struct timeval sending_dtmf_tv
struct ast_party_connected_line connected
Channel Connected Line ID information.
const ast_string_field accountcode
struct ast_trans_pvt * writetrans
struct timeval whentohangup
const ast_string_field userfield
unsigned short transfercapability
unsigned int emulate_dtmf_duration
void * stream_topology_change_source
struct ast_channel::@331 fds
struct ast_readq_list readq
const ast_string_field call_forward
struct ast_format * rawreadformat
char exten[AST_MAX_EXTENSION]
struct timeval dtmf_tv
const ast_string_field parkinglot
struct ast_party_connected_line connected_indicated
Channel Connected Line ID information that was last indicated.
const char * data
struct ast_namedgroups * named_pickupgroups
struct stasis_forward * endpoint_forward
struct ast_flags snapshot_segment_flags
unsigned long insmpl
struct ast_trans_pvt * readtrans
struct ast_namedgroups * named_callgroups
struct ast_hangup_handler_list hangup_handlers
struct ast_timer * timer
struct varshead varshead
unsigned int fin
const struct ast_channel_tech * tech
struct ast_format * writeformat
struct ast_channel_id linkedid
enum ast_channel_state state
struct ast_party_redirecting redirecting
Redirecting/Diversion information.
struct ast_channel * masqr
ast_group_t pickupgroup
struct ast_party_dialed dialed
Dialed/Called information.
char context[AST_MAX_CONTEXT]
struct ast_jb jb
const ast_string_field name
struct ast_filestream * vstream
struct timeval answertime
struct ast_format * readformat
struct ast_audiohook_list * audiohooks
struct ast_format * oldwriteformat
struct stasis_forward * channel_forward
struct ast_channel * masq
struct ast_format_cap * nativeformats
const char * blockproc
struct ast_pbx * pbx
struct ast_flags flags
const ast_string_field hangupsource
ast_group_t callgroup
unsigned int fout
struct ast_autochan_list autochans
struct ast_stream_topology * stream_topology
unsigned int finalized
struct ast_party_caller caller
Channel Caller ID information.
char chan_name[AST_CHANNEL_NAME]
This structure is allocated by file.c in one chunk, together with buf_size and desc_size bytes of mem...
Definition: mod_format.h:101
Structure used to handle boolean flags.
Definition: utils.h:199
unsigned int flags
Definition: utils.h:200
Format capabilities structure, holds formats + preference order + etc.
Definition: format_cap.c:54
Definition of a media format.
Definition: format.c:43
Data structure associated with a single frame of data.
General jitterbuffer state.
Definition: abstract_jb.h:141
Caller Party information.
Definition: channel.h:420
Connected Line/Party information.
Definition: channel.h:458
Dialed/Called Party information.
Definition: channel.h:380
Information needed to identify an endpoint in a call.
Definition: channel.h:340
Redirecting Line information. RDNIS (Redirecting Directory Number Information Service) Where a call d...
Definition: channel.h:524
Definition: pbx.h:214
Support for dynamic strings.
Definition: strings.h:623
A set of tones for a given locale.
Definition: indications.h:74
Default structure for translators, with the basic fields and buffers, all allocated as part of the sa...
Definition: translate.h:213
List of channel drivers.
Definition: app_dial.c:797
Forwarding information.
Definition: stasis.c:1532
int value
Definition: syslog.c:37
Test Framework API.
#define ast_test_suite_event_notify(s, f,...)
Definition: test.h:189
static struct test_val b
static struct test_val a
void * ast_threadstorage_get(struct ast_threadstorage *ts, size_t init_size)
Retrieve thread storage.
#define AST_THREADSTORAGE(name)
Define a thread storage variable.
Definition: threadstorage.h:86
int error(const char *format,...)
Definition: utils/frame.c:999
#define ast_assert(a)
Definition: utils.h:739
#define ast_set_flag(p, flag)
Definition: utils.h:70
#define AST_FLAGS_ALL
Definition: utils.h:196
Vector container support.
#define AST_VECTOR_REPLACE(vec, idx, elem)
Replace an element at a specific position in a vector, growing the vector if needed.
Definition: vector.h:284
#define AST_VECTOR_RESET(vec, cleanup)
Reset vector.
Definition: vector.h:625
#define AST_VECTOR_ELEM_CLEANUP_NOOP(elem)
Vector element cleanup that does nothing.
Definition: vector.h:571
#define AST_VECTOR_SIZE(vec)
Get the number of elements in a vector.
Definition: vector.h:609
#define AST_VECTOR_FREE(vec)
Deallocates this vector.
Definition: vector.h:174
#define AST_VECTOR_INIT(vec, size)
Initialize a vector.
Definition: vector.h:113
#define AST_VECTOR(name, type)
Define a vector structure.
Definition: vector.h:44
#define AST_VECTOR_GET(vec, idx)
Get an element from a vector.
Definition: vector.h:680