46#define ASTMM_LIBC ASTMM_IGNORE
59#include <sys/resource.h>
65#if !defined(SOLARIS) && !defined(__CYGWIN__)
75static void ast_log(
int level,
const char *
file,
int line,
const char *function,
const char *fmt, ...) __attribute__((format(printf, 5, 6)));
76void ast_verbose(const
char *fmt, ...) __attribute__((format(printf, 1, 2)));
78#define AST_API_MODULE 1
93#define EVENTLOG "event_log"
94#define QUEUELOG "queue_log"
100#define VERBOSE_PREFIX_1 " "
101#define VERBOSE_PREFIX_2 " == "
102#define VERBOSE_PREFIX_3 " -- "
103#define VERBOSE_PREFIX_4 " > "
107void ast_queue_log(
const char *queuename,
const char *callid,
const char *agent,
const char *
event,
const char *fmt, ...)
108 __attribute__((format(printf, 5, 6)));
115#define _A_ __FILE__, __LINE__, __PRETTY_FUNCTION__
121#define LOG_DEBUG __LOG_DEBUG, _A_
127#define LOG_EVENT __LOG_EVENT, _A_
132#define __LOG_NOTICE 2
133#define LOG_NOTICE __LOG_NOTICE, _A_
138#define __LOG_WARNING 3
139#define LOG_WARNING __LOG_WARNING, _A_
145#define LOG_ERROR __LOG_ERROR, _A_
150#define __LOG_VERBOSE 5
151#define LOG_VERBOSE __LOG_VERBOSE, _A_
157#define LOG_DTMF __LOG_DTMF, _A_
160#define _ASTERISK_LOCK_H
162#ifndef HAVE_MTX_PROFILE
163#define __MTX_PROF(a) return pthread_mutex_lock((a))
167#define __MTX_PROF(a) do { \
170 ast_mark(mtx_prof, 1); \
171 i = pthread_mutex_trylock((a)); \
172 ast_mark(mtx_prof, 0); \
176 return pthread_mutex_lock((a)); \
180#define AST_PTHREADT_NULL (pthread_t) -1
181#define AST_PTHREADT_STOP (pthread_t) -2
183#if defined(SOLARIS) || defined(BSD)
184#define AST_MUTEX_INIT_W_CONSTRUCTORS
189#if defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP) && defined(PTHREAD_MUTEX_RECURSIVE_NP)
190#define PTHREAD_MUTEX_INIT_VALUE PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
191#define AST_MUTEX_KIND PTHREAD_MUTEX_RECURSIVE_NP
193#define PTHREAD_MUTEX_INIT_VALUE PTHREAD_MUTEX_INITIALIZER
194#define AST_MUTEX_KIND PTHREAD_MUTEX_RECURSIVE
199#define log_mutex_error(canlog, ...) do { if (canlog) ast_log(LOG_ERROR, __VA_ARGS__); else fprintf(stderr, __VA_ARGS__); } while (0)
202#define DO_THREAD_CRASH do { *((int *)(0)) = 1; } while(0)
204#define DO_THREAD_CRASH do { } while (0)
207#define AST_MUTEX_INIT_VALUE { PTHREAD_MUTEX_INIT_VALUE, { NULL }, { 0 }, 0, { NULL }, { 0 } }
209#define AST_MAX_REENTRANCY 10
214 unsigned int track:1;
228static void __attribute__((constructor)) init_empty_mutex(
void)
230 memset(&empty_mutex, 0,
sizeof(empty_mutex));
233static inline int __ast_pthread_mutex_init_attr(
const char *filename,
int lineno,
const char *func,
235 pthread_mutexattr_t *attr)
237#ifdef AST_MUTEX_INIT_W_CONSTRUCTORS
238 int canlog = strcmp(filename,
"logger.c");
241 if ((t->
mutex) != (empty_mutex)) {
242 log_mutex_error(canlog,
"%s line %d (%s): Error: mutex '%s' is already initialized.\n",
243 filename, lineno, func, mutex_name);
244 log_mutex_error(canlog,
"%s line %d (%s): Error: previously initialization of mutex '%s'.\n",
245 t->file[0], t->lineno[0], t->func[0], mutex_name);
252 t->file[0] = filename;
253 t->lineno[0] = lineno;
264 static pthread_mutexattr_t attr;
266 pthread_mutexattr_init(&attr);
269 return __ast_pthread_mutex_init_attr(filename, lineno, func, mutex_name, t, &attr);
271#define ast_mutex_init(pmutex) __ast_pthread_mutex_init(__FILE__, __LINE__, __PRETTY_FUNCTION__, #pmutex, pmutex)
277 int canlog = strcmp(filename,
"logger.c");
279#ifdef AST_MUTEX_INIT_W_CONSTRUCTORS
281 log_mutex_error(canlog,
"%s line %d (%s): Error: mutex '%s' is uninitialized.\n",
282 filename, lineno, func, mutex_name);
292 log_mutex_error(canlog,
"%s line %d (%s): Error: attempt to destroy invalid mutex '%s'.\n",
293 filename, lineno, func, mutex_name);
296 log_mutex_error(canlog,
"%s line %d (%s): Error: attempt to destroy locked mutex '%s'.\n",
297 filename, lineno, func, mutex_name);
298 log_mutex_error(canlog,
"%s line %d (%s): Error: '%s' was locked here.\n",
299 t->file[t->reentrancy-1], t->lineno[t->reentrancy-1], t->func[t->reentrancy-1], mutex_name);
304 log_mutex_error(canlog,
"%s line %d (%s): Error destroying mutex: %s\n",
305 filename, lineno, func, strerror(res));
306#ifndef PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
310 t->file[0] = filename;
311 t->lineno[0] = lineno;
321 int canlog = strcmp(filename,
"logger.c");
323#if defined(AST_MUTEX_INIT_W_CONSTRUCTORS)
325 log_mutex_error(canlog,
"%s line %d (%s): Error: mutex '%s' is uninitialized.\n",
326 filename, lineno, func, mutex_name);
331#ifdef DETECT_DEADLOCKS
333 time_t seconds = time(
NULL);
336#ifdef HAVE_MTX_PROFILE
340#ifdef HAVE_MTX_PROFILE
346 log_mutex_error(canlog,
"%s line %d (%s): Deadlock? waited %d sec for mutex '%s'?\n",
347 filename, lineno, func, (
int)(
current - seconds), mutex_name);
348 log_mutex_error(canlog,
"%s line %d (%s): '%s' was locked here.\n",
349 t->file[t->reentrancy-1], t->lineno[t->reentrancy-1],
350 t->func[t->reentrancy-1], mutex_name);
354 }
while (res == EBUSY);
357#ifdef HAVE_MTX_PROFILE
368 t->file[t->reentrancy] = filename;
369 t->lineno[t->reentrancy] = lineno;
370 t->func[t->reentrancy] = func;
371 t->thread[t->reentrancy] = pthread_self();
374 log_mutex_error(canlog,
"%s line %d (%s): '%s' really deep reentrancy!\n",
375 filename, lineno, func, mutex_name);
378 log_mutex_error(canlog,
"%s line %d (%s): Error obtaining mutex: %s\n",
379 filename, lineno, func, strerror(
errno));
390 int canlog = strcmp(filename,
"logger.c");
392#if defined(AST_MUTEX_INIT_W_CONSTRUCTORS)
394 log_mutex_error(canlog,
"%s line %d (%s): Error: mutex '%s' is uninitialized.\n",
395 filename, lineno, func, mutex_name);
402 t->file[t->reentrancy] = filename;
403 t->lineno[t->reentrancy] = lineno;
404 t->func[t->reentrancy] = func;
405 t->thread[t->reentrancy] = pthread_self();
408 log_mutex_error(canlog,
"%s line %d (%s): '%s' really deep reentrancy!\n",
409 filename, lineno, func, mutex_name);
412 log_mutex_error(canlog,
"%s line %d (%s): Warning: '%s' was locked here.\n",
413 t->file[t->reentrancy-1], t->lineno[t->reentrancy-1], t->func[t->reentrancy-1], mutex_name);
423 int canlog = strcmp(filename,
"logger.c");
425#ifdef AST_MUTEX_INIT_W_CONSTRUCTORS
427 log_mutex_error(canlog,
"%s line %d (%s): Error: mutex '%s' is uninitialized.\n",
428 filename, lineno, func, mutex_name);
432 if (t->reentrancy && (t->thread[t->reentrancy-1] != pthread_self())) {
433 log_mutex_error(canlog,
"%s line %d (%s): attempted unlock mutex '%s' without owning it!\n",
434 filename, lineno, func, mutex_name);
435 log_mutex_error(canlog,
"%s line %d (%s): '%s' was locked here.\n",
436 t->file[t->reentrancy-1], t->lineno[t->reentrancy-1], t->func[t->reentrancy-1], mutex_name);
440 if (--t->reentrancy < 0) {
441 log_mutex_error(canlog,
"%s line %d (%s): mutex '%s' freed more times than we've locked!\n",
442 filename, lineno, func, mutex_name);
447 t->file[t->reentrancy] =
NULL;
448 t->lineno[t->reentrancy] = 0;
449 t->func[t->reentrancy] =
NULL;
450 t->thread[t->reentrancy] = 0;
454 log_mutex_error(canlog,
"%s line %d (%s): Error releasing mutex: %s\n",
455 filename, lineno, func, strerror(res));
467#define AST_MUTEX_INIT_VALUE ((ast_mutex_t) PTHREAD_MUTEX_INIT_VALUE)
471 pthread_mutexattr_t attr;
473 pthread_mutexattr_init(&attr);
479#define ast_pthread_mutex_init(pmutex,a) pthread_mutex_init(pmutex,a)
485#if defined(AST_MUTEX_INIT_W_CONSTRUCTORS)
488#define __AST_MUTEX_DEFINE(scope, mutex) \
489 scope ast_mutex_t mutex = AST_MUTEX_INIT_VALUE; \
490static void __attribute__((constructor)) init_##mutex(void) \
492 ast_mutex_init(&mutex); \
496#define __AST_MUTEX_DEFINE(scope, mutex) \
497 scope ast_mutex_t mutex = AST_MUTEX_INIT_VALUE
500#define pthread_mutex_t use_ast_mutex_t_instead_of_pthread_mutex_t
501#define pthread_mutex_init use_ast_mutex_init_instead_of_pthread_mutex_init
502#define pthread_cond_t use_ast_cond_t_instead_of_pthread_cond_t
504#define AST_MUTEX_DEFINE_STATIC(mutex) __AST_MUTEX_DEFINE(static, mutex)
506#define AST_MUTEX_INITIALIZER __use_AST_MUTEX_DEFINE_STATIC_rather_than_AST_MUTEX_INITIALIZER__
508#define gethostbyname __gethostbyname__is__not__reentrant__use__ast_gethostbyname__instead__
511#define pthread_create __use_ast_pthread_create_instead__
518 pthread_rwlockattr_t attr;
520 pthread_rwlockattr_init(&attr);
522#ifdef HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP
523 pthread_rwlockattr_setkind_np(&attr, PTHREAD_RWLOCK_PREFER_WRITER_NP);
526 return pthread_rwlock_init(prwlock, &attr);
531 return pthread_rwlock_destroy(prwlock);
536 return pthread_rwlock_unlock(prwlock);
541 return pthread_rwlock_rdlock(prwlock);
546 return pthread_rwlock_wrlock(prwlock);
551#ifndef HAVE_PTHREAD_RWLOCK_INITIALIZER
552#define __AST_RWLOCK_DEFINE(scope, rwlock) \
553 scope ast_rwlock_t rwlock; \
554static void __attribute__((constructor)) init_##rwlock(void) \
556 ast_rwlock_init(&rwlock); \
558static void __attribute__((destructor)) fini_##rwlock(void) \
560 ast_rwlock_destroy(&rwlock); \
563#define AST_RWLOCK_INIT_VALUE PTHREAD_RWLOCK_INITIALIZER
564#define __AST_RWLOCK_DEFINE(scope, rwlock) \
565 scope ast_rwlock_t rwlock = AST_RWLOCK_INIT_VALUE
568#define AST_RWLOCK_DEFINE_STATIC(rwlock) __AST_RWLOCK_DEFINE(static, rwlock)
580#if defined(HAVE_OSX_ATOMICS)
581#include "libkern/OSAtomic.h"
589#if defined(HAVE_GCC_ATOMICS)
592 return __sync_fetch_and_add(p, v);
594#elif defined(HAVE_OSX_ATOMICS) && (
SIZEOF_INT == 4)
597 return OSAtomicAdd32(v, (
int32_t *) p);
599#elif defined(HAVE_OSX_ATOMICS) && (
SIZEOF_INT == 8)
602 return OSAtomicAdd64(v, (int64_t *) p);
603#elif defined (__i386__) || defined(__x86_64__)
607 " lock xaddl %0, %1 ; "
614static int ast_atomic_fetchadd_int_slow(
volatile int *p,
int v)
623 return ast_atomic_fetchadd_int_slow(p, v);
633 return __sync_sub_and_fetch(p, 1) == 0;
635#elif defined(HAVE_OSX_ATOMICS) && (
SIZEOF_INT == 4)
638 return OSAtomicAdd32( -1, (
int32_t *) p) == 0;
640#elif defined(HAVE_OSX_ATOMICS) && (
SIZEOF_INT == 8)
643 return OSAtomicAdd64( -1, (int64_t *) p) == 0;
652#ifdef DEBUG_CHANNEL_LOCKS
677#define ast_test_flag(p,flag) ({ \
678 typeof ((p)->flags) __p = (p)->flags; \
679 unsigned int __x = 0; \
680 (void) (&__p == &__x); \
681 ((p)->flags & (flag)); \
684#define ast_set2_flag(p,value,flag) do { \
685 typeof ((p)->flags) __p = (p)->flags; \
686 unsigned int __x = 0; \
687 (void) (&__p == &__x); \
689 (p)->flags |= (flag); \
691 (p)->flags &= ~(flag); \
696#define MAX_NESTED_COMMENTS 128
697#define COMMENT_START ";--"
698#define COMMENT_END "--;"
699#define COMMENT_META ';'
700#define COMMENT_TAG '-'
740 int siz = strlen(
str);
767 int siz = strlen(
str);
796 .sa_flags = SA_RESTART,
832#ifdef HAVE_WORKING_FORK
838#if defined(HAVE_WORKING_FORK) || defined(HAVE_WORKING_VFORK)
841#ifdef HAVE_WORKING_FORK
848#ifdef HAVE_WORKING_FORK
850 for (x = STDERR_FILENO + 1; x < 4096; x++)
853 execl(
"/bin/sh",
"/bin/sh",
"-c", s, (
char *)
NULL);
855 }
else if (pid > 0) {
857 res = waitpid(pid, &
status, 0);
861 }
else if (
errno != EINTR)
880 strcpy(x->
cmt, buffer);
895#define MAX_INCLUDE_LEVEL 10
936typedef int realtime_update(
const char *database,
const char *
table,
const char *keyfield,
const char *entity, va_list ap);
954 return (!s || (*s ==
'\0'));
957#define S_OR(a, b) (!ast_strlen_zero(a) ? (a) : (b))
962 while (*src && size) {
966 if (__builtin_expect(!size, 0))
992 work += strlen(work) - 1;
999 while ((work >=
str) && *work < 33)
1058 int name_len = strlen(
name) + 1;
1059 size_t value_len = strlen(
value) + 1;
1060 size_t filename_len = strlen(filename) + 1;
1062 if ((variable =
ast_calloc(1, name_len + value_len + filename_len +
sizeof(*variable)))) {
1064 variable->
value = variable->
stuff + name_len;
1065 variable->
file = variable->
value + value_len;
1087 ast_log(
LOG_WARNING,
"'%s', line %d: Same File included more than once! This data will be saved in %s if saved back to disk.\n", from_file, from_lineno, real_included_file_name);
1089 *real_included_file_name = 0;
1099 inc->
exec = is_exec;
1105 conf->includes = inc;
1116 int from_len = strlen(from_file);
1117 int to_len = strlen(to_file);
1119 if (strcmp(from_file, to_file) == 0)
1131 for (incl =
conf->includes; incl; incl=incl->
next) {
1133 if (from_len >= to_len)
1141 for (cat =
conf->root; cat; cat = cat->
next) {
1142 if (strcmp(cat->
file,from_file) == 0) {
1143 if (from_len >= to_len)
1144 strcpy(cat->
file, to_file);
1150 for (v = cat->
root; v; v = v->
next) {
1151 if (strcmp(v->
file,from_file) == 0) {
1152 if (from_len >= to_len)
1153 strcpy(v->
file, to_file);
1184 category->
root = variable;
1185 category->
last = variable;
1197 for (cat =
config->root; cat; cat = cat->
next) {
1202 for (cat =
config->root; cat; cat = cat->
next) {
1219 if (category &&
config->last_browse && (
config->last_browse->name == category))
1220 cat =
config->last_browse;
1233 if (!strcasecmp(variable, v->
name))
1239 for (cat =
config->root; cat; cat = cat->
next)
1240 for (v = cat->
root; v; v = v->
next)
1241 if (!strcasecmp(variable, v->
name))
1253 new->lineno = old->
lineno;
1254 new->object = old->
object;
1277 for (incl=incls; incl; incl = inclnext) {
1278 inclnext = incl->
next;
1358#define AST_CACHE_DIR_LEN 512
1359#define AST_FILENAME_MAX 80
1362#define AST_DEFAULT_OPTIONS AST_OPT_FLAG_TRANSCODE_VIA_SLIN
1366#define ast_opt_exec_includes ast_test_flag(&ast_options, AST_OPT_FLAG_EXEC_INCLUDES)
1367#define ast_opt_no_fork ast_test_flag(&ast_options, AST_OPT_FLAG_NO_FORK)
1368#define ast_opt_quiet ast_test_flag(&ast_options, AST_OPT_FLAG_QUIET)
1369#define ast_opt_console ast_test_flag(&ast_options, AST_OPT_FLAG_CONSOLE)
1370#define ast_opt_high_priority ast_test_flag(&ast_options, AST_OPT_FLAG_HIGH_PRIORITY)
1371#define ast_opt_init_keys ast_test_flag(&ast_options, AST_OPT_FLAG_INIT_KEYS)
1372#define ast_opt_remote ast_test_flag(&ast_options, AST_OPT_FLAG_REMOTE)
1373#define ast_opt_exec ast_test_flag(&ast_options, AST_OPT_FLAG_EXEC)
1374#define ast_opt_no_color ast_test_flag(&ast_options, AST_OPT_FLAG_NO_COLOR)
1375#define ast_fully_booted ast_test_flag(&ast_options, AST_OPT_FLAG_FULLY_BOOTED)
1376#define ast_opt_transcode_via_slin ast_test_flag(&ast_options, AST_OPT_FLAG_TRANSCODE_VIA_SLIN)
1377#define ast_opt_priority_jumping ast_test_flag(&ast_options, AST_OPT_FLAG_PRIORITY_JUMPING)
1378#define ast_opt_dump_core ast_test_flag(&ast_options, AST_OPT_FLAG_DUMP_CORE)
1379#define ast_opt_cache_record_files ast_test_flag(&ast_options, AST_OPT_FLAG_CACHE_RECORD_FILES)
1380#define ast_opt_timestamp ast_test_flag(&ast_options, AST_OPT_FLAG_TIMESTAMP)
1381#define ast_opt_override_config ast_test_flag(&ast_options, AST_OPT_FLAG_OVERRIDE_CONFIG)
1382#define ast_opt_reconnect ast_test_flag(&ast_options, AST_OPT_FLAG_RECONNECT)
1383#define ast_opt_transmit_silence ast_test_flag(&ast_options, AST_OPT_FLAG_TRANSMIT_SILENCE)
1384#define ast_opt_dont_warn ast_test_flag(&ast_options, AST_OPT_FLAG_DONT_WARN)
1385#define ast_opt_always_fork ast_test_flag(&ast_options, AST_OPT_FLAG_ALWAYS_FORK)
1386#define ast_opt_mute ast_test_flag(&ast_options, AST_OPT_FLAG_MUTE)
1413#define AST_RWLIST_WRLOCK(head) \
1414 ast_rwlock_wrlock(&(head)->lock)
1424#define AST_RWLIST_RDLOCK(head) \
1425 ast_rwlock_rdlock(&(head)->lock)
1435#define AST_RWLIST_UNLOCK(head) \
1436 ast_rwlock_unlock(&(head)->lock)
1457#define AST_LIST_HEAD(name, type) \
1459 struct type *first; \
1460 struct type *last; \
1483#define AST_RWLIST_HEAD(name, type) \
1485 struct type *first; \
1486 struct type *last; \
1487 ast_rwlock_t lock; \
1509#define AST_LIST_HEAD_NOLOCK(name, type) \
1511 struct type *first; \
1512 struct type *last; \
1518#define AST_LIST_HEAD_INIT_VALUE { \
1521 .lock = AST_MUTEX_INIT_VALUE, \
1527#define AST_RWLIST_HEAD_INIT_VALUE { \
1530 .lock = AST_RWLOCK_INIT_VALUE, \
1536#define AST_LIST_HEAD_NOLOCK_INIT_VALUE { \
1558#if defined(AST_MUTEX_INIT_W_CONSTRUCTORS)
1559#define AST_LIST_HEAD_STATIC(name, type) \
1561 struct type *first; \
1562 struct type *last; \
1565static void __attribute__((constructor)) init_##name(void) \
1567 AST_LIST_HEAD_INIT(&name); \
1569static void __attribute__((destructor)) fini_##name(void) \
1571 AST_LIST_HEAD_DESTROY(&name); \
1573struct __dummy_##name
1575#define AST_LIST_HEAD_STATIC(name, type) \
1577 struct type *first; \
1578 struct type *last; \
1580} name = AST_LIST_HEAD_INIT_VALUE
1600#ifndef AST_RWLOCK_INIT_VALUE
1601#define AST_RWLIST_HEAD_STATIC(name, type) \
1603 struct type *first; \
1604 struct type *last; \
1605 ast_rwlock_t lock; \
1607static void __attribute__((constructor)) init_##name(void) \
1609 AST_RWLIST_HEAD_INIT(&name); \
1611static void __attribute__((destructor)) fini_##name(void) \
1613 AST_RWLIST_HEAD_DESTROY(&name); \
1615struct __dummy_##name
1617#define AST_RWLIST_HEAD_STATIC(name, type) \
1619 struct type *first; \
1620 struct type *last; \
1621 ast_rwlock_t lock; \
1622} name = AST_RWLIST_HEAD_INIT_VALUE
1630#define AST_LIST_HEAD_NOLOCK_STATIC(name, type) \
1632 struct type *first; \
1633 struct type *last; \
1634} name = AST_LIST_HEAD_NOLOCK_INIT_VALUE
1644#define AST_LIST_HEAD_SET(head, entry) do { \
1645 (head)->first = (entry); \
1646 (head)->last = (entry); \
1647 ast_mutex_init(&(head)->lock); \
1658#define AST_RWLIST_HEAD_SET(head, entry) do { \
1659 (head)->first = (entry); \
1660 (head)->last = (entry); \
1661 ast_rwlock_init(&(head)->lock); \
1672#define AST_LIST_HEAD_SET_NOLOCK(head, entry) do { \
1673 (head)->first = (entry); \
1674 (head)->last = (entry); \
1694#define AST_LIST_ENTRY(type) \
1696 struct type *next; \
1699#define AST_RWLIST_ENTRY AST_LIST_ENTRY
1705#define AST_LIST_FIRST(head) ((head)->first)
1707#define AST_RWLIST_FIRST AST_LIST_FIRST
1713#define AST_LIST_LAST(head) ((head)->last)
1715#define AST_RWLIST_LAST AST_LIST_LAST
1723#define AST_LIST_NEXT(elm, field) ((elm)->field.next)
1725#define AST_RWLIST_NEXT AST_LIST_NEXT
1733#define AST_LIST_EMPTY(head) (AST_LIST_FIRST(head) == NULL)
1735#define AST_RWLIST_EMPTY AST_LIST_EMPTY
1773#define AST_LIST_TRAVERSE(head,var,field) \
1774 for((var) = (head)->first; (var); (var) = (var)->field.next)
1776#define AST_RWLIST_TRAVERSE AST_LIST_TRAVERSE
1811#define AST_LIST_TRAVERSE_SAFE_BEGIN(head, var, field) { \
1812 typeof((head)->first) __list_next; \
1813 typeof((head)->first) __list_prev = NULL; \
1814 typeof((head)->first) __new_prev = NULL; \
1815 for ((var) = (head)->first, __new_prev = (var), \
1816 __list_next = (var) ? (var)->field.next : NULL; \
1818 __list_prev = __new_prev, (var) = __list_next, \
1819 __new_prev = (var), \
1820 __list_next = (var) ? (var)->field.next : NULL \
1823#define AST_RWLIST_TRAVERSE_SAFE_BEGIN AST_LIST_TRAVERSE_SAFE_BEGIN
1836#define AST_LIST_REMOVE_CURRENT(head, field) \
1837 __new_prev->field.next = NULL; \
1838 __new_prev = __list_prev; \
1840 __list_prev->field.next = __list_next; \
1842 (head)->first = __list_next; \
1844 (head)->last = __list_prev;
1846#define AST_RWLIST_REMOVE_CURRENT AST_LIST_REMOVE_CURRENT
1858#define AST_LIST_INSERT_BEFORE_CURRENT(head, elm, field) do { \
1859 if (__list_prev) { \
1860 (elm)->field.next = __list_prev->field.next; \
1861 __list_prev->field.next = elm; \
1863 (elm)->field.next = (head)->first; \
1864 (head)->first = (elm); \
1866 __new_prev = (elm); \
1869#define AST_RWLIST_INSERT_BEFORE_CURRENT AST_LIST_INSERT_BEFORE_CURRENT
1874#define AST_LIST_TRAVERSE_SAFE_END }
1876#define AST_RWLIST_TRAVERSE_SAFE_END AST_LIST_TRAVERSE_SAFE_END
1885#define AST_LIST_HEAD_INIT(head) { \
1886 (head)->first = NULL; \
1887 (head)->last = NULL; \
1888 ast_mutex_init(&(head)->lock); \
1898#define AST_RWLIST_HEAD_INIT(head) { \
1899 (head)->first = NULL; \
1900 (head)->last = NULL; \
1901 ast_rwlock_init(&(head)->lock); \
1912#define AST_RWLIST_HEAD_DESTROY(head) { \
1913 (head)->first = NULL; \
1914 (head)->last = NULL; \
1915 ast_rwlock_destroy(&(head)->lock); \
1926#define AST_LIST_HEAD_INIT_NOLOCK(head) { \
1927 (head)->first = NULL; \
1928 (head)->last = NULL; \
1940#define AST_LIST_INSERT_AFTER(head, listelm, elm, field) do { \
1941 (elm)->field.next = (listelm)->field.next; \
1942 (listelm)->field.next = (elm); \
1943 if ((head)->last == (listelm)) \
1944 (head)->last = (elm); \
1947#define AST_RWLIST_INSERT_AFTER AST_LIST_INSERT_AFTER
1956#define AST_LIST_INSERT_HEAD(head, elm, field) do { \
1957 (elm)->field.next = (head)->first; \
1958 (head)->first = (elm); \
1959 if (!(head)->last) \
1960 (head)->last = (elm); \
1963#define AST_RWLIST_INSERT_HEAD AST_LIST_INSERT_HEAD
1976#define AST_LIST_INSERT_TAIL(head, elm, field) do { \
1977 if (!(head)->first) { \
1978 (head)->first = (elm); \
1979 (head)->last = (elm); \
1981 (head)->last->field.next = (elm); \
1982 (head)->last = (elm); \
1986#define AST_RWLIST_INSERT_TAIL AST_LIST_INSERT_TAIL
1995#define AST_LIST_APPEND_LIST(head, list, field) do { \
1996 if (!(head)->first) { \
1997 (head)->first = (list)->first; \
1998 (head)->last = (list)->last; \
2000 (head)->last->field.next = (list)->first; \
2001 (head)->last = (list)->last; \
2005#define AST_RWLIST_APPEND_LIST AST_LIST_APPEND_LIST
2016#define AST_LIST_REMOVE_HEAD(head, field) ({ \
2017 typeof((head)->first) cur = (head)->first; \
2019 (head)->first = cur->field.next; \
2020 cur->field.next = NULL; \
2021 if ((head)->last == cur) \
2022 (head)->last = NULL; \
2027#define AST_RWLIST_REMOVE_HEAD AST_LIST_REMOVE_HEAD
2037#define AST_LIST_REMOVE(head, elm, field) do { \
2038 if ((head)->first == (elm)) { \
2039 (head)->first = (elm)->field.next; \
2040 if ((head)->last == (elm)) \
2041 (head)->last = NULL; \
2043 typeof(elm) curelm = (head)->first; \
2044 while (curelm && (curelm->field.next != (elm))) \
2045 curelm = curelm->field.next; \
2047 curelm->field.next = (elm)->field.next; \
2048 if ((head)->last == (elm)) \
2049 (head)->last = curelm; \
2052 (elm)->field.next = NULL; \
2055#define AST_RWLIST_REMOVE AST_LIST_REMOVE
2078#define AST_MAX_EXTENSION 80
2082#define PRIORITY_HINT -1
2141 for (x=0; n[x]; x++) {
2160 if (!strchr(
"()", n[x]))
2177 if (
name[0] ==
'_') {
2194static void ast_log(
int level,
const char *
file,
int line,
const char *function,
const char *fmt, ...)
2199 printf(
"LOG: lev:%d file:%s line:%d func: %s ",
2200 level,
file, line, function);
2206void __attribute__((format(printf, 1, 2)))
ast_verbose(const
char *fmt, ...)
2211 printf(
"VERBOSE: ");
2220 char *dataPut = start;
2224 for (; *start; start++) {
2226 *dataPut++ = *start;
2229 if (*start ==
'\\') {
2231 }
else if (*start ==
'\'') {
2232 inQuotes = 1 - inQuotes;
2235 *dataPut++ = inQuotes ? *start : ((*start == find) ? replace_with : *start);
2239 if (start != dataPut)
2250 if (!strcasecmp(s,
"yes") ||
2251 !strcasecmp(s,
"true") ||
2252 !strcasecmp(s,
"y") ||
2253 !strcasecmp(s,
"t") ||
2254 !strcasecmp(s,
"1") ||
2255 !strcasecmp(s,
"on"))
2261#define ONE_MILLION 1000000
2270 (
long)
a.tv_sec, (
long int)
a.tv_usec);
2273 }
else if (
a.tv_usec < 0) {
2275 (
long)
a.tv_sec, (
long int)
a.tv_usec);
2281struct timeval
ast_tvadd(struct timeval
a, struct timeval
b);
2287 a.tv_sec +=
b.tv_sec;
2288 a.tv_usec +=
b.tv_usec;
2296struct timeval
ast_tvsub(struct timeval
a, struct timeval
b);
2302 a.tv_sec -=
b.tv_sec;
2303 a.tv_usec -=
b.tv_usec;
2304 if (
a.tv_usec < 0) {
2319#define VAR_BUF_SIZE 4096
2322#define VAR_SOFTTRAN 2
2323#define VAR_HARDTRAN 3
2325#define BACKGROUND_SKIP (1 << 0)
2326#define BACKGROUND_NOANSWER (1 << 1)
2327#define BACKGROUND_MATCHEXTEN (1 << 2)
2328#define BACKGROUND_PLAYBACK (1 << 3)
2346 void (*
datad)(
void *);
2448#define STATUS_NO_CONTEXT 1
2449#define STATUS_NO_EXTENSION 2
2450#define STATUS_NO_PRIORITY 3
2451#define STATUS_NO_LABEL 4
2452#define STATUS_SUCCESS 5
2457 int name_len = strlen(
name) + 1;
2458 int value_len = strlen(
value) + 1;
2460 if (!(
var =
ast_calloc(
sizeof(*
var) + name_len + value_len,
sizeof(
char)))) {
2465 var->value =
var->name + name_len;
2499 for (argc = 0; *scan && (argc < arraylen - 1); argc++) {
2501 for (; *scan; scan++) {
2504 else if (*scan ==
')') {
2507 }
else if (*scan ==
'"' && delim !=
'"') {
2510 memmove(scan, scan + 1, strlen(scan));
2512 }
else if (*scan ==
'\\') {
2514 memmove(scan, scan + 1, strlen(scan));
2515 }
else if ((*scan == delim) && !
paren && !
quote) {
2523 array[argc++] = scan;
2532 const char *nametail =
name;
2545 if (*nametail ==
'_') {
2547 if (*nametail ==
'_')
2552 if (strcasecmp(
ast_var_name(newvariable), nametail) == 0) {
2585 if ((argc > 1) && !strchr(argv[argc-1],
'=')) {
2587 if (strchr(argv[argc],
'g'))
2591 for (x = 0; x < argc; x++) {
2619 if (names && *s >
'9') {
2620 for (i = 0; names[i]; i++) {
2621 if (!strcasecmp(s, names[i])) {
2628 if (sscanf(s,
"%2d", &i) == 1 && i >= 1 && i <=
max) {
2638static unsigned get_range(
char *src,
int max,
char *
const names[],
const char *msg)
2641 unsigned int mask = 0;
2646 return (1 <<
max) - 1;
2649 while ((part =
strsep(&src,
"&"))) {
2651 char *endpart = strchr(part,
'-');
2670 while (start !=
end) {
2674 mask |= (1 << start);
2684 char *endpart, *part;
2688 int minute_start, minute_end;
2697 for (x = 0; x < 48; x++) {
2703 while ((part =
strsep(×,
"&"))) {
2704 if (!(endpart = strchr(part,
'-'))) {
2705 if (sscanf(part,
"%2d:%2d", &st_h, &st_m) != 2 || st_h < 0 || st_h > 23 || st_m < 0 || st_m > 59) {
2709 i->
minmask[st_h * 2 + (st_m >= 30 ? 1 : 0)] |= (1 << (st_m % 30));
2714 while (*endpart && !isdigit(*endpart)) {
2721 if (sscanf(part,
"%2d:%2d", &st_h, &st_m) != 2 || st_h < 0 || st_h > 23 || st_m < 0 || st_m > 59) {
2725 if (sscanf(endpart,
"%2d:%2d", &endh, &endm) != 2 || endh < 0 || endh > 23 || endm < 0 || endm > 59) {
2729 minute_start = st_h * 60 + st_m;
2730 minute_end = endh * 60 + endm;
2732 for (x = minute_start; x != minute_end; x = (x + 1) % (24 * 60)) {
2733 i->
minmask[x / 30] |= (1 << (x % 30));
2736 i->
minmask[x / 30] |= (1 << (x % 30));
2754 if (!strcasecmp(family, map->
name)) {
2766 if (!strcasecmp(eng->name, map->
driver))
2792 if ((category =
ast_calloc(1,
sizeof(*category))))
2836 config->last->next = category;
2840 config->current = category;
2865 char table[256] =
"";
2911 char exec_file[512];
2912 int object, do_exec, do_include;
2915 if (cur[0] ==
'[') {
2920 c = strchr(cur,
']');
2947 if (!(cur = strchr(
c,
')'))) {
2952 while ((cur =
strsep(&
c,
","))) {
2953 if (!strcasecmp(cur,
"!")) {
2954 (*cat)->ignored = 1;
2955 }
else if (!strcasecmp(cur,
"+")) {
2961 ast_log(
LOG_WARNING,
"Category addition requested, but category '%s' does not exist, line %d of %s\n", catname,
lineno, configfile);
2974 ast_log(
LOG_WARNING,
"Inheritance requested, but category '%s' does not exist, line %d of %s\n", cur,
lineno, configfile);
2983 }
else if (cur[0] ==
'#') {
2987 while(*
c && (*
c > 32))
c++;
2996 do_include = !strcasecmp(cur,
"include");
2998 do_exec = !strcasecmp(cur,
"exec");
3002 ast_log(
LOG_WARNING,
"Cannot perform #exec unless execincludes option is enabled in asterisk.conf (options section)!\n");
3005 if (do_include || do_exec) {
3008 char real_inclusion_name[525];
3011 while((*
c ==
'<') || (*
c ==
'>') || (*
c ==
'\"'))
c++;
3016 c = cur + strlen(cur) - 1;
3017 if ((*
c ==
'>') || (*
c ==
'<') || (*
c ==
'\"'))
3027 snprintf(exec_file,
sizeof(exec_file),
"/var/tmp/exec.%d.%ld", (
int)time(
NULL), (
long)pthread_self());
3028 if (snprintf(cmd,
sizeof(cmd),
"%s > %s 2>&1", cur, exec_file) >=
sizeof(cmd)) {
3029 ast_log(
LOG_ERROR,
"Failed to construct command string to execute %s.\n", cur);
3036 exec_file[0] =
'\0';
3041 ast_include_new(cfg, configfile, cur, do_exec, cur2,
lineno, real_inclusion_name,
sizeof(real_inclusion_name));
3052 do_exec ?
"exec" :
"include",
3053 do_exec ?
"/path/to/executable" :
"filename",
3064 "parse error: No category context for line %d of %s\n",
lineno, configfile);
3067 c = strchr(cur,
'=');
3123 char *new_buf, *comment_p, *process_buf;
3129 struct stat statbuf;
3133 if (filename[0] ==
'/') {
3137 snprintf(fn,
sizeof(fn),
"./%s", filename);
3147 if (stat(fn, &statbuf))
3150 if (!S_ISREG(statbuf.st_mode)) {
3158 if (!(f = fopen(fn,
"r"))) {
3172 if (fgets(
buf,
sizeof(
buf), f)) {
3173 if ( withcomments ) {
3185 if ((comment_p > new_buf) && (*(comment_p-1) ==
'\\')) {
3187 memmove(comment_p - 1, comment_p, strlen(comment_p) + 1);
3188 new_buf = comment_p;
3193 new_buf = comment_p + 3;
3199 }
else if ((comment_p >= new_buf + 2) &&
3204 new_buf = comment_p + 1;
3210 oldptr = process_buf + strlen(process_buf);
3211 if ( withcomments ) {
3216 memmove(oldptr, new_buf, strlen(new_buf) + 1);
3219 process_buf = new_buf;
3225 if ( withcomments ) {
3229 new_buf = comment_p;
3231 new_buf = comment_p + 1;
3234 if( withcomments &&
comment && !process_buf )
3240 char *stripped_process_buf =
ast_strip(process_buf);
3242 if (
process_text_line(cfg, &cat, stripped_process_buf, lineno, filename, withcomments, suggested_include_file)) {
3331 cat =
config->last_browse->next;
3335 for (cat =
config->root; cat; cat = cat->
next) {
3342 for (cat =
config->root; cat; cat = cat->
next) {
3343 if (!strcasecmp(cat->
name,
prev)) {
3354 config->last_browse = cat;
3388static void gen_header(FILE *f1,
const char *configfile,
const char *fn,
const char *generator)
3395 fprintf(f1,
";!\n");
3396 fprintf(f1,
";! Automatically generated configuration file\n");
3397 if (strcmp(configfile, fn))
3398 fprintf(f1,
";! Filename: %s (%s)\n", configfile, fn);
3400 fprintf(f1,
";! Filename: %s\n", configfile);
3401 fprintf(f1,
";! Generator: %s\n", generator);
3402 fprintf(f1,
";! Creation Date: %s", date);
3403 fprintf(f1,
";!\n");
3406static void set_fn(
char *fn,
int fn_size,
const char *
file,
const char *configfile)
3409 if (configfile[0] ==
'/')
3413 }
else if (
file[0] ==
'/')
3455 set_fn(fn,
sizeof(fn), 0, configfile);
3457 if ((f = fopen(fn,
"w+"))) {
3459 if ((f = fopen(fn,
"w"))) {
3473 set_fn(fn,
sizeof(fn), cat->
file, configfile);
3486 fprintf(f,
"#exec \"%s\"\n", incl->
exec_file);
3496 if (cmt->
cmt[0] !=
';' || cmt->
cmt[1] !=
'!')
3497 fprintf(f,
"%s", cmt->
cmt);
3501 fprintf(f,
"[%s]", cat->
name);
3503 fprintf(f,
"%s", cmt->
cmt);
3511 set_fn(fn,
sizeof(fn),
var->file, configfile);
3524 fprintf(f,
"#exec \"%s\"\n", incl->
exec_file);
3532 for (cmt =
var->precomments; cmt; cmt=cmt->
next) {
3533 if (cmt->
cmt[0] !=
';' || cmt->
cmt[1] !=
'!')
3534 fprintf(f,
"%s", cmt->
cmt);
3537 fprintf(f,
"%s %s %s %s",
var->name, (
var->object ?
"=>" :
"="),
var->value,
var->sameline->cmt);
3539 fprintf(f,
"%s %s %s\n",
var->name, (
var->object ?
"=>" :
"="),
var->value);
3540 if (
var->blanklines) {
3541 blanklines =
var->blanklines;
3542 while (blanklines--)
3579 fprintf(f,
"#exec \"%s\"\n", incl->
exec_file);
3601#define EXT_DATA_SIZE 256
3603#define EXT_DATA_SIZE 8192
3610#define SWITCH_DATA_LENGTH 256
3631 if (hint->
exten == oe) {
3652 if (hint->
exten == e) {
3662 if (!(hint =
ast_calloc(1,
sizeof(*hint)))) {
3680 for (ep =
NULL; e ; ep = e, e = e->
peer) {
3692 ast_log(
LOG_WARNING,
"Unable to register extension '%s', priority %d in '%s', already in use\n",
tmp->exten,
tmp->priority, con->
name);
3744 if (hint->
exten == e) {
3750 cblist = cblist->
next;
3809 int j, num_fields, last_sep = -1;
3822 for (j = 0, num_fields = 1;
info[j] !=
'\0'; j++) {
3823 if (
info[j] ==
'|' ||
info[j] ==
',') {
3830 if (num_fields == 5) {
3875 int c, cmin = 0xff, count = 0;
3881 while ( (
c = *(*p)++) && (
c ==
' ' ||
c ==
'-') )
3887 return 0x0000 | (
c & 0xff);
3890 return 0x0700 |
'2' ;
3893 return 0x0900 |
'0';
3896 return 0x0800 |
'1';
3912 end = strchr(*p,
']');
3919 memset(chars,
'\0',
sizeof(chars));
3920 for (; *p <
end ; (*p)++) {
3921 unsigned char c1, c2;
3922 c1 = (
unsigned char)((*p)[0]);
3923 if (*p + 2 <
end && (*p)[1] ==
'-') {
3924 c2 = (
unsigned char)((*p)[2]);
3930 for (; c1 <= c2; c1++) {
3931 uint32_t mask = 1 << (c1 % 32);
3932 if ( (chars[ c1 / 32 ] & mask) == 0)
3934 chars[ c1 / 32 ] |= mask;
3938 return count == 0 ? 0x30000 : (count | cmin);
3953 return (
b[0] ==
'_') ? -1 : strcmp(
a,
b);
3959 return strcmp(
a,
b);
3962 while (!ret &&
a &&
b)
3967 return (ret > 0) ? 1 : -1;
3975 while (*src && (count <
len - 1)) {
4013 if (!strcasecmp(asw->
name, sw))
4195 if ( (mode ==
E_MATCH) && (pattern[0] ==
'_') && (strcasecmp(pattern,
data)==0) )
4198 if (pattern[0] !=
'_') {
4199 int ld = strlen(
data), lp = strlen(pattern);
4205 return !strcmp(pattern,
data);
4206 if (ld == 0 || !strncasecmp(pattern,
data, ld))
4216 while (*
data && *pattern && *pattern !=
'/') {
4223 switch (toupper(*pattern)) {
4225 end = strchr(pattern+1,
']');
4230 for (pattern++; pattern !=
end; pattern++) {
4231 if (pattern+2 <
end && pattern[1] ==
'-') {
4232 if (*
data >= pattern[0] && *
data <= pattern[2])
4238 }
else if (*
data == pattern[0])
4246 if (*data < '2' || *data >
'9')
4250 if (*data < '0' || *data >
'9')
4254 if (*data < '1' || *data >
'9')
4266 if (*
data != *pattern)
4278 if (*pattern ==
'\0' || *pattern ==
'/')
4280 else if (*pattern ==
'!')
4283 return (mode ==
E_MATCH) ? 0 : 1;
4300static int matchcid(
const char *cidpattern,
const char *callerid)
4328 const char *callerid,
4339 const char *callerid,
4362 for (x = 0; x < q->
stacklen; x++) {
4403 if (label && e->
label && !strcmp(label, e->
label))
4435 datap = sw->eval ? sw->tmpdata : sw->data;
4436 res = !aswf ? 0 : aswf(chan,
context, exten,
priority, callerid, datap);
4448 for (i =
tmp->includes; i; i = i->
next) {
4465 const char *callerid,
4474 const char *callerid,
4511 length += 2 * (strlen(
value) + 1);
4519 p = new_include->
stuff;
4520 new_include->
name = p;
4522 p += strlen(
value) + 1;
4523 new_include->
rname = p;
4526 if ( (
c = strchr(p,
'|')) || (
c = strchr(p,
',')) ) {
4536 if (!strcasecmp(i->
name, new_include->
name)) {
4546 il->
next = new_include;
4572 length += strlen(
value) + 1;
4581 for (ignorepatc = con->
ignorepats; ignorepatc; ignorepatc = ignorepatc->
next) {
4582 ignorepatl = ignorepatc;
4590 ignorepatl->
next = ignorepat;
4637 const char *data,
int eval,
const char *
registrar);
4640 const char *data,
int eval,
const char *
registrar)
4647 length =
sizeof(
struct ast_sw);
4648 length += strlen(
value) + 1;
4650 length += strlen(
data);
4665 p += strlen(
value) + 1;
4669 p += strlen(
data) + 1;
4671 strcpy(new_sw->
data,
"");
4681 if (!strcasecmp(i->
name, new_sw->
name) && !strcasecmp(i->
data, new_sw->
data)) {
4715 loc_contexts = extcontexts;
4718 if (!strcasecmp(
tmp->name,
name)) {
4733 tmp->next = *loc_contexts;
4736 *loc_contexts =
tmp;
4775 const char *application,
void *
data,
void (*datad)(
void *),
4795 length += strlen(application) + 1;
4797 length += strlen(
label) + 1;
4799 length += strlen(callerid) + 1;
4814 p += strlen(
label) + 1;
4821 p +=
ext_strncpy(p, callerid, strlen(callerid) + 1) + 1;
4828 strcpy(p, application);
4835 for (e = con->
root; e;
el = e, e = e->
next) {
4850 if (e && res == 0) {
4870 if (
tmp->matchcid) {
4871 ast_log(
LOG_DEBUG,
"Added extension '%s' priority %d (CID match '%s') to %s\n",
4879 if (
tmp->matchcid) {
4892 const char *application,
void *
data,
void (*
datad)(
void *),
4897 const char *application,
void *
data,
void (*
datad)(
void *),
4926 if (matching_action) {
4937 if (matching_action)
4949 if (!matching_action)
4953 if (!matching_action)
4957 if (!matching_action)
4969 return (matching_action) ? 0 : -1;
5014 }
else if (*
var ==
')') {
5016 }
else if (*
var ==
':' && parens == 0) {
5018 sscanf(
var,
"%30d:%30d", offset, length);
5038static char *
substring(
const char *
value,
int offset,
int length,
char *workspace,
size_t workspace_len)
5040 char *ret = workspace;
5048 if (offset == 0 && length >= lr)
5052 offset = lr + offset;
5062 if (length >= 0 && length < lr - offset)
5064 else if (length < 0) {
5065 if (lr > offset - length)
5066 ret[lr + length - offset] =
'\0';
5081 const char not_found =
'\0';
5085 int i, need_substring;
5112 if (s == ¬_found) {
5113 if (!strcmp(
var,
"EPOCH")) {
5114 snprintf(workspace, workspacelen,
"%u",(
int)time(
NULL));
5120 for (i = 0; s == ¬_found && i < (
sizeof(places) /
sizeof(places[0])); i++) {
5135 if (s == ¬_found || s ==
NULL)
5142 *ret =
substring(*ret, offset, length, workspace, workspacelen);
5151 const char *
tmp, *whereweare;
5152 int length, offset, offset2, isfunction;
5153 char *workspace =
NULL;
5155 char *nextvar, *nextexp, *nextthing;
5157 int pos, brackets, needsub,
len;
5163 pos = strlen(whereweare);
5166 nextthing = strchr(whereweare,
'$');
5168 switch (nextthing[1]) {
5170 nextvar = nextthing;
5171 pos = nextvar - whereweare;
5174 nextexp = nextthing;
5175 pos = nextexp - whereweare;
5186 memcpy(cp2, whereweare, pos);
5198 vars = vare = nextvar + 2;
5203 while (brackets && *vare) {
5204 if ((vare[0] ==
'$') && (vare[1] ==
'{')) {
5206 }
else if (vare[0] ==
'{') {
5208 }
else if (vare[0] ==
'}') {
5210 }
else if ((vare[0] ==
'$') && (vare[1] ==
'['))
5216 len = vare - vars - 1;
5219 whereweare += (
len + 3);
5242 workspace[0] =
'\0';
5257 length = strlen(cp4);
5260 memcpy(cp2, cp4, length);
5265 }
else if (nextexp) {
5269 vars = vare = nextexp + 2;
5274 while (brackets && *vare) {
5275 if ((vare[0] ==
'$') && (vare[1] ==
'[')) {
5279 }
else if (vare[0] ==
'[') {
5281 }
else if (vare[0] ==
']') {
5283 }
else if ((vare[0] ==
'$') && (vare[1] ==
'{')) {
5291 len = vare - vars - 1;
5294 whereweare += (
len + 3);
5341 char realvalue[256];
5365 memset(realvalue, 0,
sizeof(realvalue));
5371 if (!strcasecmp(cxt,
"general") || !strcasecmp(cxt,
"globals"))
5378 if (!strcasecmp(v->
name,
"exten")) {
5382 char realext[256]=
"";
5383 char *plus, *firstp, *firstc;
5384 char *pri, *appl, *data, *cidmatch;
5390 cidmatch = strchr(realext,
'/');
5395 pri =
strsep(&stringp,
",");
5398 label = strchr(pri,
'(');
5401 end = strchr(label,
')');
5407 plus = strchr(pri,
'+');
5410 if (!strcmp(pri,
"hint"))
5412 else if (!strcmp(pri,
"next") || !strcmp(pri,
"n")) {
5417 }
else if (!strcmp(pri,
"same") || !strcmp(pri,
"s")) {
5422 }
else if (sscanf(pri,
"%30d", &ipri) != 1 &&
5427 appl =
S_OR(stringp,
"");
5429 firstc = strchr(appl,
',');
5430 firstp = strchr(appl,
'(');
5431 if (firstc && (!firstp || firstc < firstp)) {
5434 appl =
strsep(&stringp,
",");
5436 }
else if (!firstc && !firstp) {
5441 appl =
strsep(&stringp,
"(");
5443 end = strrchr(data,
')');
5444 if ((
end = strrchr(data,
')'))) {
5460 ast_log(
LOG_WARNING,
"The use of '_.' for an extension is strongly discouraged and can have unexpected behavior. Please use '_X.' instead at line %d\n", v->
lineno);
5467 }
else if (!strcasecmp(v->
name,
"include")) {
5468 memset(realvalue, 0,
sizeof(realvalue));
5472 }
else if (!strcasecmp(v->
name,
"ignorepat")) {
5473 memset(realvalue, 0,
sizeof(realvalue));
5477 }
else if (!strcasecmp(v->
name,
"switch") || !strcasecmp(v->
name,
"lswitch") || !strcasecmp(v->
name,
"eswitch")) {
5478 char *stringp= realvalue;
5481 memset(realvalue, 0,
sizeof(realvalue));
5482 if (!strcasecmp(v->
name,
"switch"))
5486 appl =
strsep(&stringp,
"/");
5487 data =
strsep(&stringp,
"");
5515 (!con || !strcasecmp(
tmp->name, con->
name)) )
5531 for (tmpi =
tmp->includes; tmpi; ) {
5536 for (ipi =
tmp->ignorepats; ipi; ) {
5543 for (e =
tmp->root; e;) {
5544 for (en = e->
peer; en;) {
5606 *extcontexts =
NULL;
5628 if (strcasecmp(inc->
rname,
"parkedcalls")!=0)
5658 printf(
"=== Loading extensions.conf ===\n");
5661 printf(
"Context: %s\n", con->
name);
5663 printf(
"=========\n");
5674 gettimeofday(&t,
NULL);
Structures for AEL - the Asterisk extension language.
int ast_expr(char *expr, char *buf, int length, struct ast_channel *chan)
Evaluate the given expression.
Asterisk main include file. File version handling, generic pbx functions.
int64_t ast_mark(int, int start1_stop0)
#define ast_realloc(p, len)
A wrapper for realloc()
#define ast_strdup(str)
A wrapper for strdup()
#define ast_strdupa(s)
duplicate a string in memory from the stack
void ast_free_ptr(void *ptr)
free() wrapper
#define ast_calloc(num, len)
A wrapper for calloc()
#define ast_malloc(len)
A wrapper for malloc()
static const char config_file[]
static int match(struct ast_sockaddr *addr, unsigned short callno, unsigned short dcallno, const struct chan_iax2_pvt *cur, int check_dcallno)
static const char config[]
#define ast_channel_lock(chan)
#define ast_channel_trylock(chan)
#define ast_channel_unlock(chan)
Asterisk architecture endianess compatibility definitions.
#define AST_RWLIST_REMOVE_CURRENT
static int ast_func_read(struct ast_channel *chan, const char *function, char *workspace, size_t len)
int ast_build_timing(struct ast_timing *i, const char *info_in)
Construct a timing bitmap, for use in time-based conditionals.
static int lookup_name(const char *s, char *const names[], int max)
Helper for get_range. return the index of the matching entry, starting from 1. If names is not suppli...
struct ast_config * realtime_multi_get(const char *database, const char *table, va_list ap)
static int ast_true(const char *s)
int localized_context_add_ignorepat2(struct ast_context *con, const char *value, const char *registrar)
char record_cache_dir[AST_CACHE_DIR_LEN]
static void CB_RESET(void)
static char * lline_buffer
static struct ast_sw * ast_walk_context_switches(struct ast_context *con, struct ast_sw *sw)
int realtime_update(const char *database, const char *table, const char *keyfield, const char *entity, va_list ap)
void ast_mark_lock_failed(void *lock_addr)
#define MAX_NESTED_COMMENTS
#define AST_LIST_HEAD_NOLOCK(name, type)
Defines a structure to be used to hold a list of specified type (with no lock).
int localized_context_add_include2(struct ast_context *con, const char *value, const char *registrar)
static int ext_cmp(const char *a, const char *b)
the full routine to compare extensions in rules.
static int ast_context_add_switch2(struct ast_context *con, const char *value, const char *data, int eval, const char *registrar)
static struct ast_context * ast_walk_contexts(struct ast_context *con)
static void ast_includes_destroy(struct ast_config_include *incls)
int ast_check_timing(const struct ast_timing *i)
Evaluate a pre-constructed bitmap as to whether the current time falls within the range specified.
struct ast_sw * localized_walk_context_switches(struct ast_context *con, struct ast_sw *sw)
static int process_text_line(struct ast_config *cfg, struct ast_category **cat, char *buf, int lineno, const char *configfile, int withcomments, const char *suggested_include_file)
int localized_pbx_builtin_setvar(struct ast_channel *chan, const void *data)
struct ast_context * localized_walk_contexts(struct ast_context *con)
#define AST_RWLIST_TRAVERSE_SAFE_BEGIN
static int ast_rwlock_unlock(ast_rwlock_t *prwlock)
int ast_language_is_prefix
The following variable controls the layout of localized sound files. If 0, use the historical layout ...
static char * substring(const char *value, int offset, int length, char *workspace, size_t workspace_len)
takes a substring. It is ok to call with value == workspace.
static int ast_wrlock_context(struct ast_context *con)
struct ast_include * localized_walk_context_includes(struct ast_context *con, struct ast_include *inc)
struct ast_exten * localized_walk_context_extensions(struct ast_context *con, struct ast_exten *exten)
pthread_mutex_t ast_mutex_t
static struct ast_context * ast_context_find(const char *name)
static int autofallthrough_config
#define AST_LIST_TRAVERSE(head, var, field)
Loops over (traverses) the entries in a list.
static struct ast_variable * ast_variable_new(const char *name, const char *value, const char *filename)
static unsigned int safe_system_level
Keep track of how many threads are currently trying to wait*() on a child process.
static struct ast_config * config_text_file_load(const char *database, const char *table, const char *filename, struct ast_config *cfg, int withcomments, const char *suggested_include_file)
static const char * ast_variable_retrieve(const struct ast_config *config, const char *category, const char *variable)
#define AST_RWLIST_HEAD_STATIC(name, type)
Defines a structure to be used to hold a read/write list of specified type, statically initialized.
static struct ast_config * ast_config_new(void)
static ast_rwlock_t globalslock
struct ast_exten * localized_walk_extension_priorities(struct ast_exten *exten, struct ast_exten *priority)
static int ast_add_extension2(struct ast_context *con, int replace, const char *extension, int priority, const char *label, const char *callerid, const char *application, void *data, void(*datad)(void *), const char *registrar)
Main interface to add extensions to the list for out context.
static struct ast_ignorepat * ast_walk_context_ignorepats(struct ast_context *con, struct ast_ignorepat *ip)
static int ast_context_add_include2(struct ast_context *con, const char *value, const char *registrar)
static struct ast_context * __ast_context_create(struct ast_context **extcontexts, const char *name, const char *registrar, int existsokay)
static void inherit_category(struct ast_category *new, const struct ast_category *base)
static int ast_wrlock_contexts(void)
int(* ast_state_cb_type)(char *context, char *id, enum ast_extension_states state, void *data)
static const char * ast_get_extension_app(struct ast_exten *e)
#define AST_LIST_INSERT_TAIL(head, elm, field)
Appends a list entry to the tail of a list.
struct ast_config * config_load_func(const char *database, const char *table, const char *configfile, struct ast_config *config, int withcomments, const char *suggested_include_file)
static struct ast_config * ast_config_internal_load(const char *filename, struct ast_config *cfg, int withcomments, const char *suggested_incl_file)
static void ast_category_append(struct ast_config *config, struct ast_category *category)
#define ast_opt_dont_warn
#define STATUS_NO_EXTENSION
static int ext_strncpy(char *dst, const char *src, int len)
copy a string skipping whitespace
static void ast_variable_append(struct ast_category *category, struct ast_variable *variable)
static int pbx_extension_helper(struct ast_channel *c, struct ast_context *con, const char *context, const char *exten, int priority, const char *label, const char *callerid, enum ext_match_t action)
The return value depends on the action:
#define AST_LIST_HEAD_NOLOCK_INIT_VALUE
Defines initial values for a declaration of AST_LIST_HEAD_NOLOCK.
static struct sigaction safe_system_prev_handler
static int ext_cmp1(const char **p)
helper functions to sort extensions and patterns in the desired way, so that more specific patterns a...
static struct ast_exten * ast_walk_context_extensions(struct ast_context *con, struct ast_exten *exten)
static void __ast_context_destroy(struct ast_context *con, const char *registrar)
static int ast_mutex_init(ast_mutex_t *pmutex)
static char * ast_process_quotes_and_slashes(char *start, char find, char replace_with)
static struct ast_variable * ast_variable_browse(const struct ast_config *config, const char *category)
static struct ast_category * category_get(const struct ast_config *config, const char *category_name, int ignored)
int localized_context_add_switch2(struct ast_context *con, const char *value, const char *data, int eval, const char *registrar)
static struct ast_config_include * ast_include_new(struct ast_config *conf, const char *from_file, const char *included_file, int is_exec, const char *exec_file, int from_lineno, char *real_included_file_name, int real_included_file_name_size)
#define AST_CACHE_DIR_LEN
static struct ast_category * ast_category_new(const char *name, const char *in_file, int lineno)
#define AST_LIST_ENTRY(type)
Declare a forward link structure inside a list entry.
int ast_context_switches_count(struct ast_context *con)
static int include_valid(struct ast_include *i)
static char * ast_category_browse(struct ast_config *config, const char *prev)
static void ast_merge_contexts_and_delete(struct ast_context **extcontexts, const char *registrar)
char debug_filename[AST_FILENAME_MAX]
#define AST_RWLIST_TRAVERSE_SAFE_END
static int pbx_builtin_setvar(struct ast_channel *chan, const void *data)
void ast_replace_sigchld(void)
Replace the SIGCHLD handler.
static struct ast_config_engine * config_engine_list
static struct ast_var_t * ast_var_assign(const char *name, const char *value)
static struct ast_context * local_contexts
static struct ast_category * next_available_category(struct ast_category *cat)
static int ast_context_verify_includes(struct ast_context *con)
static const char * ast_var_name(const struct ast_var_t *var)
#define AST_RWLOCK_DEFINE_STATIC(rwlock)
static void get_timerange(struct ast_timing *i, char *times)
store a bitmask of valid times, one bit each 2 minute
static int lline_buffer_size
static void _null_sig_handler(int sig)
NULL handler so we can collect the child exit status.
static unsigned get_range(char *src, int max, char *const names[], const char *msg)
helper function to return a range up to max (7, 12, 31 respectively). names, if supplied,...
void ast_config_set_current_category(struct ast_config *cfg, const struct ast_category *cat)
Set the category within the configuration as being current.
static void pbx_builtin_setvar_helper(struct ast_channel *chan, const char *name, const char *value)
static void CB_INIT(void)
@ AST_EXTENSION_NOT_INUSE
@ AST_EXTENSION_UNAVAILABLE
@ AST_EXTENSION_DEACTIVATED
void ast_console_puts(const char *string)
write the string to the root console, and all attached network console clients
static int ast_extension_match(const char *pattern, const char *data)
int localized_context_verify_includes(struct ast_context *con)
void ast_verbose(const char *fmt,...)
struct ast_config * localized_config_load_with_comments(const char *filename)
struct ast_category * ast_config_get_current_category(const struct ast_config *cfg)
Retrieve the current category name being built.
static void move_variables(struct ast_category *old, struct ast_category *new)
static struct ast_exten * ast_walk_extension_priorities(struct ast_exten *exten, struct ast_exten *priority)
static const char * ast_var_value(const struct ast_var_t *var)
void localized_merge_contexts_and_delete(struct ast_context **extcontexts, void *tab, const char *registrar)
static void CB_ADD(char *str)
static void gen_header(FILE *f1, const char *configfile, const char *fn, const char *generator)
static int clearglobalvars_config
int ast_atomic_fetchadd_int(volatile int *p, int v)
Atomically add v to *p and return * the previous value of *p. This can be used to handle reference co...
static const char * ast_get_context_name(struct ast_context *con)
void localized_context_destroy(struct ast_context *con, const char *registrar)
static int add_pri(struct ast_context *con, struct ast_exten *tmp, struct ast_exten *el, struct ast_exten *e, int replace)
add the extension in the priority chain. returns 0 on success, -1 on failure
void localized_ast_include_rename(struct ast_config *conf, const char *from_file, const char *to_file)
static int ast_remove_hint(struct ast_exten *e)
ast_remove_hint: Remove hint from extension
static char * comment_buffer
#define AST_RWLIST_TRAVERSE
static void ast_category_destroy(struct ast_category *cat)
static int ast_rwlock_wrlock(ast_rwlock_t *prwlock)
static void pbx_retrieve_variable(struct ast_channel *c, const char *var, char **ret, char *workspace, int workspacelen, struct varshead *headp)
Support for Asterisk built-in variables in the dialplan.
struct timeval ast_tvadd(struct timeval a, struct timeval b)
Returns the sum of two timevals a + b.
int localized_add_extension2(struct ast_context *con, int replace, const char *extension, int priority, const char *label, const char *callerid, const char *application, void *data, void(*datad)(void *), const char *registrar)
static void pbx_substitute_variables_helper_full(struct ast_channel *c, struct varshead *headp, const char *cp1, char *cp2, int count)
static void ast_config_destroy(struct ast_config *cfg)
#define PTHREAD_MUTEX_INIT_VALUE
static const char * ast_get_extension_name(struct ast_exten *exten)
struct ast_exten * localized_find_extension(struct ast_context *bypass, struct pbx_find_info *q, const char *context, const char *exten, int priority, const char *label, const char *callerid, enum ext_match_t action)
void ast_queue_log(const char *queuename, const char *callid, const char *agent, const char *event, const char *fmt,...)
int ast_safe_system(const char *s)
Safely spawn an OS shell command while closing file descriptors.
static struct ast_context * ast_context_find_or_create(struct ast_context **extcontexts, void *tab, const char *name, const char *registrar)
static unsigned int ast_app_separate_args(char *buf, char delim, char **array, int arraylen)
static ast_rwlock_t conlock
int ast_context_ignorepats_count(struct ast_context *con)
struct timeval ast_tvsub(struct timeval a, struct timeval b)
Returns the difference of two timevals a - b.
static struct ast_comment * ALLOC_COMMENT(const char *buffer)
int() ast_switch_f(struct ast_channel *chan, const char *context, const char *exten, int priority, const char *callerid, const char *data)
static struct ast_config_engine * find_engine(const char *family, char *database, int dbsiz, char *table, int tabsiz)
Find realtime engine for realtime family.
static int ast_rwlock_destroy(ast_rwlock_t *prwlock)
#define STATUS_NO_CONTEXT
#define AST_LIST_INSERT_HEAD(head, elm, field)
Inserts a list entry at the head of a list.
#define AST_LIST_REMOVE(head, elm, field)
Removes a specific entry from a list.
static int matchcid(const char *cidpattern, const char *callerid)
static struct ast_variable * variable_clone(const struct ast_variable *old)
static struct ast_category * ast_category_get(const struct ast_config *config, const char *category_name)
static struct ast_context * contexts
static struct ast_config_map * config_maps
#define AST_RWLIST_INSERT_HEAD
static int _extension_match_core(const char *pattern, const char *data, enum ext_match_t mode)
static char userscontext[AST_MAX_EXTENSION]
#define AST_LIST_REMOVE_HEAD(head, field)
Removes and returns the head entry from a list.
int localized_config_text_file_save(const char *configfile, const struct ast_config *cfg, const char *generator)
void localized_use_conf_dir(void)
static struct ast_config_include * ast_include_find(struct ast_config *conf, const char *included_file)
#define MAX_INCLUDE_LEVEL
static int ast_unlock_contexts(void)
pthread_cond_t ast_cond_t
struct ast_variable * realtime_var_get(const char *database, const char *table, va_list ap)
static void set_fn(char *fn, int fn_size, const char *file, const char *configfile)
int localized_pbx_load_module(void)
int ast_context_includes_count(struct ast_context *con)
#define STATUS_NO_PRIORITY
static int pbx_load_config(const char *config_file)
static int ast_context_add_ignorepat2(struct ast_context *con, const char *value, const char *registrar)
char * ast_trim_blanks(char *str)
Trims trailing whitespace characters from a string.
static int ast_unlock_context(struct ast_context *con)
struct ast_config * localized_config_load(const char *filename)
static int parse_variable_name(char *var, int *offset, int *length, int *isfunc)
extract offset:length from variable name. Returns 1 if there is a offset:length part,...
static char * global_registrar
void ast_copy_string(char *dst, const char *src, size_t size)
void localized_use_local_dir(void)
static int comment_buffer_size
static void ast_variables_destroy(struct ast_variable *v)
static void ast_shrink_phone_number(char *n)
Clean up phone string remove '(', ' ', ')', non-trailing '.', and '-' not in square brackets....
static struct ast_include * ast_walk_context_includes(struct ast_context *con, struct ast_include *inc)
#define AST_DEFAULT_OPTIONS
char * ast_strip(char *s)
Strip leading/trailing whitespace from a string.
static int ast_findlabel_extension2(struct ast_channel *c, struct ast_context *con, const char *exten, const char *label, const char *callerid)
static void ast_log(int level, const char *file, int line, const char *function, const char *fmt,...)
int ast_atomic_dec_and_test(volatile int *p)
decrement *p by 1 and return true if the variable has reached 0. Useful e.g. to check if a refcount h...
#define AST_LIST_HEAD(name, type)
Defines a structure to be used to hold a list of specified type.
static void CB_ADD_LEN(char *str, int len)
static void null_datad(void *foo)
struct timeval ast_tvnow(void)
#define pthread_mutex_init
void ast_unreplace_sigchld(void)
Restore the SIGCHLD handler.
static char * extconfig_conf
static int ast_func_write(struct ast_channel *chan, const char *function, const char *value)
#define AST_LIST_FIRST(head)
Returns the first entry contained in a list.
static int ast_change_hint(struct ast_exten *oe, struct ast_exten *ne)
ast_change_hint: Change hint for an extension
static struct timeval tvfix(struct timeval a)
static struct ast_exten * pbx_find_extension(struct ast_channel *chan, struct ast_context *bypass, struct pbx_find_info *q, const char *context, const char *exten, int priority, const char *label, const char *callerid, enum ext_match_t action)
static void ast_var_delete(struct ast_var_t *var)
#define AST_LIST_NEXT(elm, field)
Returns the next entry in the list after the given entry.
static void destroy_exten(struct ast_exten *e)
static int ast_add_hint(struct ast_exten *e)
ast_add_hint: Add hint to hint list, check initial extension state
struct ast_context * localized_context_find_or_create(struct ast_context **extcontexts, void *tab, const char *name, const char *registrar)
static char * config_filename
struct ast_category * localized_category_get(const struct ast_config *config, const char *category_name)
static int ast_rwlock_rdlock(ast_rwlock_t *prwlock)
static force_inline int ast_strlen_zero(const char *s)
static int ast_rwlock_init(ast_rwlock_t *prwlock)
static struct varshead globals
static int extension_match_core(const char *pattern, const char *data, enum ext_match_t mode)
#define AST_MAX_EXTENSION
char * ast_skip_blanks(const char *str)
static void LLB_ADD(char *str)
static struct sigaction null_sig_handler
static void pbx_substitute_variables_helper(struct ast_channel *c, const char *cp1, char *cp2, int count)
void ast_log_backtrace(void)
Log a backtrace of the current thread's execution stack to the Asterisk log.
pthread_rwlock_t ast_rwlock_t
static int write_protect_config
#define ast_opt_exec_includes
static struct ast_config_engine text_file_engine
#define SWITCH_DATA_LENGTH
char ast_defaultlanguage[]
External configuration handlers (realtime and static configuration)
#define AST_PBX_MAX_STACK
static int replace(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len)
static int array(struct ast_channel *chan, const char *cmd, char *var, const char *value)
static int quote(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len)
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
double ast_option_maxload
struct ast_flags ast_options
@ AST_OPT_FLAG_HIGH_PRIORITY
@ AST_OPT_FLAG_TRANSCODE_VIA_SLIN
@ AST_OPT_FLAG_EXEC_INCLUDES
@ AST_OPT_FLAG_DEBUG_FILE
@ AST_OPT_FLAG_TRANSMIT_SILENCE
@ AST_OPT_FLAG_ALWAYS_FORK
@ AST_OPT_FLAG_OVERRIDE_CONFIG
@ AST_OPT_FLAG_CACHE_RECORD_FILES
@ AST_OPT_FLAG_FULLY_BOOTED
@ AST_OPT_FLAG_FORCE_BLACK_BACKGROUND
@ AST_OPT_FLAG_LIGHT_BACKGROUND
Generic (perhaps overly so) hashtable implementation Hash Table support in Asterisk.
General Definitions for Asterisk top level program Included by asterisk.h to handle platform-specific...
char * strsep(char **str, const char *delims)
Inlinable API function macro.
#define AST_INLINE_API(hdr, body)
#define AST_MAX_REENTRANCY
#define pthread_mutex_trylock
#define pthread_mutex_lock
int __ast_pthread_mutex_lock(const char *filename, int lineno, const char *func, const char *mutex_name, ast_mutex_t *t)
int __ast_pthread_mutex_init(int tracking, const char *filename, int lineno, const char *func, const char *mutex_name, ast_mutex_t *t)
int __ast_pthread_mutex_trylock(const char *filename, int lineno, const char *func, const char *mutex_name, ast_mutex_t *t)
#define pthread_mutex_unlock
#define pthread_mutex_destroy
int __ast_pthread_mutex_destroy(const char *filename, int lineno, const char *func, const char *mutex_name, ast_mutex_t *t)
int __ast_pthread_mutex_unlock(const char *filename, int lineno, const char *func, const char *mutex_name, ast_mutex_t *t)
#define WEXITSTATUS(status)
#define WIFEXITED(status)
Asterisk file paths, configured in asterisk.conf.
const char * ast_config_AST_CONFIG_DIR
ast_extension_states
Extension states.
struct ast_switch * pbx_findswitch(const char *sw)
ast_app: A registered application
int(* execute)(struct ast_channel *chan, const char *data)
struct ast_comment * precomments
struct ast_category * next
struct ast_variable * last
struct ast_variable * root
struct ast_comment * sameline
struct ast_category * prev
char * file
The file name from whence this declaration was read.
Main Channel structure associated with a channel.
char exten[AST_MAX_EXTENSION]
Configuration engine structure, used to define realtime drivers.
realtime_var_get * realtime_func
struct ast_config_engine * next
realtime_multi_get * realtime_multi_func
config_load_func * load_func
realtime_update * update_func
char * include_location_file
file name in which the include occurs
char * exec_file
if it's an exec, you'll have both the /var/tmp to read, and the original script
char * included_file
file name included
struct ast_config_include * next
int include_location_lineno
struct ast_config_map * next
struct ast_category * current
struct ast_category * last
struct ast_category * root
struct ast_config_include * includes
struct ast_category * last_browse
ast_context: An extension context
struct ast_ignorepats ignorepats
struct ast_context::@510 alts
struct ast_includes includes
struct ast_context * next
struct ast_include * includes
struct ast_ignorepat * ignorepats
Data structure associated with a custom dialplan function.
ast_exten: An extension The dialplan is saved as a linked list with each context having it's own link...
struct ast_app * cached_app
struct ast_context * parent
Structure used to handle boolean flags.
Structure for dial plan hints.
struct ao2_container * callbacks
struct ast_exten * exten
Hint extension.
struct ast_state_cb * callbacks
ast_ignorepat: Ignore patterns in dial plan
struct ast_ignorepat * next
ast_include: include= support in extensions.conf
struct ast_include * next
Structure for mutex and tracking information.
Structure for rwlock and tracking information.
ast_state_cb: An extension state notify register item
ast_state_cb_type callback
struct ast_state_cb * next
ast_sw: Switch statement in extensions.conf
struct ast_switch::@508 list
struct ast_switch::@241 list
struct ast_var_t::@507 entries
struct ast_var_t::@211 entries
Structure for variables, used for configurations and for channel variables.
char stuff[0]
Contents of file, name, and value in that order stuffed here.
struct ast_comment * precomments
struct ast_comment * sameline
struct ast_variable * next
All configuration options for http media cache.
structure to hold extensions
char * incstack[AST_PBX_MAX_STACK]
const char * foundcontext
struct store_hint::@511 list
struct ast_state_cb * callbacks
static struct aco_type global
Time-related functions and macros.