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 <parameter name="Module" required="true">
851 <para>Asterisk module name (not including extension).</para>
855 <para>Checks if Asterisk module is loaded. Will return Success/Failure.
856 For success returns, the module revision number is included.</para>
859 <manager name="AOCMessage" language="en_US">
861 Generate an Advice of Charge message on a channel.
864 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
865 <parameter name="Channel" required="true">
866 <para>Channel name to generate the AOC message on.</para>
868 <parameter name="ChannelPrefix">
869 <para>Partial channel prefix. By using this option one can match the beginning part
870 of a channel name without having to put the entire name in. For example
871 if a channel name is SIP/snom-00000001 and this value is set to SIP/snom, then
872 that channel matches and the message will be sent. Note however that only
873 the first matched channel has the message sent on it. </para>
875 <parameter name="MsgType" required="true">
876 <para>Defines what type of AOC message to create, AOC-D or AOC-E</para>
882 <parameter name="ChargeType" required="true">
883 <para>Defines what kind of charge this message represents.</para>
887 <enum name="Currency" />
891 <parameter name="UnitAmount(0)">
892 <para>This represents the amount of units charged. The ETSI AOC standard specifies that
893 this value along with the optional UnitType value are entries in a list. To accommodate this
894 these values take an index value starting at 0 which can be used to generate this list of
895 unit entries. For Example, If two unit entires were required this could be achieved by setting the
896 paramter UnitAmount(0)=1234 and UnitAmount(1)=5678. Note that UnitAmount at index 0 is
897 required when ChargeType=Unit, all other entries in the list are optional.
900 <parameter name="UnitType(0)">
901 <para>Defines the type of unit. ETSI AOC standard specifies this as an integer
902 value between 1 and 16, but this value is left open to accept any positive
903 integer. Like the UnitAmount parameter, this value represents a list entry
904 and has an index parameter that starts at 0.
907 <parameter name="CurrencyName">
908 <para>Specifies the currency's name. Note that this value is truncated after 10 characters.</para>
910 <parameter name="CurrencyAmount">
911 <para>Specifies the charge unit amount as a positive integer. This value is required
912 when ChargeType==Currency.</para>
914 <parameter name="CurrencyMultiplier">
915 <para>Specifies the currency multiplier. This value is required when ChargeType==Currency.</para>
917 <enum name="OneThousandth" />
918 <enum name="OneHundredth" />
919 <enum name="OneTenth" />
922 <enum name="Hundred" />
923 <enum name="Thousand" />
926 <parameter name="TotalType" default="Total">
927 <para>Defines what kind of AOC-D total is represented.</para>
929 <enum name="Total" />
930 <enum name="SubTotal" />
933 <parameter name="AOCBillingId">
934 <para>Represents a billing ID associated with an AOC-D or AOC-E message. Note
935 that only the first 3 items of the enum are valid AOC-D billing IDs</para>
937 <enum name="Normal" />
938 <enum name="ReverseCharge" />
939 <enum name="CreditCard" />
940 <enum name="CallFwdUnconditional" />
941 <enum name="CallFwdBusy" />
942 <enum name="CallFwdNoReply" />
943 <enum name="CallDeflection" />
944 <enum name="CallTransfer" />
947 <parameter name="ChargingAssociationId">
948 <para>Charging association identifier. This is optional for AOC-E and can be
949 set to any value between -32768 and 32767</para>
951 <parameter name="ChargingAssociationNumber">
952 <para>Represents the charging association party number. This value is optional
955 <parameter name="ChargingAssociationPlan">
956 <para>Integer representing the charging plan associated with the ChargingAssociationNumber.
957 The value is bits 7 through 1 of the Q.931 octet containing the type-of-number and
958 numbering-plan-identification fields.</para>
962 <para>Generates an AOC-D or AOC-E message on a channel.</para>
965 <function name="AMI_CLIENT" language="en_US">
967 Checks attributes of manager accounts
970 <parameter name="loginname" required="true">
971 <para>Login name, specified in manager.conf</para>
973 <parameter name="field" required="true">
974 <para>The manager account attribute to return</para>
976 <enum name="sessions"><para>The number of sessions for this AMI account</para></enum>
982 Currently, the only supported parameter is "sessions" which will return the current number of
983 active sessions for this AMI account.
987 <manager name="Filter" language="en_US">
989 Dynamically add filters for the current manager session.
992 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
993 <parameter name="Operation">
996 <para>Add a filter.</para>
1000 <parameter name="Filter">
1001 <para>Filters can be whitelist or blacklist</para>
1002 <para>Example whitelist filter: "Event: Newchannel"</para>
1003 <para>Example blacklist filter: "!Channel: DAHDI.*"</para>
1004 <para>This filter option is used to whitelist or blacklist events per user to be
1005 reported with regular expressions and are allowed if both the regex matches
1006 and the user has read access as defined in manager.conf. Filters are assumed to be for whitelisting
1007 unless preceeded by an exclamation point, which marks it as being black.
1008 Evaluation of the filters is as follows:</para>
1009 <para>- If no filters are configured all events are reported as normal.</para>
1010 <para>- If there are white filters only: implied black all filter processed first, then white filters.</para>
1011 <para>- If there are black filters only: implied white all filter processed first, then black filters.</para>
1012 <para>- If there are both white and black filters: implied black all filter processed first, then white
1013 filters, and lastly black filters.</para>
1017 <para>The filters added are only used for the current session.
1018 Once the connection is closed the filters are removed.</para>
1019 <para>This comand requires the system permission because
1020 this command can be used to create filters that may bypass
1021 filters defined in manager.conf</para>
1024 <manager name="FilterList" language="en_US">
1026 Show current event filters for this session
1029 <para>The filters displayed are for the current session. Only those filters defined in
1030 manager.conf will be present upon starting a new session.</para>
1033 <manager name="BlindTransfer" language="en_US">
1035 Blind transfer channel(s) to the given destination
1038 <parameter name="Channel" required="true">
1040 <parameter name="Context">
1042 <parameter name="Exten">
1046 <para>Redirect all channels currently bridged to the specified channel to the specified destination.</para>
1049 <ref type="manager">Redirect</ref>
1054 /*! \addtogroup Group_AMI AMI functions
1062 UNSPECIFIED_CATEGORY,
1063 UNSPECIFIED_ARGUMENT,
1073 enum add_filter_result {
1075 FILTER_ALLOC_FAILED,
1076 FILTER_COMPILE_FAIL,
1080 * Linked list of events.
1081 * Global events are appended to the list by append_event().
1082 * The usecount is the number of stored pointers to the element,
1083 * excluding the list pointers. So an element that is only in
1084 * the list has a usecount of 0, not 1.
1086 * Clients have a pointer to the last event processed, and for each
1087 * of these clients we track the usecount of the elements.
1088 * If we have a pointer to an entry in the list, it is safe to navigate
1089 * it forward because elements will not be deleted, but only appended.
1090 * The worst that can happen is seeing the pointer still NULL.
1092 * When the usecount of an element drops to 0, and the element is the
1093 * first in the list, we can remove it. Removal is done within the
1094 * main thread, which is woken up for the purpose.
1096 * For simplicity of implementation, we make sure the list is never empty.
1099 int usecount; /*!< # of clients who still need the event */
1101 unsigned int seq; /*!< sequence number */
1102 struct timeval tv; /*!< When event was allocated */
1103 AST_RWLIST_ENTRY(eventqent) eq_next;
1104 char eventdata[1]; /*!< really variable size, allocated by append_event() */
1107 static AST_RWLIST_HEAD_STATIC(all_events, eventqent);
1109 static int displayconnects = 1;
1110 static int allowmultiplelogin = 1;
1111 static int timestampevents;
1112 static int httptimeout = 60;
1113 static int broken_events_action = 0;
1114 static int manager_enabled = 0;
1115 static int subscribed = 0;
1116 static int webmanager_enabled = 0;
1117 static int manager_debug = 0; /*!< enable some debugging code in the manager */
1118 static int authtimeout;
1119 static int authlimit;
1120 static char *manager_channelvars;
1122 #define DEFAULT_REALM "asterisk"
1123 static char global_realm[MAXHOSTNAMELEN]; /*!< Default realm */
1125 static int block_sockets;
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) {
1773 * Issuing shutdown() is necessary here to avoid a race
1774 * condition where the last data written may not appear
1775 * in the the TCP stream. See ASTERISK-23548
1778 if (session->fd != -1) {
1779 shutdown(session->fd, SHUT_RDWR);
1784 ast_atomic_fetchadd_int(&eqe->usecount, -1);
1786 if (session->chanvars) {
1787 ast_variables_destroy(session->chanvars);
1790 if (session->whitefilters) {
1791 ao2_t_ref(session->whitefilters, -1, "decrement ref for white container, should be last one");
1794 if (session->blackfilters) {
1795 ao2_t_ref(session->blackfilters, -1, "decrement ref for black container, should be last one");
1799 /*! \brief Allocate manager session structure and add it to the list of sessions */
1800 static struct mansession_session *build_mansession(const struct ast_sockaddr *addr)
1802 struct ao2_container *sessions;
1803 struct mansession_session *newsession;
1805 newsession = ao2_alloc(sizeof(*newsession), session_destructor);
1810 newsession->whitefilters = ao2_container_alloc(1, NULL, NULL);
1811 newsession->blackfilters = ao2_container_alloc(1, NULL, NULL);
1812 if (!newsession->whitefilters || !newsession->blackfilters) {
1813 ao2_ref(newsession, -1);
1817 newsession->fd = -1;
1818 newsession->waiting_thread = AST_PTHREADT_NULL;
1819 newsession->writetimeout = 100;
1820 newsession->send_events = -1;
1821 ast_sockaddr_copy(&newsession->addr, addr);
1823 sessions = ao2_global_obj_ref(mgr_sessions);
1825 ao2_link(sessions, newsession);
1826 ao2_ref(sessions, -1);
1832 static int mansession_cmp_fn(void *obj, void *arg, int flags)
1834 struct mansession_session *s = obj;
1836 return !strcasecmp(s->username, str) ? CMP_MATCH : 0;
1839 static void session_destroy(struct mansession_session *s)
1841 struct ao2_container *sessions;
1843 sessions = ao2_global_obj_ref(mgr_sessions);
1845 ao2_unlink(sessions, s);
1846 ao2_ref(sessions, -1);
1848 unref_mansession(s);
1852 static int check_manager_session_inuse(const char *name)
1854 struct ao2_container *sessions;
1855 struct mansession_session *session;
1858 sessions = ao2_global_obj_ref(mgr_sessions);
1860 session = ao2_find(sessions, (char *) name, 0);
1861 ao2_ref(sessions, -1);
1863 unref_mansession(session);
1872 * lookup an entry in the list of registered users.
1873 * must be called with the list lock held.
1875 static struct ast_manager_user *get_manager_by_name_locked(const char *name)
1877 struct ast_manager_user *user = NULL;
1879 AST_RWLIST_TRAVERSE(&users, user, list) {
1880 if (!strcasecmp(user->username, name)) {
1888 /*! \brief Get displayconnects config option.
1889 * \param session manager session to get parameter from.
1890 * \return displayconnects config option value.
1892 static int manager_displayconnects(struct mansession_session *session)
1894 struct ast_manager_user *user = NULL;
1897 AST_RWLIST_RDLOCK(&users);
1898 if ((user = get_manager_by_name_locked(session->username))) {
1899 ret = user->displayconnects;
1901 AST_RWLIST_UNLOCK(&users);
1906 static char *handle_showmancmd(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1908 struct manager_action *cur;
1909 struct ast_str *authority;
1913 char syntax_title[64], description_title[64], synopsis_title[64], seealso_title[64], arguments_title[64], privilege_title[64];
1918 e->command = "manager show command";
1920 "Usage: manager show command <actionname> [<actionname> [<actionname> [...]]]\n"
1921 " Shows the detailed description for a specific Asterisk manager interface command.\n";
1924 l = strlen(a->word);
1926 AST_RWLIST_RDLOCK(&actions);
1927 AST_RWLIST_TRAVERSE(&actions, cur, list) {
1928 if (!strncasecmp(a->word, cur->action, l) && ++which > a->n) {
1929 ret = ast_strdup(cur->action);
1930 break; /* make sure we exit even if ast_strdup() returns NULL */
1933 AST_RWLIST_UNLOCK(&actions);
1936 authority = ast_str_alloca(80);
1938 return CLI_SHOWUSAGE;
1942 /* setup the titles */
1943 term_color(synopsis_title, "[Synopsis]\n", COLOR_MAGENTA, 0, 40);
1944 term_color(description_title, "[Description]\n", COLOR_MAGENTA, 0, 40);
1945 term_color(syntax_title, "[Syntax]\n", COLOR_MAGENTA, 0, 40);
1946 term_color(seealso_title, "[See Also]\n", COLOR_MAGENTA, 0, 40);
1947 term_color(arguments_title, "[Arguments]\n", COLOR_MAGENTA, 0, 40);
1948 term_color(privilege_title, "[Privilege]\n", COLOR_MAGENTA, 0, 40);
1951 AST_RWLIST_RDLOCK(&actions);
1952 AST_RWLIST_TRAVERSE(&actions, cur, list) {
1953 for (num = 3; num < a->argc; num++) {
1954 if (!strcasecmp(cur->action, a->argv[num])) {
1955 authority_to_str(cur->authority, &authority);
1958 if (cur->docsrc == AST_XML_DOC) {
1959 char *syntax = ast_xmldoc_printable(S_OR(cur->syntax, "Not available"), 1);
1960 char *synopsis = ast_xmldoc_printable(S_OR(cur->synopsis, "Not available"), 1);
1961 char *description = ast_xmldoc_printable(S_OR(cur->description, "Not available"), 1);
1962 char *arguments = ast_xmldoc_printable(S_OR(cur->arguments, "Not available"), 1);
1963 char *seealso = ast_xmldoc_printable(S_OR(cur->seealso, "Not available"), 1);
1964 char *privilege = ast_xmldoc_printable(S_OR(authority->str, "Not available"), 1);
1965 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",
1966 syntax_title, syntax,
1967 synopsis_title, synopsis,
1968 description_title, description,
1969 arguments_title, arguments,
1970 seealso_title, seealso,
1971 privilege_title, privilege);
1975 ast_cli(a->fd, "Action: %s\nSynopsis: %s\nPrivilege: %s\n%s\n",
1976 cur->action, cur->synopsis,
1978 S_OR(cur->description, ""));
1983 AST_RWLIST_UNLOCK(&actions);
1988 static char *handle_mandebug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1992 e->command = "manager set debug [on|off]";
1993 e->usage = "Usage: manager set debug [on|off]\n Show, enable, disable debugging of the manager code.\n";
2000 ast_cli(a->fd, "manager debug is %s\n", manager_debug? "on" : "off");
2001 } else if (a->argc == 4) {
2002 if (!strcasecmp(a->argv[3], "on")) {
2004 } else if (!strcasecmp(a->argv[3], "off")) {
2007 return CLI_SHOWUSAGE;
2013 static char *handle_showmanager(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2015 struct ast_manager_user *user = NULL;
2018 struct ast_str *rauthority = ast_str_alloca(128);
2019 struct ast_str *wauthority = ast_str_alloca(128);
2020 struct ast_variable *v;
2024 e->command = "manager show user";
2026 " Usage: manager show user <user>\n"
2027 " Display all information related to the manager user specified.\n";
2030 l = strlen(a->word);
2035 AST_RWLIST_RDLOCK(&users);
2036 AST_RWLIST_TRAVERSE(&users, user, list) {
2037 if ( !strncasecmp(a->word, user->username, l) && ++which > a->n ) {
2038 ret = ast_strdup(user->username);
2042 AST_RWLIST_UNLOCK(&users);
2047 return CLI_SHOWUSAGE;
2050 AST_RWLIST_RDLOCK(&users);
2052 if (!(user = get_manager_by_name_locked(a->argv[3]))) {
2053 ast_cli(a->fd, "There is no manager called %s\n", a->argv[3]);
2054 AST_RWLIST_UNLOCK(&users);
2058 ast_cli(a->fd, "\n");
2065 " displayconnects: %s\n"
2066 "allowmultiplelogin: %s\n",
2067 (user->username ? user->username : "(N/A)"),
2068 (user->secret ? "<Set>" : "(N/A)"),
2069 ((user->acl && !ast_acl_list_is_empty(user->acl)) ? "yes" : "no"),
2070 user_authority_to_str(user->readperm, &rauthority),
2071 user_authority_to_str(user->writeperm, &wauthority),
2072 (user->displayconnects ? "yes" : "no"),
2073 (user->allowmultiplelogin ? "yes" : "no"));
2074 ast_cli(a->fd, " Variables: \n");
2075 for (v = user->chanvars ; v ; v = v->next) {
2076 ast_cli(a->fd, " %s = %s\n", v->name, v->value);
2079 AST_RWLIST_UNLOCK(&users);
2084 static char *handle_showmanagers(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2086 struct ast_manager_user *user = NULL;
2090 e->command = "manager show users";
2092 "Usage: manager show users\n"
2093 " Prints a listing of all managers that are currently configured on that\n"
2100 return CLI_SHOWUSAGE;
2103 AST_RWLIST_RDLOCK(&users);
2105 /* If there are no users, print out something along those lines */
2106 if (AST_RWLIST_EMPTY(&users)) {
2107 ast_cli(a->fd, "There are no manager users.\n");
2108 AST_RWLIST_UNLOCK(&users);
2112 ast_cli(a->fd, "\nusername\n--------\n");
2114 AST_RWLIST_TRAVERSE(&users, user, list) {
2115 ast_cli(a->fd, "%s\n", user->username);
2119 AST_RWLIST_UNLOCK(&users);
2121 ast_cli(a->fd,"-------------------\n"
2122 "%d manager users configured.\n", count_amu);
2126 /*! \brief CLI command manager list commands */
2127 static char *handle_showmancmds(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2129 struct manager_action *cur;
2131 int space_remaining;
2132 #define HSMC_FORMAT " %-*.*s %-.*s\n"
2135 e->command = "manager show commands";
2137 "Usage: manager show commands\n"
2138 " Prints a listing of all the available Asterisk manager interface commands.\n";
2144 AST_RWLIST_RDLOCK(&actions);
2145 AST_RWLIST_TRAVERSE(&actions, cur, list) {
2146 int incoming_len = strlen(cur->action);
2147 if (incoming_len > name_len) {
2148 name_len = incoming_len;
2152 space_remaining = MGR_SHOW_TERMINAL_WIDTH - name_len - 4;
2153 if (space_remaining < 0) {
2154 space_remaining = 0;
2157 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, "Action", space_remaining, "Synopsis");
2158 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, "------", space_remaining, "--------");
2160 AST_RWLIST_TRAVERSE(&actions, cur, list) {
2161 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, cur->action, space_remaining, cur->synopsis);
2163 AST_RWLIST_UNLOCK(&actions);
2168 /*! \brief CLI command manager list connected */
2169 static char *handle_showmanconn(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2171 struct ao2_container *sessions;
2172 struct mansession_session *session;
2173 time_t now = time(NULL);
2174 #define HSMCONN_FORMAT1 " %-15.15s %-55.55s %-10.10s %-10.10s %-8.8s %-8.8s %-5.5s %-5.5s\n"
2175 #define HSMCONN_FORMAT2 " %-15.15s %-55.55s %-10d %-10d %-8d %-8d %-5.5d %-5.5d\n"
2177 struct ao2_iterator i;
2181 e->command = "manager show connected";
2183 "Usage: manager show connected\n"
2184 " Prints a listing of the users that are currently connected to the\n"
2185 "Asterisk manager interface.\n";
2191 ast_cli(a->fd, HSMCONN_FORMAT1, "Username", "IP Address", "Start", "Elapsed", "FileDes", "HttpCnt", "Read", "Write");
2193 sessions = ao2_global_obj_ref(mgr_sessions);
2195 i = ao2_iterator_init(sessions, 0);
2196 ao2_ref(sessions, -1);
2197 while ((session = ao2_iterator_next(&i))) {
2199 ast_cli(a->fd, HSMCONN_FORMAT2, session->username,
2200 ast_sockaddr_stringify_addr(&session->addr),
2201 (int) (session->sessionstart),
2202 (int) (now - session->sessionstart),
2206 session->writeperm);
2208 ao2_unlock(session);
2209 unref_mansession(session);
2211 ao2_iterator_destroy(&i);
2213 ast_cli(a->fd, "%d users connected.\n", count);
2218 /*! \brief CLI command manager list eventq */
2219 /* Should change to "manager show connected" */
2220 static char *handle_showmaneventq(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2222 struct eventqent *s;
2225 e->command = "manager show eventq";
2227 "Usage: manager show eventq\n"
2228 " Prints a listing of all events pending in the Asterisk manger\n"
2234 AST_RWLIST_RDLOCK(&all_events);
2235 AST_RWLIST_TRAVERSE(&all_events, s, eq_next) {
2236 ast_cli(a->fd, "Usecount: %d\n", s->usecount);
2237 ast_cli(a->fd, "Category: %d\n", s->category);
2238 ast_cli(a->fd, "Event:\n%s", s->eventdata);
2240 AST_RWLIST_UNLOCK(&all_events);
2245 /*! \brief CLI command manager reload */
2246 static char *handle_manager_reload(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2250 e->command = "manager reload";
2252 "Usage: manager reload\n"
2253 " Reloads the manager configuration.\n";
2259 return CLI_SHOWUSAGE;
2265 static struct eventqent *advance_event(struct eventqent *e)
2267 struct eventqent *next;
2269 AST_RWLIST_RDLOCK(&all_events);
2270 if ((next = AST_RWLIST_NEXT(e, eq_next))) {
2271 ast_atomic_fetchadd_int(&next->usecount, 1);
2272 ast_atomic_fetchadd_int(&e->usecount, -1);
2274 AST_RWLIST_UNLOCK(&all_events);
2278 #define GET_HEADER_FIRST_MATCH 0
2279 #define GET_HEADER_LAST_MATCH 1
2280 #define GET_HEADER_SKIP_EMPTY 2
2283 * \brief Return a matching header value.
2286 * Generic function to return either the first or the last
2287 * matching header from a list of variables, possibly skipping
2290 * \note At the moment there is only one use of this function in
2291 * this file, so we make it static.
2293 * \note Never returns NULL.
2295 static const char *__astman_get_header(const struct message *m, char *var, int mode)
2297 int x, l = strlen(var);
2298 const char *result = "";
2304 for (x = 0; x < m->hdrcount; x++) {
2305 const char *h = m->headers[x];
2306 if (!strncasecmp(var, h, l) && h[l] == ':') {
2307 const char *value = h + l + 1;
2308 value = ast_skip_blanks(value); /* ignore leading spaces in the value */
2309 /* found a potential candidate */
2310 if ((mode & GET_HEADER_SKIP_EMPTY) && ast_strlen_zero(value)) {
2311 continue; /* not interesting */
2313 if (mode & GET_HEADER_LAST_MATCH) {
2314 result = value; /* record the last match so far */
2325 * \brief Return the first matching variable from an array.
2327 * \note This is the legacy function and is implemented in
2328 * therms of __astman_get_header().
2330 * \note Never returns NULL.
2332 const char *astman_get_header(const struct message *m, char *var)
2334 return __astman_get_header(m, var, GET_HEADER_FIRST_MATCH);
2339 * \brief Process one "Variable:" header value string.
2341 * \param head Current list of AMI variables to get new values added.
2342 * \param hdr_val Header value string to process.
2344 * \return New variable list head.
2346 static struct ast_variable *man_do_variable_value(struct ast_variable *head, const char *hdr_val)
2349 AST_DECLARE_APP_ARGS(args,
2350 AST_APP_ARG(vars)[64];
2353 hdr_val = ast_skip_blanks(hdr_val); /* ignore leading spaces in the value */
2354 parse = ast_strdupa(hdr_val);
2356 /* Break the header value string into name=val pair items. */
2357 AST_STANDARD_APP_ARGS(args, parse);
2361 /* Process each name=val pair item. */
2362 for (y = 0; y < args.argc; y++) {
2363 struct ast_variable *cur;
2367 if (!args.vars[y]) {
2370 var = val = args.vars[y];
2373 /* XXX We may wish to trim whitespace from the strings. */
2374 if (!val || ast_strlen_zero(var)) {
2378 /* Create new variable list node and prepend it to the list. */
2379 cur = ast_variable_new(var, val, "");
2390 struct ast_variable *astman_get_variables(const struct message *m)
2394 struct ast_variable *head = NULL;
2396 static const char var_hdr[] = "Variable:";
2398 /* Process all "Variable:" headers. */
2399 varlen = strlen(var_hdr);
2400 for (x = 0; x < m->hdrcount; x++) {
2401 if (strncasecmp(var_hdr, m->headers[x], varlen)) {
2404 head = man_do_variable_value(head, m->headers[x] + varlen);
2410 /*! \brief access for hooks to send action messages to ami */
2411 int ast_hook_send_action(struct manager_custom_hook *hook, const char *msg)
2415 struct manager_action *act_found;
2416 struct mansession s = {.session = NULL, };
2417 struct message m = { 0 };
2427 /* Create our own copy of the AMI action msg string. */
2428 src = dup_str = ast_strdup(msg);
2433 /* convert msg string to message struct */
2434 curlen = strlen(src);
2435 for (x = 0; x < curlen; x++) {
2436 int cr; /* set if we have \r */
2437 if (src[x] == '\r' && x+1 < curlen && src[x+1] == '\n')
2438 cr = 2; /* Found. Update length to include \r\n */
2439 else if (src[x] == '\n')
2440 cr = 1; /* also accept \n only */
2443 /* don't keep empty lines */
2444 if (x && m.hdrcount < ARRAY_LEN(m.headers)) {
2445 /* ... but trim \r\n and terminate the header string */
2447 m.headers[m.hdrcount++] = src;
2450 curlen -= x; /* remaining size */
2451 src += x; /* update pointer */
2452 x = -1; /* reset loop */
2455 action = astman_get_header(&m, "Action");
2456 if (strcasecmp(action, "login")) {
2457 act_found = action_find(action);
2460 * we have to simulate a session for this action request
2461 * to be able to pass it down for processing
2462 * This is necessary to meet the previous design of manager.c
2465 s.f = (void*)1; /* set this to something so our request will make it through all functions that test it*/
2467 ao2_lock(act_found);
2468 if (act_found->registered && act_found->func) {
2469 if (act_found->module) {
2470 ast_module_ref(act_found->module);
2472 ao2_unlock(act_found);
2473 ret = act_found->func(&s, &m);
2474 ao2_lock(act_found);
2475 if (act_found->module) {
2476 ast_module_unref(act_found->module);
2481 ao2_unlock(act_found);
2482 ao2_t_ref(act_found, -1, "done with found action object");
2491 * helper function to send a string to the socket.
2492 * Return -1 on error (e.g. buffer full).
2494 static int send_string(struct mansession *s, char *string)
2497 FILE *f = s->f ? s->f : s->session->f;
2498 int fd = s->f ? s->fd : s->session->fd;
2500 /* It's a result from one of the hook's action invocation */
2503 * to send responses, we're using the same function
2504 * as for receiving events. We call the event "HookResponse"
2506 s->hook->helper(EVENT_FLAG_HOOKRESPONSE, "HookResponse", string);
2510 if ((res = ast_careful_fwrite(f, fd, string, strlen(string), s->session->writetimeout))) {
2518 * \brief thread local buffer for astman_append
2520 * \note This can not be defined within the astman_append() function
2521 * because it declares a couple of functions that get used to
2522 * initialize the thread local storage key.
2524 AST_THREADSTORAGE(astman_append_buf);
2526 AST_THREADSTORAGE(userevent_buf);
2528 /*! \brief initial allocated size for the astman_append_buf and astman_send_*_va */
2529 #define ASTMAN_APPEND_BUF_INITSIZE 256
2532 * utility functions for creating AMI replies
2534 void astman_append(struct mansession *s, const char *fmt, ...)
2537 struct ast_str *buf;
2539 if (!(buf = ast_str_thread_get(&astman_append_buf, ASTMAN_APPEND_BUF_INITSIZE))) {
2544 ast_str_set_va(&buf, 0, fmt, ap);
2547 if (s->f != NULL || s->session->f != NULL) {
2548 send_string(s, ast_str_buffer(buf));
2550 ast_verbose("fd == -1 in astman_append, should not happen\n");
2554 /*! \note NOTE: XXX this comment is unclear and possibly wrong.
2555 Callers of astman_send_error(), astman_send_response() or astman_send_ack() must EITHER
2556 hold the session lock _or_ be running in an action callback (in which case s->session->busy will
2557 be non-zero). In either of these cases, there is no need to lock-protect the session's
2558 fd, since no other output will be sent (events will be queued), and no input will
2559 be read until either the current action finishes or get_input() obtains the session
2563 /*! \todo XXX MSG_MOREDATA should go to a header file. */
2564 #define MSG_MOREDATA ((char *)astman_send_response)
2566 /*! \brief send a response with an optional message,
2567 * and terminate it with an empty line.
2568 * m is used only to grab the 'ActionID' field.
2570 * Use the explicit constant MSG_MOREDATA to remove the empty line.
2571 * XXX MSG_MOREDATA should go to a header file.
2573 static void astman_send_response_full(struct mansession *s, const struct message *m, char *resp, char *msg, char *listflag)
2575 const char *id = astman_get_header(m, "ActionID");
2577 astman_append(s, "Response: %s\r\n", resp);
2578 if (!ast_strlen_zero(id)) {
2579 astman_append(s, "ActionID: %s\r\n", id);
2582 astman_append(s, "EventList: %s\r\n", listflag); /* Start, complete, cancelled */
2584 if (msg == MSG_MOREDATA) {
2587 astman_append(s, "Message: %s\r\n\r\n", msg);
2589 astman_append(s, "\r\n");
2593 void astman_send_response(struct mansession *s, const struct message *m, char *resp, char *msg)
2595 astman_send_response_full(s, m, resp, msg, NULL);
2598 void astman_send_error(struct mansession *s, const struct message *m, char *error)
2600 astman_send_response_full(s, m, "Error", error, NULL);
2603 void astman_send_error_va(struct mansession *s, const struct message *m, const char *fmt, ...)
2606 struct ast_str *buf;
2609 if (!(buf = ast_str_thread_get(&astman_append_buf, ASTMAN_APPEND_BUF_INITSIZE))) {
2614 ast_str_set_va(&buf, 0, fmt, ap);
2617 /* astman_append will use the same underlying buffer, so copy the message out
2618 * before sending the response */
2619 msg = ast_str_buffer(buf);
2621 msg = ast_strdupa(msg);
2623 astman_send_response_full(s, m, "Error", msg, NULL);
2626 void astman_send_ack(struct mansession *s, const struct message *m, char *msg)
2628 astman_send_response_full(s, m, "Success", msg, NULL);
2631 static void astman_start_ack(struct mansession *s, const struct message *m)
2633 astman_send_response_full(s, m, "Success", MSG_MOREDATA, NULL);
2636 void astman_send_listack(struct mansession *s, const struct message *m, char *msg, char *listflag)
2638 astman_send_response_full(s, m, "Success", msg, listflag);
2641 /*! \brief Lock the 'mansession' structure. */
2642 static void mansession_lock(struct mansession *s)
2644 ast_mutex_lock(&s->lock);
2647 /*! \brief Unlock the 'mansession' structure. */
2648 static void mansession_unlock(struct mansession *s)
2650 ast_mutex_unlock(&s->lock);
2654 Rather than braindead on,off this now can also accept a specific int mask value
2655 or a ',' delim list of mask strings (the same as manager.conf) -anthm
2657 static int set_eventmask(struct mansession *s, const char *eventmask)
2659 int maskint = strings_to_mask(eventmask);
2661 ao2_lock(s->session);
2663 s->session->send_events = maskint;
2665 ao2_unlock(s->session);
2670 static enum ast_transport mansession_get_transport(const struct mansession *s)
2672 return s->tcptls_session->parent->tls_cfg ? AST_TRANSPORT_TLS :
2676 static void report_invalid_user(const struct mansession *s, const char *username)
2678 char session_id[32];
2679 struct ast_security_event_inval_acct_id inval_acct_id = {
2680 .common.event_type = AST_SECURITY_EVENT_INVAL_ACCT_ID,
2681 .common.version = AST_SECURITY_EVENT_INVAL_ACCT_ID_VERSION,
2682 .common.service = "AMI",
2683 .common.account_id = username,
2684 .common.session_tv = &s->session->sessionstart_tv,
2685 .common.local_addr = {
2686 .addr = &s->tcptls_session->parent->local_address,
2687 .transport = mansession_get_transport(s),
2689 .common.remote_addr = {
2690 .addr = &s->session->addr,
2691 .transport = mansession_get_transport(s),
2693 .common.session_id = session_id,
2696 snprintf(session_id, sizeof(session_id), "%p", s);
2698 ast_security_event_report(AST_SEC_EVT(&inval_acct_id));
2701 static void report_failed_acl(const struct mansession *s, const char *username)
2703 char session_id[32];
2704 struct ast_security_event_failed_acl failed_acl_event = {
2705 .common.event_type = AST_SECURITY_EVENT_FAILED_ACL,
2706 .common.version = AST_SECURITY_EVENT_FAILED_ACL_VERSION,
2707 .common.service = "AMI",
2708 .common.account_id = username,
2709 .common.session_tv = &s->session->sessionstart_tv,
2710 .common.local_addr = {
2711 .addr = &s->tcptls_session->parent->local_address,
2712 .transport = mansession_get_transport(s),
2714 .common.remote_addr = {
2715 .addr = &s->session->addr,
2716 .transport = mansession_get_transport(s),
2718 .common.session_id = session_id,
2721 snprintf(session_id, sizeof(session_id), "%p", s->session);
2723 ast_security_event_report(AST_SEC_EVT(&failed_acl_event));
2726 static void report_inval_password(const struct mansession *s, const char *username)
2728 char session_id[32];
2729 struct ast_security_event_inval_password inval_password = {
2730 .common.event_type = AST_SECURITY_EVENT_INVAL_PASSWORD,
2731 .common.version = AST_SECURITY_EVENT_INVAL_PASSWORD_VERSION,
2732 .common.service = "AMI",
2733 .common.account_id = username,
2734 .common.session_tv = &s->session->sessionstart_tv,
2735 .common.local_addr = {
2736 .addr = &s->tcptls_session->parent->local_address,
2737 .transport = mansession_get_transport(s),
2739 .common.remote_addr = {
2740 .addr = &s->session->addr,
2741 .transport = mansession_get_transport(s),
2743 .common.session_id = session_id,
2746 snprintf(session_id, sizeof(session_id), "%p", s->session);
2748 ast_security_event_report(AST_SEC_EVT(&inval_password));
2751 static void report_auth_success(const struct mansession *s)
2753 char session_id[32];
2754 struct ast_security_event_successful_auth successful_auth = {
2755 .common.event_type = AST_SECURITY_EVENT_SUCCESSFUL_AUTH,
2756 .common.version = AST_SECURITY_EVENT_SUCCESSFUL_AUTH_VERSION,
2757 .common.service = "AMI",
2758 .common.account_id = s->session->username,
2759 .common.session_tv = &s->session->sessionstart_tv,
2760 .common.local_addr = {
2761 .addr = &s->tcptls_session->parent->local_address,
2762 .transport = mansession_get_transport(s),
2764 .common.remote_addr = {
2765 .addr = &s->session->addr,
2766 .transport = mansession_get_transport(s),
2768 .common.session_id = session_id,
2771 snprintf(session_id, sizeof(session_id), "%p", s->session);
2773 ast_security_event_report(AST_SEC_EVT(&successful_auth));
2776 static void report_req_not_allowed(const struct mansession *s, const char *action)
2778 char session_id[32];
2779 char request_type[64];
2780 struct ast_security_event_req_not_allowed req_not_allowed = {
2781 .common.event_type = AST_SECURITY_EVENT_REQ_NOT_ALLOWED,
2782 .common.version = AST_SECURITY_EVENT_REQ_NOT_ALLOWED_VERSION,
2783 .common.service = "AMI",
2784 .common.account_id = s->session->username,
2785 .common.session_tv = &s->session->sessionstart_tv,
2786 .common.local_addr = {
2787 .addr = &s->tcptls_session->parent->local_address,
2788 .transport = mansession_get_transport(s),
2790 .common.remote_addr = {
2791 .addr = &s->session->addr,
2792 .transport = mansession_get_transport(s),
2794 .common.session_id = session_id,
2796 .request_type = request_type,
2799 snprintf(session_id, sizeof(session_id), "%p", s->session);
2800 snprintf(request_type, sizeof(request_type), "Action: %s", action);
2802 ast_security_event_report(AST_SEC_EVT(&req_not_allowed));
2805 static void report_req_bad_format(const struct mansession *s, const char *action)
2807 char session_id[32];
2808 char request_type[64];
2809 struct ast_security_event_req_bad_format req_bad_format = {
2810 .common.event_type = AST_SECURITY_EVENT_REQ_BAD_FORMAT,
2811 .common.version = AST_SECURITY_EVENT_REQ_BAD_FORMAT_VERSION,
2812 .common.service = "AMI",
2813 .common.account_id = s->session->username,
2814 .common.session_tv = &s->session->sessionstart_tv,
2815 .common.local_addr = {
2816 .addr = &s->tcptls_session->parent->local_address,
2817 .transport = mansession_get_transport(s),
2819 .common.remote_addr = {
2820 .addr = &s->session->addr,
2821 .transport = mansession_get_transport(s),
2823 .common.session_id = session_id,
2825 .request_type = request_type,
2828 snprintf(session_id, sizeof(session_id), "%p", s->session);
2829 snprintf(request_type, sizeof(request_type), "Action: %s", action);
2831 ast_security_event_report(AST_SEC_EVT(&req_bad_format));
2834 static void report_failed_challenge_response(const struct mansession *s,
2835 const char *response, const char *expected_response)
2837 char session_id[32];
2838 struct ast_security_event_chal_resp_failed chal_resp_failed = {
2839 .common.event_type = AST_SECURITY_EVENT_CHAL_RESP_FAILED,
2840 .common.version = AST_SECURITY_EVENT_CHAL_RESP_FAILED_VERSION,
2841 .common.service = "AMI",
2842 .common.account_id = s->session->username,
2843 .common.session_tv = &s->session->sessionstart_tv,
2844 .common.local_addr = {
2845 .addr = &s->tcptls_session->parent->local_address,
2846 .transport = mansession_get_transport(s),
2848 .common.remote_addr = {
2849 .addr = &s->session->addr,
2850 .transport = mansession_get_transport(s),
2852 .common.session_id = session_id,
2854 .challenge = s->session->challenge,
2855 .response = response,
2856 .expected_response = expected_response,
2859 snprintf(session_id, sizeof(session_id), "%p", s->session);
2861 ast_security_event_report(AST_SEC_EVT(&chal_resp_failed));
2864 static void report_session_limit(const struct mansession *s)
2866 char session_id[32];
2867 struct ast_security_event_session_limit session_limit = {
2868 .common.event_type = AST_SECURITY_EVENT_SESSION_LIMIT,
2869 .common.version = AST_SECURITY_EVENT_SESSION_LIMIT_VERSION,
2870 .common.service = "AMI",
2871 .common.account_id = s->session->username,
2872 .common.session_tv = &s->session->sessionstart_tv,
2873 .common.local_addr = {
2874 .addr = &s->tcptls_session->parent->local_address,
2875 .transport = mansession_get_transport(s),
2877 .common.remote_addr = {
2878 .addr = &s->session->addr,
2879 .transport = mansession_get_transport(s),
2881 .common.session_id = session_id,
2884 snprintf(session_id, sizeof(session_id), "%p", s->session);
2886 ast_security_event_report(AST_SEC_EVT(&session_limit));
2890 * Here we start with action_ handlers for AMI actions,
2891 * and the internal functions used by them.
2892 * Generally, the handlers are called action_foo()
2895 /* helper function for action_login() */
2896 static int authenticate(struct mansession *s, const struct message *m)
2898 const char *username = astman_get_header(m, "Username");
2899 const char *password = astman_get_header(m, "Secret");
2901 struct ast_manager_user *user = NULL;
2902 regex_t *regex_filter;
2903 struct ao2_iterator filter_iter;
2905 if (ast_strlen_zero(username)) { /* missing username */
2909 /* locate user in locked state */
2910 AST_RWLIST_WRLOCK(&users);
2912 if (!(user = get_manager_by_name_locked(username))) {
2913 report_invalid_user(s, username);
2914 ast_log(LOG_NOTICE, "%s tried to authenticate with nonexistent user '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2915 } else if (user->acl && (ast_apply_acl(user->acl, &s->session->addr, "Manager User ACL: ") == AST_SENSE_DENY)) {
2916 report_failed_acl(s, username);
2917 ast_log(LOG_NOTICE, "%s failed to pass IP ACL as '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2918 } else if (!strcasecmp(astman_get_header(m, "AuthType"), "MD5")) {
2919 const char *key = astman_get_header(m, "Key");
2920 if (!ast_strlen_zero(key) && !ast_strlen_zero(s->session->challenge) && user->secret) {
2923 char md5key[256] = "";
2924 struct MD5Context md5;
2925 unsigned char digest[16];
2928 MD5Update(&md5, (unsigned char *) s->session->challenge, strlen(s->session->challenge));
2929 MD5Update(&md5, (unsigned char *) user->secret, strlen(user->secret));
2930 MD5Final(digest, &md5);
2931 for (x = 0; x < 16; x++)
2932 len += sprintf(md5key + len, "%2.2x", digest[x]);
2933 if (!strcmp(md5key, key)) {
2936 report_failed_challenge_response(s, key, md5key);
2939 ast_debug(1, "MD5 authentication is not possible. challenge: '%s'\n",
2940 S_OR(s->session->challenge, ""));
2942 } else if (user->secret) {
2943 if (!strcmp(password, user->secret)) {
2946 report_inval_password(s, username);
2951 ast_log(LOG_NOTICE, "%s failed to authenticate as '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2952 AST_RWLIST_UNLOCK(&users);
2958 /* All of the user parameters are copied to the session so that in the event
2959 * of a reload and a configuration change, the session parameters are not
2961 ast_copy_string(s->session->username, username, sizeof(s->session->username));
2962 s->session->readperm = user->readperm;
2963 s->session->writeperm = user->writeperm;
2964 s->session->writetimeout = user->writetimeout;
2965 if (user->chanvars) {
2966 s->session->chanvars = ast_variables_dup(user->chanvars);
2969 filter_iter = ao2_iterator_init(user->whitefilters, 0);
2970 while ((regex_filter = ao2_iterator_next(&filter_iter))) {
2971 ao2_t_link(s->session->whitefilters, regex_filter, "add white user filter to session");
2972 ao2_t_ref(regex_filter, -1, "remove iterator ref");
2974 ao2_iterator_destroy(&filter_iter);
2976 filter_iter = ao2_iterator_init(user->blackfilters, 0);
2977 while ((regex_filter = ao2_iterator_next(&filter_iter))) {
2978 ao2_t_link(s->session->blackfilters, regex_filter, "add black user filter to session");
2979 ao2_t_ref(regex_filter, -1, "remove iterator ref");
2981 ao2_iterator_destroy(&filter_iter);
2983 s->session->sessionstart = time(NULL);
2984 s->session->sessionstart_tv = ast_tvnow();
2985 set_eventmask(s, astman_get_header(m, "Events"));
2987 report_auth_success(s);
2989 AST_RWLIST_UNLOCK(&users);
2993 static int action_ping(struct mansession *s, const struct message *m)
2995 const char *actionid = astman_get_header(m, "ActionID");
2996 struct timeval now = ast_tvnow();
2998 astman_append(s, "Response: Success\r\n");
2999 if (!ast_strlen_zero(actionid)){
3000 astman_append(s, "ActionID: %s\r\n", actionid);
3005 "Timestamp: %ld.%06lu\r\n"
3007 (long) now.tv_sec, (unsigned long) now.tv_usec);
3011 static int action_getconfig(struct mansession *s, const struct message *m)
3013 struct ast_config *cfg;
3014 const char *fn = astman_get_header(m, "Filename");
3015 const char *category = astman_get_header(m, "Category");
3018 char *cur_category = NULL;
3019 struct ast_variable *v;
3020 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3022 if (ast_strlen_zero(fn)) {
3023 astman_send_error(s, m, "Filename not specified");
3026 cfg = ast_config_load2(fn, "manager", config_flags);
3027 if (cfg == CONFIG_STATUS_FILEMISSING) {
3028 astman_send_error(s, m, "Config file not found");
3030 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3031 astman_send_error(s, m, "Config file has invalid format");
3035 astman_start_ack(s, m);
3036 while ((cur_category = ast_category_browse(cfg, cur_category))) {
3037 if (ast_strlen_zero(category) || (!ast_strlen_zero(category) && !strcmp(category, cur_category))) {
3039 astman_append(s, "Category-%06d: %s\r\n", catcount, cur_category);
3040 for (v = ast_variable_browse(cfg, cur_category); v; v = v->next) {
3041 astman_append(s, "Line-%06d-%06d: %s=%s\r\n", catcount, lineno++, v->name, v->value);
3046 if (!ast_strlen_zero(category) && catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
3047 astman_append(s, "No categories found\r\n");
3049 ast_config_destroy(cfg);
3050 astman_append(s, "\r\n");
3055 static int action_listcategories(struct mansession *s, const struct message *m)
3057 struct ast_config *cfg;
3058 const char *fn = astman_get_header(m, "Filename");
3059 char *category = NULL;
3060 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3063 if (ast_strlen_zero(fn)) {
3064 astman_send_error(s, m, "Filename not specified");
3067 if (!(cfg = ast_config_load2(fn, "manager", config_flags))) {
3068 astman_send_error(s, m, "Config file not found");
3070 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3071 astman_send_error(s, m, "Config file has invalid format");
3074 astman_start_ack(s, m);
3075 while ((category = ast_category_browse(cfg, category))) {
3076 astman_append(s, "Category-%06d: %s\r\n", catcount, category);
3079 if (catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
3080 astman_append(s, "Error: no categories found\r\n");
3082 ast_config_destroy(cfg);
3083 astman_append(s, "\r\n");
3091 /*! The amount of space in out must be at least ( 2 * strlen(in) + 1 ) */
3092 static void json_escape(char *out, const char *in)
3095 if (*in == '\\' || *in == '\"') {
3105 * \brief Append a JSON escaped string to the manager stream.
3107 * \param s AMI stream to append a string.
3108 * \param str String to append to the stream after JSON escaping it.
3112 static void astman_append_json(struct mansession *s, const char *str)
3116 buf = ast_alloca(2 * strlen(str) + 1);
3117 json_escape(buf, str);
3118 astman_append(s, "%s", buf);
3121 static int action_getconfigjson(struct mansession *s, const struct message *m)
3123 struct ast_config *cfg;
3124 const char *fn = astman_get_header(m, "Filename");
3125 char *category = NULL;
3126 struct ast_variable *v;
3128 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3130 if (ast_strlen_zero(fn)) {
3131 astman_send_error(s, m, "Filename not specified");
3135 if (!(cfg = ast_config_load2(fn, "manager", config_flags))) {
3136 astman_send_error(s, m, "Config file not found");
3138 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3139 astman_send_error(s, m, "Config file has invalid format");
3143 astman_start_ack(s, m);
3144 astman_append(s, "JSON: {");
3145 while ((category = ast_category_browse(cfg, category))) {
3148 astman_append(s, "%s\"", comma1 ? "," : "");
3149 astman_append_json(s, category);
3150 astman_append(s, "\":[");
3152 for (v = ast_variable_browse(cfg, category); v; v = v->next) {
3153 astman_append(s, "%s\"", comma2 ? "," : "");
3154 astman_append_json(s, v->name);
3155 astman_append(s, "\":\"");
3156 astman_append_json(s, v->value);
3157 astman_append(s, "\"");
3160 astman_append(s, "]");
3162 astman_append(s, "}\r\n\r\n");
3164 ast_config_destroy(cfg);
3169 /*! \brief helper function for action_updateconfig */
3170 static enum error_type handle_updates(struct mansession *s, const struct message *m, struct ast_config *cfg, const char *dfn)
3174 const char *action, *cat, *var, *value, *match, *line;
3175 struct ast_category *category;
3176 struct ast_variable *v;
3177 struct ast_str *str1 = ast_str_create(16), *str2 = ast_str_create(16);
3178 enum error_type result = 0;
3180 for (x = 0; x < 100000; x++) { /* 100000 = the max number of allowed updates + 1 */
3181 unsigned int object = 0;
3183 snprintf(hdr, sizeof(hdr), "Action-%06d", x);
3184 action = astman_get_header(m, hdr);
3185 if (ast_strlen_zero(action)) /* breaks the for loop if no action header */
3186 break; /* this could cause problems if actions come in misnumbered */
3188 snprintf(hdr, sizeof(hdr), "Cat-%06d", x);
3189 cat = astman_get_header(m, hdr);
3190 if (ast_strlen_zero(cat)) { /* every action needs a category */
3191 result = UNSPECIFIED_CATEGORY;
3195 snprintf(hdr, sizeof(hdr), "Var-%06d", x);
3196 var = astman_get_header(m, hdr);
3198 snprintf(hdr, sizeof(hdr), "Value-%06d", x);
3199 value = astman_get_header(m, hdr);
3201 if (!ast_strlen_zero(value) && *value == '>') {
3206 snprintf(hdr, sizeof(hdr), "Match-%06d", x);
3207 match = astman_get_header(m, hdr);
3209 snprintf(hdr, sizeof(hdr), "Line-%06d", x);
3210 line = astman_get_header(m, hdr);
3212 if (!strcasecmp(action, "newcat")) {
3213 if (ast_category_get(cfg,cat)) { /* check to make sure the cat doesn't */
3214 result = FAILURE_NEWCAT; /* already exist */
3217 if (!(category = ast_category_new(cat, dfn, -1))) {
3218 result = FAILURE_ALLOCATION;
3221 if (ast_strlen_zero(match)) {
3222 ast_category_append(cfg, category);
3224 ast_category_insert(cfg, category, match);
3226 } else if (!strcasecmp(action, "renamecat")) {
3227 if (ast_strlen_zero(value)) {
3228 result = UNSPECIFIED_ARGUMENT;
3231 if (!(category = ast_category_get(cfg, cat))) {
3232 result = UNKNOWN_CATEGORY;
3235 ast_category_rename(category, value);
3236 } else if (!strcasecmp(action, "delcat")) {
3237 if (ast_category_delete(cfg, cat)) {
3238 result = FAILURE_DELCAT;
3241 } else if (!strcasecmp(action, "emptycat")) {
3242 if (ast_category_empty(cfg, cat)) {
3243 result = FAILURE_EMPTYCAT;
3246 } else if (!strcasecmp(action, "update")) {
3247 if (ast_strlen_zero(var)) {
3248 result = UNSPECIFIED_ARGUMENT;
3251 if (!(category = ast_category_get(cfg,cat))) {
3252 result = UNKNOWN_CATEGORY;
3255 if (ast_variable_update(category, var, value, match, object)) {
3256 result = FAILURE_UPDATE;
3259 } else if (!strcasecmp(action, "delete")) {
3260 if ((ast_strlen_zero(var) && ast_strlen_zero(line))) {
3261 result = UNSPECIFIED_ARGUMENT;
3264 if (!(category = ast_category_get(cfg, cat))) {
3265 result = UNKNOWN_CATEGORY;
3268 if (ast_variable_delete(category, var, match, line)) {
3269 result = FAILURE_DELETE;
3272 } else if (!strcasecmp(action, "append")) {
3273 if (ast_strlen_zero(var)) {
3274 result = UNSPECIFIED_ARGUMENT;
3277 if (!(category = ast_category_get(cfg, cat))) {
3278 result = UNKNOWN_CATEGORY;
3281 if (!(v = ast_variable_new(var, value, dfn))) {
3282 result = FAILURE_ALLOCATION;
3285 if (object || (match && !strcasecmp(match, "object"))) {
3288 ast_variable_append(category, v);
3289 } else if (!strcasecmp(action, "insert")) {
3290 if (ast_strlen_zero(var) || ast_strlen_zero(line)) {
3291 result = UNSPECIFIED_ARGUMENT;
3294 if (!(category = ast_category_get(cfg, cat))) {
3295 result = UNKNOWN_CATEGORY;
3298 if (!(v = ast_variable_new(var, value, dfn))) {
3299 result = FAILURE_ALLOCATION;
3302 ast_variable_insert(category, v, line);
3305 ast_log(LOG_WARNING, "Action-%06d: %s not handled\n", x, action);
3306 result = UNKNOWN_ACTION;
3315 static int action_updateconfig(struct mansession *s, const struct message *m)
3317 struct ast_config *cfg;
3318 const char *sfn = astman_get_header(m, "SrcFilename");
3319 const char *dfn = astman_get_header(m, "DstFilename");
3321 const char *rld = astman_get_header(m, "Reload");
3322 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3323 enum error_type result;
3325 if (ast_strlen_zero(sfn) || ast_strlen_zero(dfn)) {
3326 astman_send_error(s, m, "Filename not specified");
3329 if (!(cfg = ast_config_load2(sfn, "manager", config_flags))) {
3330 astman_send_error(s, m, "Config file not found");
3332 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3333 astman_send_error(s, m, "Config file has invalid format");
3336 result = handle_updates(s, m, cfg, dfn);
3338 ast_include_rename(cfg, sfn, dfn); /* change the include references from dfn to sfn, so things match up */
3339 res = ast_config_text_file_save(dfn, cfg, "Manager");
3340 ast_config_destroy(cfg);
3342 astman_send_error(s, m, "Save of config failed");
3345 astman_send_ack(s, m, NULL);
3346 if (!ast_strlen_zero(rld)) {
3347 if (ast_true(rld)) {
3350 ast_module_reload(rld);
3353 ast_config_destroy(cfg);
3355 case UNKNOWN_ACTION:
3356 astman_send_error(s, m, "Unknown action command");
3358 case UNKNOWN_CATEGORY:
3359 astman_send_error(s, m, "Given category does not exist");
3361 case UNSPECIFIED_CATEGORY:
3362 astman_send_error(s, m, "Category not specified");
3364 case UNSPECIFIED_ARGUMENT:
3365 astman_send_error(s, m, "Problem with category, value, or line (if required)");
3367 case FAILURE_ALLOCATION:
3368 astman_send_error(s, m, "Memory allocation failure, this should not happen");
3370 case FAILURE_NEWCAT:
3371 astman_send_error(s, m, "Create category did not complete successfully");
3373 case FAILURE_DELCAT:
3374 astman_send_error(s, m, "Delete category did not complete successfully");
3376 case FAILURE_EMPTYCAT:
3377 astman_send_error(s, m, "Empty category did not complete successfully");
3379 case FAILURE_UPDATE:
3380 astman_send_error(s, m, "Update did not complete successfully");
3382 case FAILURE_DELETE:
3383 astman_send_error(s, m, "Delete did not complete successfully");
3385 case FAILURE_APPEND:
3386 astman_send_error(s, m, "Append did not complete successfully");
3393 static int action_createconfig(struct mansession *s, const struct message *m)
3396 const char *fn = astman_get_header(m, "Filename");
3397 struct ast_str *filepath = ast_str_alloca(PATH_MAX);
3398 ast_str_set(&filepath, 0, "%s/", ast_config_AST_CONFIG_DIR);
3399 ast_str_append(&filepath, 0, "%s", fn);
3401 if ((fd = open(ast_str_buffer(filepath), O_CREAT | O_EXCL, AST_FILE_MODE)) != -1) {
3403 astman_send_ack(s, m, "New configuration file created successfully");
3405 astman_send_error(s, m, strerror(errno));
3411 static int action_waitevent(struct mansession *s, const struct message *m)
3413 const char *timeouts = astman_get_header(m, "Timeout");
3417 const char *id = astman_get_header(m, "ActionID");
3420 if (!ast_strlen_zero(id)) {
3421 snprintf(idText, sizeof(idText), "ActionID: %s\r\n", id);
3426 if (!ast_strlen_zero(timeouts)) {
3427 sscanf(timeouts, "%30i", &timeout);
3431 /* XXX maybe put an upper bound, or prevent the use of 0 ? */
3434 ao2_lock(s->session);
3435 if (s->session->waiting_thread != AST_PTHREADT_NULL) {
3436 pthread_kill(s->session->waiting_thread, SIGURG);
3439 if (s->session->managerid) { /* AMI-over-HTTP session */
3441 * Make sure the timeout is within the expire time of the session,
3442 * as the client will likely abort the request if it does not see
3443 * data coming after some amount of time.
3445 time_t now = time(NULL);
3446 int max = s->session->sessiontimeout - now - 10;
3448 if (max < 0) { /* We are already late. Strange but possible. */
3451 if (timeout < 0 || timeout > max) {
3454 if (!s->session->send_events) { /* make sure we record events */
3455 s->session->send_events = -1;
3458 ao2_unlock(s->session);
3460 /* XXX should this go inside the lock ? */
3461 s->session->waiting_thread = pthread_self(); /* let new events wake up this thread */
3462 ast_debug(1, "Starting waiting for an event!\n");
3464 for (x = 0; x < timeout || timeout < 0; x++) {
3465 ao2_lock(s->session);
3466 if (AST_RWLIST_NEXT(s->session->last_ev, eq_next)) {
3469 /* We can have multiple HTTP session point to the same mansession entry.
3470 * The way we deal with it is not very nice: ne