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) {
1775 ast_atomic_fetchadd_int(&eqe->usecount, -1);
1777 if (session->chanvars) {
1778 ast_variables_destroy(session->chanvars);
1781 if (session->whitefilters) {
1782 ao2_t_ref(session->whitefilters, -1, "decrement ref for white container, should be last one");
1785 if (session->blackfilters) {
1786 ao2_t_ref(session->blackfilters, -1, "decrement ref for black container, should be last one");
1790 /*! \brief Allocate manager session structure and add it to the list of sessions */
1791 static struct mansession_session *build_mansession(const struct ast_sockaddr *addr)
1793 struct ao2_container *sessions;
1794 struct mansession_session *newsession;
1796 newsession = ao2_alloc(sizeof(*newsession), session_destructor);
1801 newsession->whitefilters = ao2_container_alloc(1, NULL, NULL);
1802 newsession->blackfilters = ao2_container_alloc(1, NULL, NULL);
1803 if (!newsession->whitefilters || !newsession->blackfilters) {
1804 ao2_ref(newsession, -1);
1808 newsession->fd = -1;
1809 newsession->waiting_thread = AST_PTHREADT_NULL;
1810 newsession->writetimeout = 100;
1811 newsession->send_events = -1;
1812 ast_sockaddr_copy(&newsession->addr, addr);
1814 sessions = ao2_global_obj_ref(mgr_sessions);
1816 ao2_link(sessions, newsession);
1817 ao2_ref(sessions, -1);
1823 static int mansession_cmp_fn(void *obj, void *arg, int flags)
1825 struct mansession_session *s = obj;
1827 return !strcasecmp(s->username, str) ? CMP_MATCH : 0;
1830 static void session_destroy(struct mansession_session *s)
1832 struct ao2_container *sessions;
1834 sessions = ao2_global_obj_ref(mgr_sessions);
1836 ao2_unlink(sessions, s);
1837 ao2_ref(sessions, -1);
1839 unref_mansession(s);
1843 static int check_manager_session_inuse(const char *name)
1845 struct ao2_container *sessions;
1846 struct mansession_session *session;
1849 sessions = ao2_global_obj_ref(mgr_sessions);
1851 session = ao2_find(sessions, (char *) name, 0);
1852 ao2_ref(sessions, -1);
1854 unref_mansession(session);
1863 * lookup an entry in the list of registered users.
1864 * must be called with the list lock held.
1866 static struct ast_manager_user *get_manager_by_name_locked(const char *name)
1868 struct ast_manager_user *user = NULL;
1870 AST_RWLIST_TRAVERSE(&users, user, list) {
1871 if (!strcasecmp(user->username, name)) {
1879 /*! \brief Get displayconnects config option.
1880 * \param session manager session to get parameter from.
1881 * \return displayconnects config option value.
1883 static int manager_displayconnects(struct mansession_session *session)
1885 struct ast_manager_user *user = NULL;
1888 AST_RWLIST_RDLOCK(&users);
1889 if ((user = get_manager_by_name_locked(session->username))) {
1890 ret = user->displayconnects;
1892 AST_RWLIST_UNLOCK(&users);
1897 static char *handle_showmancmd(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1899 struct manager_action *cur;
1900 struct ast_str *authority;
1904 char syntax_title[64], description_title[64], synopsis_title[64], seealso_title[64], arguments_title[64], privilege_title[64];
1909 e->command = "manager show command";
1911 "Usage: manager show command <actionname> [<actionname> [<actionname> [...]]]\n"
1912 " Shows the detailed description for a specific Asterisk manager interface command.\n";
1915 l = strlen(a->word);
1917 AST_RWLIST_RDLOCK(&actions);
1918 AST_RWLIST_TRAVERSE(&actions, cur, list) {
1919 if (!strncasecmp(a->word, cur->action, l) && ++which > a->n) {
1920 ret = ast_strdup(cur->action);
1921 break; /* make sure we exit even if ast_strdup() returns NULL */
1924 AST_RWLIST_UNLOCK(&actions);
1927 authority = ast_str_alloca(80);
1929 return CLI_SHOWUSAGE;
1933 /* setup the titles */
1934 term_color(synopsis_title, "[Synopsis]\n", COLOR_MAGENTA, 0, 40);
1935 term_color(description_title, "[Description]\n", COLOR_MAGENTA, 0, 40);
1936 term_color(syntax_title, "[Syntax]\n", COLOR_MAGENTA, 0, 40);
1937 term_color(seealso_title, "[See Also]\n", COLOR_MAGENTA, 0, 40);
1938 term_color(arguments_title, "[Arguments]\n", COLOR_MAGENTA, 0, 40);
1939 term_color(privilege_title, "[Privilege]\n", COLOR_MAGENTA, 0, 40);
1942 AST_RWLIST_RDLOCK(&actions);
1943 AST_RWLIST_TRAVERSE(&actions, cur, list) {
1944 for (num = 3; num < a->argc; num++) {
1945 if (!strcasecmp(cur->action, a->argv[num])) {
1946 authority_to_str(cur->authority, &authority);
1949 if (cur->docsrc == AST_XML_DOC) {
1950 char *syntax = ast_xmldoc_printable(S_OR(cur->syntax, "Not available"), 1);
1951 char *synopsis = ast_xmldoc_printable(S_OR(cur->synopsis, "Not available"), 1);
1952 char *description = ast_xmldoc_printable(S_OR(cur->description, "Not available"), 1);
1953 char *arguments = ast_xmldoc_printable(S_OR(cur->arguments, "Not available"), 1);
1954 char *seealso = ast_xmldoc_printable(S_OR(cur->seealso, "Not available"), 1);
1955 char *privilege = ast_xmldoc_printable(S_OR(authority->str, "Not available"), 1);
1956 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",
1957 syntax_title, syntax,
1958 synopsis_title, synopsis,
1959 description_title, description,
1960 arguments_title, arguments,
1961 seealso_title, seealso,
1962 privilege_title, privilege);
1966 ast_cli(a->fd, "Action: %s\nSynopsis: %s\nPrivilege: %s\n%s\n",
1967 cur->action, cur->synopsis,
1969 S_OR(cur->description, ""));
1974 AST_RWLIST_UNLOCK(&actions);
1979 static char *handle_mandebug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1983 e->command = "manager set debug [on|off]";
1984 e->usage = "Usage: manager set debug [on|off]\n Show, enable, disable debugging of the manager code.\n";
1991 ast_cli(a->fd, "manager debug is %s\n", manager_debug? "on" : "off");
1992 } else if (a->argc == 4) {
1993 if (!strcasecmp(a->argv[3], "on")) {
1995 } else if (!strcasecmp(a->argv[3], "off")) {
1998 return CLI_SHOWUSAGE;
2004 static char *handle_showmanager(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2006 struct ast_manager_user *user = NULL;
2009 struct ast_str *rauthority = ast_str_alloca(128);
2010 struct ast_str *wauthority = ast_str_alloca(128);
2011 struct ast_variable *v;
2015 e->command = "manager show user";
2017 " Usage: manager show user <user>\n"
2018 " Display all information related to the manager user specified.\n";
2021 l = strlen(a->word);
2026 AST_RWLIST_RDLOCK(&users);
2027 AST_RWLIST_TRAVERSE(&users, user, list) {
2028 if ( !strncasecmp(a->word, user->username, l) && ++which > a->n ) {
2029 ret = ast_strdup(user->username);
2033 AST_RWLIST_UNLOCK(&users);
2038 return CLI_SHOWUSAGE;
2041 AST_RWLIST_RDLOCK(&users);
2043 if (!(user = get_manager_by_name_locked(a->argv[3]))) {
2044 ast_cli(a->fd, "There is no manager called %s\n", a->argv[3]);
2045 AST_RWLIST_UNLOCK(&users);
2049 ast_cli(a->fd, "\n");
2056 " displayconnects: %s\n"
2057 "allowmultiplelogin: %s\n",
2058 (user->username ? user->username : "(N/A)"),
2059 (user->secret ? "<Set>" : "(N/A)"),
2060 ((user->acl && !ast_acl_list_is_empty(user->acl)) ? "yes" : "no"),
2061 user_authority_to_str(user->readperm, &rauthority),
2062 user_authority_to_str(user->writeperm, &wauthority),
2063 (user->displayconnects ? "yes" : "no"),
2064 (user->allowmultiplelogin ? "yes" : "no"));
2065 ast_cli(a->fd, " Variables: \n");
2066 for (v = user->chanvars ; v ; v = v->next) {
2067 ast_cli(a->fd, " %s = %s\n", v->name, v->value);
2070 AST_RWLIST_UNLOCK(&users);
2075 static char *handle_showmanagers(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2077 struct ast_manager_user *user = NULL;
2081 e->command = "manager show users";
2083 "Usage: manager show users\n"
2084 " Prints a listing of all managers that are currently configured on that\n"
2091 return CLI_SHOWUSAGE;
2094 AST_RWLIST_RDLOCK(&users);
2096 /* If there are no users, print out something along those lines */
2097 if (AST_RWLIST_EMPTY(&users)) {
2098 ast_cli(a->fd, "There are no manager users.\n");
2099 AST_RWLIST_UNLOCK(&users);
2103 ast_cli(a->fd, "\nusername\n--------\n");
2105 AST_RWLIST_TRAVERSE(&users, user, list) {
2106 ast_cli(a->fd, "%s\n", user->username);
2110 AST_RWLIST_UNLOCK(&users);
2112 ast_cli(a->fd,"-------------------\n"
2113 "%d manager users configured.\n", count_amu);
2117 /*! \brief CLI command manager list commands */
2118 static char *handle_showmancmds(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2120 struct manager_action *cur;
2122 int space_remaining;
2123 #define HSMC_FORMAT " %-*.*s %-.*s\n"
2126 e->command = "manager show commands";
2128 "Usage: manager show commands\n"
2129 " Prints a listing of all the available Asterisk manager interface commands.\n";
2135 AST_RWLIST_RDLOCK(&actions);
2136 AST_RWLIST_TRAVERSE(&actions, cur, list) {
2137 int incoming_len = strlen(cur->action);
2138 if (incoming_len > name_len) {
2139 name_len = incoming_len;
2143 space_remaining = MGR_SHOW_TERMINAL_WIDTH - name_len - 4;
2144 if (space_remaining < 0) {
2145 space_remaining = 0;
2148 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, "Action", space_remaining, "Synopsis");
2149 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, "------", space_remaining, "--------");
2151 AST_RWLIST_TRAVERSE(&actions, cur, list) {
2152 ast_cli(a->fd, HSMC_FORMAT, name_len, name_len, cur->action, space_remaining, cur->synopsis);
2154 AST_RWLIST_UNLOCK(&actions);
2159 /*! \brief CLI command manager list connected */
2160 static char *handle_showmanconn(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2162 struct ao2_container *sessions;
2163 struct mansession_session *session;
2164 time_t now = time(NULL);
2165 #define HSMCONN_FORMAT1 " %-15.15s %-55.55s %-10.10s %-10.10s %-8.8s %-8.8s %-5.5s %-5.5s\n"
2166 #define HSMCONN_FORMAT2 " %-15.15s %-55.55s %-10d %-10d %-8d %-8d %-5.5d %-5.5d\n"
2168 struct ao2_iterator i;
2172 e->command = "manager show connected";
2174 "Usage: manager show connected\n"
2175 " Prints a listing of the users that are currently connected to the\n"
2176 "Asterisk manager interface.\n";
2182 ast_cli(a->fd, HSMCONN_FORMAT1, "Username", "IP Address", "Start", "Elapsed", "FileDes", "HttpCnt", "Read", "Write");
2184 sessions = ao2_global_obj_ref(mgr_sessions);
2186 i = ao2_iterator_init(sessions, 0);
2187 ao2_ref(sessions, -1);
2188 while ((session = ao2_iterator_next(&i))) {
2190 ast_cli(a->fd, HSMCONN_FORMAT2, session->username,
2191 ast_sockaddr_stringify_addr(&session->addr),
2192 (int) (session->sessionstart),
2193 (int) (now - session->sessionstart),
2197 session->writeperm);
2199 ao2_unlock(session);
2200 unref_mansession(session);
2202 ao2_iterator_destroy(&i);
2204 ast_cli(a->fd, "%d users connected.\n", count);
2209 /*! \brief CLI command manager list eventq */
2210 /* Should change to "manager show connected" */
2211 static char *handle_showmaneventq(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2213 struct eventqent *s;
2216 e->command = "manager show eventq";
2218 "Usage: manager show eventq\n"
2219 " Prints a listing of all events pending in the Asterisk manger\n"
2225 AST_RWLIST_RDLOCK(&all_events);
2226 AST_RWLIST_TRAVERSE(&all_events, s, eq_next) {
2227 ast_cli(a->fd, "Usecount: %d\n", s->usecount);
2228 ast_cli(a->fd, "Category: %d\n", s->category);
2229 ast_cli(a->fd, "Event:\n%s", s->eventdata);
2231 AST_RWLIST_UNLOCK(&all_events);
2236 /*! \brief CLI command manager reload */
2237 static char *handle_manager_reload(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2241 e->command = "manager reload";
2243 "Usage: manager reload\n"
2244 " Reloads the manager configuration.\n";
2250 return CLI_SHOWUSAGE;
2256 static struct eventqent *advance_event(struct eventqent *e)
2258 struct eventqent *next;
2260 AST_RWLIST_RDLOCK(&all_events);
2261 if ((next = AST_RWLIST_NEXT(e, eq_next))) {
2262 ast_atomic_fetchadd_int(&next->usecount, 1);
2263 ast_atomic_fetchadd_int(&e->usecount, -1);
2265 AST_RWLIST_UNLOCK(&all_events);
2269 #define GET_HEADER_FIRST_MATCH 0
2270 #define GET_HEADER_LAST_MATCH 1
2271 #define GET_HEADER_SKIP_EMPTY 2
2274 * \brief Return a matching header value.
2277 * Generic function to return either the first or the last
2278 * matching header from a list of variables, possibly skipping
2281 * \note At the moment there is only one use of this function in
2282 * this file, so we make it static.
2284 * \note Never returns NULL.
2286 static const char *__astman_get_header(const struct message *m, char *var, int mode)
2288 int x, l = strlen(var);
2289 const char *result = "";
2295 for (x = 0; x < m->hdrcount; x++) {
2296 const char *h = m->headers[x];
2297 if (!strncasecmp(var, h, l) && h[l] == ':') {
2298 const char *value = h + l + 1;
2299 value = ast_skip_blanks(value); /* ignore leading spaces in the value */
2300 /* found a potential candidate */
2301 if ((mode & GET_HEADER_SKIP_EMPTY) && ast_strlen_zero(value)) {
2302 continue; /* not interesting */
2304 if (mode & GET_HEADER_LAST_MATCH) {
2305 result = value; /* record the last match so far */
2316 * \brief Return the first matching variable from an array.
2318 * \note This is the legacy function and is implemented in
2319 * therms of __astman_get_header().
2321 * \note Never returns NULL.
2323 const char *astman_get_header(const struct message *m, char *var)
2325 return __astman_get_header(m, var, GET_HEADER_FIRST_MATCH);
2330 * \brief Process one "Variable:" header value string.
2332 * \param head Current list of AMI variables to get new values added.
2333 * \param hdr_val Header value string to process.
2335 * \return New variable list head.
2337 static struct ast_variable *man_do_variable_value(struct ast_variable *head, const char *hdr_val)
2340 AST_DECLARE_APP_ARGS(args,
2341 AST_APP_ARG(vars)[64];
2344 hdr_val = ast_skip_blanks(hdr_val); /* ignore leading spaces in the value */
2345 parse = ast_strdupa(hdr_val);
2347 /* Break the header value string into name=val pair items. */
2348 AST_STANDARD_APP_ARGS(args, parse);
2352 /* Process each name=val pair item. */
2353 for (y = 0; y < args.argc; y++) {
2354 struct ast_variable *cur;
2358 if (!args.vars[y]) {
2361 var = val = args.vars[y];
2364 /* XXX We may wish to trim whitespace from the strings. */
2365 if (!val || ast_strlen_zero(var)) {
2369 /* Create new variable list node and prepend it to the list. */
2370 cur = ast_variable_new(var, val, "");
2381 struct ast_variable *astman_get_variables(const struct message *m)
2385 struct ast_variable *head = NULL;
2387 static const char var_hdr[] = "Variable:";
2389 /* Process all "Variable:" headers. */
2390 varlen = strlen(var_hdr);
2391 for (x = 0; x < m->hdrcount; x++) {
2392 if (strncasecmp(var_hdr, m->headers[x], varlen)) {
2395 head = man_do_variable_value(head, m->headers[x] + varlen);
2401 /*! \brief access for hooks to send action messages to ami */
2402 int ast_hook_send_action(struct manager_custom_hook *hook, const char *msg)
2406 struct manager_action *act_found;
2407 struct mansession s = {.session = NULL, };
2408 struct message m = { 0 };
2418 /* Create our own copy of the AMI action msg string. */
2419 src = dup_str = ast_strdup(msg);
2424 /* convert msg string to message struct */
2425 curlen = strlen(src);
2426 for (x = 0; x < curlen; x++) {
2427 int cr; /* set if we have \r */
2428 if (src[x] == '\r' && x+1 < curlen && src[x+1] == '\n')
2429 cr = 2; /* Found. Update length to include \r\n */
2430 else if (src[x] == '\n')
2431 cr = 1; /* also accept \n only */
2434 /* don't keep empty lines */
2435 if (x && m.hdrcount < ARRAY_LEN(m.headers)) {
2436 /* ... but trim \r\n and terminate the header string */
2438 m.headers[m.hdrcount++] = src;
2441 curlen -= x; /* remaining size */
2442 src += x; /* update pointer */
2443 x = -1; /* reset loop */
2446 action = astman_get_header(&m, "Action");
2447 if (strcasecmp(action, "login")) {
2448 act_found = action_find(action);
2451 * we have to simulate a session for this action request
2452 * to be able to pass it down for processing
2453 * This is necessary to meet the previous design of manager.c
2456 s.f = (void*)1; /* set this to something so our request will make it through all functions that test it*/
2458 ao2_lock(act_found);
2459 if (act_found->registered && act_found->func) {
2460 if (act_found->module) {
2461 ast_module_ref(act_found->module);
2463 ao2_unlock(act_found);
2464 ret = act_found->func(&s, &m);
2465 ao2_lock(act_found);
2466 if (act_found->module) {
2467 ast_module_unref(act_found->module);
2472 ao2_unlock(act_found);
2473 ao2_t_ref(act_found, -1, "done with found action object");
2482 * helper function to send a string to the socket.
2483 * Return -1 on error (e.g. buffer full).
2485 static int send_string(struct mansession *s, char *string)
2488 FILE *f = s->f ? s->f : s->session->f;
2489 int fd = s->f ? s->fd : s->session->fd;
2491 /* It's a result from one of the hook's action invocation */
2494 * to send responses, we're using the same function
2495 * as for receiving events. We call the event "HookResponse"
2497 s->hook->helper(EVENT_FLAG_HOOKRESPONSE, "HookResponse", string);
2501 if ((res = ast_careful_fwrite(f, fd, string, strlen(string), s->session->writetimeout))) {
2509 * \brief thread local buffer for astman_append
2511 * \note This can not be defined within the astman_append() function
2512 * because it declares a couple of functions that get used to
2513 * initialize the thread local storage key.
2515 AST_THREADSTORAGE(astman_append_buf);
2517 AST_THREADSTORAGE(userevent_buf);
2519 /*! \brief initial allocated size for the astman_append_buf and astman_send_*_va */
2520 #define ASTMAN_APPEND_BUF_INITSIZE 256
2523 * utility functions for creating AMI replies
2525 void astman_append(struct mansession *s, const char *fmt, ...)
2528 struct ast_str *buf;
2530 if (!(buf = ast_str_thread_get(&astman_append_buf, ASTMAN_APPEND_BUF_INITSIZE))) {
2535 ast_str_set_va(&buf, 0, fmt, ap);
2538 if (s->f != NULL || s->session->f != NULL) {
2539 send_string(s, ast_str_buffer(buf));
2541 ast_verbose("fd == -1 in astman_append, should not happen\n");
2545 /*! \note NOTE: XXX this comment is unclear and possibly wrong.
2546 Callers of astman_send_error(), astman_send_response() or astman_send_ack() must EITHER
2547 hold the session lock _or_ be running in an action callback (in which case s->session->busy will
2548 be non-zero). In either of these cases, there is no need to lock-protect the session's
2549 fd, since no other output will be sent (events will be queued), and no input will
2550 be read until either the current action finishes or get_input() obtains the session
2554 /*! \todo XXX MSG_MOREDATA should go to a header file. */
2555 #define MSG_MOREDATA ((char *)astman_send_response)
2557 /*! \brief send a response with an optional message,
2558 * and terminate it with an empty line.
2559 * m is used only to grab the 'ActionID' field.
2561 * Use the explicit constant MSG_MOREDATA to remove the empty line.
2562 * XXX MSG_MOREDATA should go to a header file.
2564 static void astman_send_response_full(struct mansession *s, const struct message *m, char *resp, char *msg, char *listflag)
2566 const char *id = astman_get_header(m, "ActionID");
2568 astman_append(s, "Response: %s\r\n", resp);
2569 if (!ast_strlen_zero(id)) {
2570 astman_append(s, "ActionID: %s\r\n", id);
2573 astman_append(s, "EventList: %s\r\n", listflag); /* Start, complete, cancelled */
2575 if (msg == MSG_MOREDATA) {
2578 astman_append(s, "Message: %s\r\n\r\n", msg);
2580 astman_append(s, "\r\n");
2584 void astman_send_response(struct mansession *s, const struct message *m, char *resp, char *msg)
2586 astman_send_response_full(s, m, resp, msg, NULL);
2589 void astman_send_error(struct mansession *s, const struct message *m, char *error)
2591 astman_send_response_full(s, m, "Error", error, NULL);
2594 void astman_send_error_va(struct mansession *s, const struct message *m, const char *fmt, ...)
2597 struct ast_str *buf;
2600 if (!(buf = ast_str_thread_get(&astman_append_buf, ASTMAN_APPEND_BUF_INITSIZE))) {
2605 ast_str_set_va(&buf, 0, fmt, ap);
2608 /* astman_append will use the same underlying buffer, so copy the message out
2609 * before sending the response */
2610 msg = ast_str_buffer(buf);
2612 msg = ast_strdupa(msg);
2614 astman_send_response_full(s, m, "Error", msg, NULL);
2617 void astman_send_ack(struct mansession *s, const struct message *m, char *msg)
2619 astman_send_response_full(s, m, "Success", msg, NULL);
2622 static void astman_start_ack(struct mansession *s, const struct message *m)
2624 astman_send_response_full(s, m, "Success", MSG_MOREDATA, NULL);
2627 void astman_send_listack(struct mansession *s, const struct message *m, char *msg, char *listflag)
2629 astman_send_response_full(s, m, "Success", msg, listflag);
2632 /*! \brief Lock the 'mansession' structure. */
2633 static void mansession_lock(struct mansession *s)
2635 ast_mutex_lock(&s->lock);
2638 /*! \brief Unlock the 'mansession' structure. */
2639 static void mansession_unlock(struct mansession *s)
2641 ast_mutex_unlock(&s->lock);
2645 Rather than braindead on,off this now can also accept a specific int mask value
2646 or a ',' delim list of mask strings (the same as manager.conf) -anthm
2648 static int set_eventmask(struct mansession *s, const char *eventmask)
2650 int maskint = strings_to_mask(eventmask);
2652 ao2_lock(s->session);
2654 s->session->send_events = maskint;
2656 ao2_unlock(s->session);
2661 static enum ast_transport mansession_get_transport(const struct mansession *s)
2663 return s->tcptls_session->parent->tls_cfg ? AST_TRANSPORT_TLS :
2667 static void report_invalid_user(const struct mansession *s, const char *username)
2669 char session_id[32];
2670 struct ast_security_event_inval_acct_id inval_acct_id = {
2671 .common.event_type = AST_SECURITY_EVENT_INVAL_ACCT_ID,
2672 .common.version = AST_SECURITY_EVENT_INVAL_ACCT_ID_VERSION,
2673 .common.service = "AMI",
2674 .common.account_id = username,
2675 .common.session_tv = &s->session->sessionstart_tv,
2676 .common.local_addr = {
2677 .addr = &s->tcptls_session->parent->local_address,
2678 .transport = mansession_get_transport(s),
2680 .common.remote_addr = {
2681 .addr = &s->session->addr,
2682 .transport = mansession_get_transport(s),
2684 .common.session_id = session_id,
2687 snprintf(session_id, sizeof(session_id), "%p", s);
2689 ast_security_event_report(AST_SEC_EVT(&inval_acct_id));
2692 static void report_failed_acl(const struct mansession *s, const char *username)
2694 char session_id[32];
2695 struct ast_security_event_failed_acl failed_acl_event = {
2696 .common.event_type = AST_SECURITY_EVENT_FAILED_ACL,
2697 .common.version = AST_SECURITY_EVENT_FAILED_ACL_VERSION,
2698 .common.service = "AMI",
2699 .common.account_id = username,
2700 .common.session_tv = &s->session->sessionstart_tv,
2701 .common.local_addr = {
2702 .addr = &s->tcptls_session->parent->local_address,
2703 .transport = mansession_get_transport(s),
2705 .common.remote_addr = {
2706 .addr = &s->session->addr,
2707 .transport = mansession_get_transport(s),
2709 .common.session_id = session_id,
2712 snprintf(session_id, sizeof(session_id), "%p", s->session);
2714 ast_security_event_report(AST_SEC_EVT(&failed_acl_event));
2717 static void report_inval_password(const struct mansession *s, const char *username)
2719 char session_id[32];
2720 struct ast_security_event_inval_password inval_password = {
2721 .common.event_type = AST_SECURITY_EVENT_INVAL_PASSWORD,
2722 .common.version = AST_SECURITY_EVENT_INVAL_PASSWORD_VERSION,
2723 .common.service = "AMI",
2724 .common.account_id = username,
2725 .common.session_tv = &s->session->sessionstart_tv,
2726 .common.local_addr = {
2727 .addr = &s->tcptls_session->parent->local_address,
2728 .transport = mansession_get_transport(s),
2730 .common.remote_addr = {
2731 .addr = &s->session->addr,
2732 .transport = mansession_get_transport(s),
2734 .common.session_id = session_id,
2737 snprintf(session_id, sizeof(session_id), "%p", s->session);
2739 ast_security_event_report(AST_SEC_EVT(&inval_password));
2742 static void report_auth_success(const struct mansession *s)
2744 char session_id[32];
2745 struct ast_security_event_successful_auth successful_auth = {
2746 .common.event_type = AST_SECURITY_EVENT_SUCCESSFUL_AUTH,
2747 .common.version = AST_SECURITY_EVENT_SUCCESSFUL_AUTH_VERSION,
2748 .common.service = "AMI",
2749 .common.account_id = s->session->username,
2750 .common.session_tv = &s->session->sessionstart_tv,
2751 .common.local_addr = {
2752 .addr = &s->tcptls_session->parent->local_address,
2753 .transport = mansession_get_transport(s),
2755 .common.remote_addr = {
2756 .addr = &s->session->addr,
2757 .transport = mansession_get_transport(s),
2759 .common.session_id = session_id,
2762 snprintf(session_id, sizeof(session_id), "%p", s->session);
2764 ast_security_event_report(AST_SEC_EVT(&successful_auth));
2767 static void report_req_not_allowed(const struct mansession *s, const char *action)
2769 char session_id[32];
2770 char request_type[64];
2771 struct ast_security_event_req_not_allowed req_not_allowed = {
2772 .common.event_type = AST_SECURITY_EVENT_REQ_NOT_ALLOWED,
2773 .common.version = AST_SECURITY_EVENT_REQ_NOT_ALLOWED_VERSION,
2774 .common.service = "AMI",
2775 .common.account_id = s->session->username,
2776 .common.session_tv = &s->session->sessionstart_tv,
2777 .common.local_addr = {
2778 .addr = &s->tcptls_session->parent->local_address,
2779 .transport = mansession_get_transport(s),
2781 .common.remote_addr = {
2782 .addr = &s->session->addr,
2783 .transport = mansession_get_transport(s),
2785 .common.session_id = session_id,
2787 .request_type = request_type,
2790 snprintf(session_id, sizeof(session_id), "%p", s->session);
2791 snprintf(request_type, sizeof(request_type), "Action: %s", action);
2793 ast_security_event_report(AST_SEC_EVT(&req_not_allowed));
2796 static void report_req_bad_format(const struct mansession *s, const char *action)
2798 char session_id[32];
2799 char request_type[64];
2800 struct ast_security_event_req_bad_format req_bad_format = {
2801 .common.event_type = AST_SECURITY_EVENT_REQ_BAD_FORMAT,
2802 .common.version = AST_SECURITY_EVENT_REQ_BAD_FORMAT_VERSION,
2803 .common.service = "AMI",
2804 .common.account_id = s->session->username,
2805 .common.session_tv = &s->session->sessionstart_tv,
2806 .common.local_addr = {
2807 .addr = &s->tcptls_session->parent->local_address,
2808 .transport = mansession_get_transport(s),
2810 .common.remote_addr = {
2811 .addr = &s->session->addr,
2812 .transport = mansession_get_transport(s),
2814 .common.session_id = session_id,
2816 .request_type = request_type,
2819 snprintf(session_id, sizeof(session_id), "%p", s->session);
2820 snprintf(request_type, sizeof(request_type), "Action: %s", action);
2822 ast_security_event_report(AST_SEC_EVT(&req_bad_format));
2825 static void report_failed_challenge_response(const struct mansession *s,
2826 const char *response, const char *expected_response)
2828 char session_id[32];
2829 struct ast_security_event_chal_resp_failed chal_resp_failed = {
2830 .common.event_type = AST_SECURITY_EVENT_CHAL_RESP_FAILED,
2831 .common.version = AST_SECURITY_EVENT_CHAL_RESP_FAILED_VERSION,
2832 .common.service = "AMI",
2833 .common.account_id = s->session->username,
2834 .common.session_tv = &s->session->sessionstart_tv,
2835 .common.local_addr = {
2836 .addr = &s->tcptls_session->parent->local_address,
2837 .transport = mansession_get_transport(s),
2839 .common.remote_addr = {
2840 .addr = &s->session->addr,
2841 .transport = mansession_get_transport(s),
2843 .common.session_id = session_id,
2845 .challenge = s->session->challenge,
2846 .response = response,
2847 .expected_response = expected_response,
2850 snprintf(session_id, sizeof(session_id), "%p", s->session);
2852 ast_security_event_report(AST_SEC_EVT(&chal_resp_failed));
2855 static void report_session_limit(const struct mansession *s)
2857 char session_id[32];
2858 struct ast_security_event_session_limit session_limit = {
2859 .common.event_type = AST_SECURITY_EVENT_SESSION_LIMIT,
2860 .common.version = AST_SECURITY_EVENT_SESSION_LIMIT_VERSION,
2861 .common.service = "AMI",
2862 .common.account_id = s->session->username,
2863 .common.session_tv = &s->session->sessionstart_tv,
2864 .common.local_addr = {
2865 .addr = &s->tcptls_session->parent->local_address,
2866 .transport = mansession_get_transport(s),
2868 .common.remote_addr = {
2869 .addr = &s->session->addr,
2870 .transport = mansession_get_transport(s),
2872 .common.session_id = session_id,
2875 snprintf(session_id, sizeof(session_id), "%p", s->session);
2877 ast_security_event_report(AST_SEC_EVT(&session_limit));
2881 * Here we start with action_ handlers for AMI actions,
2882 * and the internal functions used by them.
2883 * Generally, the handlers are called action_foo()
2886 /* helper function for action_login() */
2887 static int authenticate(struct mansession *s, const struct message *m)
2889 const char *username = astman_get_header(m, "Username");
2890 const char *password = astman_get_header(m, "Secret");
2892 struct ast_manager_user *user = NULL;
2893 regex_t *regex_filter;
2894 struct ao2_iterator filter_iter;
2896 if (ast_strlen_zero(username)) { /* missing username */
2900 /* locate user in locked state */
2901 AST_RWLIST_WRLOCK(&users);
2903 if (!(user = get_manager_by_name_locked(username))) {
2904 report_invalid_user(s, username);
2905 ast_log(LOG_NOTICE, "%s tried to authenticate with nonexistent user '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2906 } else if (user->acl && (ast_apply_acl(user->acl, &s->session->addr, "Manager User ACL: ") == AST_SENSE_DENY)) {
2907 report_failed_acl(s, username);
2908 ast_log(LOG_NOTICE, "%s failed to pass IP ACL as '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2909 } else if (!strcasecmp(astman_get_header(m, "AuthType"), "MD5")) {
2910 const char *key = astman_get_header(m, "Key");
2911 if (!ast_strlen_zero(key) && !ast_strlen_zero(s->session->challenge) && user->secret) {
2914 char md5key[256] = "";
2915 struct MD5Context md5;
2916 unsigned char digest[16];
2919 MD5Update(&md5, (unsigned char *) s->session->challenge, strlen(s->session->challenge));
2920 MD5Update(&md5, (unsigned char *) user->secret, strlen(user->secret));
2921 MD5Final(digest, &md5);
2922 for (x = 0; x < 16; x++)
2923 len += sprintf(md5key + len, "%2.2x", digest[x]);
2924 if (!strcmp(md5key, key)) {
2927 report_failed_challenge_response(s, key, md5key);
2930 ast_debug(1, "MD5 authentication is not possible. challenge: '%s'\n",
2931 S_OR(s->session->challenge, ""));
2933 } else if (user->secret) {
2934 if (!strcmp(password, user->secret)) {
2937 report_inval_password(s, username);
2942 ast_log(LOG_NOTICE, "%s failed to authenticate as '%s'\n", ast_sockaddr_stringify_addr(&s->session->addr), username);
2943 AST_RWLIST_UNLOCK(&users);
2949 /* All of the user parameters are copied to the session so that in the event
2950 * of a reload and a configuration change, the session parameters are not
2952 ast_copy_string(s->session->username, username, sizeof(s->session->username));
2953 s->session->readperm = user->readperm;
2954 s->session->writeperm = user->writeperm;
2955 s->session->writetimeout = user->writetimeout;
2956 if (user->chanvars) {
2957 s->session->chanvars = ast_variables_dup(user->chanvars);
2960 filter_iter = ao2_iterator_init(user->whitefilters, 0);
2961 while ((regex_filter = ao2_iterator_next(&filter_iter))) {
2962 ao2_t_link(s->session->whitefilters, regex_filter, "add white user filter to session");
2963 ao2_t_ref(regex_filter, -1, "remove iterator ref");
2965 ao2_iterator_destroy(&filter_iter);
2967 filter_iter = ao2_iterator_init(user->blackfilters, 0);
2968 while ((regex_filter = ao2_iterator_next(&filter_iter))) {
2969 ao2_t_link(s->session->blackfilters, regex_filter, "add black user filter to session");
2970 ao2_t_ref(regex_filter, -1, "remove iterator ref");
2972 ao2_iterator_destroy(&filter_iter);
2974 s->session->sessionstart = time(NULL);
2975 s->session->sessionstart_tv = ast_tvnow();
2976 set_eventmask(s, astman_get_header(m, "Events"));
2978 report_auth_success(s);
2980 AST_RWLIST_UNLOCK(&users);
2984 static int action_ping(struct mansession *s, const struct message *m)
2986 const char *actionid = astman_get_header(m, "ActionID");
2987 struct timeval now = ast_tvnow();
2989 astman_append(s, "Response: Success\r\n");
2990 if (!ast_strlen_zero(actionid)){
2991 astman_append(s, "ActionID: %s\r\n", actionid);
2996 "Timestamp: %ld.%06lu\r\n"
2998 (long) now.tv_sec, (unsigned long) now.tv_usec);
3002 static int action_getconfig(struct mansession *s, const struct message *m)
3004 struct ast_config *cfg;
3005 const char *fn = astman_get_header(m, "Filename");
3006 const char *category = astman_get_header(m, "Category");
3009 char *cur_category = NULL;
3010 struct ast_variable *v;
3011 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3013 if (ast_strlen_zero(fn)) {
3014 astman_send_error(s, m, "Filename not specified");
3017 cfg = ast_config_load2(fn, "manager", config_flags);
3018 if (cfg == CONFIG_STATUS_FILEMISSING) {
3019 astman_send_error(s, m, "Config file not found");
3021 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3022 astman_send_error(s, m, "Config file has invalid format");
3026 astman_start_ack(s, m);
3027 while ((cur_category = ast_category_browse(cfg, cur_category))) {
3028 if (ast_strlen_zero(category) || (!ast_strlen_zero(category) && !strcmp(category, cur_category))) {
3030 astman_append(s, "Category-%06d: %s\r\n", catcount, cur_category);
3031 for (v = ast_variable_browse(cfg, cur_category); v; v = v->next) {
3032 astman_append(s, "Line-%06d-%06d: %s=%s\r\n", catcount, lineno++, v->name, v->value);
3037 if (!ast_strlen_zero(category) && catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
3038 astman_append(s, "No categories found\r\n");
3040 ast_config_destroy(cfg);
3041 astman_append(s, "\r\n");
3046 static int action_listcategories(struct mansession *s, const struct message *m)
3048 struct ast_config *cfg;
3049 const char *fn = astman_get_header(m, "Filename");
3050 char *category = NULL;
3051 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3054 if (ast_strlen_zero(fn)) {
3055 astman_send_error(s, m, "Filename not specified");
3058 if (!(cfg = ast_config_load2(fn, "manager", config_flags))) {
3059 astman_send_error(s, m, "Config file not found");
3061 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3062 astman_send_error(s, m, "Config file has invalid format");
3065 astman_start_ack(s, m);
3066 while ((category = ast_category_browse(cfg, category))) {
3067 astman_append(s, "Category-%06d: %s\r\n", catcount, category);
3070 if (catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
3071 astman_append(s, "Error: no categories found\r\n");
3073 ast_config_destroy(cfg);
3074 astman_append(s, "\r\n");
3082 /*! The amount of space in out must be at least ( 2 * strlen(in) + 1 ) */
3083 static void json_escape(char *out, const char *in)
3086 if (*in == '\\' || *in == '\"') {
3096 * \brief Append a JSON escaped string to the manager stream.
3098 * \param s AMI stream to append a string.
3099 * \param str String to append to the stream after JSON escaping it.
3103 static void astman_append_json(struct mansession *s, const char *str)
3107 buf = ast_alloca(2 * strlen(str) + 1);
3108 json_escape(buf, str);
3109 astman_append(s, "%s", buf);
3112 static int action_getconfigjson(struct mansession *s, const struct message *m)
3114 struct ast_config *cfg;
3115 const char *fn = astman_get_header(m, "Filename");
3116 char *category = NULL;
3117 struct ast_variable *v;
3119 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3121 if (ast_strlen_zero(fn)) {
3122 astman_send_error(s, m, "Filename not specified");
3126 if (!(cfg = ast_config_load2(fn, "manager", config_flags))) {
3127 astman_send_error(s, m, "Config file not found");
3129 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3130 astman_send_error(s, m, "Config file has invalid format");
3134 astman_start_ack(s, m);
3135 astman_append(s, "JSON: {");
3136 while ((category = ast_category_browse(cfg, category))) {
3139 astman_append(s, "%s\"", comma1 ? "," : "");
3140 astman_append_json(s, category);
3141 astman_append(s, "\":[");
3143 for (v = ast_variable_browse(cfg, category); v; v = v->next) {
3144 astman_append(s, "%s\"", comma2 ? "," : "");
3145 astman_append_json(s, v->name);
3146 astman_append(s, "\":\"");
3147 astman_append_json(s, v->value);
3148 astman_append(s, "\"");
3151 astman_append(s, "]");
3153 astman_append(s, "}\r\n\r\n");
3155 ast_config_destroy(cfg);
3160 /*! \brief helper function for action_updateconfig */
3161 static enum error_type handle_updates(struct mansession *s, const struct message *m, struct ast_config *cfg, const char *dfn)
3165 const char *action, *cat, *var, *value, *match, *line;
3166 struct ast_category *category;
3167 struct ast_variable *v;
3168 struct ast_str *str1 = ast_str_create(16), *str2 = ast_str_create(16);
3169 enum error_type result = 0;
3171 for (x = 0; x < 100000; x++) { /* 100000 = the max number of allowed updates + 1 */
3172 unsigned int object = 0;
3174 snprintf(hdr, sizeof(hdr), "Action-%06d", x);
3175 action = astman_get_header(m, hdr);
3176 if (ast_strlen_zero(action)) /* breaks the for loop if no action header */
3177 break; /* this could cause problems if actions come in misnumbered */
3179 snprintf(hdr, sizeof(hdr), "Cat-%06d", x);
3180 cat = astman_get_header(m, hdr);
3181 if (ast_strlen_zero(cat)) { /* every action needs a category */
3182 result = UNSPECIFIED_CATEGORY;
3186 snprintf(hdr, sizeof(hdr), "Var-%06d", x);
3187 var = astman_get_header(m, hdr);
3189 snprintf(hdr, sizeof(hdr), "Value-%06d", x);
3190 value = astman_get_header(m, hdr);
3192 if (!ast_strlen_zero(value) && *value == '>') {
3197 snprintf(hdr, sizeof(hdr), "Match-%06d", x);
3198 match = astman_get_header(m, hdr);
3200 snprintf(hdr, sizeof(hdr), "Line-%06d", x);
3201 line = astman_get_header(m, hdr);
3203 if (!strcasecmp(action, "newcat")) {
3204 if (ast_category_get(cfg,cat)) { /* check to make sure the cat doesn't */
3205 result = FAILURE_NEWCAT; /* already exist */
3208 if (!(category = ast_category_new(cat, dfn, -1))) {
3209 result = FAILURE_ALLOCATION;
3212 if (ast_strlen_zero(match)) {
3213 ast_category_append(cfg, category);
3215 ast_category_insert(cfg, category, match);
3217 } else if (!strcasecmp(action, "renamecat")) {
3218 if (ast_strlen_zero(value)) {
3219 result = UNSPECIFIED_ARGUMENT;
3222 if (!(category = ast_category_get(cfg, cat))) {
3223 result = UNKNOWN_CATEGORY;
3226 ast_category_rename(category, value);
3227 } else if (!strcasecmp(action, "delcat")) {
3228 if (ast_category_delete(cfg, cat)) {
3229 result = FAILURE_DELCAT;
3232 } else if (!strcasecmp(action, "emptycat")) {
3233 if (ast_category_empty(cfg, cat)) {
3234 result = FAILURE_EMPTYCAT;
3237 } else if (!strcasecmp(action, "update")) {
3238 if (ast_strlen_zero(var)) {
3239 result = UNSPECIFIED_ARGUMENT;
3242 if (!(category = ast_category_get(cfg,cat))) {
3243 result = UNKNOWN_CATEGORY;
3246 if (ast_variable_update(category, var, value, match, object)) {
3247 result = FAILURE_UPDATE;
3250 } else if (!strcasecmp(action, "delete")) {
3251 if ((ast_strlen_zero(var) && ast_strlen_zero(line))) {
3252 result = UNSPECIFIED_ARGUMENT;
3255 if (!(category = ast_category_get(cfg, cat))) {
3256 result = UNKNOWN_CATEGORY;
3259 if (ast_variable_delete(category, var, match, line)) {
3260 result = FAILURE_DELETE;
3263 } else if (!strcasecmp(action, "append")) {
3264 if (ast_strlen_zero(var)) {
3265 result = UNSPECIFIED_ARGUMENT;
3268 if (!(category = ast_category_get(cfg, cat))) {
3269 result = UNKNOWN_CATEGORY;
3272 if (!(v = ast_variable_new(var, value, dfn))) {
3273 result = FAILURE_ALLOCATION;
3276 if (object || (match && !strcasecmp(match, "object"))) {
3279 ast_variable_append(category, v);
3280 } else if (!strcasecmp(action, "insert")) {
3281 if (ast_strlen_zero(var) || ast_strlen_zero(line)) {
3282 result = UNSPECIFIED_ARGUMENT;
3285 if (!(category = ast_category_get(cfg, cat))) {
3286 result = UNKNOWN_CATEGORY;
3289 if (!(v = ast_variable_new(var, value, dfn))) {
3290 result = FAILURE_ALLOCATION;
3293 ast_variable_insert(category, v, line);
3296 ast_log(LOG_WARNING, "Action-%06d: %s not handled\n", x, action);
3297 result = UNKNOWN_ACTION;
3306 static int action_updateconfig(struct mansession *s, const struct message *m)
3308 struct ast_config *cfg;
3309 const char *sfn = astman_get_header(m, "SrcFilename");
3310 const char *dfn = astman_get_header(m, "DstFilename");
3312 const char *rld = astman_get_header(m, "Reload");
3313 struct ast_flags config_flags = { CONFIG_FLAG_WITHCOMMENTS | CONFIG_FLAG_NOCACHE };
3314 enum error_type result;
3316 if (ast_strlen_zero(sfn) || ast_strlen_zero(dfn)) {
3317 astman_send_error(s, m, "Filename not specified");
3320 if (!(cfg = ast_config_load2(sfn, "manager", config_flags))) {
3321 astman_send_error(s, m, "Config file not found");
3323 } else if (cfg == CONFIG_STATUS_FILEINVALID) {
3324 astman_send_error(s, m, "Config file has invalid format");
3327 result = handle_updates(s, m, cfg, dfn);
3329 ast_include_rename(cfg, sfn, dfn); /* change the include references from dfn to sfn, so things match up */
3330 res = ast_config_text_file_save(dfn, cfg, "Manager");
3331 ast_config_destroy(cfg);
3333 astman_send_error(s, m, "Save of config failed");
3336 astman_send_ack(s, m, NULL);
3337 if (!ast_strlen_zero(rld)) {
3338 if (ast_true(rld)) {
3341 ast_module_reload(rld);
3344 ast_config_destroy(cfg);
3346 case UNKNOWN_ACTION:
3347 astman_send_error(s, m, "Unknown action command");
3349 case UNKNOWN_CATEGORY:
3350 astman_send_error(s, m, "Given category does not exist");
3352 case UNSPECIFIED_CATEGORY:
3353 astman_send_error(s, m, "Category not specified");
3355 case UNSPECIFIED_ARGUMENT:
3356 astman_send_error(s, m, "Problem with category, value, or line (if required)");
3358 case FAILURE_ALLOCATION:
3359 astman_send_error(s, m, "Memory allocation failure, this should not happen");
3361 case FAILURE_NEWCAT:
3362 astman_send_error(s, m, "Create category did not complete successfully");
3364 case FAILURE_DELCAT:
3365 astman_send_error(s, m, "Delete category did not complete successfully");
3367 case FAILURE_EMPTYCAT:
3368 astman_send_error(s, m, "Empty category did not complete successfully");
3370 case FAILURE_UPDATE:
3371 astman_send_error(s, m, "Update did not complete successfully");
3373 case FAILURE_DELETE:
3374 astman_send_error(s, m, "Delete did not complete successfully");
3376 case FAILURE_APPEND:
3377 astman_send_error(s, m, "Append did not complete successfully");
3384 static int action_createconfig(struct mansession *s, const struct message *m)
3387 const char *fn = astman_get_header(m, "Filename");
3388 struct ast_str *filepath = ast_str_alloca(PATH_MAX);
3389 ast_str_set(&filepath, 0, "%s/", ast_config_AST_CONFIG_DIR);
3390 ast_str_append(&filepath, 0, "%s", fn);
3392 if ((fd = open(ast_str_buffer(filepath), O_CREAT | O_EXCL, AST_FILE_MODE)) != -1) {
3394 astman_send_ack(s, m, "New configuration file created successfully");
3396 astman_send_error(s, m, strerror(errno));
3402 static int action_waitevent(struct mansession *s, const struct message *m)
3404 const char *timeouts = astman_get_header(m, "Timeout");
3408 const char *id = astman_get_header(m, "ActionID");
3411 if (!ast_strlen_zero(id)) {
3412 snprintf(idText, sizeof(idText), "ActionID: %s\r\n", id);
3417 if (!ast_strlen_zero(timeouts)) {
3418 sscanf(timeouts, "%30i", &timeout);
3422 /* XXX maybe put an upper bound, or prevent the use of 0 ? */
3425 ao2_lock(s->session);
3426 if (s->session->waiting_thread != AST_PTHREADT_NULL) {
3427 pthread_kill(s->session->waiting_thread, SIGURG);
3430 if (s->session->managerid) { /* AMI-over-HTTP session */
3432 * Make sure the timeout is within the expire time of the session,
3433 * as the client will likely abort the request if it does not see
3434 * data coming after some amount of time.
3436 time_t now = time(NULL);
3437 int max = s->session->sessiontimeout - now - 10;
3439 if (max < 0) { /* We are already late. Strange but possible. */
3442 if (timeout < 0 || timeout > max) {
3445 if (!s->session->send_events) { /* make sure we record events */
3446 s->session->send_events = -1;
3449 ao2_unlock(s->session);
3451 /* XXX should this go inside the lock ? */
3452 s->session->waiting_thread = pthread_self(); /* let new events wake up this thread */
3453 ast_debug(1, "Starting waiting for an event!\n");
3455 for (x = 0; x < timeout || timeout < 0; x++) {
3456 ao2_lock(s->session);
3457 if (AST_RWLIST_NEXT(s->session->last_ev, eq_next)) {
3460 /* We can have multiple HTTP session point to the same mansession entry.
3461 * The way we deal with it is not very nice: newcomers kick out the previous
3462 * HTTP session. XXX this needs to be improved.
3464 if (s->session->waiting_thread != pthread_self()) {
3467 if (s->session->needdestroy) {
3470 ao2_unlock(s->session);