2 * Asterisk -- A telephony toolkit for Linux.
4 * Routines implementing call parking
6 * Copyright (C) 1999, Mark Spencer
8 * Mark Spencer <markster@linux-support.net>
10 * This program is free software, distributed under the terms of
11 * the GNU General Public License
14 #include <asterisk/lock.h>
15 #include <asterisk/file.h>
16 #include <asterisk/logger.h>
17 #include <asterisk/channel.h>
18 #include <asterisk/pbx.h>
19 #include <asterisk/options.h>
20 #include <asterisk/module.h>
21 #include <asterisk/translate.h>
22 #include <asterisk/say.h>
23 #include <asterisk/channel_pvt.h>
24 #include <asterisk/features.h>
25 #include <asterisk/musiconhold.h>
26 #include <asterisk/config.h>
27 #include <asterisk/cli.h>
28 #include <asterisk/manager.h>
29 #include <asterisk/utils.h>
37 #include <sys/signal.h>
38 #include <netinet/in.h>
40 #define DEFAULT_PARK_TIME 45000
42 static char *parkedcall = "ParkedCall";
44 /* No more than 45 seconds parked before you do something with them */
45 static int parkingtime = DEFAULT_PARK_TIME;
47 /* Context for which parking is made accessible */
48 static char parking_con[AST_MAX_EXTENSION] = "parkedcalls";
50 /* Extension you type to park the call */
51 static char parking_ext[AST_MAX_EXTENSION] = "700";
53 static char pickup_ext[AST_MAX_EXTENSION] = "*8";
55 /* First available extension for parking */
56 static int parking_start = 701;
58 /* Last available extension for parking */
59 static int parking_stop = 750;
61 /* Registrar for operations */
62 static char *registrar = "res_parking";
64 static char *synopsis = "Answer a parked call";
66 static char *descrip = "ParkedCall(exten):"
67 "Used to connect to a parked call. This Application is always\n"
68 "registered internally and does not need to be explicitly added\n"
69 "into the dialplan, although you should include the 'parkedcalls'\n"
73 struct ast_channel *chan;
76 /* Where to go if our parking time expires */
77 char context[AST_MAX_EXTENSION];
78 char exten[AST_MAX_EXTENSION];
81 struct parkeduser *next;
84 static struct parkeduser *parkinglot;
86 AST_MUTEX_DEFINE_STATIC(parking_lock);
88 static pthread_t parking_thread;
94 char *ast_parking_ext(void)
99 char *ast_pickup_ext(void)
104 int ast_park_call(struct ast_channel *chan, struct ast_channel *peer, int timeout, int *extout)
106 /* We put the user in the parking list, then wake up the parking thread to be sure it looks
107 after these channels too */
108 struct parkeduser *pu, *cur;
110 pu = malloc(sizeof(struct parkeduser));
112 ast_mutex_lock(&parking_lock);
113 for (x=parking_start;x<=parking_stop;x++) {
116 if (cur->parkingnum == x)
123 if (x <= parking_stop) {
124 chan->appl = "Parked Call";
128 /* Start music on hold */
129 ast_moh_start(pu->chan, NULL);
130 gettimeofday(&pu->start, NULL);
133 pu->parkingtime = timeout;
135 pu->parkingtime = parkingtime;
138 /* Remember what had been dialed, so that if the parking
139 expires, we try to come back to the same place */
140 if (strlen(chan->macrocontext))
141 strncpy(pu->context, chan->macrocontext, sizeof(pu->context)-1);
143 strncpy(pu->context, chan->context, sizeof(pu->context)-1);
144 if (strlen(chan->macroexten))
145 strncpy(pu->exten, chan->macroexten, sizeof(pu->exten)-1);
147 strncpy(pu->exten, chan->exten, sizeof(pu->exten)-1);
148 if (chan->macropriority)
149 pu->priority = chan->macropriority;
151 pu->priority = chan->priority;
152 pu->next = parkinglot;
154 ast_mutex_unlock(&parking_lock);
155 /* Wake up the (presumably select()ing) thread */
156 pthread_kill(parking_thread, SIGURG);
157 if (option_verbose > 1)
158 ast_verbose(VERBOSE_PREFIX_2 "Parked %s on %d\n", pu->chan->name, pu->parkingnum);
160 manager_event(EVENT_FLAG_CALL, "ParkedCall",
166 ,pu->parkingnum, pu->chan->name, peer->name
167 ,(long)pu->start.tv_sec + (long)(pu->parkingtime/1000) - (long)time(NULL)
168 ,(pu->chan->callerid ? pu->chan->callerid : "")
172 ast_say_digits(peer, pu->parkingnum, "", peer->language);
175 ast_log(LOG_WARNING, "No more parking spaces\n");
177 ast_mutex_unlock(&parking_lock);
181 ast_log(LOG_WARNING, "Out of memory\n");
187 int ast_masq_park_call(struct ast_channel *rchan, struct ast_channel *peer, int timeout, int *extout)
189 struct ast_channel *chan;
191 /* Make a new, fake channel that we'll use to masquerade in the real one */
192 chan = ast_channel_alloc(0);
194 /* Let us keep track of the channel name */
195 snprintf(chan->name, sizeof (chan->name), "Parked/%s",rchan->name);
196 /* Make formats okay */
197 chan->readformat = rchan->readformat;
198 chan->writeformat = rchan->writeformat;
199 ast_channel_masquerade(chan, rchan);
200 /* Setup the extensions and such */
201 strncpy(chan->context, rchan->context, sizeof(chan->context) - 1);
202 strncpy(chan->exten, rchan->exten, sizeof(chan->exten) - 1);
203 chan->priority = rchan->priority;
204 /* Make the masq execute */
208 ast_park_call(chan, peer, timeout, extout);
210 ast_log(LOG_WARNING, "Unable to create parked channel\n");
216 int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast_bridge_config *config)
218 /* Copy voice back and forth between the two channels. Give the peer
219 the ability to transfer calls with '#<extension' syntax. */
222 struct ast_channel *who;
223 char newext[256], *ptr;
225 struct ast_option_header *aoh;
226 struct ast_channel *transferer;
227 struct ast_channel *transferee;
228 char *transferer_real_context;
229 int allowdisconnect,allowredirect_in,allowredirect_out;
231 allowdisconnect = config->allowdisconnect;
232 allowredirect_in = config->allowredirect_in;
233 allowredirect_out = config->allowredirect_out;
235 /* Answer if need be */
236 if (ast_answer(chan))
238 peer->appl = "Bridged Call";
239 peer->data = chan->name;
240 /* copy the userfield from the B-leg to A-leg if applicable */
241 if (chan->cdr && peer->cdr && strlen(peer->cdr->userfield)) {
243 if (strlen(chan->cdr->userfield)) {
244 snprintf(tmp, sizeof(tmp), "%s;%s",chan->cdr->userfield, peer->cdr->userfield);
245 ast_cdr_appenduserfield(chan, tmp);
247 ast_cdr_setuserfield(chan, peer->cdr->userfield);
248 /* free the peer's cdr without ast_cdr_free complaining */
253 res = ast_channel_bridge(chan,peer,config,&f, &who);
255 ast_log(LOG_WARNING, "Bridge failed on channels %s and %s\n", chan->name, peer->name);
259 if (!f || ((f->frametype == AST_FRAME_CONTROL) && ((f->subclass == AST_CONTROL_HANGUP) || (f->subclass == AST_CONTROL_BUSY) ||
260 (f->subclass == AST_CONTROL_CONGESTION)))) {
264 if ((f->frametype == AST_FRAME_CONTROL) && (f->subclass == AST_CONTROL_RINGING)) {
266 ast_indicate(peer, AST_CONTROL_RINGING);
268 ast_indicate(chan, AST_CONTROL_RINGING);
270 if ((f->frametype == AST_FRAME_CONTROL) && (f->subclass == -1)) {
272 ast_indicate(peer, -1);
274 ast_indicate(chan, -1);
276 if ((f->frametype == AST_FRAME_CONTROL) && (f->subclass == AST_CONTROL_OPTION)) {
278 /* Forward option Requests */
279 if (aoh && (aoh->flag == AST_OPTION_FLAG_REQUEST)) {
281 ast_channel_setoption(peer, ntohs(aoh->option), aoh->data, f->datalen - sizeof(struct ast_option_header), 0);
283 ast_channel_setoption(chan, ntohs(aoh->option), aoh->data, f->datalen - sizeof(struct ast_option_header), 0);
286 if (f && (f->frametype == AST_FRAME_DTMF) && (who == chan) && allowdisconnect &&
287 (f->subclass == '*')) {
288 if (option_verbose > 3)
289 ast_verbose(VERBOSE_PREFIX_3 "User hit %c to disconnect call.\n", f->subclass);
295 if ((f->frametype == AST_FRAME_DTMF) &&
296 ((allowredirect_in && who == peer) || (allowredirect_out && who == chan)) &&
297 (f->subclass == '#')) {
298 if(allowredirect_in && who == peer) {
307 /* Use the non-macro context to transfer the call */
308 if(strlen(transferer->macrocontext))
309 transferer_real_context=transferer->macrocontext;
311 transferer_real_context=transferer->context;
313 /* Start autoservice on chan while we talk
315 ast_autoservice_start(transferee);
316 ast_moh_start(transferee, NULL);
318 memset(newext, 0, sizeof(newext));
322 if ((res=ast_streamfile(transferer, "pbx-transfer", transferer->language))) {
323 ast_moh_stop(transferee);
324 ast_autoservice_stop(transferee);
327 if ((res=ast_waitstream(transferer, AST_DIGIT_ANY)) < 0) {
328 ast_moh_stop(transferee);
329 ast_autoservice_stop(transferee);
332 ast_stopstream(transferer);
334 /* If they've typed a digit already, handle it */
340 while(strlen(newext) < sizeof(newext) - 1) {
341 res = ast_waitfordigit(transferer, 3000);
347 if (!ast_matchmore_extension(transferer, transferer_real_context
348 , newext, 1, transferer->callerid)) {
354 ast_moh_stop(transferee);
355 ast_autoservice_stop(transferee);
358 if (!strcmp(newext, ast_parking_ext())) {
359 ast_moh_stop(transferee);
361 if (ast_autoservice_stop(transferee))
363 else if (!ast_park_call(transferee, transferer, 0, NULL)) {
364 /* We return non-zero, but tell the PBX not to hang the channel when
365 the thread dies -- We have to be careful now though. We are responsible for
366 hanging up the channel, else it will never be hung up! */
369 res=AST_PBX_KEEPALIVE;
371 res=AST_PBX_NO_HANGUP_PEER;
374 ast_log(LOG_WARNING, "Unable to park call %s\n", transferee->name);
376 /* XXX Maybe we should have another message here instead of invalid extension XXX */
377 } else if (ast_exists_extension(transferee, transferer_real_context, newext, 1, transferer->callerid)) {
378 ast_moh_stop(transferee);
379 res=ast_autoservice_stop(transferee);
380 if (!transferee->pbx) {
381 /* Doh! Use our handy async_goto funcitons */
382 if (option_verbose > 2)
383 ast_verbose(VERBOSE_PREFIX_3 "Transferring %s to '%s' (context %s) priority 1\n"
384 ,transferee->name, newext, transferer_real_context);
385 if (ast_async_goto(transferee, transferer_real_context, newext, 1))
386 ast_log(LOG_WARNING, "Async goto fialed :(\n");
389 /* Set the channel's new extension, since it exists, using transferer context */
390 strncpy(transferee->exten, newext, sizeof(transferee->exten)-1);
391 strncpy(transferee->context, transferer_real_context, sizeof(transferee->context)-1);
392 transferee->priority = 0;
397 if (option_verbose > 2)
398 ast_verbose(VERBOSE_PREFIX_3 "Unable to find extension '%s' in context '%s'\n", newext, transferer_real_context);
400 res = ast_streamfile(transferer, "pbx-invalid", transferee->language);
402 ast_moh_stop(transferee);
403 ast_autoservice_stop(transferee);
406 res = ast_waitstream(transferer, AST_DIGIT_ANY);
407 ast_stopstream(transferer);
408 ast_moh_stop(transferee);
409 res = ast_autoservice_stop(transferee);
411 if (option_verbose > 1)
412 ast_verbose(VERBOSE_PREFIX_2 "Hungup during autoservice stop on '%s'\n", transferee->name);
415 if (f && (f->frametype == AST_FRAME_DTMF)) {
422 ast_log(LOG_DEBUG, "Read from %s (%d,%d)\n", who->name, f->frametype, f->subclass);
431 static void *do_parking_thread(void *ignore)
434 struct parkeduser *pu, *pl, *pt = NULL;
445 ast_mutex_lock(&parking_lock);
448 gettimeofday(&tv, NULL);
452 tms = (tv.tv_sec - pu->start.tv_sec) * 1000 + (tv.tv_usec - pu->start.tv_usec) / 1000;
453 if (tms > pu->parkingtime) {
454 /* They've been waiting too long, send them back to where they came. Theoretically they
455 should have their original extensions and such, but we copy to be on the safe side */
456 strncpy(pu->chan->exten, pu->exten, sizeof(pu->chan->exten)-1);
457 strncpy(pu->chan->context, pu->context, sizeof(pu->chan->context)-1);
458 pu->chan->priority = pu->priority;
459 /* Stop music on hold */
460 ast_moh_stop(pu->chan);
461 /* Start up the PBX, or hang them up */
462 if (ast_pbx_start(pu->chan)) {
463 ast_log(LOG_WARNING, "Unable to restart the PBX for user on '%s', hanging them up...\n", pu->chan->name);
464 ast_hangup(pu->chan);
466 /* And take them out of the parking lot */
470 parkinglot = pu->next;
475 for (x=0;x<AST_MAX_FDS;x++) {
476 if ((pu->chan->fds[x] > -1) && (FD_ISSET(pu->chan->fds[x], &rfds) || FD_ISSET(pu->chan->fds[x], &efds))) {
477 if (FD_ISSET(pu->chan->fds[x], &efds))
478 pu->chan->exception = 1;
480 /* See if they need servicing */
481 f = ast_read(pu->chan);
482 if (!f || ((f->frametype == AST_FRAME_CONTROL) && (f->subclass == AST_CONTROL_HANGUP))) {
483 /* There's a problem, hang them up*/
484 if (option_verbose > 1)
485 ast_verbose(VERBOSE_PREFIX_2 "%s got tired of being parked\n", pu->chan->name);
486 ast_hangup(pu->chan);
487 /* And take them out of the parking lot */
491 parkinglot = pu->next;
497 /* XXX Maybe we could do something with packets, like dial "0" for operator or something XXX */
499 goto std; /* XXX Ick: jumping into an else statement??? XXX */
503 if (x >= AST_MAX_FDS) {
504 std: for (x=0;x<AST_MAX_FDS;x++) {
505 /* Keep this one for next one */
506 if (pu->chan->fds[x] > -1) {
507 FD_SET(pu->chan->fds[x], &nrfds);
508 FD_SET(pu->chan->fds[x], &nefds);
509 if (pu->chan->fds[x] > max)
510 max = pu->chan->fds[x];
513 /* Keep track of our longest wait */
514 if ((tms < ms) || (ms < 0))
521 ast_mutex_unlock(&parking_lock);
524 tv.tv_sec = ms / 1000;
525 tv.tv_usec = (ms % 1000) * 1000;
526 /* Wait for something to happen */
527 ast_select(max + 1, &rfds, NULL, &efds, (ms > -1) ? &tv : NULL);
528 pthread_testcancel();
530 return NULL; /* Never reached */
533 static int park_exec(struct ast_channel *chan, void *data)
537 struct ast_channel *peer=NULL;
538 struct parkeduser *pu, *pl=NULL;
541 struct ast_bridge_config config;
544 ast_log(LOG_WARNING, "Park requires an argument (extension number)\n");
548 park = atoi((char *)data);
549 ast_mutex_lock(&parking_lock);
552 if (pu->parkingnum == park) {
556 parkinglot = pu->next;
562 ast_mutex_unlock(&parking_lock);
567 /* JK02: it helps to answer the channel if not already up */
568 if (chan->_state != AST_STATE_UP) {
574 res = ast_channel_make_compatible(chan, peer);
576 ast_log(LOG_WARNING, "Could not make channels %s and %s compatible for bridge\n", chan->name, peer->name);
580 /* This runs sorta backwards, since we give the incoming channel control, as if it
581 were the person called. */
582 if (option_verbose > 2)
583 ast_verbose(VERBOSE_PREFIX_3 "Channel %s connected to parked call %d\n", chan->name, park);
585 memset(&config,0,sizeof(struct ast_bridge_config));
586 config.allowredirect_in = 1;
587 config.allowredirect_out = 1;
588 config.allowdisconnect = 0;
589 config.timelimit = 0;
590 config.play_warning = 0;
591 config.warning_freq = 0;
592 config.warning_sound=NULL;
593 res = ast_bridge_call(chan,peer,&config);
595 /* Simulate the PBX hanging up */
596 if (res != AST_PBX_NO_HANGUP_PEER)
600 /* XXX Play a message XXX */
601 dres = ast_streamfile(chan, "pbx-invalidpark", chan->language);
603 dres = ast_waitstream(chan, "");
605 ast_log(LOG_WARNING, "ast_streamfile of %s failed on %s\n", "pbx-invalidpark", chan->name);
608 if (option_verbose > 2)
609 ast_verbose(VERBOSE_PREFIX_3 "Channel %s tried to talk to non-existant parked call %d\n", chan->name, park);
612 LOCAL_USER_REMOVE(u);
616 static int handle_parkedcalls(int fd, int argc, char *argv[])
618 struct parkeduser *cur;
620 ast_cli(fd, "%4s %25s (%-15s %-12s %-4s) %-6s \n", "Num", "Channel"
621 , "Context", "Extension", "Pri", "Timeout");
623 ast_mutex_lock(&parking_lock);
627 ast_cli(fd, "%4d %25s (%-15s %-12s %-4d) %6lds\n"
628 ,cur->parkingnum, cur->chan->name, cur->context, cur->exten
629 ,cur->priority, cur->start.tv_sec + (cur->parkingtime/1000) - time(NULL));
634 ast_mutex_unlock(&parking_lock);
636 return RESULT_SUCCESS;
639 static char showparked_help[] =
640 "Usage: show parkedcalls\n"
641 " Lists currently parked calls.\n";
643 static struct ast_cli_entry showparked =
644 { { "show", "parkedcalls", NULL }, handle_parkedcalls, "Lists parked calls", showparked_help };
645 /* Dump lot status */
646 static int manager_parking_status( struct mansession *s, struct message *m )
648 struct parkeduser *cur;
649 char *id = astman_get_header(m,"ActionID");
650 char idText[256] = "";
652 if (id && !ast_strlen_zero(id))
653 snprintf(idText,256,"ActionID: %s\r\n",id);
655 astman_send_ack(s, m, "Parked calls will follow");
657 ast_mutex_lock(&parking_lock);
661 ast_cli(s->fd, "Event: ParkedCall\r\n"
668 ,cur->parkingnum, cur->chan->name
669 ,(long)cur->start.tv_sec + (long)(cur->parkingtime/1000) - (long)time(NULL)
670 ,(cur->chan->callerid ? cur->chan->callerid : "")
677 "Event: ParkedCallsComplete\r\n"
681 ast_mutex_unlock(&parking_lock);
683 return RESULT_SUCCESS;
688 int load_module(void)
693 struct ast_context *con;
694 char exten[AST_MAX_EXTENSION];
695 struct ast_config *cfg;
696 struct ast_variable *var;
698 ast_cli_register(&showparked);
700 cfg = ast_load("features.conf");
702 cfg = ast_load("parking.conf");
704 ast_log(LOG_NOTICE, "parking.conf is deprecated in favor of 'features.conf'. Please rename it.\n");
707 var = ast_variable_browse(cfg, "general");
709 if (!strcasecmp(var->name, "parkext")) {
710 strncpy(parking_ext, var->value, sizeof(parking_ext) - 1);
711 } else if (!strcasecmp(var->name, "context")) {
712 strncpy(parking_con, var->value, sizeof(parking_con) - 1);
713 } else if (!strcasecmp(var->name, "parkingtime")) {
714 if ((sscanf(var->value, "%d", &parkingtime) != 1) || (parkingtime < 1)) {
715 ast_log(LOG_WARNING, "%s is not a valid parkingtime\n", var->value);
716 parkingtime = DEFAULT_PARK_TIME;
718 parkingtime = parkingtime * 1000;
719 } else if (!strcasecmp(var->name, "parkpos")) {
720 if (sscanf(var->value, "%i-%i", &start, &end) != 2) {
721 ast_log(LOG_WARNING, "Format for parking positions is a-b, where a and b are numbers at line %d of parking.conf\n", var->lineno);
723 parking_start = start;
731 con = ast_context_find(parking_con);
733 con = ast_context_create(NULL,parking_con, registrar);
735 ast_log(LOG_ERROR, "Parking context '%s' does not exist and unable to create\n", parking_con);
739 for(x=parking_start; x<=parking_stop;x++) {
740 snprintf(exten, sizeof(exten), "%d", x);
741 ast_add_extension2(con, 1, exten, 1, NULL, parkedcall, strdup(exten), free, registrar);
743 pthread_create(&parking_thread, NULL, do_parking_thread, NULL);
744 res = ast_register_application(parkedcall, park_exec, synopsis, descrip);
746 ast_manager_register( "ParkedCalls", 0, manager_parking_status, "List parked calls" );
751 int ast_pickup_call(struct ast_channel *chan)
753 struct ast_channel *cur;
755 cur = ast_channel_walk_locked(NULL);
759 (chan->pickupgroup & cur->callgroup) &&
760 ((cur->_state == AST_STATE_RINGING) ||
761 (cur->_state == AST_STATE_RING))) {
764 ast_mutex_unlock(&cur->lock);
765 cur = ast_channel_walk_locked(cur);
768 ast_log(LOG_DEBUG, "Call pickup on chan '%s' by '%s'\n",cur->name, chan->name);
769 res = ast_answer(chan);
771 ast_log(LOG_WARNING, "Unable to answer '%s'\n", chan->name);
772 res = ast_queue_control(chan, AST_CONTROL_ANSWER);
774 ast_log(LOG_WARNING, "Unable to queue answer on '%s'\n", chan->name);
775 res = ast_channel_masquerade(cur, chan);
777 ast_log(LOG_WARNING, "Unable to masquerade '%s' into '%s'\n", chan->name, cur->name); /* Done */
778 ast_mutex_unlock(&cur->lock);
780 ast_log(LOG_DEBUG, "No call pickup possible...\n");
785 int unload_module(void)
787 STANDARD_HANGUP_LOCALUSERS;
789 ast_manager_unregister( "ParkedCalls" );
790 ast_cli_unregister(&showparked);
792 return ast_unregister_application(parkedcall);
795 char *description(void)
797 return "Call Parking Resource";
802 /* Never allow parking to be unloaded because it will
803 unresolve needed symbols in the dialer */
806 STANDARD_USECOUNT(res);
815 return ASTERISK_GPL_KEY;