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/aoc.h"
91 #include "asterisk/strings.h"
92 #include "asterisk/stringfields.h"
93 #include "asterisk/presencestate.h"
94 #include "asterisk/stasis_message_router.h"
95 #include "asterisk/stasis_channels.h"
96 #include "asterisk/stasis_bridges.h"
97 #include "asterisk/test.h"
98 #include "asterisk/json.h"
99 #include "asterisk/bridge.h"
100 #include "asterisk/features_config.h"
101 #include "asterisk/rtp_engine.h"
104 <manager name="Ping" language="en_US">
109 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
112 <para>A 'Ping' action will ellicit a 'Pong' response. Used to keep the
113 manager connection open.</para>
116 <manager name="Events" language="en_US">
121 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
122 <parameter name="EventMask" required="true">
125 <para>If all events should be sent.</para>
128 <para>If no events should be sent.</para>
130 <enum name="system,call,log,...">
131 <para>To select which flags events should have to be sent.</para>
137 <para>Enable/Disable sending of events to this manager client.</para>
140 <manager name="Logoff" language="en_US">
145 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
148 <para>Logoff the current manager session.</para>
151 <manager name="Login" language="en_US">
156 <parameter name="ActionID">
157 <para>ActionID for this transaction. Will be returned.</para>
159 <parameter name="Username" required="true">
160 <para>Username to login with as specified in manager.conf.</para>
162 <parameter name="Secret">
163 <para>Secret to login with as specified in manager.conf.</para>
167 <para>Login Manager.</para>
170 <manager name="Challenge" language="en_US">
172 Generate Challenge for MD5 Auth.
175 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
176 <parameter name="AuthType" required="true">
177 <para>Digest algorithm to use in the challenge. Valid values are:</para>
184 <para>Generate a challenge for MD5 authentication.</para>
187 <manager name="Hangup" language="en_US">
192 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
193 <parameter name="Channel" required="true">
194 <para>The exact channel name to be hungup, or to use a regular expression, set this parameter to: /regex/</para>
195 <para>Example exact channel: SIP/provider-0000012a</para>
196 <para>Example regular expression: /^SIP/provider-.*$/</para>
198 <parameter name="Cause">
199 <para>Numeric hangup cause.</para>
203 <para>Hangup a channel.</para>
206 <manager name="Status" language="en_US">
211 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
212 <parameter name="Channel" required="true">
213 <para>The name of the channel to query for status.</para>
215 <parameter name="Variables">
216 <para>Comma <literal>,</literal> separated list of variable to include.</para>
220 <para>Will return the status information of each channel along with the
221 value for the specified channel variables.</para>
224 <managerEvent language="en_US" name="Status">
225 <managerEventInstance class="EVENT_FLAG_CALL">
226 <synopsis>Raised in response to a Status command.</synopsis>
228 <parameter name="ActionID" required="false"/>
230 <parameter name="Type">
231 <para>Type of channel</para>
233 <parameter name="DNID">
234 <para>Dialed number identifier</para>
236 <parameter name="TimeToHangup">
237 <para>Absolute lifetime of the channel</para>
239 <parameter name="BridgeID">
240 <para>Identifier of the bridge the channel is in, may be empty if not in one</para>
242 <parameter name="Linkedid">
244 <parameter name="Application">
245 <para>Application currently executing on the channel</para>
247 <parameter name="Data">
248 <para>Data given to the currently executing channel</para>
250 <parameter name="Nativeformats">
251 <para>Media formats the connected party is willing to send or receive</para>
253 <parameter name="Readformat">
254 <para>Media formats that frames from the channel are received in</para>
256 <parameter name="Readtrans">
257 <para>Translation path for media received in native formats</para>
259 <parameter name="Writeformat">
260 <para>Media formats that frames to the channel are accepted in</para>
262 <parameter name="Writetrans">
263 <para>Translation path for media sent to the connected party</para>
265 <parameter name="Callgroup">
266 <para>Configured call group on the channel</para>
268 <parameter name="Pickupgroup">
269 <para>Configured pickup group on the channel</para>
271 <parameter name="Seconds">
272 <para>Number of seconds the channel has been active</para>
276 <ref type="manager">Status</ref>
278 </managerEventInstance>
280 <manager name="Setvar" language="en_US">
282 Set a channel variable.
285 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
286 <parameter name="Channel">
287 <para>Channel to set variable for.</para>
289 <parameter name="Variable" required="true">
290 <para>Variable name.</para>
292 <parameter name="Value" required="true">
293 <para>Variable value.</para>
297 <para>Set a global or local channel variable.</para>
299 <para>If a channel name is not provided then the variable is global.</para>
303 <manager name="Getvar" language="en_US">
305 Gets a channel variable.
308 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
309 <parameter name="Channel">
310 <para>Channel to read variable from.</para>
312 <parameter name="Variable" required="true">
313 <para>Variable name.</para>
317 <para>Get the value of a global or local channel variable.</para>
319 <para>If a channel name is not provided then the variable is global.</para>
323 <manager name="GetConfig" language="en_US">
325 Retrieve configuration.
328 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
329 <parameter name="Filename" required="true">
330 <para>Configuration filename (e.g. <filename>foo.conf</filename>).</para>
332 <parameter name="Category">
333 <para>Category in configuration file.</para>
337 <para>This action will dump the contents of a configuration
338 file by category and contents or optionally by specified category only.</para>
341 <manager name="GetConfigJSON" language="en_US">
343 Retrieve configuration (JSON format).
346 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
347 <parameter name="Filename" required="true">
348 <para>Configuration filename (e.g. <filename>foo.conf</filename>).</para>
352 <para>This action will dump the contents of a configuration file by category
353 and contents in JSON format. This only makes sense to be used using rawman over
354 the HTTP interface.</para>
357 <manager name="UpdateConfig" language="en_US">
359 Update basic configuration.
362 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
363 <parameter name="SrcFilename" required="true">
364 <para>Configuration filename to read (e.g. <filename>foo.conf</filename>).</para>
366 <parameter name="DstFilename" required="true">
367 <para>Configuration filename to write (e.g. <filename>foo.conf</filename>)</para>
369 <parameter name="Reload">
370 <para>Whether or not a reload should take place (or name of specific module).</para>
372 <parameter name="Action-XXXXXX">
373 <para>Action to take.</para>
374 <para>X's represent 6 digit number beginning with 000000.</para>
376 <enum name="NewCat" />
377 <enum name="RenameCat" />
378 <enum name="DelCat" />
379 <enum name="EmptyCat" />
380 <enum name="Update" />
381 <enum name="Delete" />
382 <enum name="Append" />
383 <enum name="Insert" />
386 <parameter name="Cat-XXXXXX">
387 <para>Category to operate on.</para>
388 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
390 <parameter name="Var-XXXXXX">
391 <para>Variable to work on.</para>
392 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
394 <parameter name="Value-XXXXXX">
395 <para>Value to work on.</para>
396 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
398 <parameter name="Match-XXXXXX">
399 <para>Extra match required to match line.</para>
400 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
402 <parameter name="Line-XXXXXX">
403 <para>Line in category to operate on (used with delete and insert actions).</para>
404 <xi:include xpointer="xpointer(/docs/manager[@name='UpdateConfig']/syntax/parameter[@name='Action-XXXXXX']/para[2])" />
408 <para>This action will modify, create, or delete configuration elements
409 in Asterisk configuration files.</para>
412 <manager name="CreateConfig" language="en_US">
414 Creates an empty file in the configuration directory.
417 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
418 <parameter name="Filename" required="true">
419 <para>The configuration filename to create (e.g. <filename>foo.conf</filename>).</para>
423 <para>This action will create an empty file in the configuration
424 directory. This action is intended to be used before an UpdateConfig
428 <manager name="ListCategories" language="en_US">
430 List categories in configuration file.
433 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
434 <parameter name="Filename" required="true">
435 <para>Configuration filename (e.g. <filename>foo.conf</filename>).</para>
439 <para>This action will dump the categories in a given file.</para>
442 <manager name="Redirect" language="en_US">
444 Redirect (transfer) a call.
447 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
448 <parameter name="Channel" required="true">
449 <para>Channel to redirect.</para>
451 <parameter name="ExtraChannel">
452 <para>Second call leg to transfer (optional).</para>
454 <parameter name="Exten" required="true">
455 <para>Extension to transfer to.</para>
457 <parameter name="ExtraExten">
458 <para>Extension to transfer extrachannel to (optional).</para>
460 <parameter name="Context" required="true">
461 <para>Context to transfer to.</para>
463 <parameter name="ExtraContext">
464 <para>Context to transfer extrachannel to (optional).</para>
466 <parameter name="Priority" required="true">
467 <para>Priority to transfer to.</para>
469 <parameter name="ExtraPriority">
470 <para>Priority to transfer extrachannel to (optional).</para>
474 <para>Redirect (transfer) a call.</para>
477 <manager name="Atxfer" language="en_US">
482 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
483 <parameter name="Channel" required="true">
484 <para>Transferer's channel.</para>
486 <parameter name="Exten" required="true">
487 <para>Extension to transfer to.</para>
489 <parameter name="Context">
490 <para>Context to transfer to.</para>
494 <para>Attended transfer.</para>
497 <manager name="Originate" language="en_US">
502 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
503 <parameter name="Channel" required="true">
504 <para>Channel name to call.</para>
506 <parameter name="Exten">
507 <para>Extension to use (requires <literal>Context</literal> and
508 <literal>Priority</literal>)</para>
510 <parameter name="Context">
511 <para>Context to use (requires <literal>Exten</literal> and
512 <literal>Priority</literal>)</para>
514 <parameter name="Priority">
515 <para>Priority to use (requires <literal>Exten</literal> and
516 <literal>Context</literal>)</para>
518 <parameter name="Application">
519 <para>Application to execute.</para>
521 <parameter name="Data">
522 <para>Data to use (requires <literal>Application</literal>).</para>
524 <parameter name="Timeout" default="30000">
525 <para>How long to wait for call to be answered (in ms.).</para>
527 <parameter name="CallerID">
528 <para>Caller ID to be set on the outgoing channel.</para>
530 <parameter name="Variable">
531 <para>Channel variable to set, multiple Variable: headers are allowed.</para>
533 <parameter name="Account">
534 <para>Account code.</para>
536 <parameter name="EarlyMedia">
537 <para>Set to <literal>true</literal> to force call bridge on early media..</para>
539 <parameter name="Async">
540 <para>Set to <literal>true</literal> for fast origination.</para>
542 <parameter name="Codecs">
543 <para>Comma-separated list of codecs to use for this call.</para>
545 <parameter name="ChannelId">
546 <para>Channel UniqueId to be set on the channel.</para>
548 <parameter name="OtherChannelId">
549 <para>Channel UniqueId to be set on the second local channel.</para>
553 <para>Generates an outgoing call to a
554 <replaceable>Extension</replaceable>/<replaceable>Context</replaceable>/<replaceable>Priority</replaceable>
555 or <replaceable>Application</replaceable>/<replaceable>Data</replaceable></para>
558 <ref type="managerEvent">OriginateResponse</ref>
561 <managerEvent language="en_US" name="OriginateResponse">
562 <managerEventInstance class="EVENT_FLAG_CALL">
563 <synopsis>Raised in response to an Originate command.</synopsis>
565 <parameter name="ActionID" required="false"/>
566 <parameter name="Resonse">
568 <enum name="Failure"/>
569 <enum name="Success"/>
572 <parameter name="Channel"/>
573 <parameter name="Context"/>
574 <parameter name="Exten"/>
575 <parameter name="Reason"/>
576 <parameter name="Uniqueid"/>
577 <parameter name="CallerIDNum"/>
578 <parameter name="CallerIDName"/>
581 <ref type="manager">Originate</ref>
583 </managerEventInstance>
585 <manager name="Command" language="en_US">
587 Execute Asterisk CLI Command.
590 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
591 <parameter name="Command" required="true">
592 <para>Asterisk CLI command to run.</para>
596 <para>Run a CLI command.</para>
599 <manager name="ExtensionState" language="en_US">
601 Check Extension Status.
604 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
605 <parameter name="Exten" required="true">
606 <para>Extension to check state on.</para>
608 <parameter name="Context" required="true">
609 <para>Context for extension.</para>
613 <para>Report the extension state for given extension. If the extension has a hint,
614 will use devicestate to check the status of the device connected to the extension.</para>
615 <para>Will return an <literal>Extension Status</literal> message. The response will include
616 the hint for the extension and the status.</para>
619 <manager name="PresenceState" language="en_US">
624 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
625 <parameter name="Provider" required="true">
626 <para>Presence Provider to check the state of</para>
630 <para>Report the presence state for the given presence provider.</para>
631 <para>Will return a <literal>Presence State</literal> message. The response will include the
632 presence state and, if set, a presence subtype and custom message.</para>
635 <manager name="AbsoluteTimeout" language="en_US">
637 Set absolute timeout.
640 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
641 <parameter name="Channel" required="true">
642 <para>Channel name to hangup.</para>
644 <parameter name="Timeout" required="true">
645 <para>Maximum duration of the call (sec).</para>
649 <para>Hangup a channel after a certain time. Acknowledges set time with
650 <literal>Timeout Set</literal> message.</para>
653 <manager name="MailboxStatus" language="en_US">
658 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
659 <parameter name="Mailbox" required="true">
660 <para>Full mailbox ID <replaceable>mailbox</replaceable>@<replaceable>vm-context</replaceable>.</para>
664 <para>Checks a voicemail account for status.</para>
665 <para>Returns whether there are messages waiting.</para>
666 <para>Message: Mailbox Status.</para>
667 <para>Mailbox: <replaceable>mailboxid</replaceable>.</para>
668 <para>Waiting: <literal>0</literal> if messages waiting, <literal>1</literal>
669 if no messages waiting.</para>
672 <manager name="MailboxCount" language="en_US">
674 Check Mailbox Message Count.
677 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
678 <parameter name="Mailbox" required="true">
679 <para>Full mailbox ID <replaceable>mailbox</replaceable>@<replaceable>vm-context</replaceable>.</para>
683 <para>Checks a voicemail account for new messages.</para>
684 <para>Returns number of urgent, new and old messages.</para>
685 <para>Message: Mailbox Message Count</para>
686 <para>Mailbox: <replaceable>mailboxid</replaceable></para>
687 <para>UrgentMessages: <replaceable>count</replaceable></para>
688 <para>NewMessages: <replaceable>count</replaceable></para>
689 <para>OldMessages: <replaceable>count</replaceable></para>
692 <manager name="ListCommands" language="en_US">
694 List available manager commands.
697 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
700 <para>Returns the action name and synopsis for every action that
701 is available to the user.</para>
704 <manager name="SendText" language="en_US">
706 Send text message to channel.
709 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
710 <parameter name="Channel" required="true">
711 <para>Channel to send message to.</para>
713 <parameter name="Message" required="true">
714 <para>Message to send.</para>
718 <para>Sends A Text Message to a channel while in a call.</para>
721 <manager name="UserEvent" language="en_US">
723 Send an arbitrary event.
726 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
727 <parameter name="UserEvent" required="true">
728 <para>Event string to send.</para>
730 <parameter name="Header1">
731 <para>Content1.</para>
733 <parameter name="HeaderN">
734 <para>ContentN.</para>
738 <para>Send an event to manager sessions.</para>
741 <manager name="WaitEvent" language="en_US">
743 Wait for an event to occur.
746 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
747 <parameter name="Timeout" required="true">
748 <para>Maximum time (in seconds) to wait for events, <literal>-1</literal> means forever.</para>
752 <para>This action will ellicit a <literal>Success</literal> response. Whenever
753 a manager event is queued. Once WaitEvent has been called on an HTTP manager
754 session, events will be generated and queued.</para>
757 <manager name="CoreSettings" language="en_US">
759 Show PBX core settings (version etc).
762 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
765 <para>Query for Core PBX settings.</para>
768 <manager name="CoreStatus" language="en_US">
770 Show PBX core status variables.
773 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
776 <para>Query for Core PBX status.</para>
779 <manager name="Reload" language="en_US">
784 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
785 <parameter name="Module">
786 <para>Name of the module to reload.</para>
790 <para>Send a reload event.</para>
793 <manager name="CoreShowChannels" language="en_US">
795 List currently active channels.
798 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
801 <para>List currently defined channels and some information about them.</para>
804 <manager name="ModuleLoad" language="en_US">
809 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
810 <parameter name="Module">
811 <para>Asterisk module name (including .so extension) or subsystem identifier:</para>
814 <enum name="dnsmgr" />
815 <enum name="extconfig" />
818 <enum name="manager" />
820 <enum name="logger" />
821 <enum name="features" />
823 <enum name="udptl" />
824 <enum name="indications" />
829 <parameter name="LoadType" required="true">
830 <para>The operation to be done on module. Subsystem identifiers may only
834 <enum name="unload" />
835 <enum name="reload" />
837 <para>If no module is specified for a <literal>reload</literal> loadtype,
838 all modules are reloaded.</para>
842 <para>Loads, unloads or reloads an Asterisk module in a running system.</para>
845 <manager name="ModuleCheck" language="en_US">
847 Check if module is loaded.
850 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
851 <parameter name="Module" required="true">
852 <para>Asterisk module name (not including extension).</para>
856 <para>Checks if Asterisk module is loaded. Will return Success/Failure.
857 For success returns, the module revision number is included.</para>
860 <manager name="AOCMessage" language="en_US">
862 Generate an Advice of Charge message on a channel.
865 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
866 <parameter name="Channel" required="true">
867 <para>Channel name to generate the AOC message on.</para>
869 <parameter name="ChannelPrefix">
870 <para>Partial channel prefix. By using this option one can match the beginning part
871 of a channel name without having to put the entire name in. For example
872 if a channel name is SIP/snom-00000001 and this value is set to SIP/snom, then
873 that channel matches and the message will be sent. Note however that only
874 the first matched channel has the message sent on it. </para>
876 <parameter name="MsgType" required="true">
877 <para>Defines what type of AOC message to create, AOC-D or AOC-E</para>
883 <parameter name="ChargeType" required="true">
884 <para>Defines what kind of charge this message represents.</para>
888 <enum name="Currency" />
892 <parameter name="UnitAmount(0)">
893 <para>This represents the amount of units charged. The ETSI AOC standard specifies that
894 this value along with the optional UnitType value are entries in a list. To accommodate this
895 these values take an index value starting at 0 which can be used to generate this list of
896 unit entries. For Example, If two unit entires were required this could be achieved by setting the
897 paramter UnitAmount(0)=1234 and UnitAmount(1)=5678. Note that UnitAmount at index 0 is
898 required when ChargeType=Unit, all other entries in the list are optional.
901 <parameter name="UnitType(0)">
902 <para>Defines the type of unit. ETSI AOC standard specifies this as an integer
903 value between 1 and 16, but this value is left open to accept any positive
904 integer. Like the UnitAmount parameter, this value represents a list entry
905 and has an index parameter that starts at 0.
908 <parameter name="CurrencyName">
909 <para>Specifies the currency's name. Note that this value is truncated after 10 characters.</para>
911 <parameter name="CurrencyAmount">
912 <para>Specifies the charge unit amount as a positive integer. This value is required
913 when ChargeType==Currency.</para>
915 <parameter name="CurrencyMultiplier">
916 <para>Specifies the currency multiplier. This value is required when ChargeType==Currency.</para>
918 <enum name="OneThousandth" />
919 <enum name="OneHundredth" />
920 <enum name="OneTenth" />
923 <enum name="Hundred" />
924 <enum name="Thousand" />
927 <parameter name="TotalType" default="Total">
928 <para>Defines what kind of AOC-D total is represented.</para>
930 <enum name="Total" />
931 <enum name="SubTotal" />
934 <parameter name="AOCBillingId">
935 <para>Represents a billing ID associated with an AOC-D or AOC-E message. Note
936 that only the first 3 items of the enum are valid AOC-D billing IDs</para>
938 <enum name="Normal" />
939 <enum name="ReverseCharge" />
940 <enum name="CreditCard" />
941 <enum name="CallFwdUnconditional" />
942 <enum name="CallFwdBusy" />
943 <enum name="CallFwdNoReply" />
944 <enum name="CallDeflection" />
945 <enum name="CallTransfer" />
948 <parameter name="ChargingAssociationId">
949 <para>Charging association identifier. This is optional for AOC-E and can be
950 set to any value between -32768 and 32767</para>
952 <parameter name="ChargingAssociationNumber">
953 <para>Represents the charging association party number. This value is optional
956 <parameter name="ChargingAssociationPlan">
957 <para>Integer representing the charging plan associated with the ChargingAssociationNumber.
958 The value is bits 7 through 1 of the Q.931 octet containing the type-of-number and
959 numbering-plan-identification fields.</para>
963 <para>Generates an AOC-D or AOC-E message on a channel.</para>
966 <function name="AMI_CLIENT" language="en_US">
968 Checks attributes of manager accounts
971 <parameter name="loginname" required="true">
972 <para>Login name, specified in manager.conf</para>
974 <parameter name="field" required="true">
975 <para>The manager account attribute to return</para>
977 <enum name="sessions"><para>The number of sessions for this AMI account</para></enum>
983 Currently, the only supported parameter is "sessions" which will return the current number of
984 active sessions for this AMI account.
988 <manager name="Filter" language="en_US">
990 Dynamically add filters for the current manager session.
993 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
994 <parameter name="Operation">
997 <para>Add a filter.</para>
1001 <parameter name="Filter">
1002 <para>Filters can be whitelist or blacklist</para>
1003 <para>Example whitelist filter: "Event: Newchannel"</para>
1004 <para>Example blacklist filter: "!Channel: DAHDI.*"</para>
1005 <para>This filter option is used to whitelist or blacklist events per user to be
1006 reported with regular expressions and are allowed if both the regex matches
1007 and the user has read access as defined in manager.conf. Filters are assumed to be for whitelisting
1008 unless preceeded by an exclamation point, which marks it as being black.
1009 Evaluation of the filters is as follows:</para>
1010 <para>- If no filters are configured all events are reported as normal.</para>
1011 <para>- If there are white filters only: implied black all filter processed first, then white filters.</para>
1012 <para>- If there are black filters only: implied white all filter processed first, then black filters.</para>
1013 <para>- If there are both white and black filters: implied black all filter processed first, then white
1014 filters, and lastly black filters.</para>
1018 <para>The filters added are only used for the current session.
1019 Once the connection is closed the filters are removed.</para>
1020 <para>This comand requires the system permission because
1021 this command can be used to create filters that may bypass
1022 filters defined in manager.conf</para>
1025 <manager name="FilterList" language="en_US">
1027 Show current event filters for this session
1030 <para>The filters displayed are for the current session. Only those filters defined in
1031 manager.conf will be present upon starting a new session.</para>
1034 <manager name="BlindTransfer" language="en_US">
1036 Blind transfer channel(s) to the given destination
1039 <parameter name="Channel" required="true">
1041 <parameter name="Context">
1043 <parameter name="Exten">
1047 <para>Redirect all channels currently bridged to the specified channel to the specified destination.</para>
1050 <ref type="manager">Redirect</ref>
1055 /*! \addtogroup Group_AMI AMI functions
1063 UNSPECIFIED_CATEGORY,
1064 UNSPECIFIED_ARGUMENT,
1074 enum add_filter_result {
1076 FILTER_ALLOC_FAILED,
1077 FILTER_COMPILE_FAIL,
1081 * Linked list of events.
1082 * Global events are appended to the list by append_event().
1083 * The usecount is the number of stored pointers to the element,
1084 * excluding the list pointers. So an element that is only in
1085 * the list has a usecount of 0, not 1.
1087 * Clients have a pointer to the last event processed, and for each
1088 * of these clients we track the usecount of the elements.
1089 * If we have a pointer to an entry in the list, it is safe to navigate
1090 * it forward because elements will not be deleted, but only appended.
1091 * The worst that can happen is seeing the pointer still NULL.
1093 * When the usecount of an element drops to 0, and the element is the
1094 * first in the list, we can remove it. Removal is done within the
1095 * main thread, which is woken up for the purpose.
1097 * For simplicity of implementation, we make sure the list is never empty.
1100 int usecount; /*!< # of clients who still need the event */
1102 unsigned int seq; /*!< sequence number */
1103 struct timeval tv; /*!< When event was allocated */
1104 AST_RWLIST_ENTRY(eventqent) eq_next;
1105 char eventdata[1]; /*!< really variable size, allocated by append_event() */
1108 static AST_RWLIST_HEAD_STATIC(all_events, eventqent);
1110 static int displayconnects = 1;
1111 static int allowmultiplelogin = 1;
1112 static int timestampevents;
1113 static int httptimeout = 60;
1114 static int broken_events_action = 0;
1115 static int manager_enabled = 0;
1116 static int subscribed = 0;
1117 static int webmanager_enabled = 0;
1118 static int manager_debug = 0; /*!< enable some debugging code in the manager */
1119 static int authtimeout;
1120 static int authlimit;
1121 static char *manager_channelvars;
1123 #define DEFAULT_REALM "asterisk"
1124 static char global_realm[MAXHOSTNAMELEN]; /*!< Default realm */
1126 static int unauth_sessions = 0;
1127 static struct stasis_subscription *acl_change_sub;
1129 /*! \brief A \ref stasis_topic that all topics AMI cares about will be forwarded to */
1130 static struct stasis_topic *manager_topic;
1132 /*! \brief The \ref stasis_message_router for all \ref stasis messages */
1133 static struct stasis_message_router *stasis_router;
1135 /*! \brief The \ref stasis_subscription for forwarding the RTP topic to the AMI topic */
1136 static struct stasis_forward *rtp_topic_forwarder;
1138 /*! \brief The \ref stasis_subscription for forwarding the Security topic to the AMI topic */
1139 static struct stasis_forward *security_topic_forwarder;
1141 #define MGR_SHOW_TERMINAL_WIDTH 80
1143 #define MAX_VARS 128
1146 * Descriptor for a manager session, either on the AMI socket or over HTTP.
1149 * AMI session have managerid == 0; the entry is created upon a connect,
1150 * and destroyed with the socket.
1151 * HTTP sessions have managerid != 0, the value is used as a search key
1152 * to lookup sessions (using the mansession_id cookie, or nonce key from
1153 * Digest Authentication http header).
1155 #define MAX_BLACKLIST_CMD_LEN 2
1156 static const struct {
1157 const char *words[AST_MAX_CMD_LEN];
1158 } command_blacklist[] = {
1159 {{ "module", "load", NULL }},
1160 {{ "module", "unload", NULL }},
1161 {{ "restart", "gracefully", NULL }},
1164 static void acl_change_stasis_cb(void *data, struct stasis_subscription *sub, struct stasis_message *message);
1166 static void acl_change_stasis_subscribe(void)
1168 if (!acl_change_sub) {
1169 acl_change_sub = stasis_subscribe(ast_security_topic(),
1170 acl_change_stasis_cb, NULL);
1174 static void acl_change_stasis_unsubscribe(void)
1176 acl_change_sub = stasis_unsubscribe_and_join(acl_change_sub);
1179 /* In order to understand what the heck is going on with the
1180 * mansession_session and mansession structs, we need to have a bit of a history
1183 * In the beginning, there was the mansession. The mansession contained data that was
1184 * intrinsic to a manager session, such as the time that it started, the name of the logged-in
1185 * user, etc. In addition to these parameters were the f and fd parameters. For typical manager
1186 * sessions, these were used to represent the TCP socket over which the AMI session was taking
1187 * place. It makes perfect sense for these fields to be a part of the session-specific data since
1188 * the session actually defines this information.
1190 * Then came the HTTP AMI sessions. With these, the f and fd fields need to be opened and closed
1191 * for every single action that occurs. Thus the f and fd fields aren't really specific to the session
1192 * but rather to the action that is being executed. Because a single session may execute many commands
1193 * at once, some sort of safety needed to be added in order to be sure that we did not end up with fd
1194 * leaks from one action overwriting the f and fd fields used by a previous action before the previous action
1195 * has had a chance to properly close its handles.
1197 * The initial idea to solve this was to use thread synchronization, but this prevented multiple actions
1198 * from being run at the same time in a single session. Some manager actions may block for a long time, thus
1199 * creating a large queue of actions to execute. In addition, this fix did not address the basic architectural
1200 * issue that for HTTP manager sessions, the f and fd variables are not really a part of the session, but are
1201 * part of the action instead.
1203 * The new idea was to create a structure on the stack for each HTTP Manager action. This structure would
1204 * contain the action-specific information, such as which file to write to. In order to maintain expectations
1205 * of action handlers and not have to change the public API of the manager code, we would need to name this
1206 * new stacked structure 'mansession' and contain within it the old mansession struct that we used to use.
1207 * We renamed the old mansession struct 'mansession_session' to hopefully convey that what is in this structure
1208 * is session-specific data. The structure that it is wrapped in, called a 'mansession' really contains action-specific
1211 struct mansession_session {
1212 /*! \todo XXX need to document which fields it is protecting */
1213 struct ast_sockaddr addr; /*!< address we are connecting from */
1214 FILE *f; /*!< fdopen() on the underlying fd */
1215 int fd; /*!< descriptor used for output. Either the socket (AMI) or a temporary file (HTTP) */
1216 int inuse; /*!< number of HTTP sessions using this entry */
1217 int needdestroy; /*!< Whether an HTTP session should be destroyed */
1218 pthread_t waiting_thread; /*!< Sleeping thread using this descriptor */
1219 uint32_t managerid; /*!< Unique manager identifier, 0 for AMI sessions */
1220 time_t sessionstart; /*!< Session start time */
1221 struct timeval sessionstart_tv; /*!< Session start time */
1222 time_t sessiontimeout; /*!< Session timeout if HTTP */
1223 char username[80]; /*!< Logged in username */
1224 char challenge[10]; /*!< Authentication challenge */
1225 int authenticated; /*!< Authentication status */
1226 int readperm; /*!< Authorization for reading */
1227 int writeperm; /*!< Authorization for writing */
1228 char inbuf[1025]; /*!< Buffer - we use the extra byte to add a '\\0' and simplify parsing */
1229 int inlen; /*!< number of buffered bytes */
1230 struct ao2_container *whitefilters; /*!< Manager event filters - white list */
1231 struct ao2_container *blackfilters; /*!< Manager event filters - black list */
1232 struct ast_variable *chanvars; /*!< Channel variables to set for originate */
1233 int send_events; /*!< XXX what ? */
1234 struct eventqent *last_ev; /*!< last event processed. */
1235 int writetimeout; /*!< Timeout for ast_carefulwrite() */
1237 int pending_event; /*!< Pending events indicator in case when waiting_thread is NULL */
1238 time_t noncetime; /*!< Timer for nonce value expiration */
1239 unsigned long oldnonce; /*!< Stale nonce value */
1240 unsigned long nc; /*!< incremental nonce counter */
1241 AST_LIST_HEAD_NOLOCK(mansession_datastores, ast_datastore) datastores; /*!< Data stores on the session */
1242 AST_LIST_ENTRY(mansession_session) list;
1245 enum mansession_message_parsing {
1247 MESSAGE_LINE_TOO_LONG
1250 /*! \brief In case you didn't read that giant block of text above the mansession_session struct, the
1251 * \ref struct mansession is named this solely to keep the API the same in Asterisk. This structure really
1252 * represents data that is different from Manager action to Manager action. The mansession_session pointer
1253 * contained within points to session-specific data.
1256 struct mansession_session *session;
1257 struct ast_tcptls_session_instance *tcptls_session;
1260 enum mansession_message_parsing parsing;
1262 struct manager_custom_hook *hook;
1266 /*! Active manager connection sessions container. */
1267 static AO2_GLOBAL_OBJ_STATIC(mgr_sessions);
1269 /*! \brief user descriptor, as read from the config file.
1271 * \note It is still missing some fields -- e.g. we can have multiple permit and deny
1272 * lines which are not supported here, and readperm/writeperm/writetimeout
1275 struct ast_manager_user {
1277 char *secret; /*!< Secret for logging in */
1278 int readperm; /*!< Authorization for reading */
1279 int writeperm; /*!< Authorization for writing */
1280 int writetimeout; /*!< Per user Timeout for ast_carefulwrite() */
1281 int displayconnects; /*!< XXX unused */
1282 int allowmultiplelogin; /*!< Per user option*/
1283 int keep; /*!< mark entries created on a reload */
1284 struct ao2_container *whitefilters; /*!< Manager event filters - white list */
1285 struct ao2_container *blackfilters; /*!< Manager event filters - black list */
1286 struct ast_acl_list *acl; /*!< ACL setting */
1287 char *a1_hash; /*!< precalculated A1 for Digest auth */
1288 struct ast_variable *chanvars; /*!< Channel variables to set for originate */
1289 AST_RWLIST_ENTRY(ast_manager_user) list;
1292 /*! \brief list of users found in the config file */
1293 static AST_RWLIST_HEAD_STATIC(users, ast_manager_user);
1295 /*! \brief list of actions registered */
1296 static AST_RWLIST_HEAD_STATIC(actions, manager_action);
1298 /*! \brief list of hooks registered */
1299 static AST_RWLIST_HEAD_STATIC(manager_hooks, manager_custom_hook);
1301 /*! \brief A container of event documentation nodes */
1302 static AO2_GLOBAL_OBJ_STATIC(event_docs);
1304 static enum add_filter_result manager_add_filter(const char *filter_pattern, struct ao2_container *whitefilters, struct ao2_container *blackfilters);
1307 * @{ \brief Define AMI message types.
1309 STASIS_MESSAGE_TYPE_DEFN(ast_manager_get_generic_type);
1314 * \brief Find a registered action object.
1316 * \param name Name of AMI action to find.
1318 * \return Reffed action found or NULL
1320 static struct manager_action *action_find(const char *name)
1322 struct manager_action *act;
1324 AST_RWLIST_RDLOCK(&actions);
1325 AST_RWLIST_TRAVERSE(&actions, act, list) {
1326 if (!strcasecmp(name, act->action)) {
1327 ao2_t_ref(act, +1, "found action object");
1331 AST_RWLIST_UNLOCK(&actions);
1336 struct stasis_topic *ast_manager_get_topic(void)
1338 return manager_topic;
1341 struct stasis_message_router *ast_manager_get_message_router(void)
1343 return stasis_router;
1346 static void manager_json_value_str_append(struct ast_json *value, const char *key,
1347 struct ast_str **res)
1349 switch (ast_json_typeof(value)) {
1350 case AST_JSON_STRING:
1351 ast_str_append(res, 0, "%s: %s\r\n", key, ast_json_string_get(value));
1353 case AST_JSON_INTEGER:
1354 ast_str_append(res, 0, "%s: %jd\r\n", key, ast_json_integer_get(value));
1357 ast_str_append(res, 0, "%s: True\r\n", key);
1359 case AST_JSON_FALSE:
1360 ast_str_append(res, 0, "%s: False\r\n", key);
1363 ast_str_append(res, 0, "%s: \r\n", key);
1368 static void manager_json_to_ast_str(struct ast_json *obj, const char *key,
1369 struct ast_str **res, key_exclusion_cb exclusion_cb);
1371 static void manager_json_array_with_key(struct ast_json *obj, const char* key,
1372 size_t index, struct ast_str **res,
1373 key_exclusion_cb exclusion_cb)
1375 struct ast_str *key_str = ast_str_alloca(64);
1376 ast_str_set(&key_str, 0, "%s(%zu)", key, index);
1377 manager_json_to_ast_str(obj, ast_str_buffer(key_str),
1381 static void manager_json_obj_with_key(struct ast_json *obj, const char* key,
1382 const char *parent_key, struct ast_str **res,
1383 key_exclusion_cb exclusion_cb)
1386 struct ast_str *key_str = ast_str_alloca(64);
1387 ast_str_set(&key_str, 0, "%s/%s", parent_key, key);
1388 manager_json_to_ast_str(obj, ast_str_buffer(key_str),
1393 manager_json_to_ast_str(obj, key, res, exclusion_cb);
1396 void manager_json_to_ast_str(struct ast_json *obj, const char *key,
1397 struct ast_str **res, key_exclusion_cb exclusion_cb)
1399 struct ast_json_iter *i;
1401 if (!obj || (!res && !(*res) && (!(*res = ast_str_create(1024))))) {
1405 if (exclusion_cb && key && exclusion_cb(key)) {
1409 if (ast_json_typeof(obj) != AST_JSON_OBJECT &&
1410 ast_json_typeof(obj) != AST_JSON_ARRAY) {
1411 manager_json_value_str_append(obj, key, res);
1415 if (ast_json_typeof(obj) == AST_JSON_ARRAY) {
1417 for (j = 0; j < ast_json_array_size(obj); ++j) {
1418 manager_json_array_with_key(ast_json_array_get(obj, j),
1419 key, j, res, exclusion_cb);
1424 for (i = ast_json_object_iter(obj); i;
1425 i = ast_json_object_iter_next(obj, i)) {
1426 manager_json_obj_with_key(ast_json_object_iter_value(i),
1427 ast_json_object_iter_key(i),
1428 key, res, exclusion_cb);
1433 struct ast_str *ast_manager_str_from_json_object(struct ast_json *blob, key_exclusion_cb exclusion_cb)
1435 struct ast_str *res = ast_str_create(1024);
1436 manager_json_to_ast_str(blob, NULL, &res, exclusion_cb);
1440 static void manager_default_msg_cb(void *data, struct stasis_subscription *sub,
1441 struct stasis_message *message)
1443 RAII_VAR(struct ast_manager_event_blob *, ev, NULL, ao2_cleanup);
1445 ev = stasis_message_to_ami(message);
1448 /* Not and AMI message; disregard */
1452 manager_event(ev->event_flags, ev->manager_event, "%s",
1456 static void manager_generic_msg_cb(void *data, struct stasis_subscription *sub,
1457 struct stasis_message *message)
1459 struct ast_json_payload *payload = stasis_message_data(message);
1460 int class_type = ast_json_integer_get(ast_json_object_get(payload->json, "class_type"));
1461 const char *type = ast_json_string_get(ast_json_object_get(payload->json, "type"));
1462 struct ast_json *event = ast_json_object_get(payload->json, "event");
1463 RAII_VAR(struct ast_str *, event_buffer, NULL, ast_free);
1465 event_buffer = ast_manager_str_from_json_object(event, NULL);
1466 if (!event_buffer) {
1467 ast_log(AST_LOG_WARNING, "Error while creating payload for event %s\n", type);
1470 manager_event(class_type, type, "%s", ast_str_buffer(event_buffer));
1473 void ast_manager_publish_event(const char *type, int class_type, struct ast_json *obj)
1475 RAII_VAR(struct ast_json *, event_info, NULL, ast_json_unref);
1476 RAII_VAR(struct ast_json_payload *, payload, NULL, ao2_cleanup);
1477 RAII_VAR(struct stasis_message *, message, NULL, ao2_cleanup);
1484 event_info = ast_json_pack("{s: s, s: i, s: o}",
1486 "class_type", class_type,
1492 payload = ast_json_payload_create(event_info);
1496 message = stasis_message_create(ast_manager_get_generic_type(), payload);
1500 stasis_publish(ast_manager_get_topic(), message);
1503 /*! \brief Add a custom hook to be called when an event is fired */
1504 void ast_manager_register_hook(struct manager_custom_hook *hook)
1506 AST_RWLIST_WRLOCK(&manager_hooks);
1507 AST_RWLIST_INSERT_TAIL(&manager_hooks, hook, list);
1508 AST_RWLIST_UNLOCK(&manager_hooks);
1511 /*! \brief Delete a custom hook to be called when an event is fired */
1512 void ast_manager_unregister_hook(struct manager_custom_hook *hook)
1514 AST_RWLIST_WRLOCK(&manager_hooks);
1515 AST_RWLIST_REMOVE(&manager_hooks, hook, list);
1516 AST_RWLIST_UNLOCK(&manager_hooks);
1519 int check_manager_enabled(void)
1521 return manager_enabled;
1524 int check_webmanager_enabled(void)
1526 return (webmanager_enabled && manager_enabled);
1530 * Grab a reference to the last event, update usecount as needed.
1531 * Can handle a NULL pointer.
1533 static struct eventqent *grab_last(void)
1535 struct eventqent *ret;
1537 AST_RWLIST_WRLOCK(&all_events);
1538 ret = AST_RWLIST_LAST(&all_events);
1539 /* the list is never empty now, but may become so when
1540 * we optimize it in the future, so be prepared.
1543 ast_atomic_fetchadd_int(&ret->usecount, 1);
1545 AST_RWLIST_UNLOCK(&all_events);
1550 * Purge unused events. Remove elements from the head
1551 * as long as their usecount is 0 and there is a next element.
1553 static void purge_events(void)
1555 struct eventqent *ev;
1556 struct timeval now = ast_tvnow();
1558 AST_RWLIST_WRLOCK(&all_events);
1559 while ( (ev = AST_RWLIST_FIRST(&all_events)) &&
1560 ev->usecount == 0 && AST_RWLIST_NEXT(ev, eq_next)) {
1561 AST_RWLIST_REMOVE_HEAD(&all_events, eq_next);
1565 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&all_events, ev, eq_next) {
1566 /* Never release the last event */
1567 if (!AST_RWLIST_NEXT(ev, eq_next)) {
1571 /* 2.5 times whatever the HTTP timeout is (maximum 2.5 hours) is the maximum time that we will definitely cache an event */
1572 if (ev->usecount == 0 && ast_tvdiff_sec(now, ev->tv) > (httptimeout > 3600 ? 3600 : httptimeout) * 2.5) {
1573 AST_RWLIST_REMOVE_CURRENT(eq_next);
1577 AST_RWLIST_TRAVERSE_SAFE_END;
1578 AST_RWLIST_UNLOCK(&all_events);
1582 * helper functions to convert back and forth between
1583 * string and numeric representation of set of flags
1585 static const struct permalias {
1589 { EVENT_FLAG_SYSTEM, "system" },
1590 { EVENT_FLAG_CALL, "call" },
1591 { EVENT_FLAG_LOG, "log" },
1592 { EVENT_FLAG_VERBOSE, "verbose" },
1593 { EVENT_FLAG_COMMAND, "command" },
1594 { EVENT_FLAG_AGENT, "agent" },
1595 { EVENT_FLAG_USER, "user" },
1596 { EVENT_FLAG_CONFIG, "config" },
1597 { EVENT_FLAG_DTMF, "dtmf" },
1598 { EVENT_FLAG_REPORTING, "reporting" },
1599 { EVENT_FLAG_CDR, "cdr" },
1600 { EVENT_FLAG_DIALPLAN, "dialplan" },
1601 { EVENT_FLAG_ORIGINATE, "originate" },
1602 { EVENT_FLAG_AGI, "agi" },
1603 { EVENT_FLAG_CC, "cc" },
1604 { EVENT_FLAG_AOC, "aoc" },
1605 { EVENT_FLAG_TEST, "test" },
1606 { EVENT_FLAG_SECURITY, "security" },
1607 { EVENT_FLAG_MESSAGE, "message" },
1612 /*! \brief Checks to see if a string which can be used to evaluate functions should be rejected */
1613 static int function_capable_string_allowed_with_auths(const char *evaluating, int writepermlist)
1615 if (!(writepermlist & EVENT_FLAG_SYSTEM)
1617 strstr(evaluating, "SHELL") || /* NoOp(${SHELL(rm -rf /)}) */
1618 strstr(evaluating, "EVAL") /* NoOp(${EVAL(${some_var_containing_SHELL})}) */
1625 /*! \brief Convert authority code to a list of options for a user. This will only
1626 * display those authority codes that have an explicit match on authority */
1627 static const char *user_authority_to_str(int authority, struct ast_str **res)
1632 ast_str_reset(*res);
1633 for (i = 0; i < ARRAY_LEN(perms) - 1; i++) {
1634 if ((authority & perms[i].num) == perms[i].num) {
1635 ast_str_append(res, 0, "%s%s", sep, perms[i].label);
1640 if (ast_str_strlen(*res) == 0) /* replace empty string with something sensible */
1641 ast_str_append(res, 0, "<none>");
1643 return ast_str_buffer(*res);
1647 /*! \brief Convert authority code to a list of options. Note that the EVENT_FLAG_ALL
1648 * authority will always be returned. */
1649 static const char *authority_to_str(int authority, struct ast_str **res)
1654 ast_str_reset(*res);
1655 for (i = 0; i < ARRAY_LEN(perms) - 1; i++) {
1656 if (authority & perms[i].num) {
1657 ast_str_append(res, 0, "%s%s", sep, perms[i].label);
1662 if (ast_str_strlen(*res) == 0) /* replace empty string with something sensible */
1663 ast_str_append(res, 0, "<none>");
1665 return ast_str_buffer(*res);
1668 /*! Tells you if smallstr exists inside bigstr
1669 which is delim by delim and uses no buf or stringsep
1670 ast_instring("this|that|more","this",'|') == 1;
1672 feel free to move this to app.c -anthm */
1673 static int ast_instring(const char *bigstr, const char *smallstr, const char delim)
1675 const char *val = bigstr, *next;
1678 if ((next = strchr(val, delim))) {
1679 if (!strncmp(val, smallstr, (next - val))) {
1685 return !strcmp(smallstr, val);
1687 } while (*(val = (next + 1)));
1692 static int get_perm(const char *instr)
1700 for (x = 0; x < ARRAY_LEN(perms); x++) {
1701 if (ast_instring(instr, perms[x].label, ',')) {
1702 ret |= perms[x].num;
1710 * A number returns itself, false returns 0, true returns all flags,
1711 * other strings return the flags that are set.
1713 static int strings_to_mask(const char *string)
1717 if (ast_strlen_zero(string)) {
1721 for (p = string; *p; p++) {
1722 if (*p < '0' || *p > '9') {
1726 if (!*p) { /* all digits */
1727 return atoi(string);
1729 if (ast_false(string)) {
1732 if (ast_true(string)) { /* all permissions */
1734 for (x = 0; x < ARRAY_LEN(perms); x++) {
1735 ret |= perms[x].num;
1739 return get_perm(string);
1742 /*! \brief Unreference manager session object.
1743 If no more references, then go ahead and delete it */
1744 static struct mansession_session *unref_mansession(struct mansession_session *s)
1746 int refcount = ao2_ref(s, -1);
1747 if (manager_debug) {
1748 ast_debug(1, "Mansession: %p refcount now %d\n", s, refcount - 1);
1753 static void event_filter_destructor(void *obj)
1755 regex_t *regex_filter = obj;
1756 regfree(regex_filter);
1759 static void session_destructor(void *obj)
1761 struct mansession_session *session = obj;
1762 struct eventqent *eqe = session->last_ev;
1763 struct ast_datastore *datastore;
1765 /* Get rid of each of the data stores on the session */
1766 while ((datastore = AST_LIST_REMOVE_HEAD(&session->datastores, entry))) {
1767 /* Free the data store */
1768 ast_datastore_free(datastore);
1771 if (session->f != NULL) {
1776 ast_atomic_fetchadd_int(&eqe->usecount, -1);
1778 if (session->chanvars) {
1779 ast_variables_destroy(session->chanvars);
1782 if (session->whitefilters) {
1783 ao2_t_ref(session->whitefilters, -1, "decrement ref for white container, should be last one");
1786 if (session->blackfilters) {
1787 ao2_t_ref(session->blackfilters, -1, "decrement ref for black container, should be last one");
1791 /*! \brief Allocate manager session structure and add it to the list of sessions */
1792 static struct mansession_session *build_mansession(const struct ast_sockaddr *addr)
1794 struct ao2_container *sessions;
1795 struct mansession_session *newsession;
1797 newsession = ao2_alloc(sizeof(*newsession), session_destructor);
1802 newsession->whitefilters = ao2_container_alloc(1, NULL, NULL);
1803 newsession->blackfilters = ao2_container_alloc(1, NULL, NULL);
1804 if (!newsession->whitefilters || !newsession->blackfilters) {
1805 ao2_ref(newsession, -1);
1809 newsession->fd = -1;
1810 newsession->waiting_thread = AST_PTHREADT_NULL;
1811 newsession->writetimeout = 100;
1812 newsession->send_events = -1;
1813 ast_sockaddr_copy(&newsession->addr, addr);
1815 sessions = ao2_global_obj_ref(mgr_sessions);
1817 ao2_link(sessions, newsession);
1818 ao2_ref(sessions, -1);
1824 static int mansession_cmp_fn(void *obj, void *arg, int flags)
1826 struct mansession_session *s = obj;
1828 return !strcasecmp(s->username, str) ? CMP_MATCH : 0;
1831 static void session_destroy(struct mansession_session *s)
1833 struct ao2_container *sessions;
1835 sessions = ao2_global_obj_ref(mgr_sessions);
1837 ao2_unlink(sessions, s);
1838 ao2_ref(sessions, -1);
1840 unref_mansession(s);
1844 static int check_manager_session_inuse(const char *name)
1846 struct ao2_container *sessions;
1847 struct mansession_session *session;
1850 sessions = ao2_global_obj_ref(mgr_sessions);
1852 session = ao2_find(sessions, (char *) name, 0);
1853 ao2_ref(sessions, -1);
1855 unref_mansession(session);
1864 * lookup an entry in the list of registered users.
1865 * must be called with the list lock held.
1867 static struct ast_manager_user *get_manager_by_name_locked(const char *name)
1869 struct ast_manager_user *user = NULL;
1871 AST_RWLIST_TRAVERSE(&users, user, list) {
1872 if (!strcasecmp(user->username, name)) {
1880 /*! \brief Get displayconnects config option.
1881 * \param session manager session to get parameter from.
1882 * \return displayconnects config option value.
1884 static int manager_displayconnects(struct mansession_session *session)
1886 struct ast_manager_user *user = NULL;
1889 AST_RWLIST_RDLOCK(&users);
1890 if ((user = get_manager_by_name_locked(session->username))) {
1891 ret = user->displayconnects;
1893 AST_RWLIST_UNLOCK(&users);
1898 static char *handle_showmancmd(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1900 struct manager_action *cur;
1901 struct ast_str *authority;
1905 char syntax_title[64], description_title[64], synopsis_title[64], seealso_title[64], arguments_title[64], privilege_title[64];
1910 e->command = "manager show command";
1912 "Usage: manager show command <actionname> [<actionname> [<actionname> [...]]]\n"
1913 " Shows the detailed description for a specific Asterisk manager interface command.\n";
1916 l = strlen(a->word);
1918 AST_RWLIST_RDLOCK(&actions);
1919 AST_RWLIST_TRAVERSE(&actions, cur, list) {
1920 if (!strncasecmp(a->word, cur->action, l) && ++which > a->n) {
1921 ret = ast_strdup(cur->action);
1922 break; /* make sure we exit even if ast_strdup() returns NULL */
1925 AST_RWLIST_UNLOCK(&actions);
1928 authority = ast_str_alloca(80);
1930 return CLI_SHOWUSAGE;
1934 /* setup the titles */
1935 term_color(synopsis_title, "[Synopsis]\n", COLOR_MAGENTA, 0, 40);
1936 term_color(description_title, "[Description]\n", COLOR_MAGENTA, 0, 40);
1937 term_color(syntax_title, "[Syntax]\n", COLOR_MAGENTA, 0, 40);
1938 term_color(seealso_title, "[See Also]\n", COLOR_MAGENTA, 0, 40);
1939 term_color(arguments_title, "[Arguments]\n", COLOR_MAGENTA, 0, 40);
1940 term_color(privilege_title, "[Privilege]\n", COLOR_MAGENTA, 0, 40);
1943 AST_RWLIST_RDLOCK(&actions);
1944 AST_RWLIST_TRAVERSE(&actions, cur, list) {
1945 for (num = 3; num < a->argc; num++) {
1946 if (!strcasecmp(cur->action, a->argv[num])) {
1947 authority_to_str(cur->authority, &authority);
1950 if (cur->docsrc == AST_XML_DOC) {
1951 char *syntax = ast_xmldoc_printable(S_OR(cur->syntax, "Not available"), 1);
1952 char *synopsis = ast_xmldoc_printable(S_OR(cur->synopsis, "Not available"), 1);
1953 char *description = ast_xmldoc_printable(S_OR(cur->description, "Not available"), 1);
1954 char *arguments = ast_xmldoc_printable(S_OR(cur->arguments, "Not available"), 1);
1955 char *seealso = ast_xmldoc_printable(S_OR(cur->seealso, "Not available"), 1);
1956 char *privilege = ast_xmldoc_printable(S_OR(authority->str, "Not available"), 1);
1957 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",
1958 syntax_title, syntax,
1959 synopsis_title, synopsis,
1960 description_title, description,
1961 arguments_title, arguments,
1962 seealso_title, seealso,
1963 privilege_title, privilege);
1967 ast_cli(a->fd, "Action: %s\nSynopsis: %s\nPrivilege: %s\n%s\n",
1968 cur->action, cur->synopsis,
1970 S_OR(cur->description, ""));
1975 AST_RWLIST_UNLOCK(&actions);
1980 static char *handle_mandebug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1984 e->command = "manager set debug [on|off]";
1985 e->usage = "Usage: manager set debug [on|off]\n Show, enable, disable debugging of the manager code.\n";
1992 ast_cli(a->fd, "manager debug is %s\n", manager_debug? "on" : "off");
1993 } else if (a->argc == 4) {
1994 if (!strcasecmp(a->argv[3], "on")) {
1996 } else if (!strcasecmp(a->argv[3], "off")) {
1999 return CLI_SHOWUSAGE;
2005 static char *handle_showmanager(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2007 struct ast_manager_user *user = NULL;
2010 struct ast_str *rauthority = ast_str_alloca(128);
2011 struct ast_str *wauthority = ast_str_alloca(128);
2012 struct ast_variable *v;
2016 e->command = "manager show user";
2018 " Usage: manager show user <user>\n"
2019 " Display all information related to the manager user specified.\n";
2022 l = strlen(a->word);
2027 AST_RWLIST_RDLOCK(&users);
2028 AST_RWLIST_TRAVERSE(&users, user, list) {
2029 if ( !strncasecmp(a->word, user->username, l) && ++which > a->n ) {
2030 ret = ast_strdup(user->username);
2034 AST_RWLIST_UNLOCK(&users);
2039 return CLI_SHOWUSAGE;
2042 AST_RWLIST_RDLOCK(&users);
2044 if (!(user = get_manager_by_name_locked(a->argv[3]))) {
2045 ast_cli(a->fd, "There is no manager called %s\n", a->argv[3]);
2046 AST_RWLIST_UNLOCK(&users);
2050 ast_cli(a->fd, "\n");
2057 " displayconnects: %s\n"
2058 "allowmultiplelogin: %s\n",
2059 (user->username ? user->username : "(N/A)"),
2060 (user->secret ? "<Set>" : "(N/A)"),
2061 ((user->acl && !ast_acl_list_is_empty(user->acl)) ? "yes" : "no"),
2062 user_authority_to_str(user->readperm, &rauthority),
2063 user_authority_to_str(user->writeperm, &wauthority),
2064 (user->displayconnects ? "yes" : "no"),
2065 (user->allowmultiplelogin ? "yes" : "no"));
2066 ast_cli(a->fd, " Variables: \n");
2067 for (v = user->chanvars ; v ; v = v->next) {
2068 ast_cli(a->fd, " %s = %s\n", v->name, v->value);
2071 AST_RWLIST_UNLOCK(&users);
2076 static char *handle_showmanagers(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2078 struct ast_manager_user *user = NULL;
2082 e->command = "manager show users";
2084 "Usage: manager show users\n"
2085 " Prints a listing of all managers that are currently configured on that\n"
2092 return CLI_SHOWUSAGE;
2095 AST_RWLIST_RDLOCK(&users);
2097 /* If there are no users, print out something along those lines */
2098 if (AST_RWLIST_EMPTY(&users)) {
2099 ast_cli(a->fd, "There are no manager users.\n");
2100 AST_RWLIST_UNLOCK(&users);
2104 ast_cli(a->fd, "\nusername\n--------\n");
2106 AST_RWLIST_TRAVERSE(&users, user, list) {
2107 ast_cli(a->fd, "%s\n", user->username);
2111 AST_RWLIST_UNLOCK(&users);
2113 ast_cli(a->fd,"-------------------\n"
2114 "%d manager users configured.\n", count_amu);
2118 /*! \brief CLI command manager list commands */
2119 static char *handle_showmancmds(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2121 struct manager_action *cur;
2123 int space_remaining;
2124 #define HSMC_FORMAT " %-*.*s %-.*s\n"
2127 e->command = "manager show commands";
2129 "Usage: manager show commands\n"
2130 " Prints a listing of all the available Asterisk manager interface commands.\n";
2136 AST_RWLIST_RDLOCK(&actions);
2137 AST_RWLIST_TRAVERSE(&actions, cur, list) {
2138 int incoming_len = strlen(cur->action);
2139 if (incoming_len > name_len) {
2140 name_len = incoming_len;
2144 space_remaining = MGR_SHOW_TERMINAL_WIDTH - name_len - 4;
2145 if (space_remaining < 0) {
2146 space_remaining = 0;
2149 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, "Action", space_remaining, "Synopsis");
2150 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, "------", space_remaining, "--------");
2152 AST_RWLIST_TRAVERSE(&actions, cur, list) {
2153 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, cur->action, space_remaining, cur->synopsis);
2155 AST_RWLIST_UNLOCK(&actions);
2160 /*! \brief CLI command manager list connected */
2161 static char *handle_showmanconn(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2163 struct ao2_container *sessions;
2164 struct mansession_session *session;
2165 time_t now = time(NULL);
2166 #define HSMCONN_FORMAT1 " %-15.15s %-55.55s %-10.10s %-10.10s %-8.8s %-8.8s %-5.5s %-5.5s\n"
2167 #define HSMCONN_FORMAT2 " %-15.15s %-55.55s %-10d %-10d %-8d %-8d %-5.5d %-5.5d\n"
2169 struct ao2_iterator i;
2173 e->command = "manager show connected";
2175 "Usage: manager show connected\n"
2176 " Prints a listing of the users that are currently connected to the\n"
2177 "Asterisk manager interface.\n";
2183 ast_cli(a->fd, HSMCONN_FORMAT1, "Username", "IP Address", "Start", "Elapsed", "FileDes", "HttpCnt", "Read", "Write");
2185 sessions = ao2_global_obj_ref(mgr_sessions);
2187 i = ao2_iterator_init(sessions, 0);
2188 ao2_ref(sessions, -1);
2189 while ((session = ao2_iterator_next(&i))) {
2191 ast_cli(a->fd, HSMCONN_FORMAT2, session->username,
2192 ast_sockaddr_stringify_addr(&session->addr),
2193 (int) (session->sessionstart),
2194 (int) (now - session->sessionstart),
2198 session->writeperm);
2200 ao2_unlock(session);
2201 unref_mansession(session);
2203 ao2_iterator_destroy(&i);
2205 ast_cli(a->fd, "%d users connected.\n", count);
2210 /*! \brief CLI command manager list eventq */
2211 /* Should change to "manager show connected" */
2212 static char *handle_showmaneventq(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2214 struct eventqent *s;
2217 e->command = "manager show eventq";
2219 "Usage: manager show eventq\n"
2220 " Prints a listing of all events pending in the Asterisk manger\n"
2226 AST_RWLIST_RDLOCK(&all_events);
2227 AST_RWLIST_TRAVERSE(&all_events, s, eq_next) {
2228 ast_cli(a->fd, "Usecount: %d\n", s->usecount);
2229 ast_cli(a->fd, "Category: %d\n", s->category);
2230 ast_cli(a->fd, "Event:\n%s", s->eventdata);
2232 AST_RWLIST_UNLOCK(&all_events);
2237 /*! \brief CLI command manager reload */
2238 static char *handle_manager_reload(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2242 e->command = "manager reload";
2244 "Usage: manager reload\n"
2245 " Reloads the manager configuration.\n";
2251 return CLI_SHOWUSAGE;
2257 static struct eventqent *advance_event(struct eventqent *e)
2259 struct eventqent *next;
2261 AST_RWLIST_RDLOCK(&all_events);
2262 if ((next = AST_RWLIST_NEXT(e, eq_next))) {
2263 ast_atomic_fetchadd_int(&next->usecount, 1);
2264 ast_atomic_fetchadd_int(&e->usecount, -1);
2266 AST_RWLIST_UNLOCK(&all_events);
2270 #define GET_HEADER_FIRST_MATCH 0
2271 #define GET_HEADER_LAST_MATCH 1
2272 #define GET_HEADER_SKIP_EMPTY 2
2275 * \brief Return a matching header value.
2278 * Generic function to return either the first or the last
2279 * matching header from a list of variables, possibly skipping
2282 * \note At the moment there is only one use of this function in
2283 * this file, so we make it static.
2285 * \note Never returns NULL.
2287 static const char *__astman_get_header(const struct message *m, char *var, int mode)
2289 int x, l = strlen(var);
2290 const char *result = "";
2296 for (x = 0; x < m->hdrcount; x++) {
2297 const char *h = m->headers[x];
2298 if (!strncasecmp(var, h, l) && h[l] == ':') {
2299 const char *value = h + l + 1;
2300 value = ast_skip_blanks(value); /* ignore leading spaces in the value */
2301 /* found a potential candidate */
2302 if ((mode & GET_HEADER_SKIP_EMPTY) && ast_strlen_zero(value)) {
2303 continue; /* not interesting */
2305 if (mode & GET_HEADER_LAST_MATCH) {
2306 result = value; /* record the last match so far */
2317 * \brief Return the first matching variable from an array.
2319 * \note This is the legacy function and is implemented in
2320 * therms of __astman_get_header().
2322 * \note Never returns NULL.
2324 const char *astman_get_header(const struct message *m, char *var)
2326 return __astman_get_header(m, var, GET_HEADER_FIRST_MATCH);
2331 * \brief Process one "Variable:" header value string.
2333 * \param head Current list of AMI variables to get new values added.
2334 * \param hdr_val Header value string to process.
2336 * \return New variable list head.
2338 static struct ast_variable *man_do_variable_value(struct ast_variable *head, const char *hdr_val)
2341 AST_DECLARE_APP_ARGS(args,
2342 AST_APP_ARG(vars)[64];
2345 hdr_val = ast_skip_blanks(hdr_val); /* ignore leading spaces in the value */
2346 parse = ast_strdupa(hdr_val);
2348 /* Break the header value string into name=val pair items. */
2349 AST_STANDARD_APP_ARGS(args, parse);
2353 /* Process each name=val pair item. */
2354 for (y = 0; y < args.argc; y++) {
2355 struct ast_variable *cur;
2359 if (!args.vars[y]) {
2362 var = val = args.vars[y];
2365 /* XXX We may wish to trim whitespace from the strings. */
2366 if (!val || ast_strlen_zero(var)) {
2370 /* Create new variable list node and prepend it to the list. */
2371 cur = ast_variable_new(var, val, "");
2382 struct ast_variable *astman_get_variables(const struct message *m)
2384 return astman_get_variables_order(m, ORDER_REVERSE);
2387 struct ast_variable *astman_get_variables_order(const struct message *m,
2388 enum variable_orders order)
2392 struct ast_variable *head = NULL;
2394 static const char var_hdr[] = "Variable:";
2396 /* Process all "Variable:" headers. */
2397 varlen = strlen(var_hdr);
2398 for (x = 0; x < m->hdrcount; x++) {
2399 if (strncasecmp(var_hdr, m->headers[x], varlen)) {
2402 head = man_do_variable_value(head, m->headers[x] + varlen);
2405 if (order == ORDER_NATURAL) {
2406 head = ast_variables_reverse(head);
2412 /*! \brief access for hooks to send action messages to ami */
2413 int ast_hook_send_action(struct manager_custom_hook *hook, const char *msg)
2417 struct manager_action *act_found;
2418 struct mansession s = {.session = NULL, };
2419 struct message m = { 0 };
2429 /* Create our own copy of the AMI action msg string. */
2430 src = dup_str = ast_strdup(msg);
2435 /* convert msg string to message struct */
2436 curlen = strlen(src);
2437 for (x = 0; x < curlen; x++) {
2438 int cr; /* set if we have \r */
2439 if (src[x] == '\r' && x+1 < curlen && src[x+1] == '\n')
2440 cr = 2; /* Found. Update length to include \r\n */
2441 else if (src[x] == '\n')
2442 cr = 1; /* also accept \n only */
2445 /* don't keep empty lines */
2446 if (x && m.hdrcount < ARRAY_LEN(m.headers)) {
2447 /* ... but trim \r\n and terminate the header string */
2449 m.headers[m.hdrcount++] = src;
2452 curlen -= x; /* remaining size */
2453 src += x; /* update pointer */
2454 x = -1; /* reset loop */
2457 action = astman_get_header(&m, "Action");
2458 if (strcasecmp(action, "login")) {
2459 act_found = action_find(action);
2462 * we have to simulate a session for this action request
2463 * to be able to pass it down for processing
2464 * This is necessary to meet the previous design of manager.c
2467 s.f = (void*)1; /* set this to something so our request will make it through all functions that test it*/
2469 ao2_lock(act_found);
2470 if (act_found->registered && act_found->func) {
2471 if (act_found->module) {
2472 ast_module_ref(act_found->module);
2474 ao2_unlock(act_found);
2475 ret = act_found->func(&s, &m);
2476 ao2_lock(act_found);
2477 if (act_found->module) {
2478 ast_module_unref(act_found->module);
2483 ao2_unlock(act_found);
2484 ao2_t_ref(act_found, -1, "done with found action object");
2493 * helper function to send a string to the socket.
2494 * Return -1 on error (e.g. buffer full).
2496 static int send_string(struct mansession *s, char *string)
2499 FILE *f = s->f ? s->f : s->session->f;
2500 int fd = s->f ? s->fd : s->session->fd;
2502 /* It's a result from one of the hook's action invocation */
2505 * to send responses, we're using the same function
2506 * as for receiving events. We call the event "HookResponse"
2508 s->hook->helper(EVENT_FLAG_HOOKRESPONSE, "HookResponse", string);
2512 if ((res = ast_careful_fwrite(f, fd, string, strlen(string), s->session->writetimeout))) {
2520 * \brief thread local buffer for astman_append
2522 * \note This can not be defined within the astman_append() function
2523 * because it declares a couple of functions that get used to
2524 * initialize the thread local storage key.
2526 AST_THREADSTORAGE(astman_append_buf);
2528 AST_THREADSTORAGE(userevent_buf);
2530 /*! \brief initial allocated size for the astman_append_buf and astman_send_*_va */
2531 #define ASTMAN_APPEND_BUF_INITSIZE 256
2534 * utility functions for creating AMI replies
2536 void astman_append(struct mansession *s, const char *fmt, ...)
2539 struct ast_str *buf;
2541 if (!(buf = ast_str_thread_get(&astman_append_buf, ASTMAN_APPEND_BUF_INITSIZE))) {
2546 ast_str_set_va(&buf, 0, fmt, ap);
2549 if (s->f != NULL || s->session->f != NULL) {
2550 send_string(s, ast_str_buffer(buf));
2552 ast_verbose("fd == -1 in astman_append, should not happen\n");
2556 /*! \note NOTE: XXX this comment is unclear and possibly wrong.
2557 Callers of astman_send_error(), astman_send_response() or astman_send_ack() must EITHER
2558 hold the session lock _or_ be running in an action callback (in which case s->session->busy will
2559 be non-zero). In either of these cases, there is no need to lock-protect the session's
2560 fd, since no other output will be sent (events will be queued), and no input will
2561 be read until either the current action finishes or get_input() obtains the session
2565 /*! \todo XXX MSG_MOREDATA should go to a header file. */
2566 #define MSG_MOREDATA ((char *)astman_send_response)
2568 /*! \brief send a response with an optional message,
2569 * and terminate it with an empty line.
2570 * m is used only to grab the 'ActionID' field.
2572 * Use the explicit constant MSG_MOREDATA to remove the empty line.
2573 * XXX MSG_MOREDATA should go to a header file.
2575 static void astman_send_response_full(struct mansession *s, const struct message *m, char *resp, char *msg, char *listflag)
2577 const char *id = astman_get_header(m, "ActionID");
2579 astman_append(s, "Response: %s\r\n", resp);
2580 if (!ast_strlen_zero(id)) {
2581 astman_append(s, "ActionID: %s\r\n", id);
2584 astman_append(s, "EventList: %s\r\n", listflag); /* Start, complete, cancelled */
2586 if (msg == MSG_MOREDATA) {
2589 astman_append(s, "Message: %s\r\n\r\n", msg);
2591 astman_append(s, "\r\n");
2595 void astman_send_response(struct mansession *s, const struct message *m, char *resp, char *msg)
2597 astman_send_response_full(s, m, resp, msg, NULL);
2600 void astman_send_error(struct mansession *s, const struct message *m, char *error)
2602 astman_send_response_full(s, m, "Error", error, NULL);
2605 void astman_send_error_va(struct mansession *s, const struct message *m, const char *fmt, ...)
2608 struct ast_str *buf;
2611 if (!(buf = ast_str_thread_get(&astman_append_buf, ASTMAN_APPEND_BUF_INITSIZE))) {
2616 ast_str_set_va(&buf, 0, fmt, ap);
2619 /* astman_append will use the same underlying buffer, so copy the message out
2620 * before sending the response */
2621 msg = ast_str_buffer(buf);
2623 msg = ast_strdupa(msg);
2625 astman_send_response_full(s, m, "Error", msg, NULL);
2628 void astman_send_ack(struct mansession *s, const struct message *m, char *msg)
2630 astman_send_response_full(s, m, "Success", msg, NULL);
2633 static void astman_start_ack(struct mansession *s, const struct message *m)
2635 astman_send_response_full(s, m, "Success", MSG_MOREDATA, NULL);
2638 void astman_send_listack(struct mansession *s, const struct message *m, char *msg, char *listflag)
2640 astman_send_response_full(s, m, "Success", msg, listflag);
2643 /*! \brief Lock the 'mansession' structure. */
2644 static void mansession_lock(struct mansession *s)
2646 ast_mutex_lock(&s->lock);
2649 /*! \brief Unlock the 'mansession' structure. */
2650 static void mansession_unlock(struct mansession *s)
2652 ast_mutex_unlock(&s->lock);
2656 Rather than braindead on,off this now can also accept a specific int mask value
2657 or a ',' delim list of mask strings (the same as manager.conf) -anthm
2659 static int set_eventmask(struct mansession *s, const char *eventmask)
2661 int maskint = strings_to_mask(eventmask);
2663 ao2_lock(s->session);
2665 s->session->send_events = maskint;
2667 ao2_unlock(s->session);
2672 static enum ast_transport mansession_get_transport(const struct mansession *s)
2674 return s->tcptls_session->parent->tls_cfg ? AST_TRANSPORT_TLS :
2678 static void report_invalid_user(const struct mansession *s, const char *username)
2680 char session_id[32];
2681 struct ast_security_event_inval_acct_id inval_acct_id = {
2682 .common.event_type = AST_SECURITY_EVENT_INVAL_ACCT_ID,
2683 .common.version = AST_SECURITY_EVENT_INVAL_ACCT_ID_VERSION,
2684 .common.service = "AMI",
2685 .common.account_id = username,
2686 .common.session_tv = &s->session->sessionstart_tv,
2687 .common.local_addr = {
2688 .addr = &s->tcptls_session->parent->local_address,
2689 .transport = mansession_get_transport(s),
2691 .common.remote_addr = {
2692 .addr = &s->session->addr,
2693 .transport = mansession_get_transport(s),
2695 .common.session_id = session_id,
2698 snprintf(session_id, sizeof(session_id), "%p", s);
2700 ast_security_event_report(AST_SEC_EVT(&inval_acct_id));
2703 static void report_failed_acl(const struct mansession *s, const char *username)
2705 char session_id[32];
2706 struct ast_security_event_failed_acl failed_acl_event = {
2707 .common.event_type = AST_SECURITY_EVENT_FAILED_ACL,
2708 .common.version = AST_SECURITY_EVENT_FAILED_ACL_VERSION,
2709 .common.service = "AMI",
2710 .common.account_id = username,
2711 .common.session_tv = &s->session->sessionstart_tv,
2712 .common.local_addr = {
2713 .addr = &s->tcptls_session->parent->local_address,
2714 .transport = mansession_get_transport(s),
2716 .common.remote_addr = {
2717 .addr = &s->session->addr,
2718 .transport = mansession_get_transport(s),
2720 .common.session_id = session_id,
2723 snprintf(session_id, sizeof(session_id), "%p", s->session);
2725 ast_security_event_report(AST_SEC_EVT(&failed_acl_event));
2728 static void report_inval_password(const struct mansession *s, const char *username)
2730 char session_id[32];
2731 struct ast_security_event_inval_password inval_password = {
2732 .common.event_type = AST_SECURITY_EVENT_INVAL_PASSWORD,
2733 .common.version = AST_SECURITY_EVENT_INVAL_PASSWORD_VERSION,
2734 .common.service = "AMI",
2735 .common.account_id = username,
2736 .common.session_tv = &s->session->sessionstart_tv,
2737 .common.local_addr = {
2738 .addr = &s->tcptls_session->parent->local_address,
2739 .transport = mansession_get_transport(s),
2741 .common.remote_addr = {
2742 .addr = &s->session->addr,
2743 .transport = mansession_get_transport(s),
2745 .common.session_id = session_id,
2748 snprintf(session_id, sizeof(session_id), "%p", s->session);
2750 ast_security_event_report(AST_SEC_EVT(&inval_password));
2753 static void report_auth_success(const struct mansession *s)
2755 char session_id[32];
2756 struct ast_security_event_successful_auth successful_auth = {
2757 .common.event_type = AST_SECURITY_EVENT_SUCCESSFUL_AUTH,
2758 .common.version = AST_SECURITY_EVENT_SUCCESSFUL_AUTH_VERSION,
2759 .common.service = "AMI",
2760 .common.account_id = s->session->username,
2761 .common.session_tv = &s->session->sessionstart_tv,
2762 .common.local_addr = {
2763 .addr = &s->tcptls_session->parent->local_address,
2764 .transport = mansession_get_transport(s),
2766 .common.remote_addr = {
2767 .addr = &s->session->addr,
2768 .transport = mansession_get_transport(s),
2770 .common.session_id = session_id,
2773 snprintf(session_id, sizeof(session_id), "%p", s->session);
2775 ast_security_event_report(AST_SEC_EVT(&successful_auth));
2778 static void report_req_not_allowed(const struct mansession *s, const char *action)
2780 char session_id[32];
2781 char request_type[64];
2782 struct ast_security_event_req_not_allowed req_not_allowed = {
2783 .common.event_type = AST_SECURITY_EVENT_REQ_NOT_ALLOWED,
2784 .common.version = AST_SECURITY_EVENT_REQ_NOT_ALLOWED_VERSION,
2785 .common.service = "AMI",
2786 .common.account_id = s->session->username,
2787 .common.session_tv = &s->session->sessionstart_tv,
2788 .common.local_addr = {
2789 .addr = &s->tcptls_session->parent->local_address,
2790 .transport = mansession_get_transport(s),
2792 .common.remote_addr = {
2793 .addr = &s->session->addr,
2794 .transport = mansession_get_transport(s),
2796 .common.session_id = session_id,
2798 .request_type = request_type,
2801 snprintf(session_id, sizeof(session_id), "%p", s->session);
2802 snprintf(request_type, sizeof(request_type), "Action: %s", action);
2804 ast_security_event_report(AST_SEC_EVT(&req_not_allowed));
2807 static void report_req_bad_format(const struct mansession *s, const char *action)
2809 char session_id[32];
2810 char request_type[64];
2811 struct ast_security_event_req_bad_format req_bad_format = {
2812 .common.event_type = AST_SECURITY_EVENT_REQ_BAD_FORMAT,
2813 .common.version = AST_SECURITY_EVENT_REQ_BAD_FORMAT_VERSION,
2814 .common.service = "AMI",
2815 .common.account_id = s->session->username,
2816 .common.session_tv = &s->session->sessionstart_tv,
2817 .common.local_addr = {
2818 .addr = &s->tcptls_session->parent->local_address,
2819 .transport = mansession_get_transport(s),
2821 .common.remote_addr = {
2822 .addr = &s->session->addr,
2823 .transport = mansession_get_transport(s),
2825 .common.session_id = session_id,
2827 .request_type = request_type,
2830 snprintf(session_id, sizeof(session_id), "%p", s->session);
2831 snprintf(request_type, sizeof(request_type), "Action: %s", action);
2833 ast_security_event_report(AST_SEC_EVT(&req_bad_format));
2836 static void report_failed_challenge_response(const struct mansession *s,
2837 const char *response, const char *expected_response)
2839 char session_id[32];
2840 struct ast_security_event_chal_resp_failed chal_resp_failed = {
2841 .common.event_type = AST_SECURITY_EVENT_CHAL_RESP_FAILED,
2842 .common.version = AST_SECURITY_EVENT_CHAL_RESP_FAILED_VERSION,
2843 .common.service = "AMI",
2844 .common.account_id = s->session->username,
2845 .common.session_tv = &s->session->sessionstart_tv,
2846 .common.local_addr = {
2847 .addr = &s->tcptls_session->parent->local_address,
2848 .transport = mansession_get_transport(s),
2850 .common.remote_addr = {
2851 .addr = &s->session->addr,
2852 .transport = mansession_get_transport(s),
2854 .common.session_id = session_id,
2856 .challenge = s->session->challenge,
2857 .response = response,
2858 .expected_response = expected_response,
2861 snprintf(session_id, sizeof(session_id), "%p", s->session);
2863 ast_security_event_report(AST_SEC_EVT(&chal_resp_failed));
2866 static void report_session_limit(const struct mansession *s)
2868 char session_id[32];
2869 struct ast_security_event_session_limit session_limit = {
2870 .common.event_type = AST_SECURITY_EVENT_SESSION_LIMIT,
2871 .common.version = AST_SECURITY_EVENT_SESSION_LIMIT_VERSION,
2872 .common.service = "AMI",
2873 .common.account_id = s->session->username,
2874 .common.session_tv = &s->session->sessionstart_tv,
2875 .common.local_addr = {
2876 .addr = &s->tcptls_session->parent->local_address,
2877 .transport = mansession_get_transport(s),
2879 .common.remote_addr = {
2880 .addr = &s->session->addr,
2881 .transport = mansession_get_transport(s),
2883 .common.session_id = session_id,
2886 snprintf(session_id, sizeof(session_id), "%p", s->session);
2888 ast_security_event_report(AST_SEC_EVT(&session_limit));
2892 * Here we start with action_ handlers for AMI actions,
2893 * and the internal functions used by them.
2894 * Generally, the handlers are called action_foo()
2897 /* helper function for action_login() */
2898 static int authenticate(struct mansession *s, const struct message *m)
2900 const char *username = astman_get_header(m, "Username");
2901 const char *password = astman_get_header(m, "Secret");
2903 struct ast_manager_user *user = NULL;
2904 regex_t *regex_filter;
2905 struct ao2_iterator filter_iter;
2907 if (ast_strlen_zero(username)) { /* missing username */
2911 /* locate user in locked state */
2912 AST_RWLIST_WRLOCK(&users);
2914 if (!(user = get_manager_by_name_locked(username))) {
2915 report_invalid_user(s, username);
2916 ast_log(LOG_NOTICE, "%s tried to authenticate with nonexistent user '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2917 } else if (user->acl && (ast_apply_acl(user->acl, &s->session->addr, "Manager User ACL: ") == AST_SENSE_DENY)) {
2918 report_failed_acl(s, username);
2919 ast_log(LOG_NOTICE, "%s failed to pass IP ACL as '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2920 } else if (!strcasecmp(astman_get_header(m, "AuthType"), "MD5")) {
2921 const char *key = astman_get_header(m, "Key");
2922 if (!ast_strlen_zero(key) && !ast_strlen_zero(s->session->challenge) && user->secret) {
2925 char md5key[256] = "";
2926 struct MD5Context md5;
2927 unsigned char digest[16];
2930 MD5Update(&md5, (unsigned char *) s->session->challenge, strlen(s->session->challenge));
2931 MD5Update(&md5, (unsigned char *) user->secret, strlen(user->secret));
2932 MD5Final(digest, &md5);
2933 for (x = 0; x < 16; x++)
2934 len += sprintf(md5key + len, "%2.2x", (unsigned)digest[x]);
2935 if (!strcmp(md5key, key)) {
2938 report_failed_challenge_response(s, key, md5key);
2941 ast_debug(1, "MD5 authentication is not possible. challenge: '%s'\n",
2942 S_OR(s->session->challenge, ""));
2944 } else if (user->secret) {
2945 if (!strcmp(password, user->secret)) {
2948 report_inval_password(s, username);
2953 ast_log(LOG_NOTICE, "%s failed to authenticate as '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2954 AST_RWLIST_UNLOCK(&users);
2960 /* All of the user parameters are copied to the session so that in the event
2961 * of a reload and a configuration change, the session parameters are not
2963 ast_copy_string(s->session->username, username, sizeof(s->session->username));
2964 s->session->readperm = user->readperm;
2965 s->session->writeperm = user->writeperm;
2966 s->session->writetimeout = user->writetimeout;
2967 if (user->chanvars) {
2968 s->session->chanvars = ast_variables_dup(user->chanvars);
2971 filter_iter = ao2_iterator_init(user->whitefilters, 0);
2972 while ((regex_filter = ao2_iterator_next(&filter_iter))) {
2973 ao2_t_link(s->session->whitefilters, regex_filter, "add white user filter to session");
2974 ao2_t_ref(regex_filter, -1, "remove iterator ref");
2976 ao2_iterator_destroy(&filter_iter);
2978 filter_iter = ao2_iterator_init(user->blackfilters, 0);
2979 while ((regex_filter = ao2_iterator_next(&filter_iter))) {
2980 ao2_t_link(s->session->blackfilters, regex_filter, "add black user filter to session");
2981 ao2_t_ref(regex_filter, -1, "remove iterator ref");
2983 ao2_iterator_destroy(&filter_iter);
2985 s->session->sessionstart = time(NULL);
2986 s->session->sessionstart_tv = ast_tvnow();
2987 set_eventmask(s, astman_get_header(m, "Events"));
2989 report_auth_success(s);
2991 AST_RWLIST_UNLOCK(&users);
2995 static int action_ping(struct mansession *s, const struct message *m)
2997 const char *actionid = astman_get_header(m, "ActionID");
2998 struct timeval now = ast_tvnow();
3000 astman_append(s, "Response: Success\r\n");
3001 if (!ast_strlen_zero(actionid)){
3002 astman_append(s, "ActionID: %s\r\n", actionid);
3007 "Timestamp: %ld.%06lu\r\n"
3009 (long) now.tv_sec, (unsigned long) now.tv_usec);
3013 static int action_getconfig(struct mansession *s, const struct message *m)
3015 struct ast_config *cfg;
3016 const char *fn = astman_get_header(m, "Filename");
3017 const char *category = astman_get_header(m, "Category");
3020 char *cur_category = NULL;
3021 struct ast_variable *v;
3022 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3024 if (ast_strlen_zero(fn)) {
3025 astman_send_error(s, m, "Filename not specified");
3028 cfg = ast_config_load2(fn, "manager", config_flags);
3029 if (cfg == CONFIG_STATUS_FILEMISSING) {
3030 astman_send_error(s, m, "Config file not found");
3032 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3033 astman_send_error(s, m, "Config file has invalid format");
3037 astman_start_ack(s, m);
3038 while ((cur_category = ast_category_browse(cfg, cur_category))) {
3039 if (ast_strlen_zero(category) || (!ast_strlen_zero(category) && !strcmp(category, cur_category))) {
3041 astman_append(s, "Category-%06d: %s\r\n", catcount, cur_category);
3042 for (v = ast_variable_browse(cfg, cur_category); v; v = v->next) {
3043 astman_append(s, "Line-%06d-%06d: %s=%s\r\n", catcount, lineno++, v->name, v->value);
3048 if (!ast_strlen_zero(category) && catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
3049 astman_append(s, "No categories found\r\n");
3051 ast_config_destroy(cfg);
3052 astman_append(s, "\r\n");
3057 static int action_listcategories(struct mansession *s, const struct message *m)
3059 struct ast_config *cfg;
3060 const char *fn = astman_get_header(m, "Filename");
3061 char *category = NULL;
3062 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3065 if (ast_strlen_zero(fn)) {
3066 astman_send_error(s, m, "Filename not specified");
3069 if (!(cfg = ast_config_load2(fn, "manager", config_flags))) {
3070 astman_send_error(s, m, "Config file not found");
3072 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3073 astman_send_error(s, m, "Config file has invalid format");
3076 astman_start_ack(s, m);
3077 while ((category = ast_category_browse(cfg, category))) {
3078 astman_append(s, "Category-%06d: %s\r\n", catcount, category);
3081 if (catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
3082 astman_append(s, "Error: no categories found\r\n");
3084 ast_config_destroy(cfg);
3085 astman_append(s, "\r\n");
3093 /*! The amount of space in out must be at least ( 2 * strlen(in) + 1 ) */
3094 static void json_escape(char *out, const char *in)
3097 if (*in == '\\' || *in == '\"') {
3107 * \brief Append a JSON escaped string to the manager stream.
3109 * \param s AMI stream to append a string.
3110 * \param str String to append to the stream after JSON escaping it.
3114 static void astman_append_json(struct mansession *s, const char *str)
3118 buf = ast_alloca(2 * strlen(str) + 1);
3119 json_escape(buf, str);
3120 astman_append(s, "%s", buf);
3123 static int action_getconfigjson(struct mansession *s, const struct message *m)
3125 struct ast_config *cfg;
3126 const char *fn = astman_get_header(m, "Filename");
3127 char *category = NULL;
3128 struct ast_variable *v;
3130 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3132 if (ast_strlen_zero(fn)) {
3133 astman_send_error(s, m, "Filename not specified");
3137 if (!(cfg = ast_config_load2(fn, "manager", config_flags))) {
3138 astman_send_error(s, m, "Config file not found");
3140 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3141 astman_send_error(s, m, "Config file has invalid format");
3145 astman_start_ack(s, m);
3146 astman_append(s, "JSON: {");
3147 while ((category = ast_category_browse(cfg, category))) {
3150 astman_append(s, "%s\"", comma1 ? "," : "");
3151 astman_append_json(s, category);
3152 astman_append(s, "\":[");
3154 for (v = ast_variable_browse(cfg, category); v; v = v->next) {
3155 astman_append(s, "%s\"", comma2 ? "," : "");
3156 astman_append_json(s, v->name);
3157 astman_append(s, "\":\"");
3158 astman_append_json(s, v->value);
3159 astman_append(s, "\"");
3162 astman_append(s, "]");
3164 astman_append(s, "}\r\n\r\n");
3166 ast_config_destroy(cfg);
3171 /*! \brief helper function for action_updateconfig */
3172 static enum error_type handle_updates(struct mansession *s, const struct message *m, struct ast_config *cfg, const char *dfn)
3176 const char *action, *cat, *var, *value, *match, *line;
3177 struct ast_category *category;
3178 struct ast_variable *v;
3179 struct ast_str *str1 = ast_str_create(16), *str2 = ast_str_create(16);
3180 enum error_type result = 0;
3182 for (x = 0; x < 100000; x++) { /* 100000 = the max number of allowed updates + 1 */
3183 unsigned int object = 0;
3185 snprintf(hdr, sizeof(hdr), "Action-%06d", x);
3186 action = astman_get_header(m, hdr);
3187 if (ast_strlen_zero(action)) /* breaks the for loop if no action header */
3188 break; /* this could cause problems if actions come in misnumbered */
3190 snprintf(hdr, sizeof(hdr), "Cat-%06d", x);
3191 cat = astman_get_header(m, hdr);
3192 if (ast_strlen_zero(cat)) { /* every action needs a category */
3193 result = UNSPECIFIED_CATEGORY;
3197 snprintf(hdr, sizeof(hdr), "Var-%06d", x);
3198 var = astman_get_header(m, hdr);
3200 snprintf(hdr, sizeof(hdr), "Value-%06d", x);
3201 value = astman_get_header(m, hdr);
3203 if (!ast_strlen_zero(value) && *value == '>') {
3208 snprintf(hdr, sizeof(hdr), "Match-%06d", x);
3209 match = astman_get_header(m, hdr);
3211 snprintf(hdr, sizeof(hdr), "Line-%06d", x);
3212 line = astman_get_header(m, hdr);
3214 if (!strcasecmp(action, "newcat")) {
3215 if (ast_category_get(cfg,cat)) { /* check to make sure the cat doesn't */
3216 result = FAILURE_NEWCAT; /* already exist */
3219 if (!(category = ast_category_new(cat, dfn, -1))) {
3220 result = FAILURE_ALLOCATION;
3223 if (ast_strlen_zero(match)) {
3224 ast_category_append(cfg, category);
3226 ast_category_insert(cfg, category, match);
3228 } else if (!strcasecmp(action, "renamecat")) {
3229 if (ast_strlen_zero(value)) {
3230 result = UNSPECIFIED_ARGUMENT;
3233 if (!(category = ast_category_get(cfg, cat))) {
3234 result = UNKNOWN_CATEGORY;
3237 ast_category_rename(category, value);
3238 } else if (!strcasecmp(action, "delcat")) {
3239 if (ast_category_delete(cfg, cat)) {
3240 result = FAILURE_DELCAT;
3243 } else if (!strcasecmp(action, "emptycat")) {
3244 if (ast_category_empty(cfg, cat)) {
3245 result = FAILURE_EMPTYCAT;
3248 } else if (!strcasecmp(action, "update")) {
3249 if (ast_strlen_zero(var)) {
3250 result = UNSPECIFIED_ARGUMENT;
3253 if (!(category = ast_category_get(cfg,cat))) {
3254 result = UNKNOWN_CATEGORY;
3257 if (ast_variable_update(category, var, value, match, object)) {
3258 result = FAILURE_UPDATE;
3261 } else if (!strcasecmp(action, "delete")) {
3262 if ((ast_strlen_zero(var) && ast_strlen_zero(line))) {
3263 result = UNSPECIFIED_ARGUMENT;
3266 if (!(category = ast_category_get(cfg, cat))) {
3267 result = UNKNOWN_CATEGORY;
3270 if (ast_variable_delete(category, var, match, line)) {
3271 result = FAILURE_DELETE;
3274 } else if (!strcasecmp(action, "append")) {
3275 if (ast_strlen_zero(var)) {
3276 result = UNSPECIFIED_ARGUMENT;
3279 if (!(category = ast_category_get(cfg, cat))) {
3280 result = UNKNOWN_CATEGORY;
3283 if (!(v = ast_variable_new(var, value, dfn))) {
3284 result = FAILURE_ALLOCATION;
3287 if (object || (match && !strcasecmp(match, "object"))) {
3290 ast_variable_append(category, v);
3291 } else if (!strcasecmp(action, "insert")) {
3292 if (ast_strlen_zero(var) || ast_strlen_zero(line)) {
3293 result = UNSPECIFIED_ARGUMENT;
3296 if (!(category = ast_category_get(cfg, cat))) {
3297 result = UNKNOWN_CATEGORY;
3300 if (!(v = ast_variable_new(var, value, dfn))) {
3301 result = FAILURE_ALLOCATION;
3304 ast_variable_insert(category, v, line);
3307 ast_log(LOG_WARNING, "Action-%06d: %s not handled\n", x, action);
3308 result = UNKNOWN_ACTION;
3317 static int action_updateconfig(struct mansession *s, const struct message *m)
3319 struct ast_config *cfg;
3320 const char *sfn = astman_get_header(m, "SrcFilename");
3321 const char *dfn = astman_get_header(m, "DstFilename");
3323 const char *rld = astman_get_header(m, "Reload");
3324 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3325 enum error_type result;
3327 if (ast_strlen_zero(sfn) || ast_strlen_zero(dfn)) {
3328 astman_send_error(s, m, "Filename not specified");
3331 if (!(cfg = ast_config_load2(sfn, "manager", config_flags))) {
3332 astman_send_error(s, m, "Config file not found");
3334 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3335 astman_send_error(s, m, "Config file has invalid format");
3338 result = handle_updates(s, m, cfg, dfn);
3340 ast_include_rename(cfg, sfn, dfn); /* change the include references from dfn to sfn, so things match up */
3341 res = ast_config_text_file_save(dfn, cfg, "Manager");
3342 ast_config_destroy(cfg);
3344 astman_send_error(s, m, "Save of config failed");
3347 astman_send_ack(s, m, NULL);
3348 if (!ast_strlen_zero(rld)) {
3349 if (ast_true(rld)) {
3352 ast_module_reload(rld);
3355 ast_config_destroy(cfg);
3357 case UNKNOWN_ACTION:
3358 astman_send_error(s, m, "Unknown action command");
3360 case UNKNOWN_CATEGORY:
3361 astman_send_error(s, m, "Given category does not exist");
3363 case UNSPECIFIED_CATEGORY:
3364 astman_send_error(s, m, "Category not specified");
3366 case UNSPECIFIED_ARGUMENT:
3367 astman_send_error(s, m, "Problem with category, value, or line (if required)");
3369 case FAILURE_ALLOCATION:
3370 astman_send_error(s, m, "Memory allocation failure, this should not happen");
3372 case FAILURE_NEWCAT:
3373 astman_send_error(s, m, "Create category did not complete successfully");
3375 case FAILURE_DELCAT:
3376 astman_send_error(s, m, "Delete category did not complete successfully");
3378 case FAILURE_EMPTYCAT:
3379 astman_send_error(s, m, "Empty category did not complete successfully");
3381 case FAILURE_UPDATE:
3382 astman_send_error(s, m, "Update did not complete successfully");
3384 case FAILURE_DELETE:
3385 astman_send_error(s, m, "Delete did not complete successfully");
3387 case FAILURE_APPEND:
3388 astman_send_error(s, m, "Append did not complete successfully");
3395 static int action_createconfig(struct mansession *s, const struct message *m)
3398 const char *fn = astman_get_header(m, "Filename");
3399 struct ast_str *filepath = ast_str_alloca(PATH_MAX);
3400 ast_str_set(&filepath, 0, "%s/", ast_config_AST_CONFIG_DIR);
3401 ast_str_append(&filepath, 0, "%s", fn);
3403 if ((fd = open(ast_str_buffer(filepath), O_CREAT | O_EXCL, AST_FILE_MODE)) != -1) {
3405 astman_send_ack(s, m, "New configuration file created successfully");
3407 astman_send_error(s, m, strerror(errno));
3413 static int action_waitevent(struct mansession *s, const struct message *m)
3415 const char *timeouts = astman_get_header(m, "Timeout");
3419 const char *id = astman_get_header(m, "ActionID");
3422 if (!ast_strlen_zero(id)) {
3423 snprintf(idText, sizeof(idText), "ActionID: %s\r\n", id);
3428 if (!ast_strlen_zero(timeouts)) {
3429 sscanf(timeouts, "%30i", &timeout);
3433 /* XXX maybe put an upper bound, or prevent the use of 0 ? */
3436 ao2_lock(s->session);
3437 if (s->session->waiting_thread != AST_PTHREADT_NULL) {
3438 pthread_kill(s->session->waiting_thread, SIGURG);
3441 if (s->session->managerid) { /* AMI-over-HTTP session */
3443 * Make sure the timeout is within the expire time of the session,
3444 * as the client will likely abort the request if it does not see
3445 * data coming after some amount of time.
3447 time_t now = time(NULL);
3448 int max = s->session->sessiontimeout - now - 10;
3450 if (max < 0) { /* We are already late. Strange but possible. */
3453 if (timeout < 0 || timeout > max) {
3456 if (!s->session->send_events) { /* make sure we record events */
3457 s->session->send_events = -1;
3460 ao2_unlock(s->session);
3462 /* XXX should this go inside the lock ? */
3463 s->session->waiting_thread = pthread_self(); /* let new events wake up this thread */
3464 ast_debug(1, "Starting waiting for an event!\n");
3466 for (x = 0; x < timeout || timeout < 0; x++) {
3467 ao2_lock(s->session);
3468 if (AST_RWLIST_NEXT(s->session->last_ev, eq_next)) {
3471 /* We can have multiple HTTP session point to the same mansession entry.
3472 * The way we deal with it is not very nice: newcomers kick out th