2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
21 * \brief The Asterisk Management Interface - AMI
23 * \author Mark Spencer <markster@digium.com>
25 * OpenSSL http://www.openssl.org - for AMI/SSL
27 * At the moment this file contains a number of functions, namely:
29 * - data structures storing AMI state
30 * - AMI-related API functions, used by internal asterisk components
31 * - handlers for AMI-related CLI functions
32 * - handlers for AMI functions (available through the AMI socket)
33 * - the code for the main AMI listener thread and individual session threads
34 * - the http handlers invoked for AMI-over-HTTP by the threads in main/http.c
39 /*! \li \ref manager.c uses the configuration file \ref manager.conf and \ref users.conf
40 * \addtogroup configuration_file
43 /*! \page manager.conf manager.conf
44 * \verbinclude manager.conf.sample
47 /*! \page users.conf users.conf
48 * \verbinclude users.conf.sample
52 <support_level>core</support_level>
57 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
59 #include "asterisk/_private.h"
60 #include "asterisk/paths.h" /* use various ast_config_AST_* */
65 #include <sys/types.h>
68 #include "asterisk/channel.h"
69 #include "asterisk/file.h"
70 #include "asterisk/manager.h"
71 #include "asterisk/module.h"
72 #include "asterisk/config.h"
73 #include "asterisk/callerid.h"
74 #include "asterisk/lock.h"
75 #include "asterisk/cli.h"
76 #include "asterisk/app.h"
77 #include "asterisk/pbx.h"
78 #include "asterisk/md5.h"
79 #include "asterisk/acl.h"
80 #include "asterisk/utils.h"
81 #include "asterisk/tcptls.h"
82 #include "asterisk/http.h"
83 #include "asterisk/ast_version.h"
84 #include "asterisk/threadstorage.h"
85 #include "asterisk/linkedlists.h"
86 #include "asterisk/term.h"
87 #include "asterisk/astobj2.h"
88 #include "asterisk/features.h"
89 #include "asterisk/security_events.h"
90 #include "asterisk/event.h"
91 #include "asterisk/aoc.h"
92 #include "asterisk/strings.h"
93 #include "asterisk/stringfields.h"
94 #include "asterisk/presencestate.h"
95 #include "asterisk/stasis.h"
96 #include "asterisk/stasis_message_router.h"
97 #include "asterisk/test.h"
98 #include "asterisk/json.h"
99 #include "asterisk/bridging.h"
100 #include "asterisk/features_config.h"
103 <manager name="Ping" language="en_US">
108 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
111 <para>A 'Ping' action will ellicit a 'Pong' response. Used to keep the
112 manager connection open.</para>
115 <manager name="Events" language="en_US">
120 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
121 <parameter name="EventMask" required="true">
124 <para>If all events should be sent.</para>
127 <para>If no events should be sent.</para>
129 <enum name="system,call,log,...">
130 <para>To select which flags events should have to be sent.</para>
136 <para>Enable/Disable sending of events to this manager client.</para>
139 <manager name="Logoff" language="en_US">
144 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
147 <para>Logoff the current manager session.</para>
150 <manager name="Login" language="en_US">
155 <parameter name="ActionID">
156 <para>ActionID for this transaction. Will be returned.</para>
158 <parameter name="Username" required="true">
159 <para>Username to login with as specified in manager.conf.</para>
161 <parameter name="Secret">
162 <para>Secret to login with as specified in manager.conf.</para>
166 <para>Login Manager.</para>
169 <manager name="Challenge" language="en_US">
171 Generate Challenge for MD5 Auth.
174 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
175 <parameter name="AuthType" required="true">
176 <para>Digest algorithm to use in the challenge. Valid values are:</para>
183 <para>Generate a challenge for MD5 authentication.</para>
186 <manager name="Hangup" language="en_US">
191 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
192 <parameter name="Channel" required="true">
193 <para>The exact channel name to be hungup, or to use a regular expression, set this parameter to: /regex/</para>
194 <para>Example exact channel: SIP/provider-0000012a</para>
195 <para>Example regular expression: /^SIP/provider-.*$/</para>
197 <parameter name="Cause">
198 <para>Numeric hangup cause.</para>
202 <para>Hangup a channel.</para>
205 <manager name="Status" language="en_US">
210 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
211 <parameter name="Channel" required="true">
212 <para>The name of the channel to query for status.</para>
214 <parameter name="Variables">
215 <para>Comma <literal>,</literal> separated list of variable to include.</para>
219 <para>Will return the status information of each channel along with the
220 value for the specified channel variables.</para>
223 <manager name="Setvar" language="en_US">
225 Set a channel variable.
228 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
229 <parameter name="Channel">
230 <para>Channel to set variable for.</para>
232 <parameter name="Variable" required="true">
233 <para>Variable name.</para>
235 <parameter name="Value" required="true">
236 <para>Variable value.</para>
240 <para>Set a global or local channel variable.</para>
242 <para>If a channel name is not provided then the variable is global.</para>
246 <manager name="Getvar" language="en_US">
248 Gets a channel variable.
251 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
252 <parameter name="Channel">
253 <para>Channel to read variable from.</para>
255 <parameter name="Variable" required="true">
256 <para>Variable name.</para>
260 <para>Get the value of a global or local channel variable.</para>
262 <para>If a channel name is not provided then the variable is global.</para>
266 <manager name="GetConfig" language="en_US">
268 Retrieve configuration.
271 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
272 <parameter name="Filename" required="true">
273 <para>Configuration filename (e.g. <filename>foo.conf</filename>).</para>
275 <parameter name="Category">
276 <para>Category in configuration file.</para>
280 <para>This action will dump the contents of a configuration
281 file by category and contents or optionally by specified category only.</para>
284 <manager name="GetConfigJSON" language="en_US">
286 Retrieve configuration (JSON format).
289 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
290 <parameter name="Filename" required="true">
291 <para>Configuration filename (e.g. <filename>foo.conf</filename>).</para>
295 <para>This action will dump the contents of a configuration file by category
296 and contents in JSON format. This only makes sense to be used using rawman over
297 the HTTP interface.</para>
300 <manager name="UpdateConfig" language="en_US">
302 Update basic configuration.
305 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
306 <parameter name="SrcFilename" required="true">
307 <para>Configuration filename to read (e.g. <filename>foo.conf</filename>).</para>
309 <parameter name="DstFilename" required="true">
310 <para>Configuration filename to write (e.g. <filename>foo.conf</filename>)</para>
312 <parameter name="Reload">
313 <para>Whether or not a reload should take place (or name of specific module).</para>
315 <parameter name="Action-XXXXXX">
316 <para>Action to take.</para>
317 <para>X's represent 6 digit number beginning with 000000.</para>
319 <enum name="NewCat" />
320 <enum name="RenameCat" />
321 <enum name="DelCat" />
322 <enum name="EmptyCat" />
323 <enum name="Update" />
324 <enum name="Delete" />
325 <enum name="Append" />
326 <enum name="Insert" />
329 <parameter name="Cat-XXXXXX">
330 <para>Category to operate on.</para>
331 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
333 <parameter name="Var-XXXXXX">
334 <para>Variable to work on.</para>
335 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
337 <parameter name="Value-XXXXXX">
338 <para>Value to work on.</para>
339 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
341 <parameter name="Match-XXXXXX">
342 <para>Extra match required to match line.</para>
343 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
345 <parameter name="Line-XXXXXX">
346 <para>Line in category to operate on (used with delete and insert actions).</para>
347 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
351 <para>This action will modify, create, or delete configuration elements
352 in Asterisk configuration files.</para>
355 <manager name="CreateConfig" language="en_US">
357 Creates an empty file in the configuration directory.
360 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
361 <parameter name="Filename" required="true">
362 <para>The configuration filename to create (e.g. <filename>foo.conf</filename>).</para>
366 <para>This action will create an empty file in the configuration
367 directory. This action is intended to be used before an UpdateConfig
371 <manager name="ListCategories" language="en_US">
373 List categories in configuration file.
376 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
377 <parameter name="Filename" required="true">
378 <para>Configuration filename (e.g. <filename>foo.conf</filename>).</para>
382 <para>This action will dump the categories in a given file.</para>
385 <manager name="Redirect" language="en_US">
387 Redirect (transfer) a call.
390 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
391 <parameter name="Channel" required="true">
392 <para>Channel to redirect.</para>
394 <parameter name="ExtraChannel">
395 <para>Second call leg to transfer (optional).</para>
397 <parameter name="Exten" required="true">
398 <para>Extension to transfer to.</para>
400 <parameter name="ExtraExten">
401 <para>Extension to transfer extrachannel to (optional).</para>
403 <parameter name="Context" required="true">
404 <para>Context to transfer to.</para>
406 <parameter name="ExtraContext">
407 <para>Context to transfer extrachannel to (optional).</para>
409 <parameter name="Priority" required="true">
410 <para>Priority to transfer to.</para>
412 <parameter name="ExtraPriority">
413 <para>Priority to transfer extrachannel to (optional).</para>
417 <para>Redirect (transfer) a call.</para>
420 <manager name="Atxfer" language="en_US">
425 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
426 <parameter name="Channel" required="true">
427 <para>Transferer's channel.</para>
429 <parameter name="Exten" required="true">
430 <para>Extension to transfer to.</para>
432 <parameter name="Context" required="true">
433 <para>Context to transfer to.</para>
435 <parameter name="Priority" required="true">
436 <para>Priority to transfer to.</para>
440 <para>Attended transfer.</para>
443 <manager name="Originate" language="en_US">
448 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
449 <parameter name="Channel" required="true">
450 <para>Channel name to call.</para>
452 <parameter name="Exten">
453 <para>Extension to use (requires <literal>Context</literal> and
454 <literal>Priority</literal>)</para>
456 <parameter name="Context">
457 <para>Context to use (requires <literal>Exten</literal> and
458 <literal>Priority</literal>)</para>
460 <parameter name="Priority">
461 <para>Priority to use (requires <literal>Exten</literal> and
462 <literal>Context</literal>)</para>
464 <parameter name="Application">
465 <para>Application to execute.</para>
467 <parameter name="Data">
468 <para>Data to use (requires <literal>Application</literal>).</para>
470 <parameter name="Timeout" default="30000">
471 <para>How long to wait for call to be answered (in ms.).</para>
473 <parameter name="CallerID">
474 <para>Caller ID to be set on the outgoing channel.</para>
476 <parameter name="Variable">
477 <para>Channel variable to set, multiple Variable: headers are allowed.</para>
479 <parameter name="Account">
480 <para>Account code.</para>
482 <parameter name="EarlyMedia">
483 <para>Set to <literal>true</literal> to force call bridge on early media..</para>
485 <parameter name="Async">
486 <para>Set to <literal>true</literal> for fast origination.</para>
488 <parameter name="Codecs">
489 <para>Comma-separated list of codecs to use for this call.</para>
493 <para>Generates an outgoing call to a
494 <replaceable>Extension</replaceable>/<replaceable>Context</replaceable>/<replaceable>Priority</replaceable>
495 or <replaceable>Application</replaceable>/<replaceable>Data</replaceable></para>
498 <ref type="managerEvent">OriginateResponse</ref>
501 <managerEvent language="en_US" name="OriginateResponse">
502 <managerEventInstance class="EVENT_FLAG_CALL">
503 <synopsis>Raised in response to an Originate command.</synopsis>
505 <parameter name="ActionID" required="false"/>
506 <parameter name="Resonse">
508 <enum name="Failure"/>
509 <enum name="Success"/>
512 <parameter name="Channel"/>
513 <parameter name="Context"/>
514 <parameter name="Exten"/>
515 <parameter name="Reason"/>
516 <parameter name="Uniqueid"/>
517 <parameter name="CallerIDNum"/>
518 <parameter name="CallerIDName"/>
521 <ref type="manager">Originate</ref>
523 </managerEventInstance>
525 <manager name="Command" language="en_US">
527 Execute Asterisk CLI Command.
530 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
531 <parameter name="Command" required="true">
532 <para>Asterisk CLI command to run.</para>
536 <para>Run a CLI command.</para>
539 <manager name="ExtensionState" language="en_US">
541 Check Extension Status.
544 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
545 <parameter name="Exten" required="true">
546 <para>Extension to check state on.</para>
548 <parameter name="Context" required="true">
549 <para>Context for extension.</para>
553 <para>Report the extension state for given extension. If the extension has a hint,
554 will use devicestate to check the status of the device connected to the extension.</para>
555 <para>Will return an <literal>Extension Status</literal> message. The response will include
556 the hint for the extension and the status.</para>
559 <manager name="PresenceState" language="en_US">
564 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
565 <parameter name="Provider" required="true">
566 <para>Presence Provider to check the state of</para>
570 <para>Report the presence state for the given presence provider.</para>
571 <para>Will return a <literal>Presence State</literal> message. The response will include the
572 presence state and, if set, a presence subtype and custom message.</para>
575 <manager name="AbsoluteTimeout" language="en_US">
577 Set absolute timeout.
580 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
581 <parameter name="Channel" required="true">
582 <para>Channel name to hangup.</para>
584 <parameter name="Timeout" required="true">
585 <para>Maximum duration of the call (sec).</para>
589 <para>Hangup a channel after a certain time. Acknowledges set time with
590 <literal>Timeout Set</literal> message.</para>
593 <manager name="MailboxStatus" language="en_US">
598 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
599 <parameter name="Mailbox" required="true">
600 <para>Full mailbox ID <replaceable>mailbox</replaceable>@<replaceable>vm-context</replaceable>.</para>
604 <para>Checks a voicemail account for status.</para>
605 <para>Returns whether there are messages waiting.</para>
606 <para>Message: Mailbox Status.</para>
607 <para>Mailbox: <replaceable>mailboxid</replaceable>.</para>
608 <para>Waiting: <literal>0</literal> if messages waiting, <literal>1</literal>
609 if no messages waiting.</para>
612 <manager name="MailboxCount" language="en_US">
614 Check Mailbox Message Count.
617 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
618 <parameter name="Mailbox" required="true">
619 <para>Full mailbox ID <replaceable>mailbox</replaceable>@<replaceable>vm-context</replaceable>.</para>
623 <para>Checks a voicemail account for new messages.</para>
624 <para>Returns number of urgent, new and old messages.</para>
625 <para>Message: Mailbox Message Count</para>
626 <para>Mailbox: <replaceable>mailboxid</replaceable></para>
627 <para>UrgentMessages: <replaceable>count</replaceable></para>
628 <para>NewMessages: <replaceable>count</replaceable></para>
629 <para>OldMessages: <replaceable>count</replaceable></para>
632 <manager name="ListCommands" language="en_US">
634 List available manager commands.
637 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
640 <para>Returns the action name and synopsis for every action that
641 is available to the user.</para>
644 <manager name="SendText" language="en_US">
646 Send text message to channel.
649 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
650 <parameter name="Channel" required="true">
651 <para>Channel to send message to.</para>
653 <parameter name="Message" required="true">
654 <para>Message to send.</para>
658 <para>Sends A Text Message to a channel while in a call.</para>
661 <manager name="UserEvent" language="en_US">
663 Send an arbitrary event.
666 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
667 <parameter name="UserEvent" required="true">
668 <para>Event string to send.</para>
670 <parameter name="Header1">
671 <para>Content1.</para>
673 <parameter name="HeaderN">
674 <para>ContentN.</para>
678 <para>Send an event to manager sessions.</para>
681 <manager name="WaitEvent" language="en_US">
683 Wait for an event to occur.
686 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
687 <parameter name="Timeout" required="true">
688 <para>Maximum time (in seconds) to wait for events, <literal>-1</literal> means forever.</para>
692 <para>This action will ellicit a <literal>Success</literal> response. Whenever
693 a manager event is queued. Once WaitEvent has been called on an HTTP manager
694 session, events will be generated and queued.</para>
697 <manager name="CoreSettings" language="en_US">
699 Show PBX core settings (version etc).
702 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
705 <para>Query for Core PBX settings.</para>
708 <manager name="CoreStatus" language="en_US">
710 Show PBX core status variables.
713 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
716 <para>Query for Core PBX status.</para>
719 <manager name="Reload" language="en_US">
724 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
725 <parameter name="Module">
726 <para>Name of the module to reload.</para>
730 <para>Send a reload event.</para>
733 <manager name="CoreShowChannels" language="en_US">
735 List currently active channels.
738 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
741 <para>List currently defined channels and some information about them.</para>
744 <manager name="ModuleLoad" language="en_US">
749 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
750 <parameter name="Module">
751 <para>Asterisk module name (including .so extension) or subsystem identifier:</para>
754 <enum name="dnsmgr" />
755 <enum name="extconfig" />
758 <enum name="manager" />
760 <enum name="logger" />
761 <enum name="features" />
763 <enum name="udptl" />
764 <enum name="indications" />
769 <parameter name="LoadType" required="true">
770 <para>The operation to be done on module. Subsystem identifiers may only
774 <enum name="unload" />
775 <enum name="reload" />
777 <para>If no module is specified for a <literal>reload</literal> loadtype,
778 all modules are reloaded.</para>
782 <para>Loads, unloads or reloads an Asterisk module in a running system.</para>
785 <manager name="ModuleCheck" language="en_US">
787 Check if module is loaded.
790 <parameter name="Module" required="true">
791 <para>Asterisk module name (not including extension).</para>
795 <para>Checks if Asterisk module is loaded. Will return Success/Failure.
796 For success returns, the module revision number is included.</para>
799 <manager name="AOCMessage" language="en_US">
801 Generate an Advice of Charge message on a channel.
804 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
805 <parameter name="Channel" required="true">
806 <para>Channel name to generate the AOC message on.</para>
808 <parameter name="ChannelPrefix">
809 <para>Partial channel prefix. By using this option one can match the beginning part
810 of a channel name without having to put the entire name in. For example
811 if a channel name is SIP/snom-00000001 and this value is set to SIP/snom, then
812 that channel matches and the message will be sent. Note however that only
813 the first matched channel has the message sent on it. </para>
815 <parameter name="MsgType" required="true">
816 <para>Defines what type of AOC message to create, AOC-D or AOC-E</para>
822 <parameter name="ChargeType" required="true">
823 <para>Defines what kind of charge this message represents.</para>
827 <enum name="Currency" />
831 <parameter name="UnitAmount(0)">
832 <para>This represents the amount of units charged. The ETSI AOC standard specifies that
833 this value along with the optional UnitType value are entries in a list. To accommodate this
834 these values take an index value starting at 0 which can be used to generate this list of
835 unit entries. For Example, If two unit entires were required this could be achieved by setting the
836 paramter UnitAmount(0)=1234 and UnitAmount(1)=5678. Note that UnitAmount at index 0 is
837 required when ChargeType=Unit, all other entries in the list are optional.
840 <parameter name="UnitType(0)">
841 <para>Defines the type of unit. ETSI AOC standard specifies this as an integer
842 value between 1 and 16, but this value is left open to accept any positive
843 integer. Like the UnitAmount parameter, this value represents a list entry
844 and has an index parameter that starts at 0.
847 <parameter name="CurrencyName">
848 <para>Specifies the currency's name. Note that this value is truncated after 10 characters.</para>
850 <parameter name="CurrencyAmount">
851 <para>Specifies the charge unit amount as a positive integer. This value is required
852 when ChargeType==Currency.</para>
854 <parameter name="CurrencyMultiplier">
855 <para>Specifies the currency multiplier. This value is required when ChargeType==Currency.</para>
857 <enum name="OneThousandth" />
858 <enum name="OneHundredth" />
859 <enum name="OneTenth" />
862 <enum name="Hundred" />
863 <enum name="Thousand" />
866 <parameter name="TotalType" default="Total">
867 <para>Defines what kind of AOC-D total is represented.</para>
869 <enum name="Total" />
870 <enum name="SubTotal" />
873 <parameter name="AOCBillingId">
874 <para>Represents a billing ID associated with an AOC-D or AOC-E message. Note
875 that only the first 3 items of the enum are valid AOC-D billing IDs</para>
877 <enum name="Normal" />
878 <enum name="ReverseCharge" />
879 <enum name="CreditCard" />
880 <enum name="CallFwdUnconditional" />
881 <enum name="CallFwdBusy" />
882 <enum name="CallFwdNoReply" />
883 <enum name="CallDeflection" />
884 <enum name="CallTransfer" />
887 <parameter name="ChargingAssociationId">
888 <para>Charging association identifier. This is optional for AOC-E and can be
889 set to any value between -32768 and 32767</para>
891 <parameter name="ChargingAssociationNumber">
892 <para>Represents the charging association party number. This value is optional
895 <parameter name="ChargingAssociationPlan">
896 <para>Integer representing the charging plan associated with the ChargingAssociationNumber.
897 The value is bits 7 through 1 of the Q.931 octet containing the type-of-number and
898 numbering-plan-identification fields.</para>
902 <para>Generates an AOC-D or AOC-E message on a channel.</para>
905 <function name="AMI_CLIENT" language="en_US">
907 Checks attributes of manager accounts
910 <parameter name="loginname" required="true">
911 <para>Login name, specified in manager.conf</para>
913 <parameter name="field" required="true">
914 <para>The manager account attribute to return</para>
916 <enum name="sessions"><para>The number of sessions for this AMI account</para></enum>
922 Currently, the only supported parameter is "sessions" which will return the current number of
923 active sessions for this AMI account.
927 <manager name="Filter" language="en_US">
929 Dynamically add filters for the current manager session.
932 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
933 <parameter name="Operation">
936 <para>Add a filter.</para>
940 <parameter name="Filter">
941 <para>Filters can be whitelist or blacklist</para>
942 <para>Example whitelist filter: "Event: Newchannel"</para>
943 <para>Example blacklist filter: "!Channel: DAHDI.*"</para>
944 <para>This filter option is used to whitelist or blacklist events per user to be
945 reported with regular expressions and are allowed if both the regex matches
946 and the user has read access as defined in manager.conf. Filters are assumed to be for whitelisting
947 unless preceeded by an exclamation point, which marks it as being black.
948 Evaluation of the filters is as follows:</para>
949 <para>- If no filters are configured all events are reported as normal.</para>
950 <para>- If there are white filters only: implied black all filter processed first, then white filters.</para>
951 <para>- If there are black filters only: implied white all filter processed first, then black filters.</para>
952 <para>- If there are both white and black filters: implied black all filter processed first, then white
953 filters, and lastly black filters.</para>
957 <para>The filters added are only used for the current session.
958 Once the connection is closed the filters are removed.</para>
959 <para>This comand requires the system permission because
960 this command can be used to create filters that may bypass
961 filters defined in manager.conf</para>
964 <manager name="FilterList" language="en_US">
966 Show current event filters for this session
969 <para>The filters displayed are for the current session. Only those filters defined in
970 manager.conf will be present upon starting a new session.</para>
973 <manager name="BlindTransfer" language="en_US">
975 Blind transfer channel(s) to the given destination
978 <parameter name="Channel" required="true">
980 <parameter name="Context">
982 <parameter name="Exten">
986 <para>Redirect all channels currently bridged to the specified channel to the specified destination.</para>
989 <ref type="manager">Redirect</ref>
994 /*! \addtogroup Group_AMI AMI functions
1002 UNSPECIFIED_CATEGORY,
1003 UNSPECIFIED_ARGUMENT,
1013 enum add_filter_result {
1015 FILTER_ALLOC_FAILED,
1016 FILTER_COMPILE_FAIL,
1020 * Linked list of events.
1021 * Global events are appended to the list by append_event().
1022 * The usecount is the number of stored pointers to the element,
1023 * excluding the list pointers. So an element that is only in
1024 * the list has a usecount of 0, not 1.
1026 * Clients have a pointer to the last event processed, and for each
1027 * of these clients we track the usecount of the elements.
1028 * If we have a pointer to an entry in the list, it is safe to navigate
1029 * it forward because elements will not be deleted, but only appended.
1030 * The worst that can happen is seeing the pointer still NULL.
1032 * When the usecount of an element drops to 0, and the element is the
1033 * first in the list, we can remove it. Removal is done within the
1034 * main thread, which is woken up for the purpose.
1036 * For simplicity of implementation, we make sure the list is never empty.
1039 int usecount; /*!< # of clients who still need the event */
1041 unsigned int seq; /*!< sequence number */
1042 struct timeval tv; /*!< When event was allocated */
1043 AST_RWLIST_ENTRY(eventqent) eq_next;
1044 char eventdata[1]; /*!< really variable size, allocated by append_event() */
1047 static AST_RWLIST_HEAD_STATIC(all_events, eventqent);
1049 static int displayconnects = 1;
1050 static int allowmultiplelogin = 1;
1051 static int timestampevents;
1052 static int httptimeout = 60;
1053 static int broken_events_action = 0;
1054 static int manager_enabled = 0;
1055 static int webmanager_enabled = 0;
1056 static int manager_debug = 0; /*!< enable some debugging code in the manager */
1057 static int authtimeout;
1058 static int authlimit;
1059 static char *manager_channelvars;
1061 #define DEFAULT_REALM "asterisk"
1062 static char global_realm[MAXHOSTNAMELEN]; /*!< Default realm */
1064 static int block_sockets;
1065 static int unauth_sessions = 0;
1066 static struct stasis_subscription *acl_change_sub;
1068 /*! \brief A \ref stasis_topic that all topics AMI cares about will be forwarded to */
1069 static struct stasis_topic *manager_topic;
1071 /*! \brief The \ref stasis_message_router for all \ref stasis messages */
1072 static struct stasis_message_router *stasis_router;
1074 #define MGR_SHOW_TERMINAL_WIDTH 80
1076 #define MAX_VARS 128
1079 * Descriptor for a manager session, either on the AMI socket or over HTTP.
1082 * AMI session have managerid == 0; the entry is created upon a connect,
1083 * and destroyed with the socket.
1084 * HTTP sessions have managerid != 0, the value is used as a search key
1085 * to lookup sessions (using the mansession_id cookie, or nonce key from
1086 * Digest Authentication http header).
1088 #define MAX_BLACKLIST_CMD_LEN 2
1089 static const struct {
1090 const char *words[AST_MAX_CMD_LEN];
1091 } command_blacklist[] = {
1092 {{ "module", "load", NULL }},
1093 {{ "module", "unload", NULL }},
1094 {{ "restart", "gracefully", NULL }},
1097 static void acl_change_stasis_cb(void *data, struct stasis_subscription *sub, struct stasis_topic *topic, struct stasis_message *message);
1099 static void acl_change_stasis_subscribe(void)
1101 if (!acl_change_sub) {
1102 acl_change_sub = stasis_subscribe(ast_security_topic(),
1103 acl_change_stasis_cb, NULL);
1107 static void acl_change_stasis_unsubscribe(void)
1109 acl_change_sub = stasis_unsubscribe_and_join(acl_change_sub);
1112 /* In order to understand what the heck is going on with the
1113 * mansession_session and mansession structs, we need to have a bit of a history
1116 * In the beginning, there was the mansession. The mansession contained data that was
1117 * intrinsic to a manager session, such as the time that it started, the name of the logged-in
1118 * user, etc. In addition to these parameters were the f and fd parameters. For typical manager
1119 * sessions, these were used to represent the TCP socket over which the AMI session was taking
1120 * place. It makes perfect sense for these fields to be a part of the session-specific data since
1121 * the session actually defines this information.
1123 * Then came the HTTP AMI sessions. With these, the f and fd fields need to be opened and closed
1124 * for every single action that occurs. Thus the f and fd fields aren't really specific to the session
1125 * but rather to the action that is being executed. Because a single session may execute many commands
1126 * at once, some sort of safety needed to be added in order to be sure that we did not end up with fd
1127 * leaks from one action overwriting the f and fd fields used by a previous action before the previous action
1128 * has had a chance to properly close its handles.
1130 * The initial idea to solve this was to use thread synchronization, but this prevented multiple actions
1131 * from being run at the same time in a single session. Some manager actions may block for a long time, thus
1132 * creating a large queue of actions to execute. In addition, this fix did not address the basic architectural
1133 * issue that for HTTP manager sessions, the f and fd variables are not really a part of the session, but are
1134 * part of the action instead.
1136 * The new idea was to create a structure on the stack for each HTTP Manager action. This structure would
1137 * contain the action-specific information, such as which file to write to. In order to maintain expectations
1138 * of action handlers and not have to change the public API of the manager code, we would need to name this
1139 * new stacked structure 'mansession' and contain within it the old mansession struct that we used to use.
1140 * We renamed the old mansession struct 'mansession_session' to hopefully convey that what is in this structure
1141 * is session-specific data. The structure that it is wrapped in, called a 'mansession' really contains action-specific
1144 struct mansession_session {
1145 /*! \todo XXX need to document which fields it is protecting */
1146 struct ast_sockaddr addr; /*!< address we are connecting from */
1147 FILE *f; /*!< fdopen() on the underlying fd */
1148 int fd; /*!< descriptor used for output. Either the socket (AMI) or a temporary file (HTTP) */
1149 int inuse; /*!< number of HTTP sessions using this entry */
1150 int needdestroy; /*!< Whether an HTTP session should be destroyed */
1151 pthread_t waiting_thread; /*!< Sleeping thread using this descriptor */
1152 uint32_t managerid; /*!< Unique manager identifier, 0 for AMI sessions */
1153 time_t sessionstart; /*!< Session start time */
1154 struct timeval sessionstart_tv; /*!< Session start time */
1155 time_t sessiontimeout; /*!< Session timeout if HTTP */
1156 char username[80]; /*!< Logged in username */
1157 char challenge[10]; /*!< Authentication challenge */
1158 int authenticated; /*!< Authentication status */
1159 int readperm; /*!< Authorization for reading */
1160 int writeperm; /*!< Authorization for writing */
1161 char inbuf[1025]; /*!< Buffer - we use the extra byte to add a '\\0' and simplify parsing */
1162 int inlen; /*!< number of buffered bytes */
1163 struct ao2_container *whitefilters; /*!< Manager event filters - white list */
1164 struct ao2_container *blackfilters; /*!< Manager event filters - black list */
1165 struct ast_variable *chanvars; /*!< Channel variables to set for originate */
1166 int send_events; /*!< XXX what ? */
1167 struct eventqent *last_ev; /*!< last event processed. */
1168 int writetimeout; /*!< Timeout for ast_carefulwrite() */
1170 int pending_event; /*!< Pending events indicator in case when waiting_thread is NULL */
1171 time_t noncetime; /*!< Timer for nonce value expiration */
1172 unsigned long oldnonce; /*!< Stale nonce value */
1173 unsigned long nc; /*!< incremental nonce counter */
1174 AST_LIST_HEAD_NOLOCK(mansession_datastores, ast_datastore) datastores; /*!< Data stores on the session */
1175 AST_LIST_ENTRY(mansession_session) list;
1178 enum mansession_message_parsing {
1180 MESSAGE_LINE_TOO_LONG
1183 /*! \brief In case you didn't read that giant block of text above the mansession_session struct, the
1184 * \ref struct mansession is named this solely to keep the API the same in Asterisk. This structure really
1185 * represents data that is different from Manager action to Manager action. The mansession_session pointer
1186 * contained within points to session-specific data.
1189 struct mansession_session *session;
1190 struct ast_tcptls_session_instance *tcptls_session;
1193 enum mansession_message_parsing parsing;
1195 struct manager_custom_hook *hook;
1199 static struct ao2_container *sessions = NULL;
1201 /*! \brief user descriptor, as read from the config file.
1203 * \note It is still missing some fields -- e.g. we can have multiple permit and deny
1204 * lines which are not supported here, and readperm/writeperm/writetimeout
1207 struct ast_manager_user {
1209 char *secret; /*!< Secret for logging in */
1210 int readperm; /*!< Authorization for reading */
1211 int writeperm; /*!< Authorization for writing */
1212 int writetimeout; /*!< Per user Timeout for ast_carefulwrite() */
1213 int displayconnects; /*!< XXX unused */
1214 int keep; /*!< mark entries created on a reload */
1215 struct ao2_container *whitefilters; /*!< Manager event filters - white list */
1216 struct ao2_container *blackfilters; /*!< Manager event filters - black list */
1217 struct ast_acl_list *acl; /*!< ACL setting */
1218 char *a1_hash; /*!< precalculated A1 for Digest auth */
1219 struct ast_variable *chanvars; /*!< Channel variables to set for originate */
1220 AST_RWLIST_ENTRY(ast_manager_user) list;
1223 /*! \brief list of users found in the config file */
1224 static AST_RWLIST_HEAD_STATIC(users, ast_manager_user);
1226 /*! \brief list of actions registered */
1227 static AST_RWLIST_HEAD_STATIC(actions, manager_action);
1229 /*! \brief list of hooks registered */
1230 static AST_RWLIST_HEAD_STATIC(manager_hooks, manager_custom_hook);
1232 /*! \brief A container of event documentation nodes */
1233 AO2_GLOBAL_OBJ_STATIC(event_docs);
1235 static enum add_filter_result manager_add_filter(const char *filter_pattern, struct ao2_container *whitefilters, struct ao2_container *blackfilters);
1238 * @{ \brief Define AMI message types.
1240 STASIS_MESSAGE_TYPE_DEFN(ast_manager_get_generic_type);
1245 * \brief Find a registered action object.
1247 * \param name Name of AMI action to find.
1249 * \return Reffed action found or NULL
1251 static struct manager_action *action_find(const char *name)
1253 struct manager_action *act;
1255 AST_RWLIST_RDLOCK(&actions);
1256 AST_RWLIST_TRAVERSE(&actions, act, list) {
1257 if (!strcasecmp(name, act->action)) {
1258 ao2_t_ref(act, +1, "found action object");
1262 AST_RWLIST_UNLOCK(&actions);
1267 struct stasis_topic *ast_manager_get_topic(void)
1269 return manager_topic;
1272 struct stasis_message_router *ast_manager_get_message_router(void)
1274 return stasis_router;
1277 static void manager_json_value_str_append(struct ast_json *value, const char *key,
1278 struct ast_str **res)
1280 switch (ast_json_typeof(value)) {
1281 case AST_JSON_STRING:
1282 ast_str_append(res, 0, "%s: %s\r\n", key, ast_json_string_get(value));
1284 case AST_JSON_INTEGER:
1285 ast_str_append(res, 0, "%s: %jd\r\n", key, ast_json_integer_get(value));
1288 ast_str_append(res, 0, "%s: True\r\n", key);
1290 case AST_JSON_FALSE:
1291 ast_str_append(res, 0, "%s: False\r\n", key);
1294 ast_str_append(res, 0, "%s: \r\n", key);
1299 static void manager_json_to_ast_str(struct ast_json *obj, const char *key,
1300 struct ast_str **res, key_exclusion_cb exclusion_cb);
1302 static void manager_json_array_with_key(struct ast_json *obj, const char* key,
1303 size_t index, struct ast_str **res,
1304 key_exclusion_cb exclusion_cb)
1306 struct ast_str *key_str = ast_str_alloca(64);
1307 ast_str_set(&key_str, 0, "%s(%zu)", key, index);
1308 manager_json_to_ast_str(obj, ast_str_buffer(key_str),
1312 static void manager_json_obj_with_key(struct ast_json *obj, const char* key,
1313 const char *parent_key, struct ast_str **res,
1314 key_exclusion_cb exclusion_cb)
1317 struct ast_str *key_str = ast_str_alloca(64);
1318 ast_str_set(&key_str, 0, "%s/%s", parent_key, key);
1319 manager_json_to_ast_str(obj, ast_str_buffer(key_str),
1324 manager_json_to_ast_str(obj, key, res, exclusion_cb);
1327 void manager_json_to_ast_str(struct ast_json *obj, const char *key,
1328 struct ast_str **res, key_exclusion_cb exclusion_cb)
1330 struct ast_json_iter *i;
1332 if (!obj || (!res && !(*res) && (!(*res = ast_str_create(1024))))) {
1336 if (exclusion_cb && key && exclusion_cb(key)) {
1340 if (ast_json_typeof(obj) != AST_JSON_OBJECT &&
1341 ast_json_typeof(obj) != AST_JSON_ARRAY) {
1342 manager_json_value_str_append(obj, key, res);
1346 if (ast_json_typeof(obj) == AST_JSON_ARRAY) {
1348 for (j = 0; j < ast_json_array_size(obj); ++j) {
1349 manager_json_array_with_key(ast_json_array_get(obj, j),
1350 key, j, res, exclusion_cb);
1355 for (i = ast_json_object_iter(obj); i;
1356 i = ast_json_object_iter_next(obj, i)) {
1357 manager_json_obj_with_key(ast_json_object_iter_value(i),
1358 ast_json_object_iter_key(i),
1359 key, res, exclusion_cb);
1364 struct ast_str *ast_manager_str_from_json_object(struct ast_json *blob, key_exclusion_cb exclusion_cb)
1366 struct ast_str *res = ast_str_create(1024);
1367 manager_json_to_ast_str(blob, NULL, &res, exclusion_cb);
1371 static void manager_default_msg_cb(void *data, struct stasis_subscription *sub,
1372 struct stasis_topic *topic,
1373 struct stasis_message *message)
1375 RAII_VAR(struct ast_manager_event_blob *, ev, NULL, ao2_cleanup);
1377 ev = stasis_message_to_ami(message);
1380 /* Not and AMI message; disregard */
1384 manager_event(ev->event_flags, ev->manager_event, "%s",
1388 static void manager_generic_msg_cb(void *data, struct stasis_subscription *sub,
1389 struct stasis_topic *topic,
1390 struct stasis_message *message)
1392 struct ast_json_payload *payload = stasis_message_data(message);
1393 int class_type = ast_json_integer_get(ast_json_object_get(payload->json, "class_type"));
1394 const char *type = ast_json_string_get(ast_json_object_get(payload->json, "type"));
1395 struct ast_json *event = ast_json_object_get(payload->json, "event");
1396 RAII_VAR(struct ast_str *, event_buffer, NULL, ast_free);
1398 event_buffer = ast_manager_str_from_json_object(event, NULL);
1399 if (!event_buffer) {
1400 ast_log(AST_LOG_WARNING, "Error while creating payload for event %s\n", type);
1403 manager_event(class_type, type, "%s", ast_str_buffer(event_buffer));
1406 void ast_manager_publish_event(const char *type, int class_type, struct ast_json *obj)
1408 RAII_VAR(struct ast_json *, event_info, NULL, ast_json_unref);
1409 RAII_VAR(struct ast_json_payload *, payload, NULL, ao2_cleanup);
1410 RAII_VAR(struct stasis_message *, message, NULL, ao2_cleanup);
1417 event_info = ast_json_pack("{s: s, s: i, s: o}",
1419 "class_type", class_type,
1425 payload = ast_json_payload_create(event_info);
1429 message = stasis_message_create(ast_manager_get_generic_type(), payload);
1433 stasis_publish(ast_manager_get_topic(), message);
1436 /*! \brief Add a custom hook to be called when an event is fired */
1437 void ast_manager_register_hook(struct manager_custom_hook *hook)
1439 AST_RWLIST_WRLOCK(&manager_hooks);
1440 AST_RWLIST_INSERT_TAIL(&manager_hooks, hook, list);
1441 AST_RWLIST_UNLOCK(&manager_hooks);
1444 /*! \brief Delete a custom hook to be called when an event is fired */
1445 void ast_manager_unregister_hook(struct manager_custom_hook *hook)
1447 AST_RWLIST_WRLOCK(&manager_hooks);
1448 AST_RWLIST_REMOVE(&manager_hooks, hook, list);
1449 AST_RWLIST_UNLOCK(&manager_hooks);
1452 int check_manager_enabled(void)
1454 return manager_enabled;
1457 int check_webmanager_enabled(void)
1459 return (webmanager_enabled && manager_enabled);
1463 * Grab a reference to the last event, update usecount as needed.
1464 * Can handle a NULL pointer.
1466 static struct eventqent *grab_last(void)
1468 struct eventqent *ret;
1470 AST_RWLIST_WRLOCK(&all_events);
1471 ret = AST_RWLIST_LAST(&all_events);
1472 /* the list is never empty now, but may become so when
1473 * we optimize it in the future, so be prepared.
1476 ast_atomic_fetchadd_int(&ret->usecount, 1);
1478 AST_RWLIST_UNLOCK(&all_events);
1483 * Purge unused events. Remove elements from the head
1484 * as long as their usecount is 0 and there is a next element.
1486 static void purge_events(void)
1488 struct eventqent *ev;
1489 struct timeval now = ast_tvnow();
1491 AST_RWLIST_WRLOCK(&all_events);
1492 while ( (ev = AST_RWLIST_FIRST(&all_events)) &&
1493 ev->usecount == 0 && AST_RWLIST_NEXT(ev, eq_next)) {
1494 AST_RWLIST_REMOVE_HEAD(&all_events, eq_next);
1498 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&all_events, ev, eq_next) {
1499 /* Never release the last event */
1500 if (!AST_RWLIST_NEXT(ev, eq_next)) {
1504 /* 2.5 times whatever the HTTP timeout is (maximum 2.5 hours) is the maximum time that we will definitely cache an event */
1505 if (ev->usecount == 0 && ast_tvdiff_sec(now, ev->tv) > (httptimeout > 3600 ? 3600 : httptimeout) * 2.5) {
1506 AST_RWLIST_REMOVE_CURRENT(eq_next);
1510 AST_RWLIST_TRAVERSE_SAFE_END;
1511 AST_RWLIST_UNLOCK(&all_events);
1515 * helper functions to convert back and forth between
1516 * string and numeric representation of set of flags
1518 static const struct permalias {
1522 { EVENT_FLAG_SYSTEM, "system" },
1523 { EVENT_FLAG_CALL, "call" },
1524 { EVENT_FLAG_LOG, "log" },
1525 { EVENT_FLAG_VERBOSE, "verbose" },
1526 { EVENT_FLAG_COMMAND, "command" },
1527 { EVENT_FLAG_AGENT, "agent" },
1528 { EVENT_FLAG_USER, "user" },
1529 { EVENT_FLAG_CONFIG, "config" },
1530 { EVENT_FLAG_DTMF, "dtmf" },
1531 { EVENT_FLAG_REPORTING, "reporting" },
1532 { EVENT_FLAG_CDR, "cdr" },
1533 { EVENT_FLAG_DIALPLAN, "dialplan" },
1534 { EVENT_FLAG_ORIGINATE, "originate" },
1535 { EVENT_FLAG_AGI, "agi" },
1536 { EVENT_FLAG_CC, "cc" },
1537 { EVENT_FLAG_AOC, "aoc" },
1538 { EVENT_FLAG_TEST, "test" },
1539 { EVENT_FLAG_MESSAGE, "message" },
1544 /*! \brief Checks to see if a string which can be used to evaluate functions should be rejected */
1545 static int function_capable_string_allowed_with_auths(const char *evaluating, int writepermlist)
1547 if (!(writepermlist & EVENT_FLAG_SYSTEM)
1549 strstr(evaluating, "SHELL") || /* NoOp(${SHELL(rm -rf /)}) */
1550 strstr(evaluating, "EVAL") /* NoOp(${EVAL(${some_var_containing_SHELL})}) */
1557 /*! \brief Convert authority code to a list of options for a user. This will only
1558 * display those authority codes that have an explicit match on authority */
1559 static const char *user_authority_to_str(int authority, struct ast_str **res)
1564 ast_str_reset(*res);
1565 for (i = 0; i < ARRAY_LEN(perms) - 1; i++) {
1566 if ((authority & perms[i].num) == perms[i].num) {
1567 ast_str_append(res, 0, "%s%s", sep, perms[i].label);
1572 if (ast_str_strlen(*res) == 0) /* replace empty string with something sensible */
1573 ast_str_append(res, 0, "<none>");
1575 return ast_str_buffer(*res);
1579 /*! \brief Convert authority code to a list of options. Note that the EVENT_FLAG_ALL
1580 * authority will always be returned. */
1581 static const char *authority_to_str(int authority, struct ast_str **res)
1586 ast_str_reset(*res);
1587 for (i = 0; i < ARRAY_LEN(perms) - 1; i++) {
1588 if (authority & perms[i].num) {
1589 ast_str_append(res, 0, "%s%s", sep, perms[i].label);
1594 if (ast_str_strlen(*res) == 0) /* replace empty string with something sensible */
1595 ast_str_append(res, 0, "<none>");
1597 return ast_str_buffer(*res);
1600 /*! Tells you if smallstr exists inside bigstr
1601 which is delim by delim and uses no buf or stringsep
1602 ast_instring("this|that|more","this",'|') == 1;
1604 feel free to move this to app.c -anthm */
1605 static int ast_instring(const char *bigstr, const char *smallstr, const char delim)
1607 const char *val = bigstr, *next;
1610 if ((next = strchr(val, delim))) {
1611 if (!strncmp(val, smallstr, (next - val))) {
1617 return !strcmp(smallstr, val);
1619 } while (*(val = (next + 1)));
1624 static int get_perm(const char *instr)
1632 for (x = 0; x < ARRAY_LEN(perms); x++) {
1633 if (ast_instring(instr, perms[x].label, ',')) {
1634 ret |= perms[x].num;
1642 * A number returns itself, false returns 0, true returns all flags,
1643 * other strings return the flags that are set.
1645 static int strings_to_mask(const char *string)
1649 if (ast_strlen_zero(string)) {
1653 for (p = string; *p; p++) {
1654 if (*p < '0' || *p > '9') {
1658 if (!*p) { /* all digits */
1659 return atoi(string);
1661 if (ast_false(string)) {
1664 if (ast_true(string)) { /* all permissions */
1666 for (x = 0; x < ARRAY_LEN(perms); x++) {
1667 ret |= perms[x].num;
1671 return get_perm(string);
1674 /*! \brief Unreference manager session object.
1675 If no more references, then go ahead and delete it */
1676 static struct mansession_session *unref_mansession(struct mansession_session *s)
1678 int refcount = ao2_ref(s, -1);
1679 if (manager_debug) {
1680 ast_debug(1, "Mansession: %p refcount now %d\n", s, refcount - 1);
1685 static void event_filter_destructor(void *obj)
1687 regex_t *regex_filter = obj;
1688 regfree(regex_filter);
1691 static void session_destructor(void *obj)
1693 struct mansession_session *session = obj;
1694 struct eventqent *eqe = session->last_ev;
1695 struct ast_datastore *datastore;
1697 /* Get rid of each of the data stores on the session */
1698 while ((datastore = AST_LIST_REMOVE_HEAD(&session->datastores, entry))) {
1699 /* Free the data store */
1700 ast_datastore_free(datastore);
1703 if (session->f != NULL) {
1707 ast_atomic_fetchadd_int(&eqe->usecount, -1);
1709 if (session->chanvars) {
1710 ast_variables_destroy(session->chanvars);
1713 if (session->whitefilters) {
1714 ao2_t_callback(session->whitefilters, OBJ_UNLINK | OBJ_NODATA | OBJ_MULTIPLE, NULL, NULL, "unlink all white filters");
1715 ao2_t_ref(session->whitefilters, -1 , "decrement ref for white container, should be last one");
1718 if (session->blackfilters) {
1719 ao2_t_callback(session->blackfilters, OBJ_UNLINK | OBJ_NODATA | OBJ_MULTIPLE, NULL, NULL, "unlink all black filters");
1720 ao2_t_ref(session->blackfilters, -1 , "decrement ref for black container, should be last one");
1724 /*! \brief Allocate manager session structure and add it to the list of sessions */
1725 static struct mansession_session *build_mansession(const struct ast_sockaddr *addr)
1727 struct mansession_session *newsession;
1729 if (!(newsession = ao2_alloc(sizeof(*newsession), session_destructor))) {
1733 if (!(newsession->whitefilters = ao2_container_alloc(1, NULL, NULL))) {
1734 ao2_ref(newsession, -1);
1738 if (!(newsession->blackfilters = ao2_container_alloc(1, NULL, NULL))) {
1739 ao2_ref(newsession, -1); /* session_destructor will cleanup the other filter */
1743 newsession->fd = -1;
1744 newsession->waiting_thread = AST_PTHREADT_NULL;
1745 newsession->writetimeout = 100;
1746 newsession->send_events = -1;
1747 ast_sockaddr_copy(&newsession->addr, addr);
1749 ao2_link(sessions, newsession);
1754 static int mansession_cmp_fn(void *obj, void *arg, int flags)
1756 struct mansession_session *s = obj;
1758 return !strcasecmp(s->username, str) ? CMP_MATCH : 0;
1761 static void session_destroy(struct mansession_session *s)
1763 unref_mansession(s);
1764 ao2_unlink(sessions, s);
1768 static int check_manager_session_inuse(const char *name)
1770 struct mansession_session *session = ao2_find(sessions, (char *) name, 0);
1775 unref_mansession(session);
1782 * lookup an entry in the list of registered users.
1783 * must be called with the list lock held.
1785 static struct ast_manager_user *get_manager_by_name_locked(const char *name)
1787 struct ast_manager_user *user = NULL;
1789 AST_RWLIST_TRAVERSE(&users, user, list) {
1790 if (!strcasecmp(user->username, name)) {
1798 /*! \brief Get displayconnects config option.
1799 * \param session manager session to get parameter from.
1800 * \return displayconnects config option value.
1802 static int manager_displayconnects (struct mansession_session *session)
1804 struct ast_manager_user *user = NULL;
1807 AST_RWLIST_RDLOCK(&users);
1808 if ((user = get_manager_by_name_locked (session->username))) {
1809 ret = user->displayconnects;
1811 AST_RWLIST_UNLOCK(&users);
1816 static char *handle_showmancmd(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1818 struct manager_action *cur;
1819 struct ast_str *authority;
1823 char syntax_title[64], description_title[64], synopsis_title[64], seealso_title[64], arguments_title[64], privilege_title[64];
1828 e->command = "manager show command";
1830 "Usage: manager show command <actionname> [<actionname> [<actionname> [...]]]\n"
1831 " Shows the detailed description for a specific Asterisk manager interface command.\n";
1834 l = strlen(a->word);
1836 AST_RWLIST_RDLOCK(&actions);
1837 AST_RWLIST_TRAVERSE(&actions, cur, list) {
1838 if (!strncasecmp(a->word, cur->action, l) && ++which > a->n) {
1839 ret = ast_strdup(cur->action);
1840 break; /* make sure we exit even if ast_strdup() returns NULL */
1843 AST_RWLIST_UNLOCK(&actions);
1846 authority = ast_str_alloca(80);
1848 return CLI_SHOWUSAGE;
1852 /* setup the titles */
1853 term_color(synopsis_title, "[Synopsis]\n", COLOR_MAGENTA, 0, 40);
1854 term_color(description_title, "[Description]\n", COLOR_MAGENTA, 0, 40);
1855 term_color(syntax_title, "[Syntax]\n", COLOR_MAGENTA, 0, 40);
1856 term_color(seealso_title, "[See Also]\n", COLOR_MAGENTA, 0, 40);
1857 term_color(arguments_title, "[Arguments]\n", COLOR_MAGENTA, 0, 40);
1858 term_color(privilege_title, "[Privilege]\n", COLOR_MAGENTA, 0, 40);
1861 AST_RWLIST_RDLOCK(&actions);
1862 AST_RWLIST_TRAVERSE(&actions, cur, list) {
1863 for (num = 3; num < a->argc; num++) {
1864 if (!strcasecmp(cur->action, a->argv[num])) {
1865 authority_to_str(cur->authority, &authority);
1868 if (cur->docsrc == AST_XML_DOC) {
1869 ast_cli(a->fd, "%s%s\n\n%s%s\n\n%s%s\n\n%s%s\n\n%s%s\n\n%s%s\n\n",
1871 ast_xmldoc_printable(S_OR(cur->syntax, "Not available"), 1),
1873 ast_xmldoc_printable(S_OR(cur->synopsis, "Not available"), 1),
1875 ast_xmldoc_printable(S_OR(cur->description, "Not available"), 1),
1877 ast_xmldoc_printable(S_OR(cur->arguments, "Not available"), 1),
1879 ast_xmldoc_printable(S_OR(cur->seealso, "Not available"), 1),
1881 ast_xmldoc_printable(S_OR(authority->str, "Not available"), 1));
1885 ast_cli(a->fd, "Action: %s\nSynopsis: %s\nPrivilege: %s\n%s\n",
1886 cur->action, cur->synopsis,
1888 S_OR(cur->description, ""));
1893 AST_RWLIST_UNLOCK(&actions);
1898 static char *handle_mandebug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1902 e->command = "manager set debug [on|off]";
1903 e->usage = "Usage: manager set debug [on|off]\n Show, enable, disable debugging of the manager code.\n";
1910 ast_cli(a->fd, "manager debug is %s\n", manager_debug? "on" : "off");
1911 } else if (a->argc == 4) {
1912 if (!strcasecmp(a->argv[3], "on")) {
1914 } else if (!strcasecmp(a->argv[3], "off")) {
1917 return CLI_SHOWUSAGE;
1923 static char *handle_showmanager(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1925 struct ast_manager_user *user = NULL;
1928 struct ast_str *rauthority = ast_str_alloca(128);
1929 struct ast_str *wauthority = ast_str_alloca(128);
1930 struct ast_variable *v;
1934 e->command = "manager show user";
1936 " Usage: manager show user <user>\n"
1937 " Display all information related to the manager user specified.\n";
1940 l = strlen(a->word);
1945 AST_RWLIST_RDLOCK(&users);
1946 AST_RWLIST_TRAVERSE(&users, user, list) {
1947 if ( !strncasecmp(a->word, user->username, l) && ++which > a->n ) {
1948 ret = ast_strdup(user->username);
1952 AST_RWLIST_UNLOCK(&users);
1957 return CLI_SHOWUSAGE;
1960 AST_RWLIST_RDLOCK(&users);
1962 if (!(user = get_manager_by_name_locked(a->argv[3]))) {
1963 ast_cli(a->fd, "There is no manager called %s\n", a->argv[3]);
1964 AST_RWLIST_UNLOCK(&users);
1968 ast_cli(a->fd, "\n");
1975 "displayconnects: %s\n",
1976 (user->username ? user->username : "(N/A)"),
1977 (user->secret ? "<Set>" : "(N/A)"),
1978 ((user->acl && !ast_acl_list_is_empty(user->acl)) ? "yes" : "no"),
1979 user_authority_to_str(user->readperm, &rauthority),
1980 user_authority_to_str(user->writeperm, &wauthority),
1981 (user->displayconnects ? "yes" : "no"));
1982 ast_cli(a->fd, " Variables: \n");
1983 for (v = user->chanvars ; v ; v = v->next) {
1984 ast_cli(a->fd, " %s = %s\n", v->name, v->value);
1987 AST_RWLIST_UNLOCK(&users);
1992 static char *handle_showmanagers(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1994 struct ast_manager_user *user = NULL;
1998 e->command = "manager show users";
2000 "Usage: manager show users\n"
2001 " Prints a listing of all managers that are currently configured on that\n"
2008 return CLI_SHOWUSAGE;
2011 AST_RWLIST_RDLOCK(&users);
2013 /* If there are no users, print out something along those lines */
2014 if (AST_RWLIST_EMPTY(&users)) {
2015 ast_cli(a->fd, "There are no manager users.\n");
2016 AST_RWLIST_UNLOCK(&users);
2020 ast_cli(a->fd, "\nusername\n--------\n");
2022 AST_RWLIST_TRAVERSE(&users, user, list) {
2023 ast_cli(a->fd, "%s\n", user->username);
2027 AST_RWLIST_UNLOCK(&users);
2029 ast_cli(a->fd,"-------------------\n"
2030 "%d manager users configured.\n", count_amu);
2034 /*! \brief CLI command manager list commands */
2035 static char *handle_showmancmds(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2037 struct manager_action *cur;
2039 int space_remaining;
2040 #define HSMC_FORMAT " %-*.*s %-.*s\n"
2043 e->command = "manager show commands";
2045 "Usage: manager show commands\n"
2046 " Prints a listing of all the available Asterisk manager interface commands.\n";
2052 AST_RWLIST_RDLOCK(&actions);
2053 AST_RWLIST_TRAVERSE(&actions, cur, list) {
2054 int incoming_len = strlen(cur->action);
2055 if (incoming_len > name_len) {
2056 name_len = incoming_len;
2060 space_remaining = MGR_SHOW_TERMINAL_WIDTH - name_len - 4;
2061 if (space_remaining < 0) {
2062 space_remaining = 0;
2065 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, "Action", space_remaining, "Synopsis");
2066 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, "------", space_remaining, "--------");
2068 AST_RWLIST_TRAVERSE(&actions, cur, list) {
2069 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, cur->action, space_remaining, cur->synopsis);
2071 AST_RWLIST_UNLOCK(&actions);
2076 /*! \brief CLI command manager list connected */
2077 static char *handle_showmanconn(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2079 struct mansession_session *session;
2080 time_t now = time(NULL);
2081 #define HSMCONN_FORMAT1 " %-15.15s %-55.55s %-10.10s %-10.10s %-8.8s %-8.8s %-5.5s %-5.5s\n"
2082 #define HSMCONN_FORMAT2 " %-15.15s %-55.55s %-10d %-10d %-8d %-8d %-5.5d %-5.5d\n"
2084 struct ao2_iterator i;
2088 e->command = "manager show connected";
2090 "Usage: manager show connected\n"
2091 " Prints a listing of the users that are currently connected to the\n"
2092 "Asterisk manager interface.\n";
2098 ast_cli(a->fd, HSMCONN_FORMAT1, "Username", "IP Address", "Start", "Elapsed", "FileDes", "HttpCnt", "Read", "Write");
2100 i = ao2_iterator_init(sessions, 0);
2101 while ((session = ao2_iterator_next(&i))) {
2103 ast_cli(a->fd, HSMCONN_FORMAT2, session->username, ast_sockaddr_stringify_addr(&session->addr), (int)(session->sessionstart), (int)(now - session->sessionstart), session->fd, session->inuse, session->readperm, session->writeperm);
2105 ao2_unlock(session);
2106 unref_mansession(session);
2108 ao2_iterator_destroy(&i);
2109 ast_cli(a->fd, "%d users connected.\n", count);
2114 /*! \brief CLI command manager list eventq */
2115 /* Should change to "manager show connected" */
2116 static char *handle_showmaneventq(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2118 struct eventqent *s;
2121 e->command = "manager show eventq";
2123 "Usage: manager show eventq\n"
2124 " Prints a listing of all events pending in the Asterisk manger\n"
2130 AST_RWLIST_RDLOCK(&all_events);
2131 AST_RWLIST_TRAVERSE(&all_events, s, eq_next) {
2132 ast_cli(a->fd, "Usecount: %d\n", s->usecount);
2133 ast_cli(a->fd, "Category: %d\n", s->category);
2134 ast_cli(a->fd, "Event:\n%s", s->eventdata);
2136 AST_RWLIST_UNLOCK(&all_events);
2141 /*! \brief CLI command manager reload */
2142 static char *handle_manager_reload(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2146 e->command = "manager reload";
2148 "Usage: manager reload\n"
2149 " Reloads the manager configuration.\n";
2155 return CLI_SHOWUSAGE;
2161 static struct eventqent *advance_event(struct eventqent *e)
2163 struct eventqent *next;
2165 AST_RWLIST_RDLOCK(&all_events);
2166 if ((next = AST_RWLIST_NEXT(e, eq_next))) {
2167 ast_atomic_fetchadd_int(&next->usecount, 1);
2168 ast_atomic_fetchadd_int(&e->usecount, -1);
2170 AST_RWLIST_UNLOCK(&all_events);
2174 #define GET_HEADER_FIRST_MATCH 0
2175 #define GET_HEADER_LAST_MATCH 1
2176 #define GET_HEADER_SKIP_EMPTY 2
2179 * \brief Return a matching header value.
2182 * Generic function to return either the first or the last
2183 * matching header from a list of variables, possibly skipping
2186 * \note At the moment there is only one use of this function in
2187 * this file, so we make it static.
2189 * \note Never returns NULL.
2191 static const char *__astman_get_header(const struct message *m, char *var, int mode)
2193 int x, l = strlen(var);
2194 const char *result = "";
2200 for (x = 0; x < m->hdrcount; x++) {
2201 const char *h = m->headers[x];
2202 if (!strncasecmp(var, h, l) && h[l] == ':') {
2203 const char *value = h + l + 1;
2204 value = ast_skip_blanks(value); /* ignore leading spaces in the value */
2205 /* found a potential candidate */
2206 if ((mode & GET_HEADER_SKIP_EMPTY) && ast_strlen_zero(value)) {
2207 continue; /* not interesting */
2209 if (mode & GET_HEADER_LAST_MATCH) {
2210 result = value; /* record the last match so far */
2221 * \brief Return the first matching variable from an array.
2223 * \note This is the legacy function and is implemented in
2224 * therms of __astman_get_header().
2226 * \note Never returns NULL.
2228 const char *astman_get_header(const struct message *m, char *var)
2230 return __astman_get_header(m, var, GET_HEADER_FIRST_MATCH);
2235 * \brief Process one "Variable:" header value string.
2237 * \param head Current list of AMI variables to get new values added.
2238 * \param hdr_val Header value string to process.
2240 * \return New variable list head.
2242 static struct ast_variable *man_do_variable_value(struct ast_variable *head, const char *hdr_val)
2245 AST_DECLARE_APP_ARGS(args,
2246 AST_APP_ARG(vars)[64];
2249 hdr_val = ast_skip_blanks(hdr_val); /* ignore leading spaces in the value */
2250 parse = ast_strdupa(hdr_val);
2252 /* Break the header value string into name=val pair items. */
2253 AST_STANDARD_APP_ARGS(args, parse);
2257 /* Process each name=val pair item. */
2258 for (y = 0; y < args.argc; y++) {
2259 struct ast_variable *cur;
2263 if (!args.vars[y]) {
2266 var = val = args.vars[y];
2269 /* XXX We may wish to trim whitespace from the strings. */
2270 if (!val || ast_strlen_zero(var)) {
2274 /* Create new variable list node and prepend it to the list. */
2275 cur = ast_variable_new(var, val, "");
2286 struct ast_variable *astman_get_variables(const struct message *m)
2290 struct ast_variable *head = NULL;
2292 static const char var_hdr[] = "Variable:";
2294 /* Process all "Variable:" headers. */
2295 varlen = strlen(var_hdr);
2296 for (x = 0; x < m->hdrcount; x++) {
2297 if (strncasecmp(var_hdr, m->headers[x], varlen)) {
2300 head = man_do_variable_value(head, m->headers[x] + varlen);
2306 /*! \brief access for hooks to send action messages to ami */
2307 int ast_hook_send_action(struct manager_custom_hook *hook, const char *msg)
2311 struct manager_action *act_found;
2312 struct mansession s = {.session = NULL, };
2313 struct message m = { 0 };
2323 /* Create our own copy of the AMI action msg string. */
2324 src = dup_str = ast_strdup(msg);
2329 /* convert msg string to message struct */
2330 curlen = strlen(src);
2331 for (x = 0; x < curlen; x++) {
2332 int cr; /* set if we have \r */
2333 if (src[x] == '\r' && x+1 < curlen && src[x+1] == '\n')
2334 cr = 2; /* Found. Update length to include \r\n */
2335 else if (src[x] == '\n')
2336 cr = 1; /* also accept \n only */
2339 /* don't keep empty lines */
2340 if (x && m.hdrcount < ARRAY_LEN(m.headers)) {
2341 /* ... but trim \r\n and terminate the header string */
2343 m.headers[m.hdrcount++] = src;
2346 curlen -= x; /* remaining size */
2347 src += x; /* update pointer */
2348 x = -1; /* reset loop */
2351 action = astman_get_header(&m, "Action");
2352 if (strcasecmp(action, "login")) {
2353 act_found = action_find(action);
2356 * we have to simulate a session for this action request
2357 * to be able to pass it down for processing
2358 * This is necessary to meet the previous design of manager.c
2361 s.f = (void*)1; /* set this to something so our request will make it through all functions that test it*/
2363 ao2_lock(act_found);
2364 if (act_found->registered && act_found->func) {
2365 if (act_found->module) {
2366 ast_module_ref(act_found->module);
2368 ao2_unlock(act_found);
2369 ret = act_found->func(&s, &m);
2370 ao2_lock(act_found);
2371 if (act_found->module) {
2372 ast_module_unref(act_found->module);
2377 ao2_unlock(act_found);
2378 ao2_t_ref(act_found, -1, "done with found action object");
2387 * helper function to send a string to the socket.
2388 * Return -1 on error (e.g. buffer full).
2390 static int send_string(struct mansession *s, char *string)
2393 FILE *f = s->f ? s->f : s->session->f;
2394 int fd = s->f ? s->fd : s->session->fd;
2396 /* It's a result from one of the hook's action invocation */
2399 * to send responses, we're using the same function
2400 * as for receiving events. We call the event "HookResponse"
2402 s->hook->helper(EVENT_FLAG_HOOKRESPONSE, "HookResponse", string);
2406 if ((res = ast_careful_fwrite(f, fd, string, strlen(string), s->session->writetimeout))) {
2414 * \brief thread local buffer for astman_append
2416 * \note This can not be defined within the astman_append() function
2417 * because it declares a couple of functions that get used to
2418 * initialize the thread local storage key.
2420 AST_THREADSTORAGE(astman_append_buf);
2422 AST_THREADSTORAGE(userevent_buf);
2424 /*! \brief initial allocated size for the astman_append_buf and astman_send_*_va */
2425 #define ASTMAN_APPEND_BUF_INITSIZE 256
2428 * utility functions for creating AMI replies
2430 void astman_append(struct mansession *s, const char *fmt, ...)
2433 struct ast_str *buf;
2435 if (!(buf = ast_str_thread_get(&astman_append_buf, ASTMAN_APPEND_BUF_INITSIZE))) {
2440 ast_str_set_va(&buf, 0, fmt, ap);
2443 if (s->f != NULL || s->session->f != NULL) {
2444 send_string(s, ast_str_buffer(buf));
2446 ast_verbose("fd == -1 in astman_append, should not happen\n");
2450 /*! \note NOTE: XXX this comment is unclear and possibly wrong.
2451 Callers of astman_send_error(), astman_send_response() or astman_send_ack() must EITHER
2452 hold the session lock _or_ be running in an action callback (in which case s->session->busy will
2453 be non-zero). In either of these cases, there is no need to lock-protect the session's
2454 fd, since no other output will be sent (events will be queued), and no input will
2455 be read until either the current action finishes or get_input() obtains the session
2459 /*! \todo XXX MSG_MOREDATA should go to a header file. */
2460 #define MSG_MOREDATA ((char *)astman_send_response)
2462 /*! \brief send a response with an optional message,
2463 * and terminate it with an empty line.
2464 * m is used only to grab the 'ActionID' field.
2466 * Use the explicit constant MSG_MOREDATA to remove the empty line.
2467 * XXX MSG_MOREDATA should go to a header file.
2469 static void astman_send_response_full(struct mansession *s, const struct message *m, char *resp, char *msg, char *listflag)
2471 const char *id = astman_get_header(m, "ActionID");
2473 astman_append(s, "Response: %s\r\n", resp);
2474 if (!ast_strlen_zero(id)) {
2475 astman_append(s, "ActionID: %s\r\n", id);
2478 astman_append(s, "EventList: %s\r\n", listflag); /* Start, complete, cancelled */
2480 if (msg == MSG_MOREDATA) {
2483 astman_append(s, "Message: %s\r\n\r\n", msg);
2485 astman_append(s, "\r\n");
2489 void astman_send_response(struct mansession *s, const struct message *m, char *resp, char *msg)
2491 astman_send_response_full(s, m, resp, msg, NULL);
2494 void astman_send_error(struct mansession *s, const struct message *m, char *error)
2496 astman_send_response_full(s, m, "Error", error, NULL);
2499 void astman_send_error_va(struct mansession *s, const struct message *m, const char *fmt, ...)
2502 struct ast_str *buf;
2505 if (!(buf = ast_str_thread_get(&astman_append_buf, ASTMAN_APPEND_BUF_INITSIZE))) {
2510 ast_str_set_va(&buf, 0, fmt, ap);
2513 /* astman_append will use the same underlying buffer, so copy the message out
2514 * before sending the response */
2515 msg = ast_str_buffer(buf);
2517 msg = ast_strdupa(msg);
2519 astman_send_response_full(s, m, "Error", msg, NULL);
2522 void astman_send_ack(struct mansession *s, const struct message *m, char *msg)
2524 astman_send_response_full(s, m, "Success", msg, NULL);
2527 static void astman_start_ack(struct mansession *s, const struct message *m)
2529 astman_send_response_full(s, m, "Success", MSG_MOREDATA, NULL);
2532 void astman_send_listack(struct mansession *s, const struct message *m, char *msg, char *listflag)
2534 astman_send_response_full(s, m, "Success", msg, listflag);
2537 /*! \brief Lock the 'mansession' structure. */
2538 static void mansession_lock(struct mansession *s)
2540 ast_mutex_lock(&s->lock);
2543 /*! \brief Unlock the 'mansession' structure. */
2544 static void mansession_unlock(struct mansession *s)
2546 ast_mutex_unlock(&s->lock);
2550 Rather than braindead on,off this now can also accept a specific int mask value
2551 or a ',' delim list of mask strings (the same as manager.conf) -anthm
2553 static int set_eventmask(struct mansession *s, const char *eventmask)
2555 int maskint = strings_to_mask(eventmask);
2557 ao2_lock(s->session);
2559 s->session->send_events = maskint;
2561 ao2_unlock(s->session);
2566 static enum ast_transport mansession_get_transport(const struct mansession *s)
2568 return s->tcptls_session->parent->tls_cfg ? AST_TRANSPORT_TLS :
2572 static void report_invalid_user(const struct mansession *s, const char *username)
2574 char session_id[32];
2575 struct ast_security_event_inval_acct_id inval_acct_id = {
2576 .common.event_type = AST_SECURITY_EVENT_INVAL_ACCT_ID,
2577 .common.version = AST_SECURITY_EVENT_INVAL_ACCT_ID_VERSION,
2578 .common.service = "AMI",
2579 .common.account_id = username,
2580 .common.session_tv = &s->session->sessionstart_tv,
2581 .common.local_addr = {
2582 .addr = &s->tcptls_session->parent->local_address,
2583 .transport = mansession_get_transport(s),
2585 .common.remote_addr = {
2586 .addr = &s->session->addr,
2587 .transport = mansession_get_transport(s),
2589 .common.session_id = session_id,
2592 snprintf(session_id, sizeof(session_id), "%p", s);
2594 ast_security_event_report(AST_SEC_EVT(&inval_acct_id));
2597 static void report_failed_acl(const struct mansession *s, const char *username)
2599 char session_id[32];
2600 struct ast_security_event_failed_acl failed_acl_event = {
2601 .common.event_type = AST_SECURITY_EVENT_FAILED_ACL,
2602 .common.version = AST_SECURITY_EVENT_FAILED_ACL_VERSION,
2603 .common.service = "AMI",
2604 .common.account_id = username,
2605 .common.session_tv = &s->session->sessionstart_tv,
2606 .common.local_addr = {
2607 .addr = &s->tcptls_session->parent->local_address,
2608 .transport = mansession_get_transport(s),
2610 .common.remote_addr = {
2611 .addr = &s->session->addr,
2612 .transport = mansession_get_transport(s),
2614 .common.session_id = session_id,
2617 snprintf(session_id, sizeof(session_id), "%p", s->session);
2619 ast_security_event_report(AST_SEC_EVT(&failed_acl_event));
2622 static void report_inval_password(const struct mansession *s, const char *username)
2624 char session_id[32];
2625 struct ast_security_event_inval_password inval_password = {
2626 .common.event_type = AST_SECURITY_EVENT_INVAL_PASSWORD,
2627 .common.version = AST_SECURITY_EVENT_INVAL_PASSWORD_VERSION,
2628 .common.service = "AMI",
2629 .common.account_id = username,
2630 .common.session_tv = &s->session->sessionstart_tv,
2631 .common.local_addr = {
2632 .addr = &s->tcptls_session->parent->local_address,
2633 .transport = mansession_get_transport(s),
2635 .common.remote_addr = {
2636 .addr = &s->session->addr,
2637 .transport = mansession_get_transport(s),
2639 .common.session_id = session_id,
2642 snprintf(session_id, sizeof(session_id), "%p", s->session);
2644 ast_security_event_report(AST_SEC_EVT(&inval_password));
2647 static void report_auth_success(const struct mansession *s)
2649 char session_id[32];
2650 struct ast_security_event_successful_auth successful_auth = {
2651 .common.event_type = AST_SECURITY_EVENT_SUCCESSFUL_AUTH,
2652 .common.version = AST_SECURITY_EVENT_SUCCESSFUL_AUTH_VERSION,
2653 .common.service = "AMI",
2654 .common.account_id = s->session->username,
2655 .common.session_tv = &s->session->sessionstart_tv,
2656 .common.local_addr = {
2657 .addr = &s->tcptls_session->parent->local_address,
2658 .transport = mansession_get_transport(s),
2660 .common.remote_addr = {
2661 .addr = &s->session->addr,
2662 .transport = mansession_get_transport(s),
2664 .common.session_id = session_id,
2667 snprintf(session_id, sizeof(session_id), "%p", s->session);
2669 ast_security_event_report(AST_SEC_EVT(&successful_auth));
2672 static void report_req_not_allowed(const struct mansession *s, const char *action)
2674 char session_id[32];
2675 char request_type[64];
2676 struct ast_security_event_req_not_allowed req_not_allowed = {
2677 .common.event_type = AST_SECURITY_EVENT_REQ_NOT_ALLOWED,
2678 .common.version = AST_SECURITY_EVENT_REQ_NOT_ALLOWED_VERSION,
2679 .common.service = "AMI",
2680 .common.account_id = s->session->username,
2681 .common.session_tv = &s->session->sessionstart_tv,
2682 .common.local_addr = {
2683 .addr = &s->tcptls_session->parent->local_address,
2684 .transport = mansession_get_transport(s),
2686 .common.remote_addr = {
2687 .addr = &s->session->addr,
2688 .transport = mansession_get_transport(s),
2690 .common.session_id = session_id,
2692 .request_type = request_type,
2695 snprintf(session_id, sizeof(session_id), "%p", s->session);
2696 snprintf(request_type, sizeof(request_type), "Action: %s", action);
2698 ast_security_event_report(AST_SEC_EVT(&req_not_allowed));
2701 static void report_req_bad_format(const struct mansession *s, const char *action)
2703 char session_id[32];
2704 char request_type[64];
2705 struct ast_security_event_req_bad_format req_bad_format = {
2706 .common.event_type = AST_SECURITY_EVENT_REQ_BAD_FORMAT,
2707 .common.version = AST_SECURITY_EVENT_REQ_BAD_FORMAT_VERSION,
2708 .common.service = "AMI",
2709 .common.account_id = s->session->username,
2710 .common.session_tv = &s->session->sessionstart_tv,
2711 .common.local_addr = {
2712 .addr = &s->tcptls_session->parent->local_address,
2713 .transport = mansession_get_transport(s),
2715 .common.remote_addr = {
2716 .addr = &s->session->addr,
2717 .transport = mansession_get_transport(s),
2719 .common.session_id = session_id,
2721 .request_type = request_type,
2724 snprintf(session_id, sizeof(session_id), "%p", s->session);
2725 snprintf(request_type, sizeof(request_type), "Action: %s", action);
2727 ast_security_event_report(AST_SEC_EVT(&req_bad_format));
2730 static void report_failed_challenge_response(const struct mansession *s,
2731 const char *response, const char *expected_response)
2733 char session_id[32];
2734 struct ast_security_event_chal_resp_failed chal_resp_failed = {
2735 .common.event_type = AST_SECURITY_EVENT_CHAL_RESP_FAILED,
2736 .common.version = AST_SECURITY_EVENT_CHAL_RESP_FAILED_VERSION,
2737 .common.service = "AMI",
2738 .common.account_id = s->session->username,
2739 .common.session_tv = &s->session->sessionstart_tv,
2740 .common.local_addr = {
2741 .addr = &s->tcptls_session->parent->local_address,
2742 .transport = mansession_get_transport(s),
2744 .common.remote_addr = {
2745 .addr = &s->session->addr,
2746 .transport = mansession_get_transport(s),
2748 .common.session_id = session_id,
2750 .challenge = s->session->challenge,
2751 .response = response,
2752 .expected_response = expected_response,
2755 snprintf(session_id, sizeof(session_id), "%p", s->session);
2757 ast_security_event_report(AST_SEC_EVT(&chal_resp_failed));
2760 static void report_session_limit(const struct mansession *s)
2762 char session_id[32];
2763 struct ast_security_event_session_limit session_limit = {
2764 .common.event_type = AST_SECURITY_EVENT_SESSION_LIMIT,
2765 .common.version = AST_SECURITY_EVENT_SESSION_LIMIT_VERSION,
2766 .common.service = "AMI",
2767 .common.account_id = s->session->username,
2768 .common.session_tv = &s->session->sessionstart_tv,
2769 .common.local_addr = {
2770 .addr = &s->tcptls_session->parent->local_address,
2771 .transport = mansession_get_transport(s),
2773 .common.remote_addr = {
2774 .addr = &s->session->addr,
2775 .transport = mansession_get_transport(s),
2777 .common.session_id = session_id,
2780 snprintf(session_id, sizeof(session_id), "%p", s->session);
2782 ast_security_event_report(AST_SEC_EVT(&session_limit));
2786 * Here we start with action_ handlers for AMI actions,
2787 * and the internal functions used by them.
2788 * Generally, the handlers are called action_foo()
2791 /* helper function for action_login() */
2792 static int authenticate(struct mansession *s, const struct message *m)
2794 const char *username = astman_get_header(m, "Username");
2795 const char *password = astman_get_header(m, "Secret");
2797 struct ast_manager_user *user = NULL;
2798 regex_t *regex_filter;
2799 struct ao2_iterator filter_iter;
2801 if (ast_strlen_zero(username)) { /* missing username */
2805 /* locate user in locked state */
2806 AST_RWLIST_WRLOCK(&users);
2808 if (!(user = get_manager_by_name_locked(username))) {
2809 report_invalid_user(s, username);
2810 ast_log(LOG_NOTICE, "%s tried to authenticate with nonexistent user '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2811 } else if (user->acl && (ast_apply_acl(user->acl, &s->session->addr, "Manager User ACL: ") == AST_SENSE_DENY)) {
2812 report_failed_acl(s, username);
2813 ast_log(LOG_NOTICE, "%s failed to pass IP ACL as '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2814 } else if (!strcasecmp(astman_get_header(m, "AuthType"), "MD5")) {
2815 const char *key = astman_get_header(m, "Key");
2816 if (!ast_strlen_zero(key) && !ast_strlen_zero(s->session->challenge) && user->secret) {
2819 char md5key[256] = "";
2820 struct MD5Context md5;
2821 unsigned char digest[16];
2824 MD5Update(&md5, (unsigned char *) s->session->challenge, strlen(s->session->challenge));
2825 MD5Update(&md5, (unsigned char *) user->secret, strlen(user->secret));
2826 MD5Final(digest, &md5);
2827 for (x = 0; x < 16; x++)
2828 len += sprintf(md5key + len, "%2.2x", digest[x]);
2829 if (!strcmp(md5key, key)) {
2832 report_failed_challenge_response(s, key, md5key);
2835 ast_debug(1, "MD5 authentication is not possible. challenge: '%s'\n",
2836 S_OR(s->session->challenge, ""));
2838 } else if (user->secret) {
2839 if (!strcmp(password, user->secret)) {
2842 report_inval_password(s, username);
2847 ast_log(LOG_NOTICE, "%s failed to authenticate as '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2848 AST_RWLIST_UNLOCK(&users);
2854 /* All of the user parameters are copied to the session so that in the event
2855 * of a reload and a configuration change, the session parameters are not
2857 ast_copy_string(s->session->username, username, sizeof(s->session->username));
2858 s->session->readperm = user->readperm;
2859 s->session->writeperm = user->writeperm;
2860 s->session->writetimeout = user->writetimeout;
2861 if (user->chanvars) {
2862 s->session->chanvars = ast_variables_dup(user->chanvars);
2865 filter_iter = ao2_iterator_init(user->whitefilters, 0);
2866 while ((regex_filter = ao2_iterator_next(&filter_iter))) {
2867 ao2_t_link(s->session->whitefilters, regex_filter, "add white user filter to session");
2868 ao2_t_ref(regex_filter, -1, "remove iterator ref");
2870 ao2_iterator_destroy(&filter_iter);
2872 filter_iter = ao2_iterator_init(user->blackfilters, 0);
2873 while ((regex_filter = ao2_iterator_next(&filter_iter))) {
2874 ao2_t_link(s->session->blackfilters, regex_filter, "add black user filter to session");
2875 ao2_t_ref(regex_filter, -1, "remove iterator ref");
2877 ao2_iterator_destroy(&filter_iter);
2879 s->session->sessionstart = time(NULL);
2880 s->session->sessionstart_tv = ast_tvnow();
2881 set_eventmask(s, astman_get_header(m, "Events"));
2883 report_auth_success(s);
2885 AST_RWLIST_UNLOCK(&users);
2889 static int action_ping(struct mansession *s, const struct message *m)
2891 const char *actionid = astman_get_header(m, "ActionID");
2892 struct timeval now = ast_tvnow();
2894 astman_append(s, "Response: Success\r\n");
2895 if (!ast_strlen_zero(actionid)){
2896 astman_append(s, "ActionID: %s\r\n", actionid);
2901 "Timestamp: %ld.%06lu\r\n"
2903 (long) now.tv_sec, (unsigned long) now.tv_usec);
2907 static int action_getconfig(struct mansession *s, const struct message *m)
2909 struct ast_config *cfg;
2910 const char *fn = astman_get_header(m, "Filename");
2911 const char *category = astman_get_header(m, "Category");
2914 char *cur_category = NULL;
2915 struct ast_variable *v;
2916 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
2918 if (ast_strlen_zero(fn)) {
2919 astman_send_error(s, m, "Filename not specified");
2922 cfg = ast_config_load2(fn, "manager", config_flags);
2923 if (cfg == CONFIG_STATUS_FILEMISSING) {
2924 astman_send_error(s, m, "Config file not found");
2926 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
2927 astman_send_error(s, m, "Config file has invalid format");
2931 astman_start_ack(s, m);
2932 while ((cur_category = ast_category_browse(cfg, cur_category))) {
2933 if (ast_strlen_zero(category) || (!ast_strlen_zero(category) && !strcmp(category, cur_category))) {
2935 astman_append(s, "Category-%06d: %s\r\n", catcount, cur_category);
2936 for (v = ast_variable_browse(cfg, cur_category); v; v = v->next) {
2937 astman_append(s, "Line-%06d-%06d: %s=%s\r\n", catcount, lineno++, v->name, v->value);
2942 if (!ast_strlen_zero(category) && catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
2943 astman_append(s, "No categories found\r\n");
2945 ast_config_destroy(cfg);
2946 astman_append(s, "\r\n");
2951 static int action_listcategories(struct mansession *s, const struct message *m)
2953 struct ast_config *cfg;
2954 const char *fn = astman_get_header(m, "Filename");
2955 char *category = NULL;
2956 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
2959 if (ast_strlen_zero(fn)) {
2960 astman_send_error(s, m, "Filename not specified");
2963 if (!(cfg = ast_config_load2(fn, "manager", config_flags))) {
2964 astman_send_error(s, m, "Config file not found");
2966 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
2967 astman_send_error(s, m, "Config file has invalid format");
2970 astman_start_ack(s, m);
2971 while ((category = ast_category_browse(cfg, category))) {
2972 astman_append(s, "Category-%06d: %s\r\n", catcount, category);
2975 if (catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
2976 astman_append(s, "Error: no categories found\r\n");
2978 ast_config_destroy(cfg);
2979 astman_append(s, "\r\n");
2987 /*! The amount of space in out must be at least ( 2 * strlen(in) + 1 ) */
2988 static void json_escape(char *out, const char *in)
2991 if (*in == '\\' || *in == '\"') {
3001 * \brief Append a JSON escaped string to the manager stream.
3003 * \param s AMI stream to append a string.
3004 * \param str String to append to the stream after JSON escaping it.
3008 static void astman_append_json(struct mansession *s, const char *str)
3012 buf = ast_alloca(2 * strlen(str) + 1);
3013 json_escape(buf, str);
3014 astman_append(s, "%s", buf);
3017 static int action_getconfigjson(struct mansession *s, const struct message *m)
3019 struct ast_config *cfg;
3020 const char *fn = astman_get_header(m, "Filename");
3021 char *category = NULL;
3022 struct ast_variable *v;
3024 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3026 if (ast_strlen_zero(fn)) {
3027 astman_send_error(s, m, "Filename not specified");
3031 if (!(cfg = ast_config_load2(fn, "manager", config_flags))) {
3032 astman_send_error(s, m, "Config file not found");
3034 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3035 astman_send_error(s, m, "Config file has invalid format");
3039 astman_start_ack(s, m);
3040 astman_append(s, "JSON: {");
3041 while ((category = ast_category_browse(cfg, category))) {
3044 astman_append(s, "%s\"", comma1 ? "," : "");
3045 astman_append_json(s, category);
3046 astman_append(s, "\":[");
3048 for (v = ast_variable_browse(cfg, category); v; v = v->next) {
3049 astman_append(s, "%s\"", comma2 ? "," : "");
3050 astman_append_json(s, v->name);
3051 astman_append(s, "\":\"");
3052 astman_append_json(s, v->value);
3053 astman_append(s, "\"");
3056 astman_append(s, "]");