2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
21 * \brief Full-featured outgoing call spool support
39 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
41 #include "asterisk/lock.h"
42 #include "asterisk/file.h"
43 #include "asterisk/logger.h"
44 #include "asterisk/channel.h"
45 #include "asterisk/callerid.h"
46 #include "asterisk/pbx.h"
47 #include "asterisk/module.h"
48 #include "asterisk/options.h"
49 #include "asterisk/utils.h"
52 * pbx_spool is similar in spirit to qcall, but with substantially enhanced functionality...
53 * The spool file contains a header
56 static char *tdesc = "Outgoing Spool Support";
57 static char qdir[255];
61 /* Current number of retries */
63 /* Maximum number of retries permitted */
65 /* How long to wait between retries (in seconds) */
67 /* How long to wait for an answer */
69 /* PID which is currently calling */
72 /* What to connect to outgoing */
80 /* If extension/context/priority */
85 /* CallerID Information */
89 /* Variables and Functions */
90 struct ast_variable *vars;
92 /* Maximum length of call */
96 static void init_outgoing(struct outgoing *o)
98 memset(o, 0, sizeof(struct outgoing));
104 static void free_outgoing(struct outgoing *o)
109 static int apply_outgoing(struct outgoing *o, char *fn, FILE *f)
114 struct ast_variable *var;
116 while(fgets(buf, sizeof(buf), f)) {
120 while ((c = strchr(c, '#'))) {
121 if ((c == buf) || (*(c-1) == ' ') || (*(c-1) == '\t'))
128 while ((c = strchr(c, ';'))) {
129 if ((c > buf) && (c[-1] == '\\')) {
130 memmove(c - 1, c, strlen(c) + 1);
138 /* Trim trailing white space */
139 while(!ast_strlen_zero(buf) && buf[strlen(buf) - 1] < 33)
140 buf[strlen(buf) - 1] = '\0';
141 if (!ast_strlen_zero(buf)) {
142 c = strchr(buf, ':');
146 while ((*c) && (*c < 33))
149 printf("'%s' is '%s' at line %d\n", buf, c, lineno);
151 if (!strcasecmp(buf, "channel")) {
152 strncpy(o->tech, c, sizeof(o->tech) - 1);
153 if ((c2 = strchr(o->tech, '/'))) {
156 strncpy(o->dest, c2, sizeof(o->dest) - 1);
158 ast_log(LOG_NOTICE, "Channel should be in form Tech/Dest at line %d of %s\n", lineno, fn);
161 } else if (!strcasecmp(buf, "callerid")) {
162 ast_callerid_split(c, o->cid_name, sizeof(o->cid_name), o->cid_num, sizeof(o->cid_num));
163 } else if (!strcasecmp(buf, "application")) {
164 strncpy(o->app, c, sizeof(o->app) - 1);
165 } else if (!strcasecmp(buf, "data")) {
166 strncpy(o->data, c, sizeof(o->data) - 1);
167 } else if (!strcasecmp(buf, "maxretries")) {
168 if (sscanf(c, "%d", &o->maxretries) != 1) {
169 ast_log(LOG_WARNING, "Invalid max retries at line %d of %s\n", lineno, fn);
172 } else if (!strcasecmp(buf, "context")) {
173 strncpy(o->context, c, sizeof(o->context) - 1);
174 } else if (!strcasecmp(buf, "extension")) {
175 strncpy(o->exten, c, sizeof(o->exten) - 1);
176 } else if (!strcasecmp(buf, "priority")) {
177 if ((sscanf(c, "%d", &o->priority) != 1) || (o->priority < 1)) {
178 ast_log(LOG_WARNING, "Invalid priority at line %d of %s\n", lineno, fn);
181 } else if (!strcasecmp(buf, "retrytime")) {
182 if ((sscanf(c, "%d", &o->retrytime) != 1) || (o->retrytime < 1)) {
183 ast_log(LOG_WARNING, "Invalid retrytime at line %d of %s\n", lineno, fn);
186 } else if (!strcasecmp(buf, "waittime")) {
187 if ((sscanf(c, "%d", &o->waittime) != 1) || (o->waittime < 1)) {
188 ast_log(LOG_WARNING, "Invalid retrytime at line %d of %s\n", lineno, fn);
191 } else if (!strcasecmp(buf, "retry")) {
193 } else if (!strcasecmp(buf, "startretry")) {
194 if (sscanf(c, "%d", &o->callingpid) != 1) {
195 ast_log(LOG_WARNING, "Unable to retrieve calling PID!\n");
198 } else if (!strcasecmp(buf, "endretry") || !strcasecmp(buf, "abortretry")) {
201 } else if (!strcasecmp(buf, "delayedretry")) {
202 } else if (!strcasecmp(buf, "setvar") || !strcasecmp(buf, "set")) {
205 var = ast_variable_new(c, c2);
210 } else if (!strcasecmp(buf, "account")) {
211 var = ast_variable_new("CDR(accountcode|r)", c);
217 ast_log(LOG_WARNING, "Unknown keyword '%s' at line %d of %s\n", buf, lineno, fn);
220 ast_log(LOG_NOTICE, "Syntax error at line %d of %s\n", lineno, fn);
223 strncpy(o->fn, fn, sizeof(o->fn) - 1);
224 if (ast_strlen_zero(o->tech) || ast_strlen_zero(o->dest) || (ast_strlen_zero(o->app) && ast_strlen_zero(o->exten))) {
225 ast_log(LOG_WARNING, "At least one of app or extension must be specified, along with tech and dest in file %s\n", fn);
231 static void safe_append(struct outgoing *o, time_t now, char *s)
236 fd = open(o->fn, O_WRONLY|O_APPEND);
240 fprintf(f, "%s: %ld %d (%ld)\n", s, (long)ast_mainpid, o->retries, (long) now);
244 /* Update the file time */
246 tbuf.modtime = now + o->retrytime;
247 if (utime(o->fn, &tbuf))
248 ast_log(LOG_WARNING, "Unable to set utime on %s: %s\n", o->fn, strerror(errno));
252 static void *attempt_thread(void *data)
254 struct outgoing *o = data;
256 if (!ast_strlen_zero(o->app)) {
257 if (option_verbose > 2)
258 ast_verbose(VERBOSE_PREFIX_3 "Attempting call on %s/%s for application %s(%s) (Retry %d)\n", o->tech, o->dest, o->app, o->data, o->retries);
259 res = ast_pbx_outgoing_app(o->tech, AST_FORMAT_SLINEAR, o->dest, o->waittime * 1000, o->app, o->data, &reason, 2 /* wait to finish */, o->cid_num, o->cid_name, o->vars, NULL);
261 if (option_verbose > 2)
262 ast_verbose(VERBOSE_PREFIX_3 "Attempting call on %s/%s for %s@%s:%d (Retry %d)\n", o->tech, o->dest, o->exten, o->context,o->priority, o->retries);
263 res = ast_pbx_outgoing_exten(o->tech, AST_FORMAT_SLINEAR, o->dest, o->waittime * 1000, o->context, o->exten, o->priority, &reason, 2 /* wait to finish */, o->cid_num, o->cid_name, o->vars, NULL);
266 ast_log(LOG_NOTICE, "Call failed to go through, reason %d\n", reason);
267 if (o->retries >= o->maxretries + 1) {
268 /* Max retries exceeded */
269 ast_log(LOG_EVENT, "Queued call to %s/%s expired without completion after %d attempt%s\n", o->tech, o->dest, o->retries - 1, ((o->retries - 1) != 1) ? "s" : "");
272 /* Notate that the call is still active */
273 safe_append(o, time(NULL), "EndRetry");
276 ast_log(LOG_NOTICE, "Call completed to %s/%s\n", o->tech, o->dest);
277 ast_log(LOG_EVENT, "Queued call to %s/%s completed\n", o->tech, o->dest);
284 static void launch_service(struct outgoing *o)
288 pthread_attr_init(&attr);
289 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
290 if (ast_pthread_create(&t,&attr,attempt_thread, o) == -1) {
291 ast_log(LOG_WARNING, "Unable to create thread :(\n");
296 static int scan_service(char *fn, time_t now, time_t atime)
300 o = malloc(sizeof(struct outgoing));
305 if (!apply_outgoing(o, fn, f)) {
307 printf("Filename: %s, Retries: %d, max: %d\n", fn, o->retries, o->maxretries);
310 if (o->retries <= o->maxretries) {
311 if (o->callingpid && (o->callingpid == ast_mainpid)) {
312 safe_append(o, time(NULL), "DelayedRetry");
313 ast_log(LOG_DEBUG, "Delaying retry since we're currently running '%s'\n", o->fn);
315 /* Increment retries */
317 /* If someone else was calling, they're presumably gone now
318 so abort their retry and continue as we were... */
320 safe_append(o, time(NULL), "AbortRetry");
322 safe_append(o, now, "StartRetry");
328 ast_log(LOG_EVENT, "Queued call to %s/%s expired without completion after %d attempt%s\n", o->tech, o->dest, o->retries - 1, ((o->retries - 1) != 1) ? "s" : "");
335 ast_log(LOG_WARNING, "Invalid file contents in %s, deleting\n", fn);
341 ast_log(LOG_WARNING, "Unable to open %s: %s, deleting\n", fn, strerror(errno));
345 ast_log(LOG_WARNING, "Out of memory :(\n");
349 static void *scan_thread(void *unused)
356 time_t last = 0, next = 0, now;
361 if (!stat(qdir, &st)) {
362 if ((st.st_mtime != last) || (next && (now > next))) {
364 printf("atime: %ld, mtime: %ld, ctime: %ld\n", st.st_atime, st.st_mtime, st.st_ctime);
365 printf("Ooh, something changed / timeout\n");
371 while((de = readdir(dir))) {
372 snprintf(fn, sizeof(fn), "%s/%s", qdir, de->d_name);
373 if (!stat(fn, &st)) {
374 if (S_ISREG(st.st_mode)) {
375 if (st.st_mtime <= now) {
376 res = scan_service(fn, now, st.st_atime);
378 /* Update next service time */
379 if (!next || (res < next)) {
383 ast_log(LOG_WARNING, "Failed to scan service '%s'\n", fn);
385 /* Update "next" update if necessary */
386 if (!next || (st.st_mtime < next))
391 ast_log(LOG_WARNING, "Unable to stat %s: %s\n", fn, strerror(errno));
395 ast_log(LOG_WARNING, "Unable to open directory %s: %s\n", qdir, strerror(errno));
398 ast_log(LOG_WARNING, "Unable to stat %s\n", qdir);
403 int unload_module(void)
408 int load_module(void)
412 snprintf(qdir, sizeof(qdir), "%s/%s", ast_config_AST_SPOOL_DIR, "outgoing");
413 if (mkdir(qdir, 0700) && (errno != EEXIST)) {
414 ast_log(LOG_WARNING, "Unable to create queue directory %s -- outgoing spool disabled\n", qdir);
417 pthread_attr_init(&attr);
418 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
419 if (ast_pthread_create(&thread,&attr,scan_thread, NULL) == -1) {
420 ast_log(LOG_WARNING, "Unable to create thread :(\n");
426 char *description(void)
438 return ASTERISK_GPL_KEY;