Prevent crash on shutdown due to refcount error on queues container.
[asterisk/asterisk.git] / apps / app_queue.c
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 1999 - 2006, Digium, Inc.
5  *
6  * Mark Spencer <markster@digium.com>
7  *
8  * See http://www.asterisk.org for more information about
9  * the Asterisk project. Please do not directly contact
10  * any of the maintainers of this project for assistance;
11  * the project provides a web site, mailing lists and IRC
12  * channels for your use.
13  *
14  * This program is free software, distributed under the terms of
15  * the GNU General Public License Version 2. See the LICENSE file
16  * at the top of the source tree.
17  */
18
19 /*! \file
20  *
21  * \brief True call queues with optional send URL on answer
22  *
23  * \author Mark Spencer <markster@digium.com>
24  *
25  * \arg Config in \ref Config_qu queues.conf
26  *
27  * \par Development notes
28  * \note 2004-11-25: Persistent Dynamic Members added by:
29  *             NetNation Communications (www.netnation.com)
30  *             Kevin Lindsay <kevinl@netnation.com>
31  *
32  *             Each dynamic agent in each queue is now stored in the astdb.
33  *             When asterisk is restarted, each agent will be automatically
34  *             readded into their recorded queues. This feature can be
35  *             configured with the 'persistent_members=<1|0>' setting in the
36  *             '[general]' category in queues.conf. The default is on.
37  *
38  * \note 2004-06-04: Priorities in queues added by inAccess Networks (work funded by Hellas On Line (HOL) www.hol.gr).
39  *
40  * \note These features added by David C. Troy <dave@toad.net>:
41  *    - Per-queue holdtime calculation
42  *    - Estimated holdtime announcement
43  *    - Position announcement
44  *    - Abandoned/completed call counters
45  *    - Failout timer passed as optional app parameter
46  *    - Optional monitoring of calls, started when call is answered
47  *
48  * Patch Version 1.07 2003-12-24 01
49  *
50  * Added servicelevel statistic by Michiel Betel <michiel@betel.nl>
51  * Added Priority jumping code for adding and removing queue members by Jonathan Stanton <asterisk@doilooklikeicare.com>
52  *
53  * Fixed to work with CVS as of 2004-02-25 and released as 1.07a
54  * by Matthew Enger <m.enger@xi.com.au>
55  *
56  * \ingroup applications
57  */
58
59 /*** MODULEINFO
60         <use type="module">res_monitor</use>
61         <support_level>core</support_level>
62  ***/
63
64 #include "asterisk.h"
65
66 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
67
68 #include <sys/time.h>
69 #include <sys/signal.h>
70 #include <netinet/in.h>
71 #include <ctype.h>
72
73 #include "asterisk/lock.h"
74 #include "asterisk/file.h"
75 #include "asterisk/channel.h"
76 #include "asterisk/pbx.h"
77 #include "asterisk/app.h"
78 #include "asterisk/linkedlists.h"
79 #include "asterisk/module.h"
80 #include "asterisk/translate.h"
81 #include "asterisk/say.h"
82 #include "asterisk/features.h"
83 #include "asterisk/musiconhold.h"
84 #include "asterisk/cli.h"
85 #include "asterisk/manager.h"
86 #include "asterisk/config.h"
87 #include "asterisk/monitor.h"
88 #include "asterisk/utils.h"
89 #include "asterisk/causes.h"
90 #include "asterisk/astdb.h"
91 #include "asterisk/devicestate.h"
92 #include "asterisk/stringfields.h"
93 #include "asterisk/event.h"
94 #include "asterisk/astobj2.h"
95 #include "asterisk/strings.h"
96 #include "asterisk/global_datastores.h"
97 #include "asterisk/taskprocessor.h"
98 #include "asterisk/aoc.h"
99 #include "asterisk/callerid.h"
100 #include "asterisk/cel.h"
101 #include "asterisk/data.h"
102
103 /* Define, to debug reference counts on queues, without debugging reference counts on queue members */
104 /* #define REF_DEBUG_ONLY_QUEUES */
105
106 /*!
107  * \par Please read before modifying this file.
108  * There are three locks which are regularly used
109  * throughout this file, the queue list lock, the lock
110  * for each individual queue, and the interface list lock.
111  * Please be extra careful to always lock in the following order
112  * 1) queue list lock
113  * 2) individual queue lock
114  * 3) interface list lock
115  * This order has sort of "evolved" over the lifetime of this
116  * application, but it is now in place this way, so please adhere
117  * to this order!
118  */
119
120 /*** DOCUMENTATION
121         <application name="Queue" language="en_US">
122                 <synopsis>
123                         Queue a call for a call queue.
124                 </synopsis>
125                 <syntax>
126                         <parameter name="queuename" required="true" />
127                         <parameter name="options">
128                                 <optionlist>
129                                         <option name="C">
130                                                 <para>Mark all calls as "answered elsewhere" when cancelled.</para>
131                                         </option>
132                                         <option name="c">
133                                                 <para>Continue in the dialplan if the callee hangs up.</para>
134                                         </option>
135                                         <option name="d">
136                                                 <para>data-quality (modem) call (minimum delay).</para>
137                                         </option>
138                                         <option name="F" argsep="^">
139                                                 <argument name="context" required="false" />
140                                                 <argument name="exten" required="false" />
141                                                 <argument name="priority" required="true" />
142                                                 <para>When the caller hangs up, transfer the <emphasis>called member</emphasis>
143                                                 to the specified destination and <emphasis>start</emphasis> execution at that location.</para>
144                                                 <note>
145                                                         <para>Any channel variables you want the called channel to inherit from the caller channel must be
146                                                         prefixed with one or two underbars ('_').</para>
147                                                 </note>
148                                         </option>
149                                         <option name="F">
150                                                 <para>When the caller hangs up, transfer the <emphasis>called member</emphasis> to the next priority of
151                                                 the current extension and <emphasis>start</emphasis> execution at that location.</para>
152                                                 <note>
153                                                         <para>Any channel variables you want the called channel to inherit from the caller channel must be
154                                                         prefixed with one or two underbars ('_').</para>
155                                                 </note>
156                                                 <note>
157                                                         <para>Using this option from a Macro() or GoSub() might not make sense as there would be no return points.</para>
158                                                 </note>
159                                         </option>
160                                         <option name="h">
161                                                 <para>Allow <emphasis>callee</emphasis> to hang up by pressing <literal>*</literal>.</para>
162                                         </option>
163                                         <option name="H">
164                                                 <para>Allow <emphasis>caller</emphasis> to hang up by pressing <literal>*</literal>.</para>
165                                         </option>
166                                         <option name="n">
167                                                 <para>No retries on the timeout; will exit this application and
168                                                 go to the next step.</para>
169                                         </option>
170                                         <option name="i">
171                                                 <para>Ignore call forward requests from queue members and do nothing
172                                                 when they are requested.</para>
173                                         </option>
174                                         <option name="I">
175                                                 <para>Asterisk will ignore any connected line update requests or any redirecting party
176                                                 update requests it may receive on this dial attempt.</para>
177                                         </option>
178                                         <option name="r">
179                                                 <para>Ring instead of playing MOH. Periodic Announcements are still made, if applicable.</para>
180                                         </option>
181                                         <option name="R">
182                                                 <para>Ring instead of playing MOH when a member channel is actually ringing.</para>
183                                         </option>
184                                         <option name="t">
185                                                 <para>Allow the <emphasis>called</emphasis> user to transfer the calling user.</para>
186                                         </option>
187                                         <option name="T">
188                                                 <para>Allow the <emphasis>calling</emphasis> user to transfer the call.</para>
189                                         </option>
190                                         <option name="w">
191                                                 <para>Allow the <emphasis>called</emphasis> user to write the conversation to
192                                                 disk via Monitor.</para>
193                                         </option>
194                                         <option name="W">
195                                                 <para>Allow the <emphasis>calling</emphasis> user to write the conversation to
196                                                 disk via Monitor.</para>
197                                         </option>
198                                         <option name="k">
199                                                 <para>Allow the <emphasis>called</emphasis> party to enable parking of the call by sending
200                                                 the DTMF sequence defined for call parking in <filename>features.conf</filename>.</para>
201                                         </option>
202                                         <option name="K">
203                                                 <para>Allow the <emphasis>calling</emphasis> party to enable parking of the call by sending
204                                                 the DTMF sequence defined for call parking in <filename>features.conf</filename>.</para>
205                                         </option>
206                                         <option name="x">
207                                                 <para>Allow the <emphasis>called</emphasis> user to write the conversation
208                                                 to disk via MixMonitor.</para>
209                                         </option>
210                                         <option name="X">
211                                                 <para>Allow the <emphasis>calling</emphasis> user to write the conversation to
212                                                 disk via MixMonitor.</para>
213                                         </option>
214                                 </optionlist>
215                         </parameter>
216                         <parameter name="URL">
217                                 <para><replaceable>URL</replaceable> will be sent to the called party if the channel supports it.</para>
218                         </parameter>
219                         <parameter name="announceoverride" />
220                         <parameter name="timeout">
221                                 <para>Will cause the queue to fail out after a specified number of
222                                 seconds, checked between each <filename>queues.conf</filename> <replaceable>timeout</replaceable> and
223                                 <replaceable>retry</replaceable> cycle.</para>
224                         </parameter>
225                         <parameter name="AGI">
226                                 <para>Will setup an AGI script to be executed on the calling party's channel once they are
227                                 connected to a queue member.</para>
228                         </parameter>
229                         <parameter name="macro">
230                                 <para>Will run a macro on the calling party's channel once they are connected to a queue member.</para>
231                         </parameter>
232                         <parameter name="gosub">
233                                 <para>Will run a gosub on the calling party's channel once they are connected to a queue member.</para>
234                         </parameter>
235                         <parameter name="rule">
236                                 <para>Will cause the queue's defaultrule to be overridden by the rule specified.</para>
237                         </parameter>
238                         <parameter name="position">
239                                 <para>Attempt to enter the caller into the queue at the numerical position specified. <literal>1</literal>
240                                 would attempt to enter the caller at the head of the queue, and <literal>3</literal> would attempt to place
241                                 the caller third in the queue.</para>
242                         </parameter>
243                 </syntax>
244                 <description>
245                         <para>In addition to transferring the call, a call may be parked and then picked
246                         up by another user.</para>
247                         <para>This application will return to the dialplan if the queue does not exist, or
248                         any of the join options cause the caller to not enter the queue.</para>
249                         <para>This application does not automatically answer and should be preceeded
250                         by an application such as Answer(), Progress(), or Ringing().</para>
251                         <para>This application sets the following channel variable upon completion:</para>
252                         <variablelist>
253                                 <variable name="QUEUESTATUS">
254                                         <para>The status of the call as a text string.</para>
255                                         <value name="TIMEOUT" />
256                                         <value name="FULL" />
257                                         <value name="JOINEMPTY" />
258                                         <value name="LEAVEEMPTY" />
259                                         <value name="JOINUNAVAIL" />
260                                         <value name="LEAVEUNAVAIL" />
261                                         <value name="CONTINUE" />
262                                 </variable>
263                         </variablelist>
264                 </description>
265                 <see-also>
266                         <ref type="application">Queue</ref>
267                         <ref type="application">QueueLog</ref>
268                         <ref type="application">AddQueueMember</ref>
269                         <ref type="application">RemoveQueueMember</ref>
270                         <ref type="application">PauseQueueMember</ref>
271                         <ref type="application">UnpauseQueueMember</ref>
272                         <ref type="function">QUEUE_VARIABLES</ref>
273                         <ref type="function">QUEUE_MEMBER</ref>
274                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
275                         <ref type="function">QUEUE_EXISTS</ref>
276                         <ref type="function">QUEUE_WAITING_COUNT</ref>
277                         <ref type="function">QUEUE_MEMBER_LIST</ref>
278                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
279                 </see-also>
280         </application>
281         <application name="AddQueueMember" language="en_US">
282                 <synopsis>
283                         Dynamically adds queue members.
284                 </synopsis>
285                 <syntax>
286                         <parameter name="queuename" required="true" />
287                         <parameter name="interface" />
288                         <parameter name="penalty" />
289                         <parameter name="options" />
290                         <parameter name="membername" />
291                         <parameter name="stateinterface" />
292                 </syntax>
293                 <description>
294                         <para>Dynamically adds interface to an existing queue. If the interface is
295                         already in the queue it will return an error.</para>
296                         <para>This application sets the following channel variable upon completion:</para>
297                         <variablelist>
298                                 <variable name="AQMSTATUS">
299                                         <para>The status of the attempt to add a queue member as a text string.</para>
300                                         <value name="ADDED" />
301                                         <value name="MEMBERALREADY" />
302                                         <value name="NOSUCHQUEUE" />
303                                 </variable>
304                         </variablelist>
305                 </description>
306                 <see-also>
307                         <ref type="application">Queue</ref>
308                         <ref type="application">QueueLog</ref>
309                         <ref type="application">AddQueueMember</ref>
310                         <ref type="application">RemoveQueueMember</ref>
311                         <ref type="application">PauseQueueMember</ref>
312                         <ref type="application">UnpauseQueueMember</ref>
313                         <ref type="function">QUEUE_VARIABLES</ref>
314                         <ref type="function">QUEUE_MEMBER</ref>
315                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
316                         <ref type="function">QUEUE_EXISTS</ref>
317                         <ref type="function">QUEUE_WAITING_COUNT</ref>
318                         <ref type="function">QUEUE_MEMBER_LIST</ref>
319                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
320                 </see-also>
321         </application>
322         <application name="RemoveQueueMember" language="en_US">
323                 <synopsis>
324                         Dynamically removes queue members.
325                 </synopsis>
326                 <syntax>
327                         <parameter name="queuename" required="true" />
328                         <parameter name="interface" />
329                 </syntax>
330                 <description>
331                         <para>If the interface is <emphasis>NOT</emphasis> in the queue it will return an error.</para>
332                         <para>This application sets the following channel variable upon completion:</para>
333                         <variablelist>
334                                 <variable name="RQMSTATUS">
335                                         <value name="REMOVED" />
336                                         <value name="NOTINQUEUE" />
337                                         <value name="NOSUCHQUEUE" />
338                                         <value name="NOTDYNAMIC" />
339                                 </variable>
340                         </variablelist>
341                         <para>Example: RemoveQueueMember(techsupport,SIP/3000)</para>
342                 </description>
343                 <see-also>
344                         <ref type="application">Queue</ref>
345                         <ref type="application">QueueLog</ref>
346                         <ref type="application">AddQueueMember</ref>
347                         <ref type="application">RemoveQueueMember</ref>
348                         <ref type="application">PauseQueueMember</ref>
349                         <ref type="application">UnpauseQueueMember</ref>
350                         <ref type="function">QUEUE_VARIABLES</ref>
351                         <ref type="function">QUEUE_MEMBER</ref>
352                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
353                         <ref type="function">QUEUE_EXISTS</ref>
354                         <ref type="function">QUEUE_WAITING_COUNT</ref>
355                         <ref type="function">QUEUE_MEMBER_LIST</ref>
356                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
357                 </see-also>
358         </application>
359         <application name="PauseQueueMember" language="en_US">
360                 <synopsis>
361                         Pauses a queue member.
362                 </synopsis>
363                 <syntax>
364                         <parameter name="queuename" />
365                         <parameter name="interface" required="true" />
366                         <parameter name="options" />
367                         <parameter name="reason">
368                                 <para>Is used to add extra information to the appropriate queue_log entries and manager events.</para>
369                         </parameter>
370                 </syntax>
371                 <description>
372                         <para>Pauses (blocks calls for) a queue member. The given interface will be paused in the given queue.
373                         This prevents any calls from being sent from the queue to the interface until it is
374                         unpaused with UnpauseQueueMember or the manager interface.  If no queuename is given,
375                         the interface is paused in every queue it is a member of. The application will fail if the
376                         interface is not found.</para>
377                         <para>This application sets the following channel variable upon completion:</para>
378                         <variablelist>
379                                 <variable name="PQMSTATUS">
380                                         <para>The status of the attempt to pause a queue member as a text string.</para>
381                                         <value name="PAUSED" />
382                                         <value name="NOTFOUND" />
383                                 </variable>
384                         </variablelist>
385                         <para>Example: PauseQueueMember(,SIP/3000)</para>
386                 </description>
387                 <see-also>
388                         <ref type="application">Queue</ref>
389                         <ref type="application">QueueLog</ref>
390                         <ref type="application">AddQueueMember</ref>
391                         <ref type="application">RemoveQueueMember</ref>
392                         <ref type="application">PauseQueueMember</ref>
393                         <ref type="application">UnpauseQueueMember</ref>
394                         <ref type="function">QUEUE_VARIABLES</ref>
395                         <ref type="function">QUEUE_MEMBER</ref>
396                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
397                         <ref type="function">QUEUE_EXISTS</ref>
398                         <ref type="function">QUEUE_WAITING_COUNT</ref>
399                         <ref type="function">QUEUE_MEMBER_LIST</ref>
400                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
401                 </see-also>
402         </application>
403         <application name="UnpauseQueueMember" language="en_US">
404                 <synopsis>
405                         Unpauses a queue member.                
406                 </synopsis>
407                 <syntax>
408                         <parameter name="queuename" />
409                         <parameter name="interface" required="true" />
410                         <parameter name="options" />
411                         <parameter name="reason">
412                                 <para>Is used to add extra information to the appropriate queue_log entries and manager events.</para>
413                         </parameter>
414                 </syntax>
415                 <description>
416                         <para>Unpauses (resumes calls to) a queue member. This is the counterpart to <literal>PauseQueueMember()</literal>
417                         and operates exactly the same way, except it unpauses instead of pausing the given interface.</para>
418                         <para>This application sets the following channel variable upon completion:</para>
419                         <variablelist>
420                                 <variable name="UPQMSTATUS">
421                                         <para>The status of the attempt to unpause a queue member as a text string.</para>
422                                         <value name="UNPAUSED" />
423                                         <value name="NOTFOUND" />
424                                 </variable>
425                         </variablelist>
426                         <para>Example: UnpauseQueueMember(,SIP/3000)</para>
427                 </description>
428                 <see-also>
429                         <ref type="application">Queue</ref>
430                         <ref type="application">QueueLog</ref>
431                         <ref type="application">AddQueueMember</ref>
432                         <ref type="application">RemoveQueueMember</ref>
433                         <ref type="application">PauseQueueMember</ref>
434                         <ref type="application">UnpauseQueueMember</ref>
435                         <ref type="function">QUEUE_VARIABLES</ref>
436                         <ref type="function">QUEUE_MEMBER</ref>
437                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
438                         <ref type="function">QUEUE_EXISTS</ref>
439                         <ref type="function">QUEUE_WAITING_COUNT</ref>
440                         <ref type="function">QUEUE_MEMBER_LIST</ref>
441                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
442                 </see-also>
443         </application>
444         <application name="QueueLog" language="en_US">
445                 <synopsis>
446                         Writes to the queue_log file.
447                 </synopsis>
448                 <syntax>
449                         <parameter name="queuename" required="true" />
450                         <parameter name="uniqueid" required="true" />
451                         <parameter name="agent" required="true" />
452                         <parameter name="event" required="true" />
453                         <parameter name="additionalinfo" />
454                 </syntax>
455                 <description>
456                         <para>Allows you to write your own events into the queue log.</para>
457                         <para>Example: QueueLog(101,${UNIQUEID},${AGENT},WENTONBREAK,600)</para>
458                 </description>
459                 <see-also>
460                         <ref type="application">Queue</ref>
461                         <ref type="application">QueueLog</ref>
462                         <ref type="application">AddQueueMember</ref>
463                         <ref type="application">RemoveQueueMember</ref>
464                         <ref type="application">PauseQueueMember</ref>
465                         <ref type="application">UnpauseQueueMember</ref>
466                         <ref type="function">QUEUE_VARIABLES</ref>
467                         <ref type="function">QUEUE_MEMBER</ref>
468                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
469                         <ref type="function">QUEUE_EXISTS</ref>
470                         <ref type="function">QUEUE_WAITING_COUNT</ref>
471                         <ref type="function">QUEUE_MEMBER_LIST</ref>
472                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
473                 </see-also>
474         </application>
475         <function name="QUEUE_VARIABLES" language="en_US">
476                 <synopsis>
477                         Return Queue information in variables.
478                 </synopsis>
479                 <syntax>
480                         <parameter name="queuename" required="true">
481                                 <enumlist>
482                                         <enum name="QUEUEMAX">
483                                                 <para>Maxmimum number of calls allowed.</para>
484                                         </enum>
485                                         <enum name="QUEUESTRATEGY">
486                                                 <para>The strategy of the queue.</para>
487                                         </enum>
488                                         <enum name="QUEUECALLS">
489                                                 <para>Number of calls currently in the queue.</para>
490                                         </enum>
491                                         <enum name="QUEUEHOLDTIME">
492                                                 <para>Current average hold time.</para>
493                                         </enum>
494                                         <enum name="QUEUECOMPLETED">
495                                                 <para>Number of completed calls for the queue.</para>
496                                         </enum>
497                                         <enum name="QUEUEABANDONED">
498                                                 <para>Number of abandoned calls.</para>
499                                         </enum>
500                                         <enum name="QUEUESRVLEVEL">
501                                                 <para>Queue service level.</para>
502                                         </enum>
503                                         <enum name="QUEUESRVLEVELPERF">
504                                                 <para>Current service level performance.</para>
505                                         </enum>
506                                 </enumlist>
507                         </parameter>
508                 </syntax>
509                 <description>
510                         <para>Makes the following queue variables available.</para>
511                         <para>Returns <literal>0</literal> if queue is found and setqueuevar is defined, <literal>-1</literal> otherwise.</para>
512                 </description>
513                 <see-also>
514                         <ref type="application">Queue</ref>
515                         <ref type="application">QueueLog</ref>
516                         <ref type="application">AddQueueMember</ref>
517                         <ref type="application">RemoveQueueMember</ref>
518                         <ref type="application">PauseQueueMember</ref>
519                         <ref type="application">UnpauseQueueMember</ref>
520                         <ref type="function">QUEUE_VARIABLES</ref>
521                         <ref type="function">QUEUE_MEMBER</ref>
522                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
523                         <ref type="function">QUEUE_EXISTS</ref>
524                         <ref type="function">QUEUE_WAITING_COUNT</ref>
525                         <ref type="function">QUEUE_MEMBER_LIST</ref>
526                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
527                 </see-also>
528         </function>
529         <function name="QUEUE_MEMBER" language="en_US">
530                 <synopsis>
531                         Count number of members answering a queue.
532                 </synopsis>
533                 <syntax>
534                         <parameter name="queuename" required="true" />
535                         <parameter name="option" required="true">
536                                 <enumlist>
537                                         <enum name="logged">
538                                                 <para>Returns the number of logged-in members for the specified queue.</para>
539                                         </enum>
540                                         <enum name="free">
541                                                 <para>Returns the number of logged-in members for the specified queue that either can take calls or are currently wrapping up after a previous call.</para>
542                                         </enum>
543                                         <enum name="ready">
544                                                 <para>Returns the number of logged-in members for the specified queue that are immediately available to answer a call.</para>
545                                         </enum>
546                                         <enum name="count">
547                                                 <para>Returns the total number of members for the specified queue.</para>
548                                         </enum>
549                                         <enum name="penalty">
550                                                 <para>Gets or sets queue member penalty.</para>
551                                         </enum>
552                                         <enum name="paused">
553                                                 <para>Gets or sets queue member paused status.</para>
554                                         </enum>
555                                         <enum name="ringinuse">
556                                                 <para>Gets or sets queue member ringinuse.</para>
557                                         </enum>
558                                 </enumlist>
559                         </parameter>
560                         <parameter name="interface" required="false" />
561                 </syntax>
562                 <description>
563                         <para>Allows access to queue counts [R] and member information [R/W].</para>
564                         <para>
565                                 <replaceable>queuename</replaceable> is required for all operations
566                                 <replaceable>interface</replaceable> is required for all member operations.
567                         </para>
568                 </description>
569                 <see-also>
570                         <ref type="application">Queue</ref>
571                         <ref type="application">QueueLog</ref>
572                         <ref type="application">AddQueueMember</ref>
573                         <ref type="application">RemoveQueueMember</ref>
574                         <ref type="application">PauseQueueMember</ref>
575                         <ref type="application">UnpauseQueueMember</ref>
576                         <ref type="function">QUEUE_VARIABLES</ref>
577                         <ref type="function">QUEUE_MEMBER</ref>
578                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
579                         <ref type="function">QUEUE_EXISTS</ref>
580                         <ref type="function">QUEUE_WAITING_COUNT</ref>
581                         <ref type="function">QUEUE_MEMBER_LIST</ref>
582                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
583                 </see-also>
584         </function>
585         <function name="QUEUE_MEMBER_COUNT" language="en_US">
586                 <synopsis>
587                         Count number of members answering a queue.
588                 </synopsis>
589                 <syntax>
590                         <parameter name="queuename" required="true" />
591                 </syntax>
592                 <description>
593                         <para>Returns the number of members currently associated with the specified <replaceable>queuename</replaceable>.</para>
594                         <warning><para>This function has been deprecated in favor of the <literal>QUEUE_MEMBER()</literal> function</para></warning>
595                 </description>
596                 <see-also>
597                         <ref type="application">Queue</ref>
598                         <ref type="application">QueueLog</ref>
599                         <ref type="application">AddQueueMember</ref>
600                         <ref type="application">RemoveQueueMember</ref>
601                         <ref type="application">PauseQueueMember</ref>
602                         <ref type="application">UnpauseQueueMember</ref>
603                         <ref type="function">QUEUE_VARIABLES</ref>
604                         <ref type="function">QUEUE_MEMBER</ref>
605                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
606                         <ref type="function">QUEUE_EXISTS</ref>
607                         <ref type="function">QUEUE_WAITING_COUNT</ref>
608                         <ref type="function">QUEUE_MEMBER_LIST</ref>
609                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
610                 </see-also>
611         </function>
612         <function name="QUEUE_EXISTS" language="en_US">
613                 <synopsis>
614                         Check if a named queue exists on this server
615                 </synopsis>
616                 <syntax>
617                         <parameter name="queuename" />
618                 </syntax>
619                 <description>
620                         <para>Returns 1 if the specified queue exists, 0 if it does not</para>
621                 </description>
622                 <see-also>
623                         <ref type="application">Queue</ref>
624                         <ref type="application">QueueLog</ref>
625                         <ref type="application">AddQueueMember</ref>
626                         <ref type="application">RemoveQueueMember</ref>
627                         <ref type="application">PauseQueueMember</ref>
628                         <ref type="application">UnpauseQueueMember</ref>
629                         <ref type="function">QUEUE_VARIABLES</ref>
630                         <ref type="function">QUEUE_MEMBER</ref>
631                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
632                         <ref type="function">QUEUE_EXISTS</ref>
633                         <ref type="function">QUEUE_WAITING_COUNT</ref>
634                         <ref type="function">QUEUE_MEMBER_LIST</ref>
635                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
636                 </see-also>
637         </function>
638         <function name="QUEUE_WAITING_COUNT" language="en_US">
639                 <synopsis>
640                         Count number of calls currently waiting in a queue.
641                 </synopsis>
642                 <syntax>
643                         <parameter name="queuename" />
644                 </syntax>
645                 <description>
646                         <para>Returns the number of callers currently waiting in the specified <replaceable>queuename</replaceable>.</para>
647                 </description>
648                 <see-also>
649                         <ref type="application">Queue</ref>
650                         <ref type="application">QueueLog</ref>
651                         <ref type="application">AddQueueMember</ref>
652                         <ref type="application">RemoveQueueMember</ref>
653                         <ref type="application">PauseQueueMember</ref>
654                         <ref type="application">UnpauseQueueMember</ref>
655                         <ref type="function">QUEUE_VARIABLES</ref>
656                         <ref type="function">QUEUE_MEMBER</ref>
657                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
658                         <ref type="function">QUEUE_EXISTS</ref>
659                         <ref type="function">QUEUE_WAITING_COUNT</ref>
660                         <ref type="function">QUEUE_MEMBER_LIST</ref>
661                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
662                 </see-also>
663         </function>
664         <function name="QUEUE_MEMBER_LIST" language="en_US">
665                 <synopsis>
666                         Returns a list of interfaces on a queue.
667                 </synopsis>
668                 <syntax>
669                         <parameter name="queuename" required="true" />
670                 </syntax>
671                 <description>
672                         <para>Returns a comma-separated list of members associated with the specified <replaceable>queuename</replaceable>.</para>
673                 </description>
674                 <see-also>
675                         <ref type="application">Queue</ref>
676                         <ref type="application">QueueLog</ref>
677                         <ref type="application">AddQueueMember</ref>
678                         <ref type="application">RemoveQueueMember</ref>
679                         <ref type="application">PauseQueueMember</ref>
680                         <ref type="application">UnpauseQueueMember</ref>
681                         <ref type="function">QUEUE_VARIABLES</ref>
682                         <ref type="function">QUEUE_MEMBER</ref>
683                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
684                         <ref type="function">QUEUE_EXISTS</ref>
685                         <ref type="function">QUEUE_WAITING_COUNT</ref>
686                         <ref type="function">QUEUE_MEMBER_LIST</ref>
687                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
688                 </see-also>
689         </function>
690         <function name="QUEUE_MEMBER_PENALTY" language="en_US">
691                 <synopsis>
692                         Gets or sets queue members penalty.
693                 </synopsis>
694                 <syntax>
695                         <parameter name="queuename" required="true" />
696                         <parameter name="interface" required="true" />
697                 </syntax>
698                 <description>
699                         <para>Gets or sets queue members penalty.</para>
700                         <warning><para>This function has been deprecated in favor of the <literal>QUEUE_MEMBER()</literal> function</para></warning>
701                 </description>
702                 <see-also>
703                         <ref type="application">Queue</ref>
704                         <ref type="application">QueueLog</ref>
705                         <ref type="application">AddQueueMember</ref>
706                         <ref type="application">RemoveQueueMember</ref>
707                         <ref type="application">PauseQueueMember</ref>
708                         <ref type="application">UnpauseQueueMember</ref>
709                         <ref type="function">QUEUE_VARIABLES</ref>
710                         <ref type="function">QUEUE_MEMBER</ref>
711                         <ref type="function">QUEUE_MEMBER_COUNT</ref>
712                         <ref type="function">QUEUE_EXISTS</ref>
713                         <ref type="function">QUEUE_WAITING_COUNT</ref>
714                         <ref type="function">QUEUE_MEMBER_LIST</ref>
715                         <ref type="function">QUEUE_MEMBER_PENALTY</ref>
716                 </see-also>
717         </function>
718         <manager name="Queues" language="en_US">
719                 <synopsis>
720                         Queues.
721                 </synopsis>
722                 <syntax>
723                 </syntax>
724                 <description>
725                 </description>
726         </manager>
727         <manager name="QueueStatus" language="en_US">
728                 <synopsis>
729                         Show queue status.
730                 </synopsis>
731                 <syntax>
732                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
733                         <parameter name="Queue" />
734                         <parameter name="Member" />
735                 </syntax>
736                 <description>
737                 </description>
738         </manager>
739         <manager name="QueueSummary" language="en_US">
740                 <synopsis>
741                         Show queue summary.
742                 </synopsis>
743                 <syntax>
744                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
745                         <parameter name="Queue" />
746                 </syntax>
747                 <description>
748                 </description>
749         </manager>
750         <manager name="QueueAdd" language="en_US">
751                 <synopsis>
752                         Add interface to queue.
753                 </synopsis>
754                 <syntax>
755                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
756                         <parameter name="Queue" required="true" />
757                         <parameter name="Interface" required="true" />
758                         <parameter name="Penalty" />
759                         <parameter name="Paused" />
760                         <parameter name="MemberName" />
761                         <parameter name="StateInterface" />
762                 </syntax>
763                 <description>
764                 </description>
765         </manager>
766         <manager name="QueueRemove" language="en_US">
767                 <synopsis>
768                         Remove interface from queue.
769                 </synopsis>
770                 <syntax>
771                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
772                         <parameter name="Queue" required="true" />
773                         <parameter name="Interface" required="true" />
774                 </syntax>
775                 <description>
776                 </description>
777         </manager>
778         <manager name="QueuePause" language="en_US">
779                 <synopsis>
780                         Makes a queue member temporarily unavailable.
781                 </synopsis>
782                 <syntax>
783                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
784                         <parameter name="Interface" required="true" />
785                         <parameter name="Paused" required="true" />
786                         <parameter name="Queue" />
787                         <parameter name="Reason" />
788                 </syntax>
789                 <description>
790                 </description>
791         </manager>
792         <manager name="QueueLog" language="en_US">
793                 <synopsis>
794                         Adds custom entry in queue_log.
795                 </synopsis>
796                 <syntax>
797                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
798                         <parameter name="Queue" required="true" />
799                         <parameter name="Event" required="true" />
800                         <parameter name="Uniqueid" />
801                         <parameter name="Interface" />
802                         <parameter name="Message" />
803                 </syntax>
804                 <description>
805                 </description>
806         </manager>
807         <manager name="QueuePenalty" language="en_US">
808                 <synopsis>
809                         Set the penalty for a queue member.
810                 </synopsis>
811                 <syntax>
812                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
813                         <parameter name="Interface" required="true" />
814                         <parameter name="Penalty" required="true" />
815                         <parameter name="Queue" />
816                 </syntax>
817                 <description>
818                 </description>
819         </manager>
820
821         <manager name="QueueMemberRingInUse" language="en_US">
822                 <synopsis>
823                         Set the ringinuse value for a queue member.
824                 </synopsis>
825                 <syntax>
826                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
827                         <parameter name="Interface" required="true" />
828                         <parameter name="RingInUse" required="true" />
829                         <parameter name="Queue" />
830                 </syntax>
831                 <description>
832                 </description>
833         </manager>
834
835         <manager name="QueueRule" language="en_US">
836                 <synopsis>
837                         Queue Rules.
838                 </synopsis>
839                 <syntax>
840                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
841                         <parameter name="Rule" />
842                 </syntax>
843                 <description>
844                 </description>
845         </manager>
846         <manager name="QueueReload" language="en_US">
847                 <synopsis>
848                         Reload a queue, queues, or any sub-section of a queue or queues.
849                 </synopsis>
850                 <syntax>
851                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
852                         <parameter name="Queue" />
853                         <parameter name="Members">
854                                 <enumlist>
855                                         <enum name="yes" />
856                                         <enum name="no" />
857                                 </enumlist>
858                         </parameter>
859                         <parameter name="Rules">
860                                 <enumlist>
861                                         <enum name="yes" />
862                                         <enum name="no" />
863                                 </enumlist>
864                         </parameter>
865                         <parameter name="Parameters">
866                                 <enumlist>
867                                         <enum name="yes" />
868                                         <enum name="no" />
869                                 </enumlist>
870                         </parameter>
871                 </syntax>
872                 <description>
873                 </description>
874         </manager>
875         <manager name="QueueReset" language="en_US">
876                 <synopsis>
877                         Reset queue statistics.
878                 </synopsis>
879                 <syntax>
880                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
881                         <parameter name="Queue" />
882                 </syntax>
883                 <description>
884                 </description>
885         </manager>
886  ***/
887
888 enum {
889         OPT_MARK_AS_ANSWERED =       (1 << 0),
890         OPT_GO_ON =                  (1 << 1),
891         OPT_DATA_QUALITY =           (1 << 2),
892         OPT_CALLEE_GO_ON =           (1 << 3),
893         OPT_CALLEE_HANGUP =          (1 << 4),
894         OPT_CALLER_HANGUP =          (1 << 5),
895         OPT_IGNORE_CALL_FW =         (1 << 6),
896         OPT_IGNORE_CONNECTEDLINE =   (1 << 7),
897         OPT_CALLEE_PARK =            (1 << 8),
898         OPT_CALLER_PARK =            (1 << 9),
899         OPT_NO_RETRY =               (1 << 10),
900         OPT_RINGING =                (1 << 11),
901         OPT_RING_WHEN_RINGING =      (1 << 12),
902         OPT_CALLEE_TRANSFER =        (1 << 13),
903         OPT_CALLER_TRANSFER =        (1 << 14),
904         OPT_CALLEE_AUTOMIXMON =      (1 << 15),
905         OPT_CALLER_AUTOMIXMON =      (1 << 16),
906         OPT_CALLEE_AUTOMON =         (1 << 17),
907         OPT_CALLER_AUTOMON =         (1 << 18),
908 };
909
910 enum {
911         OPT_ARG_CALLEE_GO_ON = 0,
912         /* note: this entry _MUST_ be the last one in the enum */
913         OPT_ARG_ARRAY_SIZE
914 };
915
916 AST_APP_OPTIONS(queue_exec_options, BEGIN_OPTIONS
917         AST_APP_OPTION('C', OPT_MARK_AS_ANSWERED),
918         AST_APP_OPTION('c', OPT_GO_ON),
919         AST_APP_OPTION('d', OPT_DATA_QUALITY),
920         AST_APP_OPTION_ARG('F', OPT_CALLEE_GO_ON, OPT_ARG_CALLEE_GO_ON),
921         AST_APP_OPTION('h', OPT_CALLEE_HANGUP),
922         AST_APP_OPTION('H', OPT_CALLER_HANGUP),
923         AST_APP_OPTION('i', OPT_IGNORE_CALL_FW),
924         AST_APP_OPTION('I', OPT_IGNORE_CONNECTEDLINE),
925         AST_APP_OPTION('k', OPT_CALLEE_PARK),
926         AST_APP_OPTION('K', OPT_CALLER_PARK),
927         AST_APP_OPTION('n', OPT_NO_RETRY),
928         AST_APP_OPTION('r', OPT_RINGING),
929         AST_APP_OPTION('R', OPT_RING_WHEN_RINGING),
930         AST_APP_OPTION('t', OPT_CALLEE_TRANSFER),
931         AST_APP_OPTION('T', OPT_CALLER_TRANSFER),
932         AST_APP_OPTION('x', OPT_CALLEE_AUTOMIXMON),
933         AST_APP_OPTION('X', OPT_CALLER_AUTOMIXMON),
934         AST_APP_OPTION('w', OPT_CALLEE_AUTOMON),
935         AST_APP_OPTION('W', OPT_CALLER_AUTOMON),
936 END_OPTIONS);
937
938 enum {
939         QUEUE_STRATEGY_RINGALL = 0,
940         QUEUE_STRATEGY_LEASTRECENT,
941         QUEUE_STRATEGY_FEWESTCALLS,
942         QUEUE_STRATEGY_RANDOM,
943         QUEUE_STRATEGY_RRMEMORY,
944         QUEUE_STRATEGY_LINEAR,
945         QUEUE_STRATEGY_WRANDOM,
946         QUEUE_STRATEGY_RRORDERED,
947 };
948
949 enum {
950      QUEUE_AUTOPAUSE_OFF = 0,
951      QUEUE_AUTOPAUSE_ON,
952      QUEUE_AUTOPAUSE_ALL
953 };
954
955 enum queue_reload_mask {
956         QUEUE_RELOAD_PARAMETERS = (1 << 0),
957         QUEUE_RELOAD_MEMBER = (1 << 1),
958         QUEUE_RELOAD_RULES = (1 << 2),
959         QUEUE_RESET_STATS = (1 << 3),
960 };
961
962 static const struct strategy {
963         int strategy;
964         const char *name;
965 } strategies[] = {
966         { QUEUE_STRATEGY_RINGALL, "ringall" },
967         { QUEUE_STRATEGY_LEASTRECENT, "leastrecent" },
968         { QUEUE_STRATEGY_FEWESTCALLS, "fewestcalls" },
969         { QUEUE_STRATEGY_RANDOM, "random" },
970         { QUEUE_STRATEGY_RRMEMORY, "rrmemory" },
971         { QUEUE_STRATEGY_RRMEMORY, "roundrobin" },
972         { QUEUE_STRATEGY_LINEAR, "linear" },
973         { QUEUE_STRATEGY_WRANDOM, "wrandom"},
974         { QUEUE_STRATEGY_RRORDERED, "rrordered"},
975 };
976
977 static const struct autopause {
978         int autopause;
979         const char *name;
980 } autopausesmodes [] = {
981         { QUEUE_AUTOPAUSE_OFF,"no" },
982         { QUEUE_AUTOPAUSE_ON, "yes" },
983         { QUEUE_AUTOPAUSE_ALL,"all" },
984 };
985
986
987 static struct ast_taskprocessor *devicestate_tps;
988
989 #define DEFAULT_RETRY           5
990 #define DEFAULT_TIMEOUT         15
991 #define RECHECK                 1               /*!< Recheck every second to see we we're at the top yet */
992 #define MAX_PERIODIC_ANNOUNCEMENTS 10           /*!< The maximum periodic announcements we can have */
993 #define DEFAULT_MIN_ANNOUNCE_FREQUENCY 15       /*!< The minimum number of seconds between position announcements \
994                                                      The default value of 15 provides backwards compatibility */
995 #define MAX_QUEUE_BUCKETS 53
996
997 #define RES_OKAY        0               /*!< Action completed */
998 #define RES_EXISTS      (-1)            /*!< Entry already exists */
999 #define RES_OUTOFMEMORY (-2)            /*!< Out of memory */
1000 #define RES_NOSUCHQUEUE (-3)            /*!< No such queue */
1001 #define RES_NOT_DYNAMIC (-4)            /*!< Member is not dynamic */
1002
1003 static char *app = "Queue";
1004
1005 static char *app_aqm = "AddQueueMember" ;
1006
1007 static char *app_rqm = "RemoveQueueMember" ;
1008
1009 static char *app_pqm = "PauseQueueMember" ;
1010
1011 static char *app_upqm = "UnpauseQueueMember" ;
1012
1013 static char *app_ql = "QueueLog" ;
1014
1015 /*! \brief Persistent Members astdb family */
1016 static const char * const pm_family = "Queue/PersistentMembers";
1017 /* The maximum length of each persistent member queue database entry */
1018 #define PM_MAX_LEN 8192
1019
1020 /*! \brief queues.conf [general] option */
1021 static int queue_persistent_members = 0;
1022
1023 /*! \brief queues.conf per-queue weight option */
1024 static int use_weight = 0;
1025
1026 /*! \brief queues.conf [general] option */
1027 static int autofill_default = 1;
1028
1029 /*! \brief queues.conf [general] option */
1030 static int montype_default = 0;
1031
1032 /*! \brief queues.conf [general] option */
1033 static int shared_lastcall = 1;
1034
1035 /*! \brief Subscription to device state change events */
1036 static struct ast_event_sub *device_state_sub;
1037
1038 /*! \brief queues.conf [general] option */
1039 static int update_cdr = 0;
1040
1041 /*! \brief queues.conf [general] option */
1042 static int negative_penalty_invalid = 0;
1043
1044 /*! \brief queues.conf [general] option */
1045 static int log_membername_as_agent = 0;
1046
1047 /*! \brief queues.conf [general] option */
1048 static int check_state_unknown = 0;
1049
1050 /*! \brief name of the ringinuse field in the realtime database */
1051 static char *realtime_ringinuse_field;
1052
1053 enum queue_result {
1054         QUEUE_UNKNOWN = 0,
1055         QUEUE_TIMEOUT = 1,
1056         QUEUE_JOINEMPTY = 2,
1057         QUEUE_LEAVEEMPTY = 3,
1058         QUEUE_JOINUNAVAIL = 4,
1059         QUEUE_LEAVEUNAVAIL = 5,
1060         QUEUE_FULL = 6,
1061         QUEUE_CONTINUE = 7,
1062 };
1063
1064 static const struct {
1065         enum queue_result id;
1066         char *text;
1067 } queue_results[] = {
1068         { QUEUE_UNKNOWN, "UNKNOWN" },
1069         { QUEUE_TIMEOUT, "TIMEOUT" },
1070         { QUEUE_JOINEMPTY,"JOINEMPTY" },
1071         { QUEUE_LEAVEEMPTY, "LEAVEEMPTY" },
1072         { QUEUE_JOINUNAVAIL, "JOINUNAVAIL" },
1073         { QUEUE_LEAVEUNAVAIL, "LEAVEUNAVAIL" },
1074         { QUEUE_FULL, "FULL" },
1075         { QUEUE_CONTINUE, "CONTINUE" },
1076 };
1077
1078 enum queue_timeout_priority {
1079         TIMEOUT_PRIORITY_APP,
1080         TIMEOUT_PRIORITY_CONF,
1081 };
1082
1083 /*! \brief We define a custom "local user" structure because we
1084  *  use it not only for keeping track of what is in use but
1085  *  also for keeping track of who we're dialing.
1086  *
1087  *  There are two "links" defined in this structure, q_next and call_next.
1088  *  q_next links ALL defined callattempt structures into a linked list. call_next is
1089  *  a link which allows for a subset of the callattempts to be traversed. This subset
1090  *  is used in wait_for_answer so that irrelevant callattempts are not traversed. This
1091  *  also is helpful so that queue logs are always accurate in the case where a call to 
1092  *  a member times out, especially if using the ringall strategy. 
1093 */
1094
1095 struct callattempt {
1096         struct callattempt *q_next;
1097         struct callattempt *call_next;
1098         struct ast_channel *chan;
1099         char interface[256];                    /*!< An Asterisk dial string (not a channel name) */
1100         int metric;
1101         time_t lastcall;
1102         struct call_queue *lastqueue;
1103         struct member *member;
1104         /*! Saved connected party info from an AST_CONTROL_CONNECTED_LINE. */
1105         struct ast_party_connected_line connected;
1106         /*! TRUE if an AST_CONTROL_CONNECTED_LINE update was saved to the connected element. */
1107         unsigned int pending_connected_update:1;
1108         /*! TRUE if the connected line update is blocked. */
1109         unsigned int block_connected_update:1;
1110         /*! TRUE if caller id is not available for connected line */
1111         unsigned int dial_callerid_absent:1;
1112         /*! TRUE if the call is still active */
1113         unsigned int stillgoing:1;
1114         struct ast_aoc_decoded *aoc_s_rate_list;
1115 };
1116
1117
1118 struct queue_ent {
1119         struct call_queue *parent;             /*!< What queue is our parent */
1120         char moh[MAX_MUSICCLASS];              /*!< Name of musiconhold to be used */
1121         char announce[PATH_MAX];               /*!< Announcement to play for member when call is answered */
1122         char context[AST_MAX_CONTEXT];         /*!< Context when user exits queue */
1123         char digits[AST_MAX_EXTENSION];        /*!< Digits entered while in queue */
1124         int valid_digits;                      /*!< Digits entered correspond to valid extension. Exited */
1125         int pos;                               /*!< Where we are in the queue */
1126         int prio;                              /*!< Our priority */
1127         int last_pos_said;                     /*!< Last position we told the user */
1128         int ring_when_ringing;                 /*!< Should we only use ring indication when a channel is ringing? */
1129         time_t last_periodic_announce_time;    /*!< The last time we played a periodic announcement */
1130         int last_periodic_announce_sound;      /*!< The last periodic announcement we made */
1131         time_t last_pos;                       /*!< Last time we told the user their position */
1132         int opos;                              /*!< Where we started in the queue */
1133         int handled;                           /*!< Whether our call was handled */
1134         int pending;                           /*!< Non-zero if we are attempting to call a member */
1135         int max_penalty;                       /*!< Limit the members that can take this call to this penalty or lower */
1136         int min_penalty;                       /*!< Limit the members that can take this call to this penalty or higher */
1137         int linpos;                            /*!< If using linear strategy, what position are we at? */
1138         int linwrapped;                        /*!< Is the linpos wrapped? */
1139         time_t start;                          /*!< When we started holding */
1140         time_t expire;                         /*!< When this entry should expire (time out of queue) */
1141         int cancel_answered_elsewhere;         /*!< Whether we should force the CAE flag on this call (C) option*/
1142         struct ast_channel *chan;              /*!< Our channel */
1143         AST_LIST_HEAD_NOLOCK(,penalty_rule) qe_rules; /*!< Local copy of the queue's penalty rules */
1144         struct penalty_rule *pr;               /*!< Pointer to the next penalty rule to implement */
1145         struct queue_ent *next;                /*!< The next queue entry */
1146 };
1147
1148 struct member {
1149         char interface[AST_CHANNEL_NAME];    /*!< Technology/Location to dial to reach this member*/
1150         char state_exten[AST_MAX_EXTENSION]; /*!< Extension to get state from (if using hint) */
1151         char state_context[AST_MAX_CONTEXT]; /*!< Context to use when getting state (if using hint) */
1152         char state_interface[AST_CHANNEL_NAME]; /*!< Technology/Location from which to read devicestate changes */
1153         char membername[80];                 /*!< Member name to use in queue logs */
1154         int penalty;                         /*!< Are we a last resort? */
1155         int calls;                           /*!< Number of calls serviced by this member */
1156         int dynamic;                         /*!< Are we dynamically added? */
1157         int realtime;                        /*!< Is this member realtime? */
1158         int status;                          /*!< Status of queue member */
1159         int paused;                          /*!< Are we paused (not accepting calls)? */
1160         time_t lastcall;                     /*!< When last successful call was hungup */
1161         struct call_queue *lastqueue;        /*!< Last queue we received a call */
1162         unsigned int dead:1;                 /*!< Used to detect members deleted in realtime */
1163         unsigned int delme:1;                /*!< Flag to delete entry on reload */
1164         char rt_uniqueid[80];                /*!< Unique id of realtime member entry */
1165         unsigned int ringinuse:1;            /*!< Flag to ring queue members even if their status is 'inuse' */
1166 };
1167
1168 enum empty_conditions {
1169         QUEUE_EMPTY_PENALTY = (1 << 0),
1170         QUEUE_EMPTY_PAUSED = (1 << 1),
1171         QUEUE_EMPTY_INUSE = (1 << 2),
1172         QUEUE_EMPTY_RINGING = (1 << 3),
1173         QUEUE_EMPTY_UNAVAILABLE = (1 << 4),
1174         QUEUE_EMPTY_INVALID = (1 << 5),
1175         QUEUE_EMPTY_UNKNOWN = (1 << 6),
1176         QUEUE_EMPTY_WRAPUP = (1 << 7),
1177 };
1178
1179 enum member_properties {
1180         MEMBER_PENALTY = 0,
1181         MEMBER_RINGINUSE = 1,
1182 };
1183
1184 /* values used in multi-bit flags in call_queue */
1185 #define ANNOUNCEHOLDTIME_ALWAYS 1
1186 #define ANNOUNCEHOLDTIME_ONCE 2
1187 #define QUEUE_EVENT_VARIABLES 3
1188
1189 struct penalty_rule {
1190         int time;                           /*!< Number of seconds that need to pass before applying this rule */
1191         int max_value;                      /*!< The amount specified in the penalty rule for max penalty */
1192         int min_value;                      /*!< The amount specified in the penalty rule for min penalty */
1193         int max_relative;                   /*!< Is the max adjustment relative? 1 for relative, 0 for absolute */
1194         int min_relative;                   /*!< Is the min adjustment relative? 1 for relative, 0 for absolute */
1195         AST_LIST_ENTRY(penalty_rule) list;  /*!< Next penalty_rule */
1196 };
1197
1198 #define ANNOUNCEPOSITION_YES 1 /*!< We announce position */
1199 #define ANNOUNCEPOSITION_NO 2 /*!< We don't announce position */
1200 #define ANNOUNCEPOSITION_MORE_THAN 3 /*!< We say "Currently there are more than <limit>" */
1201 #define ANNOUNCEPOSITION_LIMIT 4 /*!< We not announce position more than <limit> */
1202
1203 struct call_queue {
1204         AST_DECLARE_STRING_FIELDS(
1205                 /*! Queue name */
1206                 AST_STRING_FIELD(name);
1207                 /*! Music on Hold class */
1208                 AST_STRING_FIELD(moh);
1209                 /*! Announcement to play when call is answered */
1210                 AST_STRING_FIELD(announce);
1211                 /*! Exit context */
1212                 AST_STRING_FIELD(context);
1213                 /*! Macro to run upon member connection */
1214                 AST_STRING_FIELD(membermacro);
1215                 /*! Gosub to run upon member connection */
1216                 AST_STRING_FIELD(membergosub);
1217                 /*! Default rule to use if none specified in call to Queue() */
1218                 AST_STRING_FIELD(defaultrule);
1219                 /*! Sound file: "Your call is now first in line" (def. queue-youarenext) */
1220                 AST_STRING_FIELD(sound_next);
1221                 /*! Sound file: "There are currently" (def. queue-thereare) */
1222                 AST_STRING_FIELD(sound_thereare);
1223                 /*! Sound file: "calls waiting to speak to a representative." (def. queue-callswaiting) */
1224                 AST_STRING_FIELD(sound_calls);
1225                 /*! Sound file: "Currently there are more than" (def. queue-quantity1) */
1226                 AST_STRING_FIELD(queue_quantity1);
1227                 /*! Sound file: "callers waiting to speak with a representative" (def. queue-quantity2) */
1228                 AST_STRING_FIELD(queue_quantity2);
1229                 /*! Sound file: "The current estimated total holdtime is" (def. queue-holdtime) */
1230                 AST_STRING_FIELD(sound_holdtime);
1231                 /*! Sound file: "minutes." (def. queue-minutes) */
1232                 AST_STRING_FIELD(sound_minutes);
1233                 /*! Sound file: "minute." (def. queue-minute) */
1234                 AST_STRING_FIELD(sound_minute);
1235                 /*! Sound file: "seconds." (def. queue-seconds) */
1236                 AST_STRING_FIELD(sound_seconds);
1237                 /*! Sound file: "Thank you for your patience." (def. queue-thankyou) */
1238                 AST_STRING_FIELD(sound_thanks);
1239                 /*! Sound file: Custom announce for caller, no default */
1240                 AST_STRING_FIELD(sound_callerannounce);
1241                 /*! Sound file: "Hold time" (def. queue-reporthold) */
1242                 AST_STRING_FIELD(sound_reporthold);
1243         );
1244         /*! Sound files: Custom announce, no default */
1245         struct ast_str *sound_periodicannounce[MAX_PERIODIC_ANNOUNCEMENTS];
1246         unsigned int dead:1;
1247         unsigned int eventwhencalled:2;
1248         unsigned int ringinuse:1;
1249         unsigned int setinterfacevar:1;
1250         unsigned int setqueuevar:1;
1251         unsigned int setqueueentryvar:1;
1252         unsigned int reportholdtime:1;
1253         unsigned int wrapped:1;
1254         unsigned int timeoutrestart:1;
1255         unsigned int announceholdtime:2;
1256         unsigned int announceposition:3;
1257         int strategy:4;
1258         unsigned int maskmemberstatus:1;
1259         unsigned int realtime:1;
1260         unsigned int found:1;
1261         unsigned int relativeperiodicannounce:1;
1262         unsigned int autopausebusy:1;
1263         unsigned int autopauseunavail:1;
1264         enum empty_conditions joinempty;
1265         enum empty_conditions leavewhenempty;
1266         int announcepositionlimit;          /*!< How many positions we announce? */
1267         int announcefrequency;              /*!< How often to announce their position */
1268         int minannouncefrequency;           /*!< The minimum number of seconds between position announcements (def. 15) */
1269         int periodicannouncefrequency;      /*!< How often to play periodic announcement */
1270         int numperiodicannounce;            /*!< The number of periodic announcements configured */
1271         int randomperiodicannounce;         /*!< Are periodic announcments randomly chosen */
1272         int roundingseconds;                /*!< How many seconds do we round to? */
1273         int holdtime;                       /*!< Current avg holdtime, based on an exponential average */
1274         int talktime;                       /*!< Current avg talktime, based on the same exponential average */
1275         int callscompleted;                 /*!< Number of queue calls completed */
1276         int callsabandoned;                 /*!< Number of queue calls abandoned */
1277         int servicelevel;                   /*!< seconds setting for servicelevel*/
1278         int callscompletedinsl;             /*!< Number of calls answered with servicelevel*/
1279         char monfmt[8];                     /*!< Format to use when recording calls */
1280         int montype;                        /*!< Monitor type  Monitor vs. MixMonitor */
1281         int count;                          /*!< How many entries */
1282         int maxlen;                         /*!< Max number of entries */
1283         int wrapuptime;                     /*!< Wrapup Time */
1284         int penaltymemberslimit;            /*!< Disregard penalty when queue has fewer than this many members */
1285
1286         int retry;                          /*!< Retry calling everyone after this amount of time */
1287         int timeout;                        /*!< How long to wait for an answer */
1288         int weight;                         /*!< Respective weight */
1289         int autopause;                      /*!< Auto pause queue members if they fail to answer */
1290         int autopausedelay;                 /*!< Delay auto pause for autopausedelay seconds since last call */
1291         int timeoutpriority;                /*!< Do we allow a fraction of the timeout to occur for a ring? */
1292
1293         /* Queue strategy things */
1294         int rrpos;                          /*!< Round Robin - position */
1295         int memberdelay;                    /*!< Seconds to delay connecting member to caller */
1296         int autofill;                       /*!< Ignore the head call status and ring an available agent */
1297         
1298         struct ao2_container *members;             /*!< Head of the list of members */
1299         struct queue_ent *head;             /*!< Head of the list of callers */
1300         AST_LIST_ENTRY(call_queue) list;    /*!< Next call queue */
1301         AST_LIST_HEAD_NOLOCK(, penalty_rule) rules; /*!< The list of penalty rules to invoke */
1302 };
1303
1304 struct rule_list {
1305         char name[80];
1306         AST_LIST_HEAD_NOLOCK(,penalty_rule) rules;
1307         AST_LIST_ENTRY(rule_list) list;
1308 };
1309
1310 static AST_LIST_HEAD_STATIC(rule_lists, rule_list);
1311
1312 static struct ao2_container *queues;
1313
1314 static void update_realtime_members(struct call_queue *q);
1315 static struct member *interface_exists(struct call_queue *q, const char *interface);
1316 static int set_member_paused(const char *queuename, const char *interface, const char *reason, int paused);
1317
1318 static void queue_transfer_fixup(void *data, struct ast_channel *old_chan, struct ast_channel *new_chan);
1319
1320 static struct member *find_member_by_queuename_and_interface(const char *queuename, const char *interface);
1321 /*! \brief sets the QUEUESTATUS channel variable */
1322 static void set_queue_result(struct ast_channel *chan, enum queue_result res)
1323 {
1324         int i;
1325
1326         for (i = 0; i < ARRAY_LEN(queue_results); i++) {
1327                 if (queue_results[i].id == res) {
1328                         pbx_builtin_setvar_helper(chan, "QUEUESTATUS", queue_results[i].text);
1329                         return;
1330                 }
1331         }
1332 }
1333
1334 static const char *int2strat(int strategy)
1335 {
1336         int x;
1337
1338         for (x = 0; x < ARRAY_LEN(strategies); x++) {
1339                 if (strategy == strategies[x].strategy) {
1340                         return strategies[x].name;
1341                 }
1342         }
1343
1344         return "<unknown>";
1345 }
1346
1347 static int strat2int(const char *strategy)
1348 {
1349         int x;
1350
1351         for (x = 0; x < ARRAY_LEN(strategies); x++) {
1352                 if (!strcasecmp(strategy, strategies[x].name)) {
1353                         return strategies[x].strategy;
1354                 }
1355         }
1356
1357         return -1;
1358 }
1359
1360 static int autopause2int(const char *autopause)
1361 {
1362         int x;
1363         /*This 'double check' that default value is OFF */
1364         if (ast_strlen_zero(autopause)) {
1365                 return QUEUE_AUTOPAUSE_OFF;
1366         }
1367
1368         /*This 'double check' is to ensure old values works */
1369         if(ast_true(autopause)) {
1370                 return QUEUE_AUTOPAUSE_ON;
1371         }
1372
1373         for (x = 0; x < ARRAY_LEN(autopausesmodes); x++) {
1374                 if (!strcasecmp(autopause, autopausesmodes[x].name)) {
1375                         return autopausesmodes[x].autopause;
1376                 }
1377         }
1378
1379         /*This 'double check' that default value is OFF */
1380         return QUEUE_AUTOPAUSE_OFF;
1381 }
1382
1383 static int queue_hash_cb(const void *obj, const int flags)
1384 {
1385         const struct call_queue *q = obj;
1386
1387         return ast_str_case_hash(q->name);
1388 }
1389
1390 static int queue_cmp_cb(void *obj, void *arg, int flags)
1391 {
1392         struct call_queue *q = obj, *q2 = arg;
1393         return !strcasecmp(q->name, q2->name) ? CMP_MATCH | CMP_STOP : 0;
1394 }
1395
1396 #ifdef REF_DEBUG_ONLY_QUEUES
1397 #define queue_ref(q)                            _queue_ref(q, "", __FILE__, __LINE__, __PRETTY_FUNCTION__)
1398 #define queue_unref(q)                          _queue_unref(q, "", __FILE__, __LINE__, __PRETTY_FUNCTION__)
1399 #define queue_t_ref(q, tag)                     _queue_ref(q, tag, __FILE__, __LINE__, __PRETTY_FUNCTION__)
1400 #define queue_t_unref(q, tag)           _queue_unref(q, tag, __FILE__, __LINE__, __PRETTY_FUNCTION__)
1401 #define queues_t_link(c, q, tag)        __ao2_link_debug(c, q, 0, tag, __FILE__, __LINE__, __PRETTY_FUNCTION__)
1402 #define queues_t_unlink(c, q, tag)      __ao2_unlink_debug(c, q, 0, tag, __FILE__, __LINE__, __PRETTY_FUNCTION__)
1403
1404 static inline struct call_queue *_queue_ref(struct call_queue *q, const char *tag, const char *file, int line, const char *filename)
1405 {
1406         __ao2_ref_debug(q, 1, tag, file, line, filename);
1407         return q;
1408 }
1409
1410 static inline struct call_queue *_queue_unref(struct call_queue *q, const char *tag, const char *file, int line, const char *filename)
1411 {
1412         __ao2_ref_debug(q, -1, tag, file, line, filename);
1413         return NULL;
1414 }
1415
1416 #else
1417
1418 #define queue_t_ref(q, tag)                     queue_ref(q)
1419 #define queue_t_unref(q, tag)           queue_unref(q)
1420 #define queues_t_link(c, q, tag)        ao2_t_link(c, q, tag)
1421 #define queues_t_unlink(c, q, tag)      ao2_t_unlink(c, q, tag)
1422
1423 static inline struct call_queue *queue_ref(struct call_queue *q)
1424 {
1425         ao2_ref(q, 1);
1426         return q;
1427 }
1428
1429 static inline struct call_queue *queue_unref(struct call_queue *q)
1430 {
1431         ao2_ref(q, -1);
1432         return NULL;
1433 }
1434 #endif
1435
1436 /*! \brief Set variables of queue */
1437 static void set_queue_variables(struct call_queue *q, struct ast_channel *chan)
1438 {
1439         char interfacevar[256]="";
1440         float sl = 0;
1441
1442         ao2_lock(q);
1443
1444         if (q->setqueuevar) {
1445                 sl = 0;
1446                 if (q->callscompleted > 0) {
1447                         sl = 100 * ((float) q->callscompletedinsl / (float) q->callscompleted);
1448                 }
1449
1450                 snprintf(interfacevar, sizeof(interfacevar),
1451                         "QUEUENAME=%s,QUEUEMAX=%d,QUEUESTRATEGY=%s,QUEUECALLS=%d,QUEUEHOLDTIME=%d,QUEUETALKTIME=%d,QUEUECOMPLETED=%d,QUEUEABANDONED=%d,QUEUESRVLEVEL=%d,QUEUESRVLEVELPERF=%2.1f",
1452                         q->name, q->maxlen, int2strat(q->strategy), q->count, q->holdtime, q->talktime, q->callscompleted, q->callsabandoned,  q->servicelevel, sl);
1453
1454                 ao2_unlock(q);
1455         
1456                 pbx_builtin_setvar_multiple(chan, interfacevar); 
1457         } else {
1458                 ao2_unlock(q);
1459         }
1460 }
1461
1462 /*! \brief Insert the 'new' entry after the 'prev' entry of queue 'q' */
1463 static inline void insert_entry(struct call_queue *q, struct queue_ent *prev, struct queue_ent *new, int *pos)
1464 {
1465         struct queue_ent *cur;
1466
1467         if (!q || !new)
1468                 return;
1469         if (prev) {
1470                 cur = prev->next;
1471                 prev->next = new;
1472         } else {
1473                 cur = q->head;
1474                 q->head = new;
1475         }
1476         new->next = cur;
1477
1478         /* every queue_ent must have a reference to it's parent call_queue, this
1479          * reference does not go away until the end of the queue_ent's life, meaning
1480          * that even when the queue_ent leaves the call_queue this ref must remain. */
1481         queue_ref(q);
1482         new->parent = q;
1483         new->pos = ++(*pos);
1484         new->opos = *pos;
1485 }
1486
1487 /*! \brief Check if members are available
1488  *
1489  * This function checks to see if members are available to be called. If any member
1490  * is available, the function immediately returns 0. If no members are available,
1491  * then -1 is returned.
1492  */
1493 static int get_member_status(struct call_queue *q, int max_penalty, int min_penalty, enum empty_conditions conditions)
1494 {
1495         struct member *member;
1496         struct ao2_iterator mem_iter;
1497
1498         ao2_lock(q);
1499         mem_iter = ao2_iterator_init(q->members, 0);
1500         for (; (member = ao2_iterator_next(&mem_iter)); ao2_ref(member, -1)) {
1501                 if ((max_penalty && (member->penalty > max_penalty)) || (min_penalty && (member->penalty < min_penalty))) {
1502                         if (conditions & QUEUE_EMPTY_PENALTY) {
1503                                 ast_debug(4, "%s is unavailable because his penalty is not between %d and %d\n", member->membername, min_penalty, max_penalty);
1504                                 continue;
1505                         }
1506                 }
1507
1508                 switch (member->status) {
1509                 case AST_DEVICE_INVALID:
1510                         if (conditions & QUEUE_EMPTY_INVALID) {
1511                                 ast_debug(4, "%s is unavailable because his device state is 'invalid'\n", member->membername);
1512                                 break;
1513                         }
1514                         goto default_case;
1515                 case AST_DEVICE_UNAVAILABLE:
1516                         if (conditions & QUEUE_EMPTY_UNAVAILABLE) {
1517                                 ast_debug(4, "%s is unavailable because his device state is 'unavailable'\n", member->membername);
1518                                 break;
1519                         }
1520                         goto default_case;
1521                 case AST_DEVICE_INUSE:
1522                         if (conditions & QUEUE_EMPTY_INUSE) {
1523                                 ast_debug(4, "%s is unavailable because his device state is 'inuse'\n", member->membername);
1524                                 break;
1525                         }
1526                         goto default_case;
1527                 case AST_DEVICE_RINGING:
1528                         if (conditions & QUEUE_EMPTY_RINGING) {
1529                                 ast_debug(4, "%s is unavailable because his device state is 'ringing'\n", member->membername);
1530                                 break;
1531                         }
1532                         goto default_case;
1533                 case AST_DEVICE_UNKNOWN:
1534                         if (conditions & QUEUE_EMPTY_UNKNOWN) {
1535                                 ast_debug(4, "%s is unavailable because his device state is 'unknown'\n", member->membername);
1536                                 break;
1537                         }
1538                         /* Fall-through */
1539                 default:
1540                 default_case:
1541                         if (member->paused && (conditions & QUEUE_EMPTY_PAUSED)) {
1542                                 ast_debug(4, "%s is unavailable because he is paused'\n", member->membername);
1543                                 break;
1544                         } else if ((conditions & QUEUE_EMPTY_WRAPUP) && member->lastcall && q->wrapuptime && (time(NULL) - q->wrapuptime < member->lastcall)) {
1545                                 ast_debug(4, "%s is unavailable because it has only been %d seconds since his last call (wrapup time is %d)\n", member->membername, (int) (time(NULL) - member->lastcall), q->wrapuptime);
1546                                 break;
1547                         } else {
1548                                 ao2_ref(member, -1);
1549                                 ao2_iterator_destroy(&mem_iter);
1550                                 ao2_unlock(q);
1551                                 ast_debug(4, "%s is available.\n", member->membername);
1552                                 return 0;
1553                         }
1554                         break;
1555                 }
1556         }
1557         ao2_iterator_destroy(&mem_iter);
1558
1559         ao2_unlock(q);
1560         return -1;
1561 }
1562
1563 struct statechange {
1564         AST_LIST_ENTRY(statechange) entry;
1565         int state;
1566         char dev[0];
1567 };
1568
1569 /*! \brief set a member's status based on device state of that member's state_interface.
1570  *
1571  * Lock interface list find sc, iterate through each queues queue_member list for member to
1572  * update state inside queues
1573 */
1574 static int update_status(struct call_queue *q, struct member *m, const int status)
1575 {
1576         m->status = status;
1577
1578         if (q->maskmemberstatus) {
1579                 return 0;
1580         }
1581
1582         /*** DOCUMENTATION
1583         <managerEventInstance>
1584                 <synopsis>Raised when a Queue member's status has changed.</synopsis>
1585                 <syntax>
1586                         <parameter name="Queue">
1587                                 <para>The name of the queue.</para>
1588                         </parameter>
1589                         <parameter name="Location">
1590                                 <para>The queue member's channel technology or location.</para>
1591                         </parameter>
1592                         <parameter name="MemberName">
1593                                 <para>The name of the queue member.</para>
1594                         </parameter>
1595                         <parameter name="StateInterface">
1596                                 <para>Channel technology or location from which to read device state changes.</para>
1597                         </parameter>
1598                         <parameter name="Membership">
1599                                 <enumlist>
1600                                         <enum name="dynamic"/>
1601                                         <enum name="realtime"/>
1602                                         <enum name="static"/>
1603                                 </enumlist>
1604                         </parameter>
1605                         <parameter name="Penalty">
1606                                 <para>The penalty associated with the queue member.</para>
1607                         </parameter>
1608                         <parameter name="CallsTaken">
1609                                 <para>The number of calls this queue member has serviced.</para>
1610                         </parameter>
1611                         <parameter name="LastCall">
1612                                 <para>The time this member last took call, expressed in seconds since 00:00, Jan 1, 1970 UTC.</para>
1613                         </parameter>
1614                         <parameter name="Status">
1615                                 <para>The status of the queue member.  This will be a device state value.</para>
1616                         </parameter>
1617                         <parameter name="Paused">
1618                                 <enumlist>
1619                                         <enum name="0"/>
1620                                         <enum name="1"/>
1621                                 </enumlist>
1622                         </parameter>
1623                 </syntax>
1624         </managerEventInstance>
1625         ***/
1626         manager_event(EVENT_FLAG_AGENT, "QueueMemberStatus",
1627                 "Queue: %s\r\n"
1628                 "Location: %s\r\n"
1629                 "MemberName: %s\r\n"
1630                 "StateInterface: %s\r\n"
1631                 "Membership: %s\r\n"
1632                 "Penalty: %d\r\n"
1633                 "CallsTaken: %d\r\n"
1634                 "LastCall: %d\r\n"
1635                 "Status: %d\r\n"
1636                 "Paused: %d\r\n",
1637                 q->name, m->interface, m->membername, m->state_interface, m->dynamic ? "dynamic" : m->realtime ? "realtime" : "static",
1638                 m->penalty, m->calls, (int)m->lastcall, m->status, m->paused
1639         );
1640
1641         return 0;
1642 }
1643
1644 /*! \brief set a member's status based on device state of that member's interface*/
1645 static int handle_statechange(void *datap)
1646 {
1647         struct statechange *sc = datap;
1648         struct ao2_iterator miter, qiter;
1649         struct member *m;
1650         struct call_queue *q;
1651         char interface[80], *slash_pos;
1652         int found = 0;
1653
1654         qiter = ao2_iterator_init(queues, 0);
1655         while ((q = ao2_t_iterator_next(&qiter, "Iterate over queues"))) {
1656                 ao2_lock(q);
1657
1658                 miter = ao2_iterator_init(q->members, 0);
1659                 for (; (m = ao2_iterator_next(&miter)); ao2_ref(m, -1)) {
1660                         ast_copy_string(interface, m->state_interface, sizeof(interface));
1661
1662                         if ((slash_pos = strchr(interface, '/'))) {
1663                                 if (!strncasecmp(interface, "Local/", 6) && (slash_pos = strchr(slash_pos + 1, '/'))) {
1664                                         *slash_pos = '\0';
1665                                 }
1666                         }
1667
1668                         if (!strcasecmp(interface, sc->dev)) {
1669                                 found = 1;
1670                                 update_status(q, m, sc->state);
1671                                 ao2_ref(m, -1);
1672                                 break;
1673                         }
1674                 }
1675                 ao2_iterator_destroy(&miter);
1676
1677                 ao2_unlock(q);
1678                 queue_t_unref(q, "Done with iterator");
1679         }
1680         ao2_iterator_destroy(&qiter);
1681
1682         if (found) {
1683                 ast_debug(1, "Device '%s' changed to state '%d' (%s)\n", sc->dev, sc->state, ast_devstate2str(sc->state));
1684         } else {
1685                 ast_debug(3, "Device '%s' changed to state '%d' (%s) but we don't care because they're not a member of any queue.\n", sc->dev, sc->state, ast_devstate2str(sc->state));
1686         }
1687
1688         ast_free(sc);
1689         return 0;
1690 }
1691
1692 static void device_state_cb(const struct ast_event *event, void *unused)
1693 {
1694         enum ast_device_state state;
1695         const char *device;
1696         struct statechange *sc;
1697         size_t datapsize;
1698
1699         state = ast_event_get_ie_uint(event, AST_EVENT_IE_STATE);
1700         device = ast_event_get_ie_str(event, AST_EVENT_IE_DEVICE);
1701
1702         if (ast_strlen_zero(device)) {
1703                 ast_log(LOG_ERROR, "Received invalid event that had no device IE\n");
1704                 return;
1705         }
1706         datapsize = sizeof(*sc) + strlen(device) + 1;
1707         if (!(sc = ast_calloc(1, datapsize))) {
1708                 ast_log(LOG_ERROR, "failed to calloc a state change struct\n");
1709                 return;
1710         }
1711         sc->state = state;
1712         strcpy(sc->dev, device);
1713         if (ast_taskprocessor_push(devicestate_tps, handle_statechange, sc) < 0) {
1714                 ast_free(sc);
1715         }
1716 }
1717
1718 /*! \brief Helper function which converts from extension state to device state values */
1719 static int extensionstate2devicestate(int state)
1720 {
1721         switch (state) {
1722         case AST_EXTENSION_NOT_INUSE:
1723                 state = AST_DEVICE_NOT_INUSE;
1724                 break;
1725         case AST_EXTENSION_INUSE:
1726                 state = AST_DEVICE_INUSE;
1727                 break;
1728         case AST_EXTENSION_BUSY:
1729                 state = AST_DEVICE_BUSY;
1730                 break;
1731         case AST_EXTENSION_RINGING:
1732                 state = AST_DEVICE_RINGING;
1733                 break;
1734         case AST_EXTENSION_ONHOLD:
1735                 state = AST_DEVICE_ONHOLD;
1736                 break;
1737         case AST_EXTENSION_UNAVAILABLE:
1738                 state = AST_DEVICE_UNAVAILABLE;
1739                 break;
1740         case AST_EXTENSION_REMOVED:
1741         case AST_EXTENSION_DEACTIVATED:
1742         default:
1743                 state = AST_DEVICE_INVALID;
1744                 break;
1745         }
1746
1747         return state;
1748 }
1749
1750 static int extension_state_cb(char *context, char *exten, struct ast_state_cb_info *info, void *data)
1751 {
1752         struct ao2_iterator miter, qiter;
1753         struct member *m;
1754         struct call_queue *q;
1755         int state = info->exten_state;
1756         int found = 0, device_state = extensionstate2devicestate(state);
1757
1758         /* only interested in extension state updates involving device states */
1759         if (info->reason != AST_HINT_UPDATE_DEVICE) {
1760                 return 0;
1761         }
1762
1763         qiter = ao2_iterator_init(queues, 0);
1764         while ((q = ao2_t_iterator_next(&qiter, "Iterate through queues"))) {
1765                 ao2_lock(q);
1766
1767                 miter = ao2_iterator_init(q->members, 0);
1768                 for (; (m = ao2_iterator_next(&miter)); ao2_ref(m, -1)) {
1769                         if (!strcmp(m->state_context, context) && !strcmp(m->state_exten, exten)) {
1770                                 update_status(q, m, device_state);
1771                                 ao2_ref(m, -1);
1772                                 found = 1;
1773                                 break;
1774                         }
1775                 }
1776                 ao2_iterator_destroy(&miter);
1777
1778                 ao2_unlock(q);
1779                 queue_t_unref(q, "Done with iterator");
1780         }
1781         ao2_iterator_destroy(&qiter);
1782
1783         if (found) {
1784                 ast_debug(1, "Extension '%s@%s' changed to state '%d' (%s)\n", exten, context, device_state, ast_devstate2str(device_state));
1785         } else {
1786                 ast_debug(3, "Extension '%s@%s' changed to state '%d' (%s) but we don't care because they're not a member of any queue.\n",
1787                           exten, context, device_state, ast_devstate2str(device_state));
1788         }
1789
1790         return 0;
1791 }
1792
1793 /*! \brief Return the current state of a member */
1794 static int get_queue_member_status(struct member *cur)
1795 {
1796         return ast_strlen_zero(cur->state_exten) ? ast_device_state(cur->state_interface) : extensionstate2devicestate(ast_extension_state(NULL, cur->state_context, cur->state_exten));
1797 }
1798
1799 /*! \brief allocate space for new queue member and set fields based on parameters passed */
1800 static struct member *create_queue_member(const char *interface, const char *membername, int penalty, int paused, const char *state_interface, int ringinuse)
1801 {
1802         struct member *cur;
1803
1804         if ((cur = ao2_alloc(sizeof(*cur), NULL))) {
1805                 cur->ringinuse = ringinuse;
1806                 cur->penalty = penalty;
1807                 cur->paused = paused;
1808                 ast_copy_string(cur->interface, interface, sizeof(cur->interface));
1809                 if (!ast_strlen_zero(state_interface)) {
1810                         ast_copy_string(cur->state_interface, state_interface, sizeof(cur->state_interface));
1811                 } else {
1812                         ast_copy_string(cur->state_interface, interface, sizeof(cur->state_interface));
1813                 }
1814                 if (!ast_strlen_zero(membername)) {
1815                         ast_copy_string(cur->membername, membername, sizeof(cur->membername));
1816                 } else {
1817                         ast_copy_string(cur->membername, interface, sizeof(cur->membername));
1818                 }
1819                 if (!strchr(cur->interface, '/')) {
1820                         ast_log(LOG_WARNING, "No location at interface '%s'\n", interface);
1821                 }
1822                 if (!strncmp(cur->state_interface, "hint:", 5)) {
1823                         char *tmp = ast_strdupa(cur->state_interface), *context = tmp;
1824                         char *exten = strsep(&context, "@") + 5;
1825
1826                         ast_copy_string(cur->state_exten, exten, sizeof(cur->state_exten));
1827                         ast_copy_string(cur->state_context, S_OR(context, "default"), sizeof(cur->state_context));
1828                 }
1829                 cur->status = get_queue_member_status(cur);
1830         }
1831
1832         return cur;
1833 }
1834
1835
1836 static int compress_char(const char c)
1837 {
1838         if (c < 32) {
1839                 return 0;
1840         } else if (c > 96) {
1841                 return c - 64;
1842         } 
1843         return c - 32;
1844 }
1845
1846 static int member_hash_fn(const void *obj, const int flags)
1847 {
1848         const struct member *mem = obj;
1849         const char *interface = (flags & OBJ_KEY) ? obj : mem->interface;
1850         const char *chname = strchr(interface, '/');
1851         int ret = 0, i;
1852
1853         if (!chname) {
1854                 chname = interface;
1855         }
1856         for (i = 0; i < 5 && chname[i]; i++) {
1857                 ret += compress_char(chname[i]) << (i * 6);
1858         }
1859         return ret;
1860 }
1861
1862 static int member_cmp_fn(void *obj1, void *obj2, int flags)
1863 {
1864         struct member *mem1 = obj1;
1865         struct member *mem2 = obj2;
1866         const char *interface = (flags & OBJ_KEY) ? obj2 : mem2->interface;
1867
1868         return strcasecmp(mem1->interface, interface) ? 0 : CMP_MATCH | CMP_STOP;
1869 }
1870
1871 /*!
1872  * \brief Initialize Queue default values.
1873  * \note the queue's lock  must be held before executing this function
1874 */
1875 static void init_queue(struct call_queue *q)
1876 {
1877         int i;
1878         struct penalty_rule *pr_iter;
1879
1880         q->dead = 0;
1881         q->retry = DEFAULT_RETRY;
1882         q->timeout = DEFAULT_TIMEOUT;
1883         q->maxlen = 0;
1884         q->announcefrequency = 0;
1885         q->minannouncefrequency = DEFAULT_MIN_ANNOUNCE_FREQUENCY;
1886         q->announceholdtime = 1;
1887         q->announcepositionlimit = 10; /* Default 10 positions */
1888         q->announceposition = ANNOUNCEPOSITION_YES; /* Default yes */
1889         q->roundingseconds = 0; /* Default - don't announce seconds */
1890         q->servicelevel = 0;
1891         q->ringinuse = 1;
1892         q->setinterfacevar = 0;
1893         q->setqueuevar = 0;
1894         q->setqueueentryvar = 0;
1895         q->autofill = autofill_default;
1896         q->montype = montype_default;
1897         q->monfmt[0] = '\0';
1898         q->reportholdtime = 0;
1899         q->wrapuptime = 0;
1900         q->penaltymemberslimit = 0;
1901         q->joinempty = 0;
1902         q->leavewhenempty = 0;
1903         q->memberdelay = 0;
1904         q->maskmemberstatus = 0;
1905         q->eventwhencalled = 0;
1906         q->weight = 0;
1907         q->timeoutrestart = 0;
1908         q->periodicannouncefrequency = 0;
1909         q->randomperiodicannounce = 0;
1910         q->numperiodicannounce = 0;
1911         q->autopause = QUEUE_AUTOPAUSE_OFF;
1912         q->timeoutpriority = TIMEOUT_PRIORITY_APP;
1913         q->autopausedelay = 0;
1914         if (!q->members) {
1915                 if (q->strategy == QUEUE_STRATEGY_LINEAR || q->strategy == QUEUE_STRATEGY_RRORDERED) {
1916                         /* linear strategy depends on order, so we have to place all members in a single bucket */
1917                         q->members = ao2_container_alloc(1, member_hash_fn, member_cmp_fn);
1918                 } else {
1919                         q->members = ao2_container_alloc(37, member_hash_fn, member_cmp_fn);
1920                 }
1921         }
1922         q->found = 1;
1923
1924         ast_string_field_set(q, sound_next, "queue-youarenext");
1925         ast_string_field_set(q, sound_thereare, "queue-thereare");
1926         ast_string_field_set(q, sound_calls, "queue-callswaiting");
1927         ast_string_field_set(q, queue_quantity1, "queue-quantity1");
1928         ast_string_field_set(q, queue_quantity2, "queue-quantity2");
1929         ast_string_field_set(q, sound_holdtime, "queue-holdtime");
1930         ast_string_field_set(q, sound_minutes, "queue-minutes");
1931         ast_string_field_set(q, sound_minute, "queue-minute");
1932         ast_string_field_set(q, sound_seconds, "queue-seconds");
1933         ast_string_field_set(q, sound_thanks, "queue-thankyou");
1934         ast_string_field_set(q, sound_reporthold, "queue-reporthold");
1935
1936         if (!q->sound_periodicannounce[0]) {
1937                 q->sound_periodicannounce[0] = ast_str_create(32);
1938         }
1939
1940         if (q->sound_periodicannounce[0]) {
1941                 ast_str_set(&q->sound_periodicannounce[0], 0, "queue-periodic-announce");
1942         }
1943
1944         for (i = 1; i < MAX_PERIODIC_ANNOUNCEMENTS; i++) {
1945                 if (q->sound_periodicannounce[i]) {
1946                         ast_str_set(&q->sound_periodicannounce[i], 0, "%s", "");
1947                 }
1948         }
1949
1950         while ((pr_iter = AST_LIST_REMOVE_HEAD(&q->rules,list))) {
1951                 ast_free(pr_iter);
1952         }
1953 }
1954
1955 static void clear_queue(struct call_queue *q)
1956 {
1957         q->holdtime = 0;
1958         q->callscompleted = 0;
1959         q->callsabandoned = 0;
1960         q->callscompletedinsl = 0;
1961         q->talktime = 0;
1962
1963         if (q->members) {
1964                 struct member *mem;
1965                 struct ao2_iterator mem_iter = ao2_iterator_init(q->members, 0);
1966                 while ((mem = ao2_iterator_next(&mem_iter))) {
1967                         mem->calls = 0;
1968                         mem->lastcall = 0;
1969                         ao2_ref(mem, -1);
1970                 }
1971                 ao2_iterator_destroy(&mem_iter);
1972         }
1973 }
1974
1975 /*!
1976  * \brief Change queue penalty by adding rule.
1977  *
1978  * Check rule for errors with time or fomatting, see if rule is relative to rest
1979  * of queue, iterate list of rules to find correct insertion point, insert and return.
1980  * \retval -1 on failure
1981  * \retval 0 on success
1982  * \note Call this with the rule_lists locked
1983 */
1984 static int insert_penaltychange(const char *list_name, const char *content, const int linenum)
1985 {
1986         char *timestr, *maxstr, *minstr, *contentdup;
1987         struct penalty_rule *rule = NULL, *rule_iter;
1988         struct rule_list *rl_iter;
1989         int penaltychangetime, inserted = 0;
1990
1991         if (!(rule = ast_calloc(1, sizeof(*rule)))) {
1992                 return -1;
1993         }
1994
1995         contentdup = ast_strdupa(content);
1996         
1997         if (!(maxstr = strchr(contentdup, ','))) {
1998                 ast_log(LOG_WARNING, "Improperly formatted penaltychange rule at line %d. Ignoring.\n", linenum);
1999                 ast_free(rule);
2000                 return -1;
2001         }
2002
2003         *maxstr++ = '\0';
2004         timestr = contentdup;
2005
2006         if ((penaltychangetime = atoi(timestr)) < 0) {
2007                 ast_log(LOG_WARNING, "Improper time parameter specified for penaltychange rule at line %d. Ignoring.\n", linenum);
2008                 ast_free(rule);
2009                 return -1;
2010         }
2011
2012         rule->time = penaltychangetime;
2013
2014         if ((minstr = strchr(maxstr,','))) {
2015                 *minstr++ = '\0';
2016         }
2017         
2018         /* The last check will evaluate true if either no penalty change is indicated for a given rule
2019          * OR if a min penalty change is indicated but no max penalty change is */
2020         if (*maxstr == '+' || *maxstr == '-' || *maxstr == '\0') {
2021                 rule->max_relative = 1;
2022         }
2023
2024         rule->max_value = atoi(maxstr);
2025
2026         if (!ast_strlen_zero(minstr)) {
2027                 if (*minstr == '+' || *minstr == '-') {
2028                         rule->min_relative = 1;
2029                 }
2030                 rule->min_value = atoi(minstr);
2031         } else { /*there was no minimum specified, so assume this means no change*/
2032                 rule->min_relative = 1;
2033         }
2034
2035         /*We have the rule made, now we need to insert it where it belongs*/
2036         AST_LIST_TRAVERSE(&rule_lists, rl_iter, list){
2037                 if (strcasecmp(rl_iter->name, list_name)) {
2038                         continue;
2039                 }
2040
2041                 AST_LIST_TRAVERSE_SAFE_BEGIN(&rl_iter->rules, rule_iter, list) {
2042                         if (rule->time < rule_iter->time) {
2043                                 AST_LIST_INSERT_BEFORE_CURRENT(rule, list);
2044                                 inserted = 1;
2045                                 break;
2046                         }
2047                 }
2048                 AST_LIST_TRAVERSE_SAFE_END;
2049         
2050                 if (!inserted) {
2051                         AST_LIST_INSERT_TAIL(&rl_iter->rules, rule, list);
2052                         inserted = 1;
2053                 }
2054
2055                 break;
2056         }
2057
2058         if (!inserted) {
2059                 ast_log(LOG_WARNING, "Unknown rule list name %s; ignoring.\n", list_name);
2060                 ast_free(rule);
2061                 return -1;
2062         }
2063         return 0;
2064 }
2065
2066 static void parse_empty_options(const char *value, enum empty_conditions *empty, int joinempty)
2067 {
2068         char *value_copy = ast_strdupa(value);
2069         char *option = NULL;
2070         while ((option = strsep(&value_copy, ","))) {
2071                 if (!strcasecmp(option, "paused")) {
2072                         *empty |= QUEUE_EMPTY_PAUSED;
2073                 } else if (!strcasecmp(option, "penalty")) {
2074                         *empty |= QUEUE_EMPTY_PENALTY;
2075                 } else if (!strcasecmp(option, "inuse")) {
2076                         *empty |= QUEUE_EMPTY_INUSE;
2077                 } else if (!strcasecmp(option, "ringing")) {
2078                         *empty |= QUEUE_EMPTY_RINGING;
2079                 } else if (!strcasecmp(option, "invalid")) {
2080                         *empty |= QUEUE_EMPTY_INVALID;
2081                 } else if (!strcasecmp(option, "wrapup")) {
2082                         *empty |= QUEUE_EMPTY_WRAPUP;
2083                 } else if (!strcasecmp(option, "unavailable")) {
2084                         *empty |= QUEUE_EMPTY_UNAVAILABLE;
2085                 } else if (!strcasecmp(option, "unknown")) {
2086                         *empty |= QUEUE_EMPTY_UNKNOWN;
2087                 } else if (!strcasecmp(option, "loose")) {
2088                         *empty = (QUEUE_EMPTY_PENALTY | QUEUE_EMPTY_INVALID);
2089                 } else if (!strcasecmp(option, "strict")) {
2090                         *empty = (QUEUE_EMPTY_PENALTY | QUEUE_EMPTY_INVALID | QUEUE_EMPTY_PAUSED | QUEUE_EMPTY_UNAVAILABLE);
2091                 } else if ((ast_false(option) && joinempty) || (ast_true(option) && !joinempty)) {
2092                         *empty = (QUEUE_EMPTY_PENALTY | QUEUE_EMPTY_INVALID | QUEUE_EMPTY_PAUSED);
2093                 } else if ((ast_false(option) && !joinempty) || (ast_true(option) && joinempty)) {
2094                         *empty = 0;
2095                 } else {
2096                         ast_log(LOG_WARNING, "Unknown option %s for '%s'\n", option, joinempty ? "joinempty" : "leavewhenempty");
2097                 }
2098         }
2099 }
2100
2101 /*! \brief Configure a queue parameter.
2102  * 
2103  * The failunknown flag is set for config files (and static realtime) to show
2104  * errors for unknown parameters. It is cleared for dynamic realtime to allow
2105  *  extra fields in the tables.
2106  * \note For error reporting, line number is passed for .conf static configuration,
2107  * for Realtime queues, linenum is -1.
2108 */
2109 static void queue_set_param(struct call_queue *q, const char *param, const char *val, int linenum, int failunknown)
2110 {
2111         if (!strcasecmp(param, "musicclass") || 
2112                 !strcasecmp(param, "music") || !strcasecmp(param, "musiconhold")) {
2113                 ast_string_field_set(q, moh, val);
2114         } else if (!strcasecmp(param, "announce")) {
2115                 ast_string_field_set(q, announce, val);
2116         } else if (!strcasecmp(param, "context")) {
2117                 ast_string_field_set(q, context, val);
2118         } else if (!strcasecmp(param, "timeout")) {
2119                 q->timeout = atoi(val);
2120                 if (q->timeout < 0) {
2121                         q->timeout = DEFAULT_TIMEOUT;
2122                 }
2123         } else if (!strcasecmp(param, "ringinuse")) {
2124                 q->ringinuse = ast_true(val);
2125         } else if (!strcasecmp(param, "setinterfacevar")) {
2126                 q->setinterfacevar = ast_true(val);
2127         } else if (!strcasecmp(param, "setqueuevar")) {
2128                 q->setqueuevar = ast_true(val);
2129         } else if (!strcasecmp(param, "setqueueentryvar")) {
2130                 q->setqueueentryvar = ast_true(val);
2131         } else if (!strcasecmp(param, "monitor-format")) {
2132                 ast_copy_string(q->monfmt, val, sizeof(q->monfmt));
2133         } else if (!strcasecmp(param, "membermacro")) {
2134                 ast_string_field_set(q, membermacro, val);
2135         } else if (!strcasecmp(param, "membergosub")) {
2136                 ast_string_field_set(q, membergosub, val);
2137         } else if (!strcasecmp(param, "queue-youarenext")) {
2138                 ast_string_field_set(q, sound_next, val);
2139         } else if (!strcasecmp(param, "queue-thereare")) {
2140                 ast_string_field_set(q, sound_thereare, val);
2141         } else if (!strcasecmp(param, "queue-callswaiting")) {
2142                 ast_string_field_set(q, sound_calls, val);
2143         } else if (!strcasecmp(param, "queue-quantity1")) {
2144                 ast_string_field_set(q, queue_quantity1, val);
2145         } else if (!strcasecmp(param, "queue-quantity2")) {
2146                 ast_string_field_set(q, queue_quantity2, val);
2147         } else if (!strcasecmp(param, "queue-holdtime")) {
2148                 ast_string_field_set(q, sound_holdtime, val);
2149         } else if (!strcasecmp(param, "queue-minutes")) {
2150                 ast_string_field_set(q, sound_minutes, val);
2151         } else if (!strcasecmp(param, "queue-minute")) {
2152                 ast_string_field_set(q, sound_minute, val);
2153         } else if (!strcasecmp(param, "queue-seconds")) {
2154                 ast_string_field_set(q, sound_seconds, val);
2155         } else if (!strcasecmp(param, "queue-thankyou")) {
2156                 ast_string_field_set(q, sound_thanks, val);
2157         } else if (!strcasecmp(param, "queue-callerannounce")) {
2158                 ast_string_field_set(q, sound_callerannounce, val);
2159         } else if (!strcasecmp(param, "queue-reporthold")) {
2160                 ast_string_field_set(q, sound_reporthold, val);
2161         } else if (!strcasecmp(param, "announce-frequency")) {
2162                 q->announcefrequency = atoi(val);
2163         } else if (!strcasecmp(param, "min-announce-frequency")) {
2164                 q->minannouncefrequency = atoi(val);
2165                 ast_debug(1, "%s=%s for queue '%s'\n", param, val, q->name);
2166         } else if (!strcasecmp(param, "announce-round-seconds")) {
2167                 q->roundingseconds = atoi(val);
2168                 /* Rounding to any other values just doesn't make sense... */
2169                 if (!(q->roundingseconds == 0 || q->roundingseconds == 5 || q->roundingseconds == 10
2170                         || q->roundingseconds == 15 || q->roundingseconds == 20 || q->roundingseconds == 30)) {
2171                         if (linenum >= 0) {
2172                                 ast_log(LOG_WARNING, "'%s' isn't a valid value for %s "
2173                                         "using 0 instead for queue '%s' at line %d of queues.conf\n",
2174                                         val, param, q->name, linenum);
2175                         } else {
2176                                 ast_log(LOG_WARNING, "'%s' isn't a valid value for %s "
2177                                         "using 0 instead for queue '%s'\n", val, param, q->name);
2178                         }
2179                         q->roundingseconds=0;
2180                 }
2181         } else if (!strcasecmp(param, "announce-holdtime")) {
2182                 if (!strcasecmp(val, "once")) {
2183                         q->announceholdtime = ANNOUNCEHOLDTIME_ONCE;
2184                 } else if (ast_true(val)) {
2185                         q->announceholdtime = ANNOUNCEHOLDTIME_ALWAYS;
2186                 } else {
2187                         q->announceholdtime = 0;
2188                 }
2189         } else if (!strcasecmp(param, "announce-position")) {
2190                 if (!strcasecmp(val, "limit")) {
2191                         q->announceposition = ANNOUNCEPOSITION_LIMIT;
2192                 } else if (!strcasecmp(val, "more")) {
2193                         q->announceposition = ANNOUNCEPOSITION_MORE_THAN;
2194                 } else if (ast_true(val)) {
2195                         q->announceposition = ANNOUNCEPOSITION_YES;
2196                 } else {
2197                         q->announceposition = ANNOUNCEPOSITION_NO;
2198                 }
2199         } else if (!strcasecmp(param, "announce-position-limit")) {
2200                 q->announcepositionlimit = atoi(val);
2201         } else if (!strcasecmp(param, "periodic-announce")) {
2202                 if (strchr(val, ',')) {
2203                         char *s, *buf = ast_strdupa(val);
2204                         unsigned int i = 0;
2205
2206                         while ((s = strsep(&buf, ",|"))) {
2207                                 if (!q->sound_periodicannounce[i]) {
2208                                         q->sound_periodicannounce[i] = ast_str_create(16);
2209                                 }
2210                                 ast_str_set(&q->sound_periodicannounce[i], 0, "%s", s);
2211                                 i++;
2212                                 if (i == MAX_PERIODIC_ANNOUNCEMENTS) {
2213                                         break;
2214                                 }
2215                         }
2216                         q->numperiodicannounce = i;
2217                 } else {
2218                         ast_str_set(&q->sound_periodicannounce[0], 0, "%s", val);
2219                         q->numperiodicannounce = 1;
2220                 }
2221         } else if (!strcasecmp(param, "periodic-announce-frequency")) {
2222                 q->periodicannouncefrequency = atoi(val);
2223         } else if (!strcasecmp(param, "relative-periodic-announce")) {
2224                 q->relativeperiodicannounce = ast_true(val);
2225         } else if (!strcasecmp(param, "random-periodic-announce")) {
2226                 q->randomperiodicannounce = ast_true(val);
2227         } else if (!strcasecmp(param, "retry")) {
2228                 q->retry = atoi(val);
2229                 if (q->retry <= 0) {
2230                         q->retry = DEFAULT_RETRY;
2231                 }
2232         } else if (!strcasecmp(param, "wrapuptime")) {
2233                 q->wrapuptime = atoi(val);
2234         } else if (!strcasecmp(param, "penaltymemberslimit")) {
2235                 if ((sscanf(val, "%10d", &q->penaltymemberslimit) != 1)) {
2236                         q->penaltymemberslimit = 0;
2237                 }
2238         } else if (!strcasecmp(param, "autofill")) {
2239                 q->autofill = ast_true(val);
2240         } else if (!strcasecmp(param, "monitor-type")) {
2241                 if (!strcasecmp(val, "mixmonitor")) {
2242                         q->montype = 1;
2243                 }
2244         } else if (!strcasecmp(param, "autopause")) {
2245                 q->autopause = autopause2int(val);
2246         } else if (!strcasecmp(param, "autopausedelay")) {
2247                 q->autopausedelay = atoi(val);
2248         } else if (!strcasecmp(param, "autopausebusy")) {
2249                 q->autopausebusy = ast_true(val);
2250         } else if (!strcasecmp(param, "autopauseunavail")) {
2251                 q->autopauseunavail = ast_true(val);
2252         } else if (!strcasecmp(param, "maxlen")) {
2253                 q->maxlen = atoi(val);
2254                 if (q->maxlen < 0) {
2255                         q->maxlen = 0;
2256                 }
2257         } else if (!strcasecmp(param, "servicelevel")) {
2258                 q->servicelevel= atoi(val);
2259         } else if (!strcasecmp(param, "strategy")) {
2260                 int strategy;
2261
2262                 /* We are a static queue and already have set this, no need to do it again */
2263                 if (failunknown) {
2264                         return;
2265                 }
2266                 strategy = strat2int(val);
2267                 if (strategy < 0) {
2268                         ast_log(LOG_WARNING, "'%s' isn't a valid strategy for queue '%s', using ringall instead\n",
2269                                 val, q->name);
2270                         q->strategy = QUEUE_STRATEGY_RINGALL;
2271                 }
2272                 if (strategy == q->strategy) {
2273                         return;
2274                 }
2275                 if (strategy == QUEUE_STRATEGY_LINEAR) {
2276                         ast_log(LOG_WARNING, "Changing to the linear strategy currently requires asterisk to be restarted.\n");
2277                         return;
2278                 }
2279                 q->strategy = strategy;
2280         } else if (!strcasecmp(param, "joinempty")) {
2281                 parse_empty_options(val, &q->joinempty, 1);
2282         } else if (!strcasecmp(param, "leavewhenempty")) {
2283                 parse_empty_options(val, &q->leavewhenempty, 0);
2284         } else if (!strcasecmp(param, "eventmemberstatus")) {
2285                 q->maskmemberstatus = !ast_true(val);
2286         } else if (!strcasecmp(param, "eventwhencalled")) {
2287                 if (!strcasecmp(val, "vars")) {
2288                         q->eventwhencalled = QUEUE_EVENT_VARIABLES;
2289                 } else {
2290                         q->eventwhencalled = ast_true(val) ? 1 : 0;
2291                 }
2292         } else if (!strcasecmp(param, "reportholdtime")) {
2293                 q->reportholdtime = ast_true(val);
2294         } else if (!strcasecmp(param, "memberdelay")) {
2295                 q->memberdelay = atoi(val);
2296         } else if (!strcasecmp(param, "weight")) {
2297                 q->weight = atoi(val);
2298         } else if (!strcasecmp(param, "timeoutrestart")) {
2299                 q->timeoutrestart = ast_true(val);
2300         } else if (!strcasecmp(param, "defaultrule")) {
2301                 ast_string_field_set(q, defaultrule, val);
2302         } else if (!strcasecmp(param, "timeoutpriority")) {
2303                 if (!strcasecmp(val, "conf")) {
2304                         q->timeoutpriority = TIMEOUT_PRIORITY_CONF;
2305                 } else {
2306                         q->timeoutpriority = TIMEOUT_PRIORITY_APP;
2307                 }
2308         } else if (failunknown) {
2309                 if (linenum >= 0) {
2310                         ast_log(LOG_WARNING, "Unknown keyword in queue '%s': %s at line %d of queues.conf\n",
2311                                 q->name, param, linenum);
2312                 } else {
2313                         ast_log(LOG_WARNING, "Unknown keyword in queue '%s': %s\n", q->name, param);
2314                 }
2315         }
2316 }
2317
2318 /*!
2319  * \brief Find rt member record to update otherwise create one.
2320  *
2321  * Search for member in queue, if found update penalty/paused state,
2322  * if no member exists create one flag it as a RT member and add to queue member list.
2323 */
2324 static void rt_handle_member_record(struct call_queue *q, char *interface, struct ast_config *member_config)
2325 {
2326         struct member *m;
2327         struct ao2_iterator mem_iter;
2328         int penalty = 0;
2329         int paused  = 0;
2330         int found = 0;
2331         int ringinuse = q->ringinuse;
2332
2333         const char *config_val;
2334         const char *rt_uniqueid = ast_variable_retrieve(member_config, interface, "uniqueid");
2335         const char *membername = S_OR(ast_variable_retrieve(member_config, interface, "membername"), interface);
2336         const char *state_interface = S_OR(ast_variable_retrieve(member_config, interface, "state_interface"), interface);
2337         const char *penalty_str = ast_variable_retrieve(member_config, interface, "penalty");
2338         const char *paused_str = ast_variable_retrieve(member_config, interface, "paused");
2339
2340         if (ast_strlen_zero(rt_uniqueid)) {
2341                 ast_log(LOG_WARNING, "Realtime field uniqueid is empty for member %s\n", S_OR(membername, "NULL"));
2342                 return;
2343         }
2344
2345         if (penalty_str) {
2346                 penalty = atoi(penalty_str);
2347                 if ((penalty < 0) && negative_penalty_invalid) {
2348                         return;
2349                 } else if (penalty < 0) {
2350                         penalty = 0;
2351                 }
2352         }
2353
2354         if (paused_str) {
2355                 paused = atoi(paused_str);
2356                 if (paused < 0) {
2357                         paused = 0;
2358                 }
2359         }
2360
2361         if ((config_val = ast_variable_retrieve(member_config, interface, realtime_ringinuse_field))) {
2362                 if (ast_true(config_val)) {
2363                         ringinuse = 1;
2364                 } else if (ast_false(config_val)) {
2365                         ringinuse = 0;
2366                 } else {
2367                         ast_log(LOG_WARNING, "Invalid value of '%s' field for %s in queue '%s'\n", realtime_ringinuse_field, interface, q->name);
2368                 }
2369         }
2370
2371         /* Find member by realtime uniqueid and update */
2372         mem_iter = ao2_iterator_init(q->members, 0);
2373         while ((m = ao2_iterator_next(&mem_iter))) {
2374                 if (!strcasecmp(m->rt_uniqueid, rt_uniqueid)) {
2375                         m->dead = 0;    /* Do not delete this one. */
2376                         ast_copy_string(m->rt_uniqueid, rt_uniqueid, sizeof(m->rt_uniqueid));
2377                         if (paused_str) {
2378                                 m->paused = paused;
2379                         }
2380                         if (strcasecmp(state_interface, m->state_interface)) {
2381                                 ast_copy_string(m->state_interface, state_interface, sizeof(m->state_interface));
2382                         }
2383                         m->penalty = penalty;
2384                         m->ringinuse = ringinuse;
2385                         found = 1;
2386                         ao2_ref(m, -1);
2387                         break;
2388                 }
2389                 ao2_ref(m, -1);
2390         }
2391         ao2_iterator_destroy(&mem_iter);
2392
2393         /* Create a new member */
2394         if (!found) {
2395                 if ((m = create_queue_member(interface, membername, penalty, paused, state_interface, ringinuse))) {
2396                         m->dead = 0;
2397                         m->realtime = 1;
2398                         ast_copy_string(m->rt_uniqueid, rt_uniqueid, sizeof(m->rt_uniqueid));
2399                         if (!log_membername_as_agent) {
2400                                 ast_queue_log(q->name, "REALTIME", m->interface, "ADDMEMBER", "%s", paused ? "PAUSED" : "");
2401                         } else {
2402                                 ast_queue_log(q->name, "REALTIME", m->membername, "ADDMEMBER", "%s", paused ? "PAUSED" : "");
2403                         }
2404                         ao2_link(q->members, m);
2405                         ao2_ref(m, -1);
2406                         m = NULL;
2407                 }
2408         }
2409 }
2410
2411 /*! \brief Iterate through queue's member list and delete them */
2412 static void free_members(struct call_queue *q, int all)
2413 {
2414         /* Free non-dynamic members */
2415         struct member *cur;
2416         struct ao2_iterator mem_iter = ao2_iterator_init(q->members, 0);
2417
2418         while ((cur = ao2_iterator_next(&mem_iter))) {
2419                 if (all || !cur->dynamic) {
2420                         ao2_unlink(q->members, cur);
2421                 }
2422                 ao2_ref(cur, -1);
2423         }
2424         ao2_iterator_destroy(&mem_iter);
2425 }
2426
2427 /*! \brief Free queue's member list then its string fields */
2428 static void destroy_queue(void *obj)
2429 {
2430         struct call_queue *q = obj;
2431         int i;
2432
2433         free_members(q, 1);
2434         ast_string_field_free_memory(q);
2435         for (i = 0; i < MAX_PERIODIC_ANNOUNCEMENTS; i++) {
2436                 if (q->sound_periodicannounce[i]) {
2437                         free(q->sound_periodicannounce[i]);
2438                 }
2439         }
2440         ao2_ref(q->members, -1);
2441 }
2442
2443 static struct call_queue *alloc_queue(const char *queuename)
2444 {
2445         struct call_queue *q;
2446
2447         if ((q = ao2_t_alloc(sizeof(*q), destroy_queue, "Allocate queue"))) {
2448                 if (ast_string_field_init(q, 64)) {
2449                         queue_t_unref(q, "String field allocation failed");
2450                         return NULL;
2451                 }
2452                 ast_string_field_set(q, name, queuename);
2453         }
2454         return q;
2455 }
2456
2457 /*!
2458  * \brief Reload a single queue via realtime.
2459  *
2460  * Check for statically defined queue first, check if deleted RT queue,
2461  * check for new RT queue, if queue vars are not defined init them with defaults.
2462  * reload RT queue vars, set RT queue members dead and reload them, return finished queue.
2463  * \retval the queue,
2464  * \retval NULL if it doesn't exist.
2465  * \note Should be called with the "queues" container locked.
2466 */
2467 static struct call_queue *find_queue_by_name_rt(const char *queuename, struct ast_variable *queue_vars, struct ast_config *member_config)
2468 {
2469         struct ast_variable *v;
2470         struct call_queue *q, tmpq = {
2471                 .name = queuename,
2472         };
2473         struct member *m;
2474         struct ao2_iterator mem_iter;
2475         char *interface = NULL;
2476         const char *tmp_name;
2477         char *tmp;
2478         char tmpbuf[64];        /* Must be longer than the longest queue param name. */
2479
2480         /* Static queues override realtime. */
2481         if ((q = ao2_t_find(queues, &tmpq, OBJ_POINTER, "Check if static queue exists"))) {
2482                 ao2_lock(q);
2483                 if (!q->realtime) {
2484                         if (q->dead) {
2485                                 ao2_unlock(q);
2486                                 queue_t_unref(q, "Queue is dead; can't return it");
2487                                 return NULL;
2488                         } 
2489                         ast_log(LOG_WARNING, "Static queue '%s' already exists. Not loading from realtime\n", q->name);
2490                         ao2_unlock(q);
2491                         return q;
2492                 }
2493         } else if (!member_config) {
2494                 /* Not found in the list, and it's not realtime ... */
2495                 return NULL;
2496         }
2497         /* Check if queue is defined in realtime. */
2498         if (!queue_vars) {
2499                 /* Delete queue from in-core list if it has been deleted in realtime. */
2500                 if (q) {
2501                         /*! \note Hmm, can't seem to distinguish a DB failure from a not
2502                            found condition... So we might delete an in-core queue
2503                            in case of DB failure. */
2504                         ast_debug(1, "Queue %s not found in realtime.\n", queuename);
2505
2506                         q->dead = 1;
2507                         /* Delete if unused (else will be deleted when last caller leaves). */
2508                         queues_t_unlink(queues, q, "Unused; removing from container");
2509                         ao2_unlock(q);
2510                         queue_t_unref(q, "Queue is dead; can't return it");
2511                 }
2512                 return NULL;
2513         }
2514
2515         /* Create a new queue if an in-core entry does not exist yet. */
2516         if (!q) {
2517                 struct ast_variable *tmpvar = NULL;
2518                 if (!(q = alloc_queue(queuename))) {
2519                         return NULL;
2520                 }
2521                 ao2_lock(q);
2522                 clear_queue(q);
2523                 q->realtime = 1;
2524                 /*Before we initialize the queue, we need to set the strategy, so that linear strategy
2525                  * will allocate the members properly
2526                  */
2527                 for (tmpvar = queue_vars; tmpvar; tmpvar = tmpvar->next) {
2528                         if (!strcasecmp(tmpvar->name, "strategy")) {
2529                                 q->strategy = strat2int(tmpvar->value);
2530                                 if (q->strategy < 0) {
2531                                         ast_log(LOG_WARNING, "'%s' isn't a valid strategy for queue '%s', using ringall instead\n",
2532                                         tmpvar->value, q->name);
2533                                         q->strategy = QUEUE_STRATEGY_RINGALL;
2534                                 }
2535                                 break;
2536                         }
2537                 }
2538                 /* We traversed all variables and didn't find a strategy */
2539                 if (!tmpvar) {
2540                         q->strategy = QUEUE_STRATEGY_RINGALL;
2541                 }
2542                 queues_t_link(queues, q, "Add queue to container");
2543         }
2544         init_queue(q);          /* Ensure defaults for all parameters not set explicitly. */
2545
2546         memset(tmpbuf, 0, sizeof(tmpbuf));
2547         for (v = queue_vars; v; v = v->next) {
2548                 /* Convert to dashes `-' from underscores `_' as the latter are more SQL friendly. */
2549                 if (strchr(v->name, '_')) {
2550                         ast_copy_string(tmpbuf, v->name, sizeof(tmpbuf));
2551                         tmp_name = tmpbuf;
2552                         tmp = tmpbuf;
2553                         while ((tmp = strchr(tmp, '_'))) {
2554                                 *tmp++ = '-';
2555                         }
2556                 } else {
2557                         tmp_name = v->name;
2558                 }
2559
2560                 /* NULL values don't get returned from realtime; blank values should
2561                  * still get set.  If someone doesn't want a value to be set, they
2562                  * should set the realtime column to NULL, not blank. */
2563                 queue_set_param(q, tmp_name, v->value, -1, 0);
2564         }
2565
2566         /* Temporarily set realtime members dead so we can detect deleted ones. */
2567         mem_iter = ao2_iterator_init(q->members, 0);
2568         while ((m = ao2_iterator_next(&mem_iter))) {
2569                 if (m->realtime) {
2570                         m->dead = 1;
2571                 }
2572                 ao2_ref(m, -1);
2573         }
2574         ao2_iterator_destroy(&mem_iter);
2575
2576         while ((interface = ast_category_browse(member_config, interface))) {
2577                 rt_handle_member_record(q, interface, member_config);
2578         }
2579
2580         /* Delete all realtime members that have been deleted in DB. */
2581         mem_iter = ao2_iterator_init(q->members, 0);
2582         while ((m = ao2_iterator_next(&mem_iter))) {
2583                 if (m->dead) {
2584                         if (ast_strlen_zero(m->membername) || !log_membername_as_agent) {
2585                                 ast_queue_log(q->name, "REALTIME", m->interface, "REMOVEMEMBER", "%s", "");
2586                         } else {
2587                                 ast_queue_log(q->name, "REALTIME", m->membername, "REMOVEMEMBER", "%s", "");
2588                         }
2589                         ao2_unlink(q->members, m);
2590                 }
2591                 ao2_ref(m, -1);
2592         }
2593         ao2_iterator_destroy(&mem_iter);
2594
2595         ao2_unlock(q);
2596
2597         return q;
2598 }
2599
2600 /*!
2601  * note  */
2602
2603 /*!
2604  * \internal
2605  * \brief Returns reference to the named queue. If the queue is realtime, it will load the queue as well.
2606  * \param queuename - name of the desired queue
2607  *
2608  * \retval the queue
2609  * \retval NULL if it doesn't exist
2610  */
2611 static struct call_queue *find_load_queue_rt_friendly(const char *queuename)
2612 {
2613         struct ast_variable *queue_vars;
2614         struct ast_config *member_config = NULL;
2615         struct call_queue *q = NULL, tmpq = {
2616                 .name = queuename,
2617         };
2618         int prev_weight = 0;
2619
2620         /* Find the queue in the in-core list first. */
2621         q = ao2_t_find(queues, &tmpq, OBJ_POINTER, "Look for queue in memory first");
2622
2623         if (!q || q->realtime) {
2624                 /*! \note Load from realtime before taking the "queues" container lock, to avoid blocking all
2625                    queue operations while waiting for the DB.
2626
2627                    This will be two separate database transactions, so we might
2628                    see queue parameters as they were before another process
2629                    changed the queue and member list as it was after the change.
2630                    Thus we might see an empty member list when a queue is
2631                    deleted. In practise, this is unlikely to cause a problem. */
2632
2633                 queue_vars = ast_load_realtime("queues", "name", queuename, SENTINEL);
2634                 if (queue_vars) {
2635                         member_config = ast_load_realtime_multientry("queue_members", "interface LIKE", "%", "queue_name", queuename, SENTINEL);
2636                         if (!member_config) {
2637                                 ast_debug(1, "No queue_members defined in config extconfig.conf\n");
2638                                 member_config = ast_config_new();
2639                         }
2640                 }
2641                 if (q) {
2642                         prev_weight = q->weight ? 1 : 0;
2643                         queue_t_unref(q, "Need to find realtime queue");
2644                 }
2645
2646                 q = find_queue_by_name_rt(queuename, queue_vars, member_config);
2647                 ast_config_destroy(member_config);
2648                 ast_variables_destroy(queue_vars);
2649
2650                 /* update the use_weight value if the queue's has gained or lost a weight */
2651                 if (q) {
2652                         if (!q->weight && prev_weight) {
2653                                 ast_atomic_fetchadd_int(&use_weight, -1);
2654                         }
2655                         if (q->weight && !prev_weight) {
2656                                 ast_atomic_fetchadd_int(&use_weight, +1);
2657                         }
2658                 }
2659                 /* Other cases will end up with the proper value for use_weight */
2660         } else {
2661                 update_realtime_members(q);
2662         }
2663         return q;
2664 }
2665
2666 static int update_realtime_member_field(struct member *mem, const char *queue_name, const char *field, const char *value)
2667 {
2668         int ret = -1;
2669
2670         if (ast_strlen_zero(mem->rt_uniqueid)) {
2671                 return ret;
2672         }
2673
2674         if ((ast_update_realtime("queue_members", "uniqueid", mem->rt_uniqueid, field, value, SENTINEL)) > 0) {
2675                 ret = 0;
2676         }
2677
2678         return ret;
2679 }
2680
2681
2682 static void update_realtime_members(struct call_queue *q)
2683 {
2684         struct ast_config *member_config = NULL;
2685         struct member *m;
2686         char *interface = NULL;
2687         struct ao2_iterator mem_iter;
2688
2689         if (!(member_config = ast_load_realtime_multientry("queue_members", "interface LIKE", "%", "queue_name", q->name , SENTINEL))) {
2690                 /* This queue doesn't have realtime members. If the queue still has any realtime
2691                  * members in memory, they need to be removed.
2692                  */
2693                 ao2_lock(q);
2694                 mem_iter = ao2_iterator_init(q->members, 0);
2695                 while ((m = ao2_iterator_next(&mem_iter))) {
2696                         if (m->realtime) {
2697                                 ao2_unlink(q->members, m);
2698                         }
2699                         ao2_ref(m, -1);
2700                 }
2701                 ast_debug(3, "Queue %s has no realtime members defined. No need for update\n", q->name);
2702                 ao2_unlock(q);
2703                 return;
2704         }
2705
2706         ao2_lock(q);
2707
2708         /* Temporarily set realtime  members dead so we can detect deleted ones.*/
2709         mem_iter = ao2_iterator_init(q->members, 0);
2710         while ((m = ao2_iterator_next(&mem_iter))) {
2711                 if (m->realtime) {
2712                         m->dead = 1;
2713                 }
2714                 ao2_ref(m, -1);
2715         }
2716         ao2_iterator_destroy(&mem_iter);
2717
2718         while ((interface = ast_category_browse(member_config, interface))) {
2719                 rt_handle_member_record(q, interface, member_config);
2720         }
2721
2722         /* Delete all realtime members that have been deleted in DB. */
2723         mem_iter = ao2_iterator_init(q->members, 0);
2724         while ((m = ao2_iterator_next(&mem_iter))) {
2725                 if (m->dead) {
2726                         if (ast_strlen_zero(m->membername) || !log_membername_as_agent) {
2727                                 ast_queue_log(q->name, "REALTIME", m->interface, "REMOVEMEMBER", "%s", "");
2728                         } else {
2729                                 ast_queue_log(q->name, "REALTIME", m->membername, "REMOVEMEMBER", "%s", "");
2730                         }
2731                         ao2_unlink(q->members, m);
2732                 }
2733                 ao2_ref(m, -1);
2734         }
2735         ao2_iterator_destroy(&mem_iter);
2736         ao2_unlock(q);
2737         ast_config_destroy(member_config);
2738 }
2739
2740 static int join_queue(char *queuename, struct queue_ent *qe, enum queue_result *reason, int position)
2741 {
2742         struct call_queue *q;
2743         struct queue_ent *cur, *prev = NULL;
2744         int res = -1;
2745         int pos = 0;
2746         int inserted = 0;
2747
2748         if (!(q = find_load_queue_rt_friendly(queuename))) {
2749                 return res;
2750         }
2751         ao2_lock(q);
2752
2753         /* This is our one */
2754         if (q->joinempty) {
2755                 int status = 0;
2756                 if ((status = get_member_status(q, qe->max_penalty, qe->min_penalty, q->joinempty))) {
2757                         *reason = QUEUE_JOINEMPTY;
2758                         ao2_unlock(q);
2759                         queue_t_unref(q, "Done with realtime queue");
2760                         return res;
2761                 }
2762         }
2763         if (*reason == QUEUE_UNKNOWN && q->maxlen && (q->count >= q->maxlen)) {
2764                 *reason = QUEUE_FULL;
2765         } else if (*reason == QUEUE_UNKNOWN) {
2766                 /* There's space for us, put us at the right position inside
2767                  * the queue.
2768                  * Take into account the priority of the calling user */
2769                 inserted = 0;
2770                 prev = NULL;
2771                 cur = q->head;
2772                 while (cur) {
2773                         /* We have higher priority than the current user, enter
2774                          * before him, after all the other users with priority
2775                          * higher or equal to our priority. */
2776                         if ((!inserted) && (qe->prio > cur->prio)) {
2777                                 insert_entry(q, prev, qe, &pos);
2778                                 inserted = 1;
2779                         }
2780                         /* <= is necessary for the position comparison because it may not be possible to enter
2781                          * at our desired position since higher-priority callers may have taken the position we want
2782                          */
2783                         if (!inserted && (qe->prio >= cur->prio) && position && (position <= pos + 1)) {
2784                                 insert_entry(q, prev, qe, &pos);
2785                                 inserted = 1;
2786                                 /*pos is incremented inside insert_entry, so don't need to add 1 here*/
2787                                 if (position < pos) {
2788                                         ast_log(LOG_NOTICE, "Asked to be inserted at position %d but forced into position %d due to higher priority callers\n", position, pos);
2789                                 }
2790                         }
2791                         cur->pos = ++pos;
2792                         prev = cur;
2793                         cur = cur->next;
2794                 }
2795                 /* No luck, join at the end of the queue */
2796                 if (!inserted) {
2797                         insert_entry(q, prev, qe, &pos);
2798                 }
2799                 ast_copy_string(qe->moh, q->moh, sizeof(qe->moh));
2800                 ast_copy_string(qe->announce, q->announce, sizeof(qe->announce));
2801                 ast_copy_string(qe->context, q->context, sizeof(qe->context));
2802                 q->count++;
2803                 res = 0;
2804                 /*** DOCUMENTATION
2805                 <managerEventInstance>
2806                         <synopsis>Raised when a channel joins a Queue.</synopsis>
2807                         <syntax>
2808                                 <xi:include xpointer="xpointer(/docs/managerEvent[@name='QueueMemberStatus']/managerEventInstance/syntax/parameter[@name='Queue'])" />
2809                                 <parameter name="Position">
2810                                         <para>This channel's current position in the queue.</para>
2811                                 </parameter>
2812                                 <parameter name="Count">
2813                                         <para>The total number of channels in the queue.</para>
2814                                 </parameter>
2815                         </syntax>
2816                         <see-also>
2817                                 <ref type="managerEvent">Leave</ref>
2818                                 <ref type="application">Queue</ref>
2819                         </see-also>
2820                 </managerEventInstance>
2821                 ***/
2822                 ast_manager_event(qe->chan, EVENT_FLAG_CALL, "Join",
2823                         "Channel: %s\r\n"
2824                         "CallerIDNum: %s\r\n"
2825                         "CallerIDName: %s\r\n"
2826                         "ConnectedLineNum: %s\r\n"
2827                         "ConnectedLineName: %s\r\n"
2828                         "Queue: %s\r\n"
2829                         "Position: %d\r\n"
2830                         "Count: %d\r\n"
2831                         "Uniqueid: %s\r\n",
2832                         ast_channel_name(qe->chan),
2833                         S_COR(ast_channel_caller(qe->chan)->id.number.valid, ast_channel_caller(qe->chan)->id.number.str, "unknown"),/* XXX somewhere else it is <unknown> */
2834                         S_COR(ast_channel_caller(qe->chan)->id.name.valid, ast_channel_caller(qe->chan)->id.name.str, "unknown"),
2835                         S_COR(ast_channel_connected(qe->chan)->id.number.valid, ast_channel_connected(qe->chan)->id.number.str, "unknown"),/* XXX somewhere else it is <unknown> */
2836                         S_COR(ast_channel_connected(qe->chan)->id.name.valid, ast_channel_connected(qe->chan)->id.name.str, "unknown"),
2837                         q->name, qe->pos, q->count, ast_channel_uniqueid(qe->chan));
2838                 ast_debug(1, "Queue '%s' Join, Channel '%s', Position '%d'\n", q->name, ast_channel_name(qe->chan), qe->pos );
2839         }
2840         ao2_unlock(q);
2841         queue_t_unref(q, "Done with realtime queue");
2842
2843         return res;
2844 }
2845
2846 static int play_file(struct ast_channel *chan, const char *filename)
2847 {
2848         int res;
2849
2850         if (ast_strlen_zero(filename)) {
2851                 return 0;
2852         }
2853
2854         if (!ast_fileexists(filename, NULL, ast_channel_language(chan))) {
2855                 return 0;
2856         }
2857
2858         ast_stopstream(chan);
2859
2860         res = ast_streamfile(chan, filename, ast_channel_language(chan));
2861         if (!res) {
2862                 res = ast_waitstream(chan, AST_DIGIT_ANY);
2863         }
2864
2865         ast_stopstream(chan);
2866
2867         return res;
2868 }
2869
2870 /*!
2871  * \brief Check for valid exit from queue via goto
2872  * \retval 0 if failure
2873  * \retval 1 if successful
2874 */
2875 static int valid_exit(struct queue_ent *qe, char digit)
2876 {
2877         int digitlen = strlen(qe->digits);
2878
2879         /* Prevent possible buffer overflow */
2880         if (digitlen < sizeof(qe->digits) - 2) {
2881                 qe->digits[digitlen] = digit;
2882                 qe->digits[digitlen + 1] = '\0';
2883         } else {
2884                 qe->digits[0] = '\0';
2885                 return 0;
2886         }