2 * Asterisk -- A telephony toolkit for Linux.
4 * Implementation of Session Initiation Protocol
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
17 #include <asterisk/lock.h>
18 #include <asterisk/channel.h>
19 #include <asterisk/channel_pvt.h>
20 #include <asterisk/config.h>
21 #include <asterisk/logger.h>
22 #include <asterisk/module.h>
23 #include <asterisk/pbx.h>
24 #include <asterisk/options.h>
25 #include <asterisk/lock.h>
26 #include <asterisk/sched.h>
27 #include <asterisk/io.h>
28 #include <asterisk/rtp.h>
29 #include <asterisk/acl.h>
30 #include <asterisk/callerid.h>
31 #include <asterisk/file.h>
32 #include <asterisk/cli.h>
33 #include <asterisk/app.h>
34 #include <asterisk/musiconhold.h>
35 #include <asterisk/manager.h>
36 #include <asterisk/parking.h>
37 #include <sys/socket.h>
43 #include <arpa/inet.h>
44 #include <sys/signal.h>
46 static char *desc = "Agent Proxy Channel";
47 static char *type = "Agent";
48 static char *tdesc = "Call Agent Proxy Channel";
49 static char *config = "agents.conf";
51 static char *app = "AgentLogin";
52 static char *app2 = "AgentCallbackLogin";
54 static char *synopsis = "Call agent login";
55 static char *synopsis2 = "Call agent callback login";
57 static char *descrip =
58 " AgentLogin([AgentNo][|options]):\n"
59 "Asks the agent to login to the system. Always returns -1. While\n"
60 "logged in, the agent can receive calls and will hear a 'beep'\n"
61 "when a new call comes in. The agent can dump the call by pressing\n"
63 "The option string may contain zero or more of the following characters:\n"
64 " 's' -- silent login - do not announce the login ok segment\n";
66 static char *descrip2 =
67 " AgentCallbackLogin([AgentNo][|@context]):\n"
68 "Asks the agent to login to the system with callback. Always returns -1.\n"
69 "The agent's callback extension is called (optionally with the specified\n"
72 static char moh[80] = "default";
74 #define AST_MAX_AGENT 80 /* Agent ID or Password max length */
76 static int capability = -1;
78 static unsigned int group;
79 static int autologoff;
80 static int wrapuptime;
84 static ast_mutex_t usecnt_lock = AST_MUTEX_INITIALIZER;
86 /* Protect the interface list (of sip_pvt's) */
87 static ast_mutex_t agentlock = AST_MUTEX_INITIALIZER;
89 static struct agent_pvt {
90 ast_mutex_t lock; /* Channel private lock */
91 int dead; /* Poised for destruction? */
92 int pending; /* Not a real agent -- just pending a match */
93 int abouttograb; /* About to grab */
94 int autologoff; /* Auto timeout time */
95 int ackcall; /* ackcall */
96 time_t start; /* When call started */
97 struct timeval lastdisc; /* When last disconnected */
98 int wrapuptime; /* Wrapup time in ms */
99 unsigned int group; /* Group memberships */
100 int acknowledged; /* Acknowledged */
101 char moh[80]; /* Which music on hold */
102 char agent[AST_MAX_AGENT]; /* Agent ID */
103 char password[AST_MAX_AGENT]; /* Password for Agent login */
104 char name[AST_MAX_AGENT];
105 ast_mutex_t app_lock; /* Synchronization between owning applications */
106 volatile pthread_t owning_app; /* Owning application thread id */
107 volatile int app_sleep_cond; /* Sleep condition for the login app */
108 struct ast_channel *owner; /* Agent */
110 struct ast_channel *chan; /* Channel we use */
111 struct agent_pvt *next; /* Agent */
114 #define CHECK_FORMATS(ast, p) do { \
116 if (ast->nativeformats != p->chan->nativeformats) { \
117 ast_log(LOG_DEBUG, "Native formats changing from %d to %d\n", ast->nativeformats, p->chan->nativeformats); \
118 /* Native formats changed, reset things */ \
119 ast->nativeformats = p->chan->nativeformats; \
120 ast_log(LOG_DEBUG, "Resetting read to %d and write to %d\n", ast->readformat, ast->writeformat);\
121 ast_set_read_format(ast, ast->readformat); \
122 ast_set_write_format(ast, ast->writeformat); \
124 if (p->chan->readformat != ast->pvt->rawreadformat) \
125 ast_set_read_format(p->chan, ast->pvt->rawreadformat); \
126 if (p->chan->writeformat != ast->pvt->rawwriteformat) \
127 ast_set_write_format(p->chan, ast->pvt->rawwriteformat); \
131 #define CLEANUP(ast, p) do { \
134 for (x=0;x<AST_MAX_FDS;x++) \
135 ast->fds[x] = p->chan->fds[x]; \
140 static void agent_unlink(struct agent_pvt *agent)
142 struct agent_pvt *p, *prev;
148 prev->next = agent->next;
150 agents = agent->next;
158 static struct agent_pvt *add_agent(char *agent, int pending)
161 char *password=NULL, *name=NULL;
162 struct agent_pvt *p, *prev;
164 strncpy(tmp, agent, sizeof(tmp));
165 if ((password = strchr(tmp, ','))) {
168 while (*password < 33) password++;
170 if (password && (name = strchr(password, ','))) {
173 while (*name < 33) name++;
178 if (!pending && !strcmp(p->agent, tmp))
184 p = malloc(sizeof(struct agent_pvt));
186 memset(p, 0, sizeof(struct agent_pvt));
187 strncpy(p->agent, tmp, sizeof(p->agent) -1);
188 ast_mutex_init( &p->lock );
189 ast_mutex_init( &p->app_lock );
191 p->app_sleep_cond = 1;
193 p->pending = pending;
204 strncpy(p->password, password ? password : "", sizeof(p->password) - 1);
205 strncpy(p->name, name ? name : "", sizeof(p->name) - 1);
206 strncpy(p->moh, moh, sizeof(p->moh) - 1);
207 p->ackcall = ackcall;
208 p->autologoff = autologoff;
209 p->wrapuptime = wrapuptime;
217 static int agent_cleanup(struct agent_pvt *p)
219 struct ast_channel *chan = p->owner;
221 chan->pvt->pvt = NULL;
222 p->app_sleep_cond = 1;
223 /* Release ownership of the agent to other threads (presumably running the login app). */
224 ast_mutex_unlock(&p->app_lock);
226 ast_channel_free(chan);
232 static int check_availability(struct agent_pvt *newlyavailable, int needlock);
234 static int agent_answer(struct ast_channel *ast)
236 ast_log(LOG_WARNING, "Huh? Agent is being asked to answer?\n");
240 static struct ast_frame *agent_read(struct ast_channel *ast)
242 struct agent_pvt *p = ast->pvt->pvt;
243 struct ast_frame *f = NULL;
244 static struct ast_frame null_frame = { AST_FRAME_NULL, };
245 static struct ast_frame answer_frame = { AST_FRAME_CONTROL, AST_CONTROL_ANSWER };
246 ast_mutex_lock(&p->lock);
247 CHECK_FORMATS(ast, p);
249 p->chan->exception = ast->exception;
250 p->chan->fdno = ast->fdno;
251 f = ast_read(p->chan);
255 /* If there's a channel, hang it up (if it's on a callback) make it NULL */
257 if (strlen(p->loginchan))
263 if (f && (f->frametype == AST_FRAME_CONTROL) && (f->subclass == AST_CONTROL_ANSWER)) {
266 if (option_verbose > 2)
267 ast_verbose(VERBOSE_PREFIX_3 "%s answered, waiting for '#' to acknowledge\n", p->chan->name);
268 /* Don't pass answer along */
277 if (f && (f->frametype == AST_FRAME_DTMF) && (f->subclass == '#')) {
278 if (!p->acknowledged) {
279 if (option_verbose > 2)
280 ast_verbose(VERBOSE_PREFIX_3 "%s acknowledged\n", p->chan->name);
286 if (f && (f->frametype == AST_FRAME_DTMF) && (f->subclass == '*')) {
287 /* * terminates call */
292 ast_mutex_unlock(&p->lock);
296 static int agent_write(struct ast_channel *ast, struct ast_frame *f)
298 struct agent_pvt *p = ast->pvt->pvt;
300 CHECK_FORMATS(ast, p);
301 ast_mutex_lock(&p->lock);
303 if ((f->frametype != AST_FRAME_VOICE) ||
304 (f->subclass == p->chan->writeformat)) {
305 res = ast_write(p->chan, f);
307 ast_log(LOG_DEBUG, "Dropping one incompatible voice frame on '%s' to '%s'\n", ast->name, p->chan->name);
313 ast_mutex_unlock(&p->lock);
317 static int agent_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
319 struct agent_pvt *p = newchan->pvt->pvt;
320 ast_mutex_lock(&p->lock);
321 if (p->owner != oldchan) {
322 ast_log(LOG_WARNING, "old channel wasn't %p but was %p\n", oldchan, p->owner);
323 ast_mutex_unlock(&p->lock);
327 ast_mutex_unlock(&p->lock);
331 static int agent_indicate(struct ast_channel *ast, int condition)
333 struct agent_pvt *p = ast->pvt->pvt;
335 ast_mutex_lock(&p->lock);
337 res = ast_indicate(p->chan, condition);
340 ast_mutex_unlock(&p->lock);
344 static int agent_digit(struct ast_channel *ast, char digit)
346 struct agent_pvt *p = ast->pvt->pvt;
348 ast_mutex_lock(&p->lock);
350 res = p->chan->pvt->send_digit(p->chan, digit);
353 ast_mutex_unlock(&p->lock);
357 static int agent_call(struct ast_channel *ast, char *dest, int timeout)
359 struct agent_pvt *p = ast->pvt->pvt;
361 ast_mutex_lock(&p->lock);
364 ast_log(LOG_DEBUG, "Pretending to dial on pending agent\n");
365 ast_setstate(ast, AST_STATE_DIALING);
368 ast_log(LOG_NOTICE, "Whoa, they hung up between alloc and call... what are the odds of that?\n");
371 ast_mutex_unlock(&p->lock);
373 } else if (strlen(p->loginchan)) {
375 /* Call on this agent */
376 if (option_verbose > 2)
377 ast_verbose(VERBOSE_PREFIX_3 "outgoing agentcall, to agent '%s', on '%s'\n", p->agent, p->chan->name);
378 res = ast_call(p->chan, p->loginchan, 0);
380 ast_mutex_unlock(&p->lock);
383 ast_verbose( VERBOSE_PREFIX_3 "agent_call, call to agent '%s' call on '%s'\n", p->agent, p->chan->name);
384 ast_log( LOG_DEBUG, "Playing beep, lang '%s'\n", p->chan->language);
385 res = ast_streamfile(p->chan, "beep", p->chan->language);
386 ast_log( LOG_DEBUG, "Played beep, result '%d'\n", res);
388 res = ast_waitstream(p->chan, "");
389 ast_log( LOG_DEBUG, "Waited for stream, result '%d'\n", res);
392 res = ast_set_read_format(p->chan, ast_best_codec(p->chan->nativeformats));
393 ast_log( LOG_DEBUG, "Set read format, result '%d'\n", res);
395 ast_log(LOG_WARNING, "Unable to set read format to %d\n", ast_best_codec(p->chan->nativeformats));
402 ast_set_write_format(p->chan, ast_best_codec(p->chan->nativeformats));
403 ast_log( LOG_DEBUG, "Set write format, result '%d'\n", res);
405 ast_log(LOG_WARNING, "Unable to set write format to %d\n", ast_best_codec(p->chan->nativeformats));
409 /* Call is immediately up */
410 ast_setstate(ast, AST_STATE_UP);
413 ast_mutex_unlock(&p->lock);
417 static int agent_hangup(struct ast_channel *ast)
419 struct agent_pvt *p = ast->pvt->pvt;
421 ast_mutex_lock(&p->lock);
423 ast->pvt->pvt = NULL;
424 p->app_sleep_cond = 1;
425 if (p->start && (ast->_state != AST_STATE_UP))
426 howlong = time(NULL) - p->start;
429 /* If they're dead, go ahead and hang up on the agent now */
430 if (strlen(p->loginchan)) {
433 /* Recognize the hangup and pass it along immediately */
437 ast_log(LOG_DEBUG, "Hungup, howlong is %d, autologoff is %d\n", howlong, p->autologoff);
438 if (howlong && p->autologoff && (howlong > p->autologoff)) {
439 ast_log(LOG_NOTICE, "Agent '%s' didn't answer/confirm within %d seconds (waited %d)\n", p->name, p->autologoff, howlong);
440 strcpy(p->loginchan, "");
442 } else if (p->dead) {
443 ast_mutex_lock(&p->chan->lock);
444 ast_softhangup(p->chan, AST_SOFTHANGUP_EXPLICIT);
445 ast_mutex_unlock(&p->chan->lock);
447 ast_mutex_lock(&p->chan->lock);
448 ast_moh_start(p->chan, p->moh);
449 ast_mutex_unlock(&p->chan->lock);
453 ast_mutex_unlock(&p->lock);
454 /* Release ownership of the agent to other threads (presumably running the login app). */
455 ast_mutex_unlock(&p->app_lock);
456 } else if (p->dead) {
457 /* Go ahead and lose it */
458 ast_mutex_unlock(&p->lock);
459 /* Release ownership of the agent to other threads (presumably running the login app). */
460 ast_mutex_unlock(&p->app_lock);
462 ast_mutex_unlock(&p->lock);
463 /* Release ownership of the agent to other threads (presumably running the login app). */
464 ast_mutex_unlock(&p->app_lock);
467 ast_mutex_unlock(&p->lock);
468 /* Release ownership of the agent to other threads (presumably running the login app). */
469 ast_mutex_unlock(&p->app_lock);
472 ast_mutex_lock(&agentlock);
474 ast_mutex_unlock(&agentlock);
476 if (p->abouttograb) {
477 /* Let the "about to grab" thread know this isn't valid anymore, and let it
480 } else if (p->dead) {
482 } else if (p->chan) {
483 /* Not dead -- check availability now */
484 ast_mutex_lock(&p->lock);
485 /* check_availability(p, 1); */
486 /* Store last disconnect time */
487 gettimeofday(&p->lastdisc, NULL);
488 ast_mutex_unlock(&p->lock);
493 static int agent_cont_sleep( void *data )
499 p = (struct agent_pvt *)data;
501 ast_mutex_lock(&p->lock);
502 res = p->app_sleep_cond;
503 if (p->lastdisc.tv_sec) {
504 gettimeofday(&tv, NULL);
505 if ((tv.tv_sec - p->lastdisc.tv_sec) * 1000 +
506 (tv.tv_usec - p->lastdisc.tv_usec) / 1000 > p->wrapuptime)
509 ast_mutex_unlock(&p->lock);
512 ast_log( LOG_DEBUG, "agent_cont_sleep() returning %d\n", res );
517 static struct ast_channel *agent_new(struct agent_pvt *p, int state)
519 struct ast_channel *tmp;
520 struct ast_frame null_frame = { AST_FRAME_NULL };
523 ast_log(LOG_WARNING, "No channel? :(\n");
527 tmp = ast_channel_alloc(0);
530 tmp->nativeformats = p->chan->nativeformats;
531 tmp->writeformat = p->chan->writeformat;
532 tmp->pvt->rawwriteformat = p->chan->writeformat;
533 tmp->readformat = p->chan->readformat;
534 tmp->pvt->rawreadformat = p->chan->readformat;
535 strncpy(tmp->language, p->chan->language, sizeof(tmp->language)-1);
536 strncpy(tmp->context, p->chan->context, sizeof(tmp->context)-1);
537 strncpy(tmp->exten, p->chan->exten, sizeof(tmp->exten)-1);
539 tmp->nativeformats = AST_FORMAT_SLINEAR;
540 tmp->writeformat = AST_FORMAT_SLINEAR;
541 tmp->pvt->rawwriteformat = AST_FORMAT_SLINEAR;
542 tmp->readformat = AST_FORMAT_SLINEAR;
543 tmp->pvt->rawreadformat = AST_FORMAT_SLINEAR;
546 snprintf(tmp->name, sizeof(tmp->name), "Agent/P%s-%d", p->agent, rand() & 0xffff);
548 snprintf(tmp->name, sizeof(tmp->name), "Agent/%s", p->agent);
550 ast_setstate(tmp, state);
552 tmp->pvt->send_digit = agent_digit;
553 tmp->pvt->call = agent_call;
554 tmp->pvt->hangup = agent_hangup;
555 tmp->pvt->answer = agent_answer;
556 tmp->pvt->read = agent_read;
557 tmp->pvt->write = agent_write;
558 tmp->pvt->exception = agent_read;
559 tmp->pvt->indicate = agent_indicate;
560 tmp->pvt->fixup = agent_fixup;
562 ast_mutex_lock(&usecnt_lock);
564 ast_mutex_unlock(&usecnt_lock);
565 ast_update_use_count();
567 /* Wake up and wait for other applications (by definition the login app)
568 * to release this channel). Takes ownership of the agent channel
569 * to this thread only.
570 * For signalling the other thread, ast_queue_frame is used until we
571 * can safely use signals for this purpose. The pselect() needs to be
572 * implemented in the kernel for this.
574 p->app_sleep_cond = 0;
575 if( ast_mutex_trylock(&p->app_lock) )
578 ast_queue_frame(p->chan, &null_frame, 1);
579 ast_mutex_unlock(&p->lock); /* For other thread to read the condition. */
580 ast_mutex_lock(&p->app_lock);
581 ast_mutex_lock(&p->lock);
585 ast_log(LOG_WARNING, "Agent disconnected while we were connecting the call\n");
587 tmp->pvt->pvt = NULL;
588 p->app_sleep_cond = 1;
589 ast_channel_free( tmp );
590 ast_mutex_unlock(&p->lock); /* For other thread to read the condition. */
591 ast_mutex_unlock(&p->app_lock);
595 p->owning_app = pthread_self();
596 /* After the above step, there should not be any blockers. */
598 if (p->chan->blocking) {
599 ast_log( LOG_ERROR, "A blocker exists after agent channel ownership acquired\n" );
602 ast_moh_stop(p->chan);
605 ast_log(LOG_WARNING, "Unable to allocate channel structure\n");
610 static int read_agent_config(void)
612 struct ast_config *cfg;
613 struct ast_variable *v;
614 struct agent_pvt *p, *pl, *pn;
619 cfg = ast_load(config);
621 ast_log(LOG_NOTICE, "No agent configuration found -- agent support disabled\n");
624 ast_mutex_lock(&agentlock);
630 strcpy(moh, "default");
631 v = ast_variable_browse(cfg, "agents");
633 /* Create the interface list */
634 if (!strcasecmp(v->name, "agent")) {
635 add_agent(v->value, 0);
636 } else if (!strcasecmp(v->name, "group")) {
637 group = ast_get_group(v->value);
638 } else if (!strcasecmp(v->name, "autologoff")) {
639 autologoff = atoi(v->value);
642 } else if (!strcasecmp(v->name, "ackcall")) {
643 ackcall = ast_true(v->value);
644 } else if (!strcasecmp(v->name, "wrapuptime")) {
645 wrapuptime = atoi(v->value);
648 } else if (!strcasecmp(v->name, "musiconhold")) {
649 strncpy(moh, v->value, sizeof(moh) - 1);
663 /* Destroy if appropriate */
668 /* Cause them to hang up */
669 ast_softhangup(p->chan, AST_SOFTHANGUP_EXPLICIT);
676 ast_mutex_unlock(&agentlock);
681 static int check_availability(struct agent_pvt *newlyavailable, int needlock)
683 struct ast_channel *chan=NULL, *parent=NULL;
686 ast_log(LOG_DEBUG, "Checking availability of '%s'\n", newlyavailable->agent);
688 ast_mutex_lock(&agentlock);
691 if (p == newlyavailable) {
695 ast_mutex_lock(&p->lock);
696 if (!p->abouttograb && p->pending && ((p->group && (newlyavailable->group & p->group)) || !strcmp(p->agent, newlyavailable->agent))) {
697 ast_log(LOG_DEBUG, "Call '%s' looks like a winner for agent '%s'\n", p->owner->name, newlyavailable->agent);
698 /* We found a pending call, time to merge */
699 chan = agent_new(newlyavailable, AST_STATE_DOWN);
702 ast_mutex_unlock(&p->lock);
705 ast_mutex_unlock(&p->lock);
709 ast_mutex_unlock(&agentlock);
710 if (parent && chan) {
711 ast_log( LOG_DEBUG, "Playing beep, lang '%s'\n", newlyavailable->chan->language);
712 res = ast_streamfile(newlyavailable->chan, "beep", newlyavailable->chan->language);
713 ast_log( LOG_DEBUG, "Played beep, result '%d'\n", res);
715 res = ast_waitstream(newlyavailable->chan, "");
716 ast_log( LOG_DEBUG, "Waited for stream, result '%d'\n", res);
719 /* Note -- parent may have disappeared */
720 if (p->abouttograb) {
721 ast_setstate(parent, AST_STATE_UP);
722 ast_setstate(chan, AST_STATE_UP);
723 /* Go ahead and mark the channel as a zombie so that masquerade will
724 destroy it for us, and we need not call ast_hangup */
725 ast_mutex_lock(&parent->lock);
727 ast_channel_masquerade(parent, chan);
728 ast_mutex_unlock(&parent->lock);
731 ast_log(LOG_DEBUG, "Sneaky, parent disappeared in the mean time...\n");
732 agent_cleanup(newlyavailable);
735 ast_log(LOG_DEBUG, "Ugh... Agent hung up at exactly the wrong time\n");
736 agent_cleanup(newlyavailable);
742 static struct ast_channel *agent_request(char *type, int format, void *data)
745 struct ast_channel *chan = NULL;
747 unsigned int groupmatch;
750 if ((s[0] == '@') && (sscanf(s + 1, "%d", &groupmatch) == 1)) {
751 groupmatch = (1 << groupmatch);
752 } else if ((s[0] == ':') && (sscanf(s + 1, "%d", &groupmatch) == 1)) {
753 groupmatch = (1 << groupmatch);
759 /* Check actual logged in agents first */
760 ast_mutex_lock(&agentlock);
763 ast_mutex_lock(&p->lock);
764 if (!p->pending && ((groupmatch && (p->group & groupmatch)) || !strcmp(data, p->agent)) &&
765 !p->lastdisc.tv_sec && !strlen(p->loginchan)) {
766 /* Agent must be registered, but not have any active call, and not be in a waiting state */
767 if (!p->owner && p->chan) {
769 chan = agent_new(p, AST_STATE_DOWN);
770 } else if (!p->owner && strlen(p->loginchan)) {
771 /* Adjustable agent */
772 p->chan = ast_request("Local", format, p->loginchan);
774 chan = agent_new(p, AST_STATE_DOWN);
777 ast_mutex_unlock(&p->lock);
781 ast_mutex_unlock(&p->lock);
787 ast_mutex_lock(&p->lock);
788 if (!p->pending && ((groupmatch && (p->group & groupmatch)) || !strcmp(data, p->agent)) &&
789 !p->lastdisc.tv_sec) {
790 /* Agent must be registered, but not have any active call, and not be in a waiting state */
791 if (!p->owner && p->chan) {
793 chan = agent_new(p, AST_STATE_DOWN);
794 } else if (!p->owner && strlen(p->loginchan)) {
795 /* Adjustable agent */
796 p->chan = ast_request("Local", format, p->loginchan);
798 chan = agent_new(p, AST_STATE_DOWN);
801 ast_mutex_unlock(&p->lock);
805 ast_mutex_unlock(&p->lock);
810 if (!chan && waitforagent) {
811 /* No agent available -- but we're requesting to wait for one.
812 Allocate a place holder */
813 ast_log(LOG_DEBUG, "Creating place holder for '%s'\n", s);
814 p = add_agent(data, 1);
815 p->group = groupmatch;
816 chan = agent_new(p, AST_STATE_DOWN);
818 ast_log(LOG_WARNING, "Weird... Fix this to drop the unused pending agent\n");
821 ast_mutex_unlock(&agentlock);
825 static int powerof(unsigned int v)
829 if (v & (1 << x)) return x;
834 static int agents_show(int fd, int argc, char **argv)
843 return RESULT_SHOWUSAGE;
844 ast_mutex_lock(&agentlock);
847 ast_mutex_lock(&p->lock);
850 ast_cli(fd, "-- Pending call to group %d\n", powerof(p->group));
852 ast_cli(fd, "-- Pending call to agent %s\n", p->agent);
855 snprintf(username, sizeof(username), "(%s) ", p->name);
857 strcpy(username, "");
859 snprintf(location, sizeof(location), "logged in on %s", p->chan->name);
860 if (p->owner && p->owner->bridge) {
861 snprintf(talkingto, sizeof(talkingto), " talking to %s", p->owner->bridge->name);
863 strcpy(talkingto, " is idle");
865 } else if (strlen(p->loginchan)) {
866 snprintf(location, sizeof(location) - 20, "available at '%s'", p->loginchan);
867 strcpy(talkingto, "");
869 strcat(location, " (Confirmed)");
871 strcpy(location, "not logged in");
872 strcpy(talkingto, "");
875 snprintf(moh, sizeof(moh), " (musiconhold is '%s')", p->moh);
876 ast_cli(fd, "%-12.12s %s%s%s%s\n", p->agent,
877 username, location, talkingto, moh);
879 ast_mutex_unlock(&p->lock);
882 ast_mutex_unlock(&agentlock);
883 return RESULT_SUCCESS;
886 static char show_agents_usage[] =
887 "Usage: show agents\n"
888 " Provides summary information on agents.\n";
890 static struct ast_cli_entry cli_show_agents = {
891 { "show", "agents", NULL }, agents_show,
892 "Show status of agents", show_agents_usage, NULL };
897 static int __login_exec(struct ast_channel *chan, void *data, int callbackmode)
904 char user[AST_MAX_AGENT];
905 char pass[AST_MAX_AGENT];
906 char xpass[AST_MAX_AGENT] = "";
909 char *opt_user = NULL;
910 char *options = NULL;
911 char *context = NULL;
912 int play_announcement;
913 char *filename = "agent-loginok";
917 /* Parse the arguments XXX Check for failure XXX */
918 strncpy(info, (char *)data, strlen((char *)data) + AST_MAX_EXTENSION-1);
921 options = strchr(opt_user, '|');
926 context = strchr(options, '@');
935 if (chan->_state != AST_STATE_UP)
936 res = ast_answer(chan);
938 if( opt_user && strlen(opt_user))
939 strncpy( user, opt_user, AST_MAX_AGENT );
941 res = ast_app_getdata(chan, "agent-user", user, sizeof(user) - 1, 0);
943 while (!res && (tries < 3)) {
944 /* Check for password */
945 ast_mutex_lock(&agentlock);
948 if (!strcmp(p->agent, user) && !p->pending)
949 strncpy(xpass, p->password, sizeof(xpass) - 1);
952 ast_mutex_unlock(&agentlock);
955 res = ast_app_getdata(chan, "agent-pass", pass, sizeof(pass) - 1, 0);
959 errmsg = "agent-incorrect";
962 ast_log(LOG_NOTICE, "user: %s, pass: %s\n", user, pass);
965 /* Check again for accuracy */
966 ast_mutex_lock(&agentlock);
969 ast_mutex_lock(&p->lock);
970 if (!strcmp(p->agent, user) &&
971 !strcmp(p->password, pass) && !p->pending) {
974 char tmpchan[256] = "";
975 /* Retrieve login chan */
976 res = ast_app_getdata(chan, "agent-newlocation", tmpchan, sizeof(tmpchan) - 1, 0);
978 if (context && strlen(context) && strlen(tmpchan))
979 snprintf(p->loginchan, sizeof(p->loginchan), "%s@%s", tmpchan, context);
981 strncpy(p->loginchan, tmpchan, sizeof(p->loginchan) - 1);
982 if (!strlen(p->loginchan))
983 filename = "agent-loggedoff";
987 strcpy(p->loginchan, "");
990 play_announcement = 1;
992 if( strchr( options, 's' ) )
993 play_announcement = 0;
994 if( !res && play_announcement )
995 res = ast_streamfile(chan, filename, chan->language);
997 ast_waitstream(chan, "");
999 res = ast_set_read_format(chan, ast_best_codec(chan->nativeformats));
1001 ast_log(LOG_WARNING, "Unable to set read format to %d\n", ast_best_codec(chan->nativeformats));
1004 ast_set_write_format(chan, ast_best_codec(chan->nativeformats));
1006 ast_log(LOG_WARNING, "Unable to set write format to %d\n", ast_best_codec(chan->nativeformats));
1008 /* Check once more just in case */
1011 if (callbackmode && !res) {
1012 /* Just say goodbye and be done with it */
1014 res = ast_safe_sleep(chan, 500);
1015 res = ast_streamfile(chan, "vm-goodbye", chan->language);
1017 res = ast_waitstream(chan, "");
1019 res = ast_safe_sleep(chan, 1000);
1020 ast_mutex_unlock(&p->lock);
1021 ast_mutex_unlock(&agentlock);
1023 /* check if the moh class was changed with setmusiconhold */
1024 if (*(chan->musicclass))
1025 strncpy(p->moh, chan->musicclass, sizeof(p->moh) - 1);
1026 ast_moh_start(chan, p->moh);
1027 manager_event(EVENT_FLAG_AGENT, "Agentlogin",
1030 p->agent, chan->name);
1031 if (option_verbose > 2)
1032 ast_verbose(VERBOSE_PREFIX_3 "Agent '%s' logged in (format %d/%d)\n", p->agent,
1033 chan->readformat, chan->writeformat);
1034 /* Login this channel and wait for it to
1037 p->acknowledged = 1;
1038 check_availability(p, 0);
1039 ast_mutex_unlock(&p->lock);
1040 ast_mutex_unlock(&agentlock);
1042 ast_mutex_lock(&p->lock);
1043 if (p->chan != chan)
1045 ast_mutex_unlock(&p->lock);
1046 /* Yield here so other interested threads can kick in. */
1051 ast_mutex_lock(&p->lock);
1052 if (p->lastdisc.tv_sec) {
1053 gettimeofday(&tv, NULL);
1054 if ((tv.tv_sec - p->lastdisc.tv_sec) * 1000 +
1055 (tv.tv_usec - p->lastdisc.tv_usec) / 1000 > p->wrapuptime) {
1056 ast_log(LOG_DEBUG, "Wrapup time expired!\n");
1057 memset(&p->lastdisc, 0, sizeof(p->lastdisc));
1058 check_availability(p, 1);
1061 ast_mutex_unlock(&p->lock);
1062 /* Synchronize channel ownership between call to agent and itself. */
1063 ast_mutex_lock( &p->app_lock );
1064 ast_mutex_lock(&p->lock);
1065 p->owning_app = pthread_self();
1066 ast_mutex_unlock(&p->lock);
1067 res = ast_safe_sleep_conditional( chan, 1000,
1068 agent_cont_sleep, p );
1069 ast_mutex_unlock( &p->app_lock );
1072 ast_mutex_lock(&p->lock);
1073 if (res && p->owner)
1074 ast_log(LOG_WARNING, "Huh? We broke out when there was still an owner?\n");
1075 /* Log us off if appropriate */
1076 if (p->chan == chan)
1078 p->acknowledged = 0;
1079 ast_mutex_unlock(&p->lock);
1080 if (option_verbose > 2)
1081 ast_verbose(VERBOSE_PREFIX_3 "Agent '%s' logged out\n", p->agent);
1082 manager_event(EVENT_FLAG_AGENT, "Agentlogoff",
1085 /* If there is no owner, go ahead and kill it now */
1086 if (p->dead && !p->owner)
1090 ast_mutex_unlock(&p->lock);
1095 ast_mutex_unlock(&p->lock);
1096 errmsg = "agent-alreadyon";
1101 ast_mutex_unlock(&p->lock);
1105 ast_mutex_unlock(&agentlock);
1108 res = ast_app_getdata(chan, errmsg, user, sizeof(user) - 1, 0);
1111 LOCAL_USER_REMOVE(u);
1116 static int login_exec(struct ast_channel *chan, void *data)
1118 return __login_exec(chan, data, 0);
1121 static int callback_exec(struct ast_channel *chan, void *data)
1123 return __login_exec(chan, data, 1);
1128 /* Make sure we can register our sip channel type */
1129 if (ast_channel_register(type, tdesc, capability, agent_request)) {
1130 ast_log(LOG_ERROR, "Unable to register channel class %s\n", type);
1133 ast_register_application(app, login_exec, synopsis, descrip);
1134 ast_register_application(app2, callback_exec, synopsis2, descrip2);
1135 ast_cli_register(&cli_show_agents);
1136 /* Read in the config */
1137 read_agent_config();
1143 read_agent_config();
1149 struct agent_pvt *p;
1150 /* First, take us out of the channel loop */
1151 ast_cli_unregister(&cli_show_agents);
1152 ast_unregister_application(app);
1153 ast_unregister_application(app2);
1154 ast_channel_unregister(type);
1155 if (!ast_mutex_lock(&agentlock)) {
1156 /* Hangup all interfaces if they have an owner */
1160 ast_softhangup(p->owner, AST_SOFTHANGUP_APPUNLOAD);
1164 ast_mutex_unlock(&agentlock);
1166 ast_log(LOG_WARNING, "Unable to lock the monitor\n");
1175 ast_mutex_lock(&usecnt_lock);
1177 ast_mutex_unlock(&usecnt_lock);
1183 return ASTERISK_GPL_KEY;