Outbound SIP OPTIONS messages will now include fromuser of related peer.
[asterisk/asterisk.git] / channels / chan_sip.c
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 1999 - 2006, Digium, Inc.
5  *
6  * Mark Spencer <markster@digium.com>
7  *
8  * See http://www.asterisk.org for more information about
9  * the Asterisk project. Please do not directly contact
10  * any of the maintainers of this project for assistance;
11  * the project provides a web site, mailing lists and IRC
12  * channels for your use.
13  *
14  * This program is free software, distributed under the terms of
15  * the GNU General Public License Version 2. See the LICENSE file
16  * at the top of the source tree.
17  */
18
19 /*!
20  * \file
21  * \brief Implementation of Session Initiation Protocol
22  *
23  * \author Mark Spencer <markster@digium.com>
24  *
25  * See Also:
26  * \arg \ref AstCREDITS
27  *
28  * Implementation of RFC 3261 - without S/MIME, and experimental TCP and TLS support
29  * Configuration file \link Config_sip sip.conf \endlink
30  *
31  * ********** IMPORTANT *
32  * \note TCP/TLS support is EXPERIMENTAL and WILL CHANGE. This applies to configuration
33  *      settings, dialplan commands and dialplans apps/functions
34  * See \ref sip_tcp_tls
35  *
36  *
37  * ******** General TODO:s
38  * \todo Better support of forking
39  * \todo VIA branch tag transaction checking
40  * \todo Transaction support
41  *
42  * ******** Wishlist: Improvements
43  * - Support of SIP domains for devices, so that we match on username@domain in the From: header
44  * - Connect registrations with a specific device on the incoming call. It's not done
45  *   automatically in Asterisk
46  *
47  * \ingroup channel_drivers
48  *
49  * \par Overview of the handling of SIP sessions
50  * The SIP channel handles several types of SIP sessions, or dialogs,
51  * not all of them being "telephone calls".
52  * - Incoming calls that will be sent to the PBX core
53  * - Outgoing calls, generated by the PBX
54  * - SIP subscriptions and notifications of states and voicemail messages
55  * - SIP registrations, both inbound and outbound
56  * - SIP peer management (peerpoke, OPTIONS)
57  * - SIP text messages
58  *
59  * In the SIP channel, there's a list of active SIP dialogs, which includes
60  * all of these when they are active. "sip show channels" in the CLI will
61  * show most of these, excluding subscriptions which are shown by
62  * "sip show subscriptions"
63  *
64  * \par incoming packets
65  * Incoming packets are received in the monitoring thread, then handled by
66  * sipsock_read() for udp only. In tcp, packets are read by the tcp_helper thread.
67  * sipsock_read() function parses the packet and matches an existing
68  * dialog or starts a new SIP dialog.
69  *
70  * sipsock_read sends the packet to handle_incoming(), that parses a bit more.
71  * If it is a response to an outbound request, the packet is sent to handle_response().
72  * If it is a request, handle_incoming() sends it to one of a list of functions
73  * depending on the request type - INVITE, OPTIONS, REFER, BYE, CANCEL etc
74  * sipsock_read locks the ast_channel if it exists (an active call) and
75  * unlocks it after we have processed the SIP message.
76  *
77  * A new INVITE is sent to handle_request_invite(), that will end up
78  * starting a new channel in the PBX, the new channel after that executing
79  * in a separate channel thread. This is an incoming "call".
80  * When the call is answered, either by a bridged channel or the PBX itself
81  * the sip_answer() function is called.
82  *
83  * The actual media - Video or Audio - is mostly handled by the RTP subsystem
84  * in rtp.c
85  *
86  * \par Outbound calls
87  * Outbound calls are set up by the PBX through the sip_request_call()
88  * function. After that, they are activated by sip_call().
89  *
90  * \par Hanging up
91  * The PBX issues a hangup on both incoming and outgoing calls through
92  * the sip_hangup() function
93  */
94
95 /*!
96  * \page sip_tcp_tls SIP TCP and TLS support
97  *
98  * \par tcpfixes TCP implementation changes needed
99  * \todo Fix TCP/TLS handling in dialplan, SRV records, transfers and much more
100  * \todo Save TCP/TLS sessions in registry
101  *      If someone registers a SIPS uri, this forces us to set up a TLS connection back.
102  * \todo Add TCP/TLS information to function SIPPEER and SIPCHANINFO
103  * \todo If tcpenable=yes, we must open a TCP socket on the same address as the IP for UDP.
104  *      The tcpbindaddr config option should only be used to open ADDITIONAL ports
105  *      So we should propably go back to
106  *              bindaddr= the default address to bind to. If tcpenable=yes, then bind this to both udp and TCP
107  *                              if tlsenable=yes, open TLS port (provided we also have cert)
108  *              tcpbindaddr = extra address for additional TCP connections
109  *              tlsbindaddr = extra address for additional TCP/TLS connections
110  *              udpbindaddr = extra address for additional UDP connections
111  *                      These three options should take multiple IP/port pairs
112  *      Note: Since opening additional listen sockets is a *new* feature we do not have today
113  *              the XXXbindaddr options needs to be disabled until we have support for it
114  *
115  * \todo re-evaluate the transport= setting in sip.conf. This is right now not well
116  *      thought of. If a device in sip.conf contacts us via TCP, we should not switch transport,
117  *      even if udp is the configured first transport.
118  *
119  * \todo Be prepared for one outbound and another incoming socket per pvt. This applies
120  *       specially to communication with other peers (proxies).
121  * \todo We need to test TCP sessions with SIP proxies and in regards
122  *       to the SIP outbound specs.
123  * \todo ;transport=tls was deprecated in RFC3261 and should not be used at all. See section 26.2.2.
124  *
125  * \todo If the message is smaller than the given Content-length, the request should get a 400 Bad request
126  *       message. If it's a response, it should be dropped. (RFC 3261, Section 18.3)
127  * \todo Since we have had multidomain support in Asterisk for quite a while, we need to support
128  *       multiple domains in our TLS implementation, meaning one socket and one cert per domain
129  * \todo Selection of transport for a request needs to be done after we've parsed all route headers,
130  *       also considering outbound proxy options.
131  *              First request: Outboundproxy, routes, (reg contact or URI. If URI doesn't have port:  DNS naptr, srv, AAA)
132  *              Intermediate requests: Outboundproxy(only when forced), routes, contact/uri
133  *      DNS naptr support is crucial. A SIP uri might lead to a TLS connection.
134  *      Also note that due to outbound proxy settings, a SIPS uri might have to be sent on UDP (not to recommend though)
135  * \todo Default transports are set to UDP, which cause the wrong behaviour when contacting remote
136  *      devices directly from the dialplan. UDP is only a fallback if no other method works,
137  *      in order to be compatible with RFC2543 (SIP/1.0) devices. For transactions that exceed the
138  *      MTU (like INIVTE with video, audio and RTT)  TCP should be preferred.
139  *
140  *      When dialling unconfigured peers (with no port number)  or devices in external domains
141  *      NAPTR records MUST be consulted to find configured transport. If they are not found,
142  *      SRV records for both TCP and UDP should be checked. If there's a record for TCP, use that.
143  *      If there's no record for TCP, then use UDP as a last resort. If there's no SRV records,
144  *      \note this only applies if there's no outbound proxy configured for the session. If an outbound
145  *      proxy is configured, these procedures might apply for locating the proxy and determining
146  *      the transport to use for communication with the proxy.
147  * \par Other bugs to fix ----
148  * __set_address_from_contact(const char *fullcontact, struct sockaddr_in *sin, int tcp)
149  *      - sets TLS port as default for all TCP connections, unless other port is given in contact.
150  * parse_register_contact(struct sip_pvt *pvt, struct sip_peer *peer, struct sip_request *req)
151  *      - assumes that the contact the UA registers is using the same transport as the REGISTER request, which is
152  *        a bad guess.
153  *      - Does not save any information about TCP/TLS connected devices, which is a severe BUG, as discussed on the mailing list.
154  * get_destination(struct sip_pvt *p, struct sip_request *oreq)
155  *      - Doesn't store the information that we got an incoming SIPS request in the channel, so that
156  *        we can require a secure signalling path OUT of Asterisk (on SIP or IAX2). Possibly, the call should
157  *        fail on in-secure signalling paths if there's no override in our configuration. At least, provide a
158  *        channel variable in the dialplan.
159  * get_refer_info(struct sip_pvt *transferer, struct sip_request *outgoing_req)
160  *      - As above, if we have a SIPS: uri in the refer-to header
161  *      - Does not check transport in refer_to uri.
162  */
163
164 /*** MODULEINFO
165         <use type="module">res_crypto</use>
166         <depend>chan_local</depend>
167         <support_level>core</support_level>
168  ***/
169
170 /*!  \page sip_session_timers SIP Session Timers in Asterisk Chan_sip
171
172         The SIP Session-Timers is an extension of the SIP protocol that allows end-points and proxies to
173         refresh a session periodically. The sessions are kept alive by sending a RE-INVITE or UPDATE
174         request at a negotiated interval. If a session refresh fails then all the entities that support Session-
175         Timers clear their internal session state. In addition, UAs generate a BYE request in order to clear
176         the state in the proxies and the remote UA (this is done for the benefit of SIP entities in the path
177         that do not support Session-Timers).
178
179         The Session-Timers can be configured on a system-wide, per-user, or per-peer basis. The peruser/
180         per-peer settings override the global settings. The following new parameters have been
181         added to the sip.conf file.
182                 session-timers=["accept", "originate", "refuse"]
183                 session-expires=[integer]
184                 session-minse=[integer]
185                 session-refresher=["uas", "uac"]
186
187         The session-timers parameter in sip.conf defines the mode of operation of SIP session-timers feature in
188         Asterisk. The Asterisk can be configured in one of the following three modes:
189
190         1. Accept :: In the "accept" mode, the Asterisk server honors session-timers requests
191                 made by remote end-points. A remote end-point can request Asterisk to engage
192                 session-timers by either sending it an INVITE request with a "Supported: timer"
193                 header in it or by responding to Asterisk's INVITE with a 200 OK that contains
194                 Session-Expires: header in it. In this mode, the Asterisk server does not
195                 request session-timers from remote end-points. This is the default mode.
196         2. Originate :: In the "originate" mode, the Asterisk server requests the remote
197                 end-points to activate session-timers in addition to honoring such requests
198                 made by the remote end-pints. In order to get as much protection as possible
199                 against hanging SIP channels due to network or end-point failures, Asterisk
200                 resends periodic re-INVITEs even if a remote end-point does not support
201                 the session-timers feature.
202         3. Refuse :: In the "refuse" mode, Asterisk acts as if it does not support session-
203                 timers for inbound or outbound requests. If a remote end-point requests
204                 session-timers in a dialog, then Asterisk ignores that request unless it's
205                 noted as a requirement (Require: header), in which case the INVITE is
206                 rejected with a 420 Bad Extension response.
207
208 */
209
210 #include "asterisk.h"
211
212 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
213
214 #include <signal.h>
215 #include <sys/signal.h>
216 #include <regex.h>
217 #include <inttypes.h>
218
219 #include "asterisk/network.h"
220 #include "asterisk/paths.h"     /* need ast_config_AST_SYSTEM_NAME */
221 /*
222    Uncomment the define below,  if you are having refcount related memory leaks.
223    With this uncommented, this module will generate a file, /tmp/refs, which contains
224    a history of the ao2_ref() calls. To be useful, all calls to ao2_* functions should
225    be modified to ao2_t_* calls, and include a tag describing what is happening with
226    enough detail, to make pairing up a reference count increment with its corresponding decrement.
227    The refcounter program in utils/ can be invaluable in highlighting objects that are not
228    balanced, along with the complete history for that object.
229    In normal operation, the macros defined will throw away the tags, so they do not
230    affect the speed of the program at all. They can be considered to be documentation.
231 */
232 /* #define  REF_DEBUG 1 */
233 #include "asterisk/lock.h"
234 #include "asterisk/config.h"
235 #include "asterisk/module.h"
236 #include "asterisk/pbx.h"
237 #include "asterisk/sched.h"
238 #include "asterisk/io.h"
239 #include "asterisk/rtp_engine.h"
240 #include "asterisk/udptl.h"
241 #include "asterisk/acl.h"
242 #include "asterisk/manager.h"
243 #include "asterisk/callerid.h"
244 #include "asterisk/cli.h"
245 #include "asterisk/musiconhold.h"
246 #include "asterisk/dsp.h"
247 #include "asterisk/features.h"
248 #include "asterisk/srv.h"
249 #include "asterisk/astdb.h"
250 #include "asterisk/causes.h"
251 #include "asterisk/utils.h"
252 #include "asterisk/file.h"
253 #include "asterisk/astobj2.h"
254 #include "asterisk/dnsmgr.h"
255 #include "asterisk/devicestate.h"
256 #include "asterisk/monitor.h"
257 #include "asterisk/netsock2.h"
258 #include "asterisk/localtime.h"
259 #include "asterisk/abstract_jb.h"
260 #include "asterisk/threadstorage.h"
261 #include "asterisk/translate.h"
262 #include "asterisk/ast_version.h"
263 #include "asterisk/event.h"
264 #include "asterisk/cel.h"
265 #include "asterisk/data.h"
266 #include "asterisk/aoc.h"
267 #include "asterisk/message.h"
268 #include "sip/include/sip.h"
269 #include "sip/include/globals.h"
270 #include "sip/include/config_parser.h"
271 #include "sip/include/reqresp_parser.h"
272 #include "sip/include/sip_utils.h"
273 #include "sip/include/srtp.h"
274 #include "sip/include/sdp_crypto.h"
275 #include "asterisk/ccss.h"
276 #include "asterisk/xml.h"
277 #include "sip/include/dialog.h"
278 #include "sip/include/dialplan_functions.h"
279 #include "sip/include/security_events.h"
280
281
282 /*** DOCUMENTATION
283         <application name="SIPDtmfMode" language="en_US">
284                 <synopsis>
285                         Change the dtmfmode for a SIP call.
286                 </synopsis>
287                 <syntax>
288                         <parameter name="mode" required="true">
289                                 <enumlist>
290                                         <enum name="inband" />
291                                         <enum name="info" />
292                                         <enum name="rfc2833" />
293                                 </enumlist>
294                         </parameter>
295                 </syntax>
296                 <description>
297                         <para>Changes the dtmfmode for a SIP call.</para>
298                 </description>
299         </application>
300         <application name="SIPAddHeader" language="en_US">
301                 <synopsis>
302                         Add a SIP header to the outbound call.
303                 </synopsis>
304                 <syntax argsep=":">
305                         <parameter name="Header" required="true" />
306                         <parameter name="Content" required="true" />
307                 </syntax>
308                 <description>
309                         <para>Adds a header to a SIP call placed with DIAL.</para>
310                         <para>Remember to use the X-header if you are adding non-standard SIP
311                         headers, like <literal>X-Asterisk-Accountcode:</literal>. Use this with care.
312                         Adding the wrong headers may jeopardize the SIP dialog.</para>
313                         <para>Always returns <literal>0</literal>.</para>
314                 </description>
315         </application>
316         <application name="SIPRemoveHeader" language="en_US">
317                 <synopsis>
318                         Remove SIP headers previously added with SIPAddHeader
319                 </synopsis>
320                 <syntax>
321                         <parameter name="Header" required="false" />
322                 </syntax>
323                 <description>
324                         <para>SIPRemoveHeader() allows you to remove headers which were previously
325                         added with SIPAddHeader(). If no parameter is supplied, all previously added
326                         headers will be removed. If a parameter is supplied, only the matching headers
327                         will be removed.</para>
328                         <para>For example you have added these 2 headers:</para>
329                         <para>SIPAddHeader(P-Asserted-Identity: sip:foo@bar);</para>
330                         <para>SIPAddHeader(P-Preferred-Identity: sip:bar@foo);</para>
331                         <para></para>
332                         <para>// remove all headers</para>
333                         <para>SIPRemoveHeader();</para>
334                         <para>// remove all P- headers</para>
335                         <para>SIPRemoveHeader(P-);</para>
336                         <para>// remove only the PAI header (note the : at the end)</para>
337                         <para>SIPRemoveHeader(P-Asserted-Identity:);</para>
338                         <para></para>
339                         <para>Always returns <literal>0</literal>.</para>
340                 </description>
341         </application>
342         <function name="SIP_HEADER" language="en_US">
343                 <synopsis>
344                         Gets the specified SIP header from an incoming INVITE message.
345                 </synopsis>
346                 <syntax>
347                         <parameter name="name" required="true" />
348                         <parameter name="number">
349                                 <para>If not specified, defaults to <literal>1</literal>.</para>
350                         </parameter>
351                 </syntax>
352                 <description>
353                         <para>Since there are several headers (such as Via) which can occur multiple
354                         times, SIP_HEADER takes an optional second argument to specify which header with
355                         that name to retrieve. Headers start at offset <literal>1</literal>.</para>
356                         <para>Please observe that contents of the SDP (an attachment to the 
357                         SIP request) can't be accessed with this function.</para>
358                 </description>
359         </function>
360         <function name="SIPPEER" language="en_US">
361                 <synopsis>
362                         Gets SIP peer information.
363                 </synopsis>
364                 <syntax>
365                         <parameter name="peername" required="true" />
366                         <parameter name="item">
367                                 <enumlist>
368                                         <enum name="ip">
369                                                 <para>(default) The IP address.</para>
370                                         </enum>
371                                         <enum name="port">
372                                                 <para>The port number.</para>
373                                         </enum>
374                                         <enum name="mailbox">
375                                                 <para>The configured mailbox.</para>
376                                         </enum>
377                                         <enum name="context">
378                                                 <para>The configured context.</para>
379                                         </enum>
380                                         <enum name="expire">
381                                                 <para>The epoch time of the next expire.</para>
382                                         </enum>
383                                         <enum name="dynamic">
384                                                 <para>Is it dynamic? (yes/no).</para>
385                                         </enum>
386                                         <enum name="callerid_name">
387                                                 <para>The configured Caller ID name.</para>
388                                         </enum>
389                                         <enum name="callerid_num">
390                                                 <para>The configured Caller ID number.</para>
391                                         </enum>
392                                         <enum name="callgroup">
393                                                 <para>The configured Callgroup.</para>
394                                         </enum>
395                                         <enum name="pickupgroup">
396                                                 <para>The configured Pickupgroup.</para>
397                                         </enum>
398                                         <enum name="codecs">
399                                                 <para>The configured codecs.</para>
400                                         </enum>
401                                         <enum name="status">
402                                                 <para>Status (if qualify=yes).</para>
403                                         </enum>
404                                         <enum name="regexten">
405                                                 <para>Extension activated at registration.</para>
406                                         </enum>
407                                         <enum name="limit">
408                                                 <para>Call limit (call-limit).</para>
409                                         </enum>
410                                         <enum name="busylevel">
411                                                 <para>Configured call level for signalling busy.</para>
412                                         </enum>
413                                         <enum name="curcalls">
414                                                 <para>Current amount of calls. Only available if call-limit is set.</para>
415                                         </enum>
416                                         <enum name="language">
417                                                 <para>Default language for peer.</para>
418                                         </enum>
419                                         <enum name="accountcode">
420                                                 <para>Account code for this peer.</para>
421                                         </enum>
422                                         <enum name="useragent">
423                                                 <para>Current user agent header used by peer.</para>
424                                         </enum>
425                                         <enum name="maxforwards">
426                                                 <para>The value used for SIP loop prevention in outbound requests</para>
427                                         </enum>
428                                         <enum name="chanvar[name]">
429                                                 <para>A channel variable configured with setvar for this peer.</para>
430                                         </enum>
431                                         <enum name="codec[x]">
432                                                 <para>Preferred codec index number <replaceable>x</replaceable> (beginning with zero).</para>
433                                         </enum>
434                                 </enumlist>
435                         </parameter>
436                 </syntax>
437                 <description></description>
438         </function>
439         <function name="SIPCHANINFO" language="en_US">
440                 <synopsis>
441                         Gets the specified SIP parameter from the current channel.
442                 </synopsis>
443                 <syntax>
444                         <parameter name="item" required="true">
445                                 <enumlist>
446                                         <enum name="peerip">
447                                                 <para>The IP address of the peer.</para>
448                                         </enum>
449                                         <enum name="recvip">
450                                                 <para>The source IP address of the peer.</para>
451                                         </enum>
452                                         <enum name="from">
453                                                 <para>The SIP URI from the <literal>From:</literal> header.</para>
454                                         </enum>
455                                         <enum name="uri">
456                                                 <para>The SIP URI from the <literal>Contact:</literal> header.</para>
457                                         </enum>
458                                         <enum name="useragent">
459                                                 <para>The Useragent header used by the peer.</para>
460                                         </enum>
461                                         <enum name="peername">
462                                                 <para>The name of the peer.</para>
463                                         </enum>
464                                         <enum name="t38passthrough">
465                                                 <para><literal>1</literal> if T38 is offered or enabled in this channel,
466                                                 otherwise <literal>0</literal>.</para>
467                                         </enum>
468                                 </enumlist>
469                         </parameter>
470                 </syntax>
471                 <description></description>
472         </function>
473         <function name="CHECKSIPDOMAIN" language="en_US">
474                 <synopsis>
475                         Checks if domain is a local domain.
476                 </synopsis>
477                 <syntax>
478                         <parameter name="domain" required="true" />
479                 </syntax>
480                 <description>
481                         <para>This function checks if the <replaceable>domain</replaceable> in the argument is configured
482                         as a local SIP domain that this Asterisk server is configured to handle.
483                         Returns the domain name if it is locally handled, otherwise an empty string.
484                         Check the <literal>domain=</literal> configuration in <filename>sip.conf</filename>.</para>
485                 </description>
486         </function>
487         <manager name="SIPpeers" language="en_US">
488                 <synopsis>
489                         List SIP peers (text format).
490                 </synopsis>
491                 <syntax>
492                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
493                 </syntax>
494                 <description>
495                         <para>Lists SIP peers in text format with details on current status.
496                         <literal>Peerlist</literal> will follow as separate events, followed by a final event called
497                         <literal>PeerlistComplete</literal>.</para>
498                 </description>
499         </manager>
500         <manager name="SIPshowpeer" language="en_US">
501                 <synopsis>
502                         show SIP peer (text format).
503                 </synopsis>
504                 <syntax>
505                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
506                         <parameter name="Peer" required="true">
507                                 <para>The peer name you want to check.</para>
508                         </parameter>
509                 </syntax>
510                 <description>
511                         <para>Show one SIP peer with details on current status.</para>
512                 </description>
513         </manager>
514         <manager name="SIPqualifypeer" language="en_US">
515                 <synopsis>
516                         Qualify SIP peers.
517                 </synopsis>
518                 <syntax>
519                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
520                         <parameter name="Peer" required="true">
521                                 <para>The peer name you want to qualify.</para>
522                         </parameter>
523                 </syntax>
524                 <description>
525                         <para>Qualify a SIP peer.</para>
526                 </description>
527         </manager>
528         <manager name="SIPshowregistry" language="en_US">
529                 <synopsis>
530                         Show SIP registrations (text format).
531                 </synopsis>
532                 <syntax>
533                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
534                 </syntax>
535                 <description>
536                         <para>Lists all registration requests and status. Registrations will follow as separate
537                         events followed by a final event called <literal>RegistrationsComplete</literal>.</para>
538                 </description>
539         </manager>
540         <manager name="SIPnotify" language="en_US">
541                 <synopsis>
542                         Send a SIP notify.
543                 </synopsis>
544                 <syntax>
545                         <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
546                         <parameter name="Channel" required="true">
547                                 <para>Peer to receive the notify.</para>
548                         </parameter>
549                         <parameter name="Variable" required="true">
550                                 <para>At least one variable pair must be specified.
551                                 <replaceable>name</replaceable>=<replaceable>value</replaceable></para>
552                         </parameter>
553                 </syntax>
554                 <description>
555                         <para>Sends a SIP Notify event.</para>
556                         <para>All parameters for this event must be specified in the body of this request
557                         via multiple <literal>Variable: name=value</literal> sequences.</para>
558                 </description>
559         </manager>
560  ***/
561
562 static int min_expiry = DEFAULT_MIN_EXPIRY;        /*!< Minimum accepted registration time */
563 static int max_expiry = DEFAULT_MAX_EXPIRY;        /*!< Maximum accepted registration time */
564 static int default_expiry = DEFAULT_DEFAULT_EXPIRY;
565 static int mwi_expiry = DEFAULT_MWI_EXPIRY;
566
567 static int unauth_sessions = 0;
568 static int authlimit = DEFAULT_AUTHLIMIT;
569 static int authtimeout = DEFAULT_AUTHTIMEOUT;
570
571 /*! \brief Global jitterbuffer configuration - by default, jb is disabled
572  *  \note Values shown here match the defaults shown in sip.conf.sample */
573 static struct ast_jb_conf default_jbconf =
574 {
575         .flags = 0,
576         .max_size = 200,
577         .resync_threshold = 1000,
578         .impl = "fixed",
579         .target_extra = 40,
580 };
581 static struct ast_jb_conf global_jbconf;                /*!< Global jitterbuffer configuration */
582
583 static const char config[] = "sip.conf";                /*!< Main configuration file */
584 static const char notify_config[] = "sip_notify.conf";  /*!< Configuration file for sending Notify with CLI commands to reconfigure or reboot phones */
585
586 /*! \brief Readable descriptions of device states.
587  *  \note Should be aligned to above table as index */
588 static const struct invstate2stringtable {
589         const enum invitestates state;
590         const char *desc;
591 } invitestate2string[] = {
592         {INV_NONE,              "None"  },
593         {INV_CALLING,           "Calling (Trying)"},
594         {INV_PROCEEDING,        "Proceeding "},
595         {INV_EARLY_MEDIA,       "Early media"},
596         {INV_COMPLETED,         "Completed (done)"},
597         {INV_CONFIRMED,         "Confirmed (up)"},
598         {INV_TERMINATED,        "Done"},
599         {INV_CANCELLED,         "Cancelled"}
600 };
601
602 /*! \brief Subscription types that we support. We support
603  * - dialoginfo updates (really device status, not dialog info as was the original intent of the standard)
604  * - SIMPLE presence used for device status
605  * - Voicemail notification subscriptions
606  */
607 static const struct cfsubscription_types {
608         enum subscriptiontype type;
609         const char * const event;
610         const char * const mediatype;
611         const char * const text;
612 } subscription_types[] = {
613         { NONE,            "-",        "unknown",                    "unknown" },
614         /* RFC 4235: SIP Dialog event package */
615         { DIALOG_INFO_XML, "dialog",   "application/dialog-info+xml", "dialog-info+xml" },
616         { CPIM_PIDF_XML,   "presence", "application/cpim-pidf+xml",   "cpim-pidf+xml" },  /* RFC 3863 */
617         { PIDF_XML,        "presence", "application/pidf+xml",        "pidf+xml" },       /* RFC 3863 */
618         { XPIDF_XML,       "presence", "application/xpidf+xml",       "xpidf+xml" },       /* Pre-RFC 3863 with MS additions */
619         { MWI_NOTIFICATION,     "message-summary", "application/simple-message-summary", "mwi" } /* RFC 3842: Mailbox notification */
620 };
621
622 /*! \brief The core structure to setup dialogs. We parse incoming messages by using
623  *  structure and then route the messages according to the type.
624  *
625  *  \note Note that sip_methods[i].id == i must hold or the code breaks
626  */
627 static const struct  cfsip_methods {
628         enum sipmethod id;
629         int need_rtp;           /*!< when this is the 'primary' use for a pvt structure, does it need RTP? */
630         char * const text;
631         enum can_create_dialog can_create;
632 } sip_methods[] = {
633         { SIP_UNKNOWN,   RTP,    "-UNKNOWN-",CAN_CREATE_DIALOG },
634         { SIP_RESPONSE,  NO_RTP, "SIP/2.0",  CAN_NOT_CREATE_DIALOG },
635         { SIP_REGISTER,  NO_RTP, "REGISTER", CAN_CREATE_DIALOG },
636         { SIP_OPTIONS,   NO_RTP, "OPTIONS",  CAN_CREATE_DIALOG },
637         { SIP_NOTIFY,    NO_RTP, "NOTIFY",   CAN_CREATE_DIALOG },
638         { SIP_INVITE,    RTP,    "INVITE",   CAN_CREATE_DIALOG },
639         { SIP_ACK,       NO_RTP, "ACK",      CAN_NOT_CREATE_DIALOG },
640         { SIP_PRACK,     NO_RTP, "PRACK",    CAN_NOT_CREATE_DIALOG },
641         { SIP_BYE,       NO_RTP, "BYE",      CAN_NOT_CREATE_DIALOG },
642         { SIP_REFER,     NO_RTP, "REFER",    CAN_CREATE_DIALOG },
643         { SIP_SUBSCRIBE, NO_RTP, "SUBSCRIBE",CAN_CREATE_DIALOG },
644         { SIP_MESSAGE,   NO_RTP, "MESSAGE",  CAN_CREATE_DIALOG },
645         { SIP_UPDATE,    NO_RTP, "UPDATE",   CAN_NOT_CREATE_DIALOG },
646         { SIP_INFO,      NO_RTP, "INFO",     CAN_NOT_CREATE_DIALOG },
647         { SIP_CANCEL,    NO_RTP, "CANCEL",   CAN_NOT_CREATE_DIALOG },
648         { SIP_PUBLISH,   NO_RTP, "PUBLISH",  CAN_CREATE_DIALOG },
649         { SIP_PING,      NO_RTP, "PING",     CAN_CREATE_DIALOG_UNSUPPORTED_METHOD }
650 };
651
652 /*! \brief Diversion header reasons
653  *
654  * The core defines a bunch of constants used to define
655  * redirecting reasons. This provides a translation table
656  * between those and the strings which may be present in
657  * a SIP Diversion header
658  */
659 static const struct sip_reasons {
660         enum AST_REDIRECTING_REASON code;
661         char * const text;
662 } sip_reason_table[] = {
663         { AST_REDIRECTING_REASON_UNKNOWN, "unknown" },
664         { AST_REDIRECTING_REASON_USER_BUSY, "user-busy" },
665         { AST_REDIRECTING_REASON_NO_ANSWER, "no-answer" },
666         { AST_REDIRECTING_REASON_UNAVAILABLE, "unavailable" },
667         { AST_REDIRECTING_REASON_UNCONDITIONAL, "unconditional" },
668         { AST_REDIRECTING_REASON_TIME_OF_DAY, "time-of-day" },
669         { AST_REDIRECTING_REASON_DO_NOT_DISTURB, "do-not-disturb" },
670         { AST_REDIRECTING_REASON_DEFLECTION, "deflection" },
671         { AST_REDIRECTING_REASON_FOLLOW_ME, "follow-me" },
672         { AST_REDIRECTING_REASON_OUT_OF_ORDER, "out-of-service" },
673         { AST_REDIRECTING_REASON_AWAY, "away" },
674         { AST_REDIRECTING_REASON_CALL_FWD_DTE, "unknown"}
675 };
676
677
678 /*! \name DefaultSettings
679         Default setttings are used as a channel setting and as a default when
680         configuring devices
681 */
682 /*@{*/
683 static char default_language[MAX_LANGUAGE];      /*!< Default language setting for new channels */
684 static char default_callerid[AST_MAX_EXTENSION]; /*!< Default caller ID for sip messages */
685 static char default_mwi_from[80];                /*!< Default caller ID for MWI updates */
686 static char default_fromdomain[AST_MAX_EXTENSION]; /*!< Default domain on outound messages */
687 static int default_fromdomainport;                 /*!< Default domain port on outbound messages */
688 static char default_notifymime[AST_MAX_EXTENSION]; /*!< Default MIME media type for MWI notify messages */
689 static char default_vmexten[AST_MAX_EXTENSION];    /*!< Default From Username on MWI updates */
690 static int default_qualify;                        /*!< Default Qualify= setting */
691 static char default_mohinterpret[MAX_MUSICCLASS];  /*!< Global setting for moh class to use when put on hold */
692 static char default_mohsuggest[MAX_MUSICCLASS];    /*!< Global setting for moh class to suggest when putting
693                                                     *   a bridged channel on hold */
694 static char default_parkinglot[AST_MAX_CONTEXT];   /*!< Parkinglot */
695 static char default_engine[256];                   /*!< Default RTP engine */
696 static int default_maxcallbitrate;                 /*!< Maximum bitrate for call */
697 static struct ast_codec_pref default_prefs;        /*!< Default codec prefs */
698 static char default_zone[MAX_TONEZONE_COUNTRY];        /*!< Default tone zone for channels created from the SIP driver */
699 static unsigned int default_transports;            /*!< Default Transports (enum sip_transport) that are acceptable */
700 static unsigned int default_primary_transport;     /*!< Default primary Transport (enum sip_transport) for outbound connections to devices */
701 /*@}*/
702
703 static struct sip_settings sip_cfg;             /*!< SIP configuration data.
704                                         \note in the future we could have multiple of these (per domain, per device group etc) */
705
706 /*!< use this macro when ast_uri_decode is dependent on pedantic checking to be on. */
707 #define SIP_PEDANTIC_DECODE(str)        \
708         if (sip_cfg.pedanticsipchecking && !ast_strlen_zero(str)) {     \
709                 ast_uri_decode(str, ast_uri_sip_user);  \
710         }       \
711
712 static unsigned int chan_idx;       /*!< used in naming sip channel */
713 static int global_match_auth_username;    /*!< Match auth username if available instead of From: Default off. */
714
715 static int global_relaxdtmf;        /*!< Relax DTMF */
716 static int global_prematuremediafilter;   /*!< Enable/disable premature frames in a call (causing 183 early media) */
717 static int global_rtptimeout;       /*!< Time out call if no RTP */
718 static int global_rtpholdtimeout;   /*!< Time out call if no RTP during hold */
719 static int global_rtpkeepalive;     /*!< Send RTP keepalives */
720 static int global_reg_timeout;      /*!< Global time between attempts for outbound registrations */
721 static int global_regattempts_max;  /*!< Registration attempts before giving up */
722 static int global_shrinkcallerid;   /*!< enable or disable shrinking of caller id  */
723 static int global_callcounter;      /*!< Enable call counters for all devices. This is currently enabled by setting the peer
724                                      *   call-limit to INT_MAX. When we remove the call-limit from the code, we can make it
725                                      *   with just a boolean flag in the device structure */
726 static unsigned int global_tos_sip;      /*!< IP type of service for SIP packets */
727 static unsigned int global_tos_audio;    /*!< IP type of service for audio RTP packets */
728 static unsigned int global_tos_video;    /*!< IP type of service for video RTP packets */
729 static unsigned int global_tos_text;     /*!< IP type of service for text RTP packets */
730 static unsigned int global_cos_sip;      /*!< 802.1p class of service for SIP packets */
731 static unsigned int global_cos_audio;    /*!< 802.1p class of service for audio RTP packets */
732 static unsigned int global_cos_video;    /*!< 802.1p class of service for video RTP packets */
733 static unsigned int global_cos_text;     /*!< 802.1p class of service for text RTP packets */
734 static unsigned int recordhistory;       /*!< Record SIP history. Off by default */
735 static unsigned int dumphistory;         /*!< Dump history to verbose before destroying SIP dialog */
736 static char global_useragent[AST_MAX_EXTENSION];    /*!< Useragent for the SIP channel */
737 static char global_sdpsession[AST_MAX_EXTENSION];   /*!< SDP session name for the SIP channel */
738 static char global_sdpowner[AST_MAX_EXTENSION];     /*!< SDP owner name for the SIP channel */
739 static int global_authfailureevents;     /*!< Whether we send authentication failure manager events or not. Default no. */
740 static int global_t1;           /*!< T1 time */
741 static int global_t1min;        /*!< T1 roundtrip time minimum */
742 static int global_timer_b;      /*!< Timer B - RFC 3261 Section 17.1.1.2 */
743 static unsigned int global_autoframing; /*!< Turn autoframing on or off. */
744 static int global_qualifyfreq;          /*!< Qualify frequency */
745 static int global_qualify_gap;          /*!< Time between our group of peer pokes */
746 static int global_qualify_peers;        /*!< Number of peers to poke at a given time */
747
748 static enum st_mode global_st_mode;           /*!< Mode of operation for Session-Timers           */
749 static enum st_refresher global_st_refresher; /*!< Session-Timer refresher                        */
750 static int global_min_se;                     /*!< Lowest threshold for session refresh interval  */
751 static int global_max_se;                     /*!< Highest threshold for session refresh interval */
752
753 static int global_store_sip_cause;    /*!< Whether the MASTER_CHANNEL(HASH(SIP_CAUSE,[chan_name])) var should be set */
754
755 static int global_dynamic_exclude_static = 0; /*!< Exclude static peers from contact registrations */
756 /*@}*/
757
758 /*!
759  * We use libxml2 in order to parse XML that may appear in the body of a SIP message. Currently,
760  * the only usage is for parsing PIDF bodies of incoming PUBLISH requests in the call-completion
761  * event package. This variable is set at module load time and may be checked at runtime to determine
762  * if XML parsing support was found.
763  */
764 static int can_parse_xml;
765
766 /*! \name Object counters @{
767  *  \bug These counters are not handled in a thread-safe way ast_atomic_fetchadd_int()
768  *  should be used to modify these values. */
769 static int speerobjs = 0;     /*!< Static peers */
770 static int rpeerobjs = 0;     /*!< Realtime peers */
771 static int apeerobjs = 0;     /*!< Autocreated peer objects */
772 static int regobjs = 0;       /*!< Registry objects */
773 /* }@ */
774
775 static struct ast_flags global_flags[3] = {{0}};  /*!< global SIP_ flags */
776 static int global_t38_maxdatagram;                /*!< global T.38 FaxMaxDatagram override */
777
778 static struct ast_event_sub *network_change_event_subscription; /*!< subscription id for network change events */
779 static int network_change_event_sched_id = -1;
780
781 static char used_context[AST_MAX_CONTEXT];        /*!< name of automatically created context for unloading */
782
783 AST_MUTEX_DEFINE_STATIC(netlock);
784
785 /*! \brief Protect the monitoring thread, so only one process can kill or start it, and not
786    when it's doing something critical. */
787 AST_MUTEX_DEFINE_STATIC(monlock);
788
789 AST_MUTEX_DEFINE_STATIC(sip_reload_lock);
790
791 /*! \brief This is the thread for the monitor which checks for input on the channels
792    which are not currently in use.  */
793 static pthread_t monitor_thread = AST_PTHREADT_NULL;
794
795 static int sip_reloading = FALSE;                       /*!< Flag for avoiding multiple reloads at the same time */
796 static enum channelreloadreason sip_reloadreason;       /*!< Reason for last reload/load of configuration */
797
798 struct ast_sched_context *sched;     /*!< The scheduling context */
799 static struct io_context *io;           /*!< The IO context */
800 static int *sipsock_read_id;            /*!< ID of IO entry for sipsock FD */
801 struct sip_pkt;
802 static AST_LIST_HEAD_STATIC(domain_list, domain);    /*!< The SIP domain list */
803
804 AST_LIST_HEAD_NOLOCK(sip_history_head, sip_history); /*!< history list, entry in sip_pvt */
805
806 static enum sip_debug_e sipdebug;
807
808 /*! \brief extra debugging for 'text' related events.
809  *  At the moment this is set together with sip_debug_console.
810  *  \note It should either go away or be implemented properly.
811  */
812 static int sipdebug_text;
813
814 static const struct _map_x_s referstatusstrings[] = {
815         { REFER_IDLE,      "<none>" },
816         { REFER_SENT,      "Request sent" },
817         { REFER_RECEIVED,  "Request received" },
818         { REFER_CONFIRMED, "Confirmed" },
819         { REFER_ACCEPTED,  "Accepted" },
820         { REFER_RINGING,   "Target ringing" },
821         { REFER_200OK,     "Done" },
822         { REFER_FAILED,    "Failed" },
823         { REFER_NOAUTH,    "Failed - auth failure" },
824         { -1,               NULL} /* terminator */
825 };
826
827 /* --- Hash tables of various objects --------*/
828 #ifdef LOW_MEMORY
829 static const int HASH_PEER_SIZE = 17;
830 static const int HASH_DIALOG_SIZE = 17;
831 #else
832 static const int HASH_PEER_SIZE = 563;  /*!< Size of peer hash table, prime number preferred! */
833 static const int HASH_DIALOG_SIZE = 563;
834 #endif
835
836 static const struct {
837         enum ast_cc_service_type service;
838         const char *service_string;
839 } sip_cc_service_map [] = {
840         [AST_CC_NONE] = { AST_CC_NONE, "" },
841         [AST_CC_CCBS] = { AST_CC_CCBS, "BS" },
842         [AST_CC_CCNR] = { AST_CC_CCNR, "NR" },
843         [AST_CC_CCNL] = { AST_CC_CCNL, "NL" },
844 };
845
846 static enum ast_cc_service_type service_string_to_service_type(const char * const service_string)
847 {
848         enum ast_cc_service_type service;
849         for (service = AST_CC_CCBS; service <= AST_CC_CCNL; ++service) {
850                 if (!strcasecmp(service_string, sip_cc_service_map[service].service_string)) {
851                         return service;
852                 }
853         }
854         return AST_CC_NONE;
855 }
856
857 static const struct {
858         enum sip_cc_notify_state state;
859         const char *state_string;
860 } sip_cc_notify_state_map [] = {
861         [CC_QUEUED] = {CC_QUEUED, "cc-state: queued"},
862         [CC_READY] = {CC_READY, "cc-state: ready"},
863 };
864
865 AST_LIST_HEAD_STATIC(epa_static_data_list, epa_backend);
866
867 static int sip_epa_register(const struct epa_static_data *static_data)
868 {
869         struct epa_backend *backend = ast_calloc(1, sizeof(*backend));
870
871         if (!backend) {
872                 return -1;
873         }
874
875         backend->static_data = static_data;
876
877         AST_LIST_LOCK(&epa_static_data_list);
878         AST_LIST_INSERT_TAIL(&epa_static_data_list, backend, next);
879         AST_LIST_UNLOCK(&epa_static_data_list);
880         return 0;
881 }
882
883 static void cc_handle_publish_error(struct sip_pvt *pvt, const int resp, struct sip_request *req, struct sip_epa_entry *epa_entry);
884
885 static void cc_epa_destructor(void *data)
886 {
887         struct sip_epa_entry *epa_entry = data;
888         struct cc_epa_entry *cc_entry = epa_entry->instance_data;
889         ast_free(cc_entry);
890 }
891
892 static const struct epa_static_data cc_epa_static_data  = {
893         .event = CALL_COMPLETION,
894         .name = "call-completion",
895         .handle_error = cc_handle_publish_error,
896         .destructor = cc_epa_destructor,
897 };
898
899 static const struct epa_static_data *find_static_data(const char * const event_package)
900 {
901         const struct epa_backend *backend = NULL;
902
903         AST_LIST_LOCK(&epa_static_data_list);
904         AST_LIST_TRAVERSE(&epa_static_data_list, backend, next) {
905                 if (!strcmp(backend->static_data->name, event_package)) {
906                         break;
907                 }
908         }
909         AST_LIST_UNLOCK(&epa_static_data_list);
910         return backend ? backend->static_data : NULL;
911 }
912
913 static struct sip_epa_entry *create_epa_entry (const char * const event_package, const char * const destination)
914 {
915         struct sip_epa_entry *epa_entry;
916         const struct epa_static_data *static_data;
917
918         if (!(static_data = find_static_data(event_package))) {
919                 return NULL;
920         }
921
922         if (!(epa_entry = ao2_t_alloc(sizeof(*epa_entry), static_data->destructor, "Allocate new EPA entry"))) {
923                 return NULL;
924         }
925
926         epa_entry->static_data = static_data;
927         ast_copy_string(epa_entry->destination, destination, sizeof(epa_entry->destination));
928         return epa_entry;
929 }
930
931 /*!
932  * Used to create new entity IDs by ESCs.
933  */
934 static int esc_etag_counter;
935 static const int DEFAULT_PUBLISH_EXPIRES = 3600;
936
937 #ifdef HAVE_LIBXML2
938 static int cc_esc_publish_handler(struct sip_pvt *pvt, struct sip_request *req, struct event_state_compositor *esc, struct sip_esc_entry *esc_entry);
939
940 static const struct sip_esc_publish_callbacks cc_esc_publish_callbacks = {
941         .initial_handler = cc_esc_publish_handler,
942         .modify_handler = cc_esc_publish_handler,
943 };
944 #endif
945
946 /*!
947  * \brief The Event State Compositors
948  *
949  * An Event State Compositor is an entity which
950  * accepts PUBLISH requests and acts appropriately
951  * based on these requests.
952  *
953  * The actual event_state_compositor structure is simply
954  * an ao2_container of sip_esc_entrys. When an incoming
955  * PUBLISH is received, we can match the appropriate sip_esc_entry
956  * using the entity ID of the incoming PUBLISH.
957  */
958 static struct event_state_compositor {
959         enum subscriptiontype event;
960         const char * name;
961         const struct sip_esc_publish_callbacks *callbacks;
962         struct ao2_container *compositor;
963 } event_state_compositors [] = {
964 #ifdef HAVE_LIBXML2
965         {CALL_COMPLETION, "call-completion", &cc_esc_publish_callbacks},
966 #endif
967 };
968
969 static const int ESC_MAX_BUCKETS = 37;
970
971 static void esc_entry_destructor(void *obj)
972 {
973         struct sip_esc_entry *esc_entry = obj;
974         if (esc_entry->sched_id > -1) {
975                 AST_SCHED_DEL(sched, esc_entry->sched_id);
976         }
977 }
978
979 static int esc_hash_fn(const void *obj, const int flags)
980 {
981         const struct sip_esc_entry *entry = obj;
982         return ast_str_hash(entry->entity_tag);
983 }
984
985 static int esc_cmp_fn(void *obj, void *arg, int flags)
986 {
987         struct sip_esc_entry *entry1 = obj;
988         struct sip_esc_entry *entry2 = arg;
989
990         return (!strcmp(entry1->entity_tag, entry2->entity_tag)) ? (CMP_MATCH | CMP_STOP) : 0;
991 }
992
993 static struct event_state_compositor *get_esc(const char * const event_package) {
994         int i;
995         for (i = 0; i < ARRAY_LEN(event_state_compositors); i++) {
996                 if (!strcasecmp(event_package, event_state_compositors[i].name)) {
997                         return &event_state_compositors[i];
998                 }
999         }
1000         return NULL;
1001 }
1002
1003 static struct sip_esc_entry *get_esc_entry(const char * entity_tag, struct event_state_compositor *esc) {
1004         struct sip_esc_entry *entry;
1005         struct sip_esc_entry finder;
1006
1007         ast_copy_string(finder.entity_tag, entity_tag, sizeof(finder.entity_tag));
1008
1009         entry = ao2_find(esc->compositor, &finder, OBJ_POINTER);
1010
1011         return entry;
1012 }
1013
1014 static int publish_expire(const void *data)
1015 {
1016         struct sip_esc_entry *esc_entry = (struct sip_esc_entry *) data;
1017         struct event_state_compositor *esc = get_esc(esc_entry->event);
1018
1019         ast_assert(esc != NULL);
1020
1021         ao2_unlink(esc->compositor, esc_entry);
1022         ao2_ref(esc_entry, -1);
1023         return 0;
1024 }
1025
1026 static void create_new_sip_etag(struct sip_esc_entry *esc_entry, int is_linked)
1027 {
1028         int new_etag = ast_atomic_fetchadd_int(&esc_etag_counter, +1);
1029         struct event_state_compositor *esc = get_esc(esc_entry->event);
1030
1031         ast_assert(esc != NULL);
1032         if (is_linked) {
1033                 ao2_unlink(esc->compositor, esc_entry);
1034         }
1035         snprintf(esc_entry->entity_tag, sizeof(esc_entry->entity_tag), "%d", new_etag);
1036         ao2_link(esc->compositor, esc_entry);
1037 }
1038
1039 static struct sip_esc_entry *create_esc_entry(struct event_state_compositor *esc, struct sip_request *req, const int expires)
1040 {
1041         struct sip_esc_entry *esc_entry;
1042         int expires_ms;
1043
1044         if (!(esc_entry = ao2_alloc(sizeof(*esc_entry), esc_entry_destructor))) {
1045                 return NULL;
1046         }
1047
1048         esc_entry->event = esc->name;
1049
1050         expires_ms = expires * 1000;
1051         /* Bump refcount for scheduler */
1052         ao2_ref(esc_entry, +1);
1053         esc_entry->sched_id = ast_sched_add(sched, expires_ms, publish_expire, esc_entry);
1054
1055         /* Note: This links the esc_entry into the ESC properly */
1056         create_new_sip_etag(esc_entry, 0);
1057
1058         return esc_entry;
1059 }
1060
1061 static int initialize_escs(void)
1062 {
1063         int i, res = 0;
1064         for (i = 0; i < ARRAY_LEN(event_state_compositors); i++) {
1065                 if (!((event_state_compositors[i].compositor) =
1066                                         ao2_container_alloc(ESC_MAX_BUCKETS, esc_hash_fn, esc_cmp_fn))) {
1067                         res = -1;
1068                 }
1069         }
1070         return res;
1071 }
1072
1073 static void destroy_escs(void)
1074 {
1075         int i;
1076         for (i = 0; i < ARRAY_LEN(event_state_compositors); i++) {
1077                 ao2_ref(event_state_compositors[i].compositor, -1);
1078         }
1079 }
1080
1081 /*! \brief
1082  * Here we implement the container for dialogs which are in the
1083  * dialog_needdestroy state to iterate only through the dialogs
1084  * unlink them instead of iterate through all dialogs
1085  */
1086 struct ao2_container *dialogs_needdestroy;
1087
1088 /*! \brief
1089  * Here we implement the container for dialogs which have rtp
1090  * traffic and rtptimeout, rtpholdtimeout or rtpkeepalive
1091  * set. We use this container instead the whole dialog list.
1092  */
1093 struct ao2_container *dialogs_rtpcheck;
1094
1095 /*! \brief
1096  * Here we implement the container for dialogs (sip_pvt), defining
1097  * generic wrapper functions to ease the transition from the current
1098  * implementation (a single linked list) to a different container.
1099  * In addition to a reference to the container, we need functions to lock/unlock
1100  * the container and individual items, and functions to add/remove
1101  * references to the individual items.
1102  */
1103 static struct ao2_container *dialogs;
1104 #define sip_pvt_lock(x) ao2_lock(x)
1105 #define sip_pvt_trylock(x) ao2_trylock(x)
1106 #define sip_pvt_unlock(x) ao2_unlock(x)
1107
1108 /*! \brief  The table of TCP threads */
1109 static struct ao2_container *threadt;
1110
1111 /*! \brief  The peer list: Users, Peers and Friends */
1112 static struct ao2_container *peers;
1113 static struct ao2_container *peers_by_ip;
1114
1115 /*! \brief  The register list: Other SIP proxies we register with and receive calls from */
1116 static struct ast_register_list {
1117         ASTOBJ_CONTAINER_COMPONENTS(struct sip_registry);
1118         int recheck;
1119 } regl;
1120
1121 /*! \brief  The MWI subscription list */
1122 static struct ast_subscription_mwi_list {
1123         ASTOBJ_CONTAINER_COMPONENTS(struct sip_subscription_mwi);
1124 } submwil;
1125 static int temp_pvt_init(void *);
1126 static void temp_pvt_cleanup(void *);
1127
1128 /*! \brief A per-thread temporary pvt structure */
1129 AST_THREADSTORAGE_CUSTOM(ts_temp_pvt, temp_pvt_init, temp_pvt_cleanup);
1130
1131 /*! \brief Authentication container for realm authentication */
1132 static struct sip_auth_container *authl = NULL;
1133 /*! \brief Global authentication container protection while adjusting the references. */
1134 AST_MUTEX_DEFINE_STATIC(authl_lock);
1135
1136 /* --- Sockets and networking --------------*/
1137
1138 /*! \brief Main socket for UDP SIP communication.
1139  *
1140  * sipsock is shared between the SIP manager thread (which handles reload
1141  * requests), the udp io handler (sipsock_read()) and the user routines that
1142  * issue udp writes (using __sip_xmit()).
1143  * The socket is -1 only when opening fails (this is a permanent condition),
1144  * or when we are handling a reload() that changes its address (this is
1145  * a transient situation during which we might have a harmless race, see
1146  * below). Because the conditions for the race to be possible are extremely
1147  * rare, we don't want to pay the cost of locking on every I/O.
1148  * Rather, we remember that when the race may occur, communication is
1149  * bound to fail anyways, so we just live with this event and let
1150  * the protocol handle this above us.
1151  */
1152 static int sipsock  = -1;
1153
1154 struct ast_sockaddr bindaddr;   /*!< UDP: The address we bind to */
1155
1156 /*! \brief our (internal) default address/port to put in SIP/SDP messages
1157  *  internip is initialized picking a suitable address from one of the
1158  * interfaces, and the same port number we bind to. It is used as the
1159  * default address/port in SIP messages, and as the default address
1160  * (but not port) in SDP messages.
1161  */
1162 static struct ast_sockaddr internip;
1163
1164 /*! \brief our external IP address/port for SIP sessions.
1165  * externaddr.sin_addr is only set when we know we might be behind
1166  * a NAT, and this is done using a variety of (mutually exclusive)
1167  * ways from the config file:
1168  *
1169  * + with "externaddr = host[:port]" we specify the address/port explicitly.
1170  *   The address is looked up only once when (re)loading the config file;
1171  *
1172  * + with "externhost = host[:port]" we do a similar thing, but the
1173  *   hostname is stored in externhost, and the hostname->IP mapping
1174  *   is refreshed every 'externrefresh' seconds;
1175  *
1176  * Other variables (externhost, externexpire, externrefresh) are used
1177  * to support the above functions.
1178  */
1179 static struct ast_sockaddr externaddr;      /*!< External IP address if we are behind NAT */
1180 static struct ast_sockaddr media_address; /*!< External RTP IP address if we are behind NAT */
1181
1182 static char externhost[MAXHOSTNAMELEN];   /*!< External host name */
1183 static time_t externexpire;             /*!< Expiration counter for re-resolving external host name in dynamic DNS */
1184 static int externrefresh = 10;          /*!< Refresh timer for DNS-based external address (dyndns) */
1185 static uint16_t externtcpport;          /*!< external tcp port */
1186 static uint16_t externtlsport;          /*!< external tls port */
1187
1188 /*! \brief  List of local networks
1189  * We store "localnet" addresses from the config file into an access list,
1190  * marked as 'DENY', so the call to ast_apply_ha() will return
1191  * AST_SENSE_DENY for 'local' addresses, and AST_SENSE_ALLOW for 'non local'
1192  * (i.e. presumably public) addresses.
1193  */
1194 static struct ast_ha *localaddr;    /*!< List of local networks, on the same side of NAT as this Asterisk */
1195
1196 static int ourport_tcp;             /*!< The port used for TCP connections */
1197 static int ourport_tls;             /*!< The port used for TCP/TLS connections */
1198 static struct ast_sockaddr debugaddr;
1199
1200 static struct ast_config *notify_types = NULL;    /*!< The list of manual NOTIFY types we know how to send */
1201
1202 /*! some list management macros. */
1203
1204 #define UNLINK(element, head, prev) do {        \
1205         if (prev)                               \
1206                 (prev)->next = (element)->next; \
1207         else                                    \
1208                 (head) = (element)->next;       \
1209         } while (0)
1210
1211 /*---------------------------- Forward declarations of functions in chan_sip.c */
1212 /* Note: This is added to help splitting up chan_sip.c into several files
1213         in coming releases. */
1214
1215 /*--- PBX interface functions */
1216 static struct ast_channel *sip_request_call(const char *type, struct ast_format_cap *cap, const struct ast_channel *requestor, void *data, int *cause);
1217 static int sip_devicestate(void *data);
1218 static int sip_sendtext(struct ast_channel *ast, const char *text);
1219 static int sip_call(struct ast_channel *ast, char *dest, int timeout);
1220 static int sip_sendhtml(struct ast_channel *chan, int subclass, const char *data, int datalen);
1221 static int sip_hangup(struct ast_channel *ast);
1222 static int sip_answer(struct ast_channel *ast);
1223 static struct ast_frame *sip_read(struct ast_channel *ast);
1224 static int sip_write(struct ast_channel *ast, struct ast_frame *frame);
1225 static int sip_indicate(struct ast_channel *ast, int condition, const void *data, size_t datalen);
1226 static int sip_transfer(struct ast_channel *ast, const char *dest);
1227 static int sip_fixup(struct ast_channel *oldchan, struct ast_channel *newchan);
1228 static int sip_senddigit_begin(struct ast_channel *ast, char digit);
1229 static int sip_senddigit_end(struct ast_channel *ast, char digit, unsigned int duration);
1230 static int sip_setoption(struct ast_channel *chan, int option, void *data, int datalen);
1231 static int sip_queryoption(struct ast_channel *chan, int option, void *data, int *datalen);
1232 static const char *sip_get_callid(struct ast_channel *chan);
1233
1234 static int handle_request_do(struct sip_request *req, struct ast_sockaddr *addr);
1235 static int sip_standard_port(enum sip_transport type, int port);
1236 static int sip_prepare_socket(struct sip_pvt *p);
1237 static int get_address_family_filter(const struct ast_sockaddr *addr);
1238
1239 /*--- Transmitting responses and requests */
1240 static int sipsock_read(int *id, int fd, short events, void *ignore);
1241 static int __sip_xmit(struct sip_pvt *p, struct ast_str *data);
1242 static int __sip_reliable_xmit(struct sip_pvt *p, int seqno, int resp, struct ast_str *data, int fatal, int sipmethod);
1243 static void add_cc_call_info_to_response(struct sip_pvt *p, struct sip_request *resp);
1244 static int __transmit_response(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable);
1245 static int retrans_pkt(const void *data);
1246 static int transmit_response_using_temp(ast_string_field callid, struct ast_sockaddr *addr, int useglobal_nat, const int intended_method, const struct sip_request *req, const char *msg);
1247 static int transmit_response(struct sip_pvt *p, const char *msg, const struct sip_request *req);
1248 static int transmit_response_reliable(struct sip_pvt *p, const char *msg, const struct sip_request *req);
1249 static int transmit_response_with_date(struct sip_pvt *p, const char *msg, const struct sip_request *req);
1250 static int transmit_response_with_sdp(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable, int oldsdp, int rpid);
1251 static int transmit_response_with_unsupported(struct sip_pvt *p, const char *msg, const struct sip_request *req, const char *unsupported);
1252 static int transmit_response_with_auth(struct sip_pvt *p, const char *msg, const struct sip_request *req, const char *rand, enum xmittype reliable, const char *header, int stale);
1253 static int transmit_provisional_response(struct sip_pvt *p, const char *msg, const struct sip_request *req, int with_sdp);
1254 static int transmit_response_with_allow(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable);
1255 static void transmit_fake_auth_response(struct sip_pvt *p, int sipmethod, struct sip_request *req, enum xmittype reliable);
1256 static int transmit_request(struct sip_pvt *p, int sipmethod, int inc, enum xmittype reliable, int newbranch);
1257 static int transmit_request_with_auth(struct sip_pvt *p, int sipmethod, int seqno, enum xmittype reliable, int newbranch);
1258 static int transmit_publish(struct sip_epa_entry *epa_entry, enum sip_publish_type publish_type, const char * const explicit_uri);
1259 static int transmit_invite(struct sip_pvt *p, int sipmethod, int sdp, int init, const char * const explicit_uri);
1260 static int transmit_reinvite_with_sdp(struct sip_pvt *p, int t38version, int oldsdp);
1261 static int transmit_info_with_aoc(struct sip_pvt *p, struct ast_aoc_decoded *decoded);
1262 static int transmit_info_with_digit(struct sip_pvt *p, const char digit, unsigned int duration);
1263 static int transmit_info_with_vidupdate(struct sip_pvt *p);
1264 static int transmit_message_with_text(struct sip_pvt *p, const char *text, int init, int auth);
1265 static int transmit_message_with_msg(struct sip_pvt *p, const struct ast_msg *msg);
1266 static int transmit_refer(struct sip_pvt *p, const char *dest);
1267 static int transmit_notify_with_mwi(struct sip_pvt *p, int newmsgs, int oldmsgs, const char *vmexten);
1268 static int transmit_notify_with_sipfrag(struct sip_pvt *p, int cseq, char *message, int terminate);
1269 static int transmit_cc_notify(struct ast_cc_agent *agent, struct sip_pvt *subscription, enum sip_cc_notify_state state);
1270 static int transmit_register(struct sip_registry *r, int sipmethod, const char *auth, const char *authheader);
1271 static int send_response(struct sip_pvt *p, struct sip_request *req, enum xmittype reliable, int seqno);
1272 static int send_request(struct sip_pvt *p, struct sip_request *req, enum xmittype reliable, int seqno);
1273 static void copy_request(struct sip_request *dst, const struct sip_request *src);
1274 static void receive_message(struct sip_pvt *p, struct sip_request *req, struct ast_sockaddr *addr, const char *e);
1275 static void parse_moved_contact(struct sip_pvt *p, struct sip_request *req, char **name, char **number, int set_call_forward);
1276 static int sip_send_mwi_to_peer(struct sip_peer *peer, int cache_only);
1277
1278 /* Misc dialog routines */
1279 static int __sip_autodestruct(const void *data);
1280 static void *registry_unref(struct sip_registry *reg, char *tag);
1281 static int update_call_counter(struct sip_pvt *fup, int event);
1282 static int auto_congest(const void *arg);
1283 static struct sip_pvt *find_call(struct sip_request *req, struct ast_sockaddr *addr, const int intended_method);
1284 static void free_old_route(struct sip_route *route);
1285 static void list_route(struct sip_route *route);
1286 static void build_route(struct sip_pvt *p, struct sip_request *req, int backwards);
1287 static enum check_auth_result register_verify(struct sip_pvt *p, struct ast_sockaddr *addr,
1288                                               struct sip_request *req, const char *uri);
1289 static struct sip_pvt *get_sip_pvt_byid_locked(const char *callid, const char *totag, const char *fromtag);
1290 static void check_pendings(struct sip_pvt *p);
1291 static void *sip_park_thread(void *stuff);
1292 static int sip_park(struct ast_channel *chan1, struct ast_channel *chan2, struct sip_request *req, int seqno, const char *park_exten, const char *park_context);
1293
1294 static void *sip_pickup_thread(void *stuff);
1295 static int sip_pickup(struct ast_channel *chan);
1296
1297 static int sip_sipredirect(struct sip_pvt *p, const char *dest);
1298 static int is_method_allowed(unsigned int *allowed_methods, enum sipmethod method);
1299
1300 /*--- Codec handling / SDP */
1301 static void try_suggested_sip_codec(struct sip_pvt *p);
1302 static const char *get_sdp_iterate(int* start, struct sip_request *req, const char *name);
1303 static char get_sdp_line(int *start, int stop, struct sip_request *req, const char **value);
1304 static int find_sdp(struct sip_request *req);
1305 static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action);
1306 static int process_sdp_o(const char *o, struct sip_pvt *p);
1307 static int process_sdp_c(const char *c, struct ast_sockaddr *addr);
1308 static int process_sdp_a_sendonly(const char *a, int *sendonly);
1309 static int process_sdp_a_audio(const char *a, struct sip_pvt *p, struct ast_rtp_codecs *newaudiortp, int *last_rtpmap_codec);
1310 static int process_sdp_a_video(const char *a, struct sip_pvt *p, struct ast_rtp_codecs *newvideortp, int *last_rtpmap_codec);
1311 static int process_sdp_a_text(const char *a, struct sip_pvt *p, struct ast_rtp_codecs *newtextrtp, char *red_fmtp, int *red_num_gen, int *red_data_pt, int *last_rtpmap_codec);
1312 static int process_sdp_a_image(const char *a, struct sip_pvt *p);
1313 static void add_codec_to_sdp(const struct sip_pvt *p, struct ast_format *codec,
1314                              struct ast_str **m_buf, struct ast_str **a_buf,
1315                              int debug, int *min_packet_size);
1316 static void add_noncodec_to_sdp(const struct sip_pvt *p, int format,
1317                                 struct ast_str **m_buf, struct ast_str **a_buf,
1318                                 int debug);
1319 static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int oldsdp, int add_audio, int add_t38);
1320 static void do_setnat(struct sip_pvt *p);
1321 static void stop_media_flows(struct sip_pvt *p);
1322
1323 /*--- Authentication stuff */
1324 static int reply_digest(struct sip_pvt *p, struct sip_request *req, char *header, int sipmethod, char *digest, int digest_len);
1325 static int build_reply_digest(struct sip_pvt *p, int method, char *digest, int digest_len);
1326 static enum check_auth_result check_auth(struct sip_pvt *p, struct sip_request *req, const char *username,
1327                                          const char *secret, const char *md5secret, int sipmethod,
1328                                          const char *uri, enum xmittype reliable, int ignore);
1329 static enum check_auth_result check_user_full(struct sip_pvt *p, struct sip_request *req,
1330                                               int sipmethod, const char *uri, enum xmittype reliable,
1331                                               struct ast_sockaddr *addr, struct sip_peer **authpeer);
1332 static int check_user(struct sip_pvt *p, struct sip_request *req, int sipmethod, const char *uri, enum xmittype reliable, struct ast_sockaddr *addr);
1333
1334 /*--- Domain handling */
1335 static int check_sip_domain(const char *domain, char *context, size_t len); /* Check if domain is one of our local domains */
1336 static int add_sip_domain(const char *domain, const enum domain_mode mode, const char *context);
1337 static void clear_sip_domains(void);
1338
1339 /*--- SIP realm authentication */
1340 static void add_realm_authentication(struct sip_auth_container **credentials, const char *configuration, int lineno);
1341 static struct sip_auth *find_realm_authentication(struct sip_auth_container *credentials, const char *realm);
1342
1343 /*--- Misc functions */
1344 static void check_rtp_timeout(struct sip_pvt *dialog, time_t t);
1345 static int reload_config(enum channelreloadreason reason);
1346 static void add_diversion_header(struct sip_request *req, struct sip_pvt *pvt);
1347 static int expire_register(const void *data);
1348 static void *do_monitor(void *data);
1349 static int restart_monitor(void);
1350 static void peer_mailboxes_to_str(struct ast_str **mailbox_str, struct sip_peer *peer);
1351 static struct ast_variable *copy_vars(struct ast_variable *src);
1352 static int dialog_find_multiple(void *obj, void *arg, int flags);
1353 static struct ast_channel *sip_pvt_lock_full(struct sip_pvt *pvt);
1354 /* static int sip_addrcmp(char *name, struct sockaddr_in *sin); Support for peer matching */
1355 static int sip_refer_allocate(struct sip_pvt *p);
1356 static int sip_notify_allocate(struct sip_pvt *p);
1357 static void ast_quiet_chan(struct ast_channel *chan);
1358 static int attempt_transfer(struct sip_dual *transferer, struct sip_dual *target);
1359 static int do_magic_pickup(struct ast_channel *channel, const char *extension, const char *context);
1360
1361 /*--- Device monitoring and Device/extension state/event handling */
1362 static int cb_extensionstate(const char *context, const char *exten, enum ast_extension_states state, void *data);
1363 static int sip_devicestate(void *data);
1364 static int sip_poke_noanswer(const void *data);
1365 static int sip_poke_peer(struct sip_peer *peer, int force);
1366 static void sip_poke_all_peers(void);
1367 static void sip_peer_hold(struct sip_pvt *p, int hold);
1368 static void mwi_event_cb(const struct ast_event *, void *);
1369 static void network_change_event_cb(const struct ast_event *, void *);
1370
1371 /*--- Applications, functions, CLI and manager command helpers */
1372 static const char *sip_nat_mode(const struct sip_pvt *p);
1373 static char *sip_show_inuse(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1374 static char *transfermode2str(enum transfermodes mode) attribute_const;
1375 static int peer_status(struct sip_peer *peer, char *status, int statuslen);
1376 static char *sip_show_sched(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1377 static char * _sip_show_peers(int fd, int *total, struct mansession *s, const struct message *m, int argc, const char *argv[]);
1378 static char *sip_show_peers(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1379 static char *sip_show_objects(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1380 static void  print_group(int fd, ast_group_t group, int crlf);
1381 static const char *dtmfmode2str(int mode) attribute_const;
1382 static int str2dtmfmode(const char *str) attribute_unused;
1383 static const char *insecure2str(int mode) attribute_const;
1384 static void cleanup_stale_contexts(char *new, char *old);
1385 static void print_codec_to_cli(int fd, struct ast_codec_pref *pref);
1386 static const char *domain_mode_to_text(const enum domain_mode mode);
1387 static char *sip_show_domains(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1388 static char *_sip_show_peer(int type, int fd, struct mansession *s, const struct message *m, int argc, const char *argv[]);
1389 static char *sip_show_peer(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1390 static char *_sip_qualify_peer(int type, int fd, struct mansession *s, const struct message *m, int argc, const char *argv[]);
1391 static char *sip_qualify_peer(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1392 static char *sip_show_registry(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1393 static char *sip_unregister(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1394 static char *sip_show_settings(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1395 static char *sip_show_mwi(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1396 static const char *subscription_type2str(enum subscriptiontype subtype) attribute_pure;
1397 static const struct cfsubscription_types *find_subscription_type(enum subscriptiontype subtype);
1398 static char *complete_sip_peer(const char *word, int state, int flags2);
1399 static char *complete_sip_registered_peer(const char *word, int state, int flags2);
1400 static char *complete_sip_show_history(const char *line, const char *word, int pos, int state);
1401 static char *complete_sip_show_peer(const char *line, const char *word, int pos, int state);
1402 static char *complete_sip_unregister(const char *line, const char *word, int pos, int state);
1403 static char *complete_sipnotify(const char *line, const char *word, int pos, int state);
1404 static char *sip_show_channel(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1405 static char *sip_show_channelstats(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1406 static char *sip_show_history(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1407 static char *sip_do_debug_ip(int fd, const char *arg);
1408 static char *sip_do_debug_peer(int fd, const char *arg);
1409 static char *sip_do_debug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1410 static char *sip_cli_notify(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1411 static char *sip_set_history(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1412 static int sip_dtmfmode(struct ast_channel *chan, const char *data);
1413 static int sip_addheader(struct ast_channel *chan, const char *data);
1414 static int sip_do_reload(enum channelreloadreason reason);
1415 static char *sip_reload(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1416 static int ast_sockaddr_resolve_first_af(struct ast_sockaddr *addr,
1417                                       const char *name, int flag, int family);
1418 static int ast_sockaddr_resolve_first(struct ast_sockaddr *addr,
1419                                       const char *name, int flag);
1420
1421 /*--- Debugging
1422         Functions for enabling debug per IP or fully, or enabling history logging for
1423         a SIP dialog
1424 */
1425 static void sip_dump_history(struct sip_pvt *dialog);   /* Dump history to debuglog at end of dialog, before destroying data */
1426 static inline int sip_debug_test_addr(const struct ast_sockaddr *addr);
1427 static inline int sip_debug_test_pvt(struct sip_pvt *p);
1428 static void append_history_full(struct sip_pvt *p, const char *fmt, ...);
1429 static void sip_dump_history(struct sip_pvt *dialog);
1430
1431 /*--- Device object handling */
1432 static struct sip_peer *build_peer(const char *name, struct ast_variable *v, struct ast_variable *alt, int realtime, int devstate_only);
1433 static int update_call_counter(struct sip_pvt *fup, int event);
1434 static void sip_destroy_peer(struct sip_peer *peer);
1435 static void sip_destroy_peer_fn(void *peer);
1436 static void set_peer_defaults(struct sip_peer *peer);
1437 static struct sip_peer *temp_peer(const char *name);
1438 static void register_peer_exten(struct sip_peer *peer, int onoff);
1439 static int sip_poke_peer_s(const void *data);
1440 static enum parse_register_result parse_register_contact(struct sip_pvt *pvt, struct sip_peer *p, struct sip_request *req);
1441 static void reg_source_db(struct sip_peer *peer);
1442 static void destroy_association(struct sip_peer *peer);
1443 static void set_insecure_flags(struct ast_flags *flags, const char *value, int lineno);
1444 static int handle_common_options(struct ast_flags *flags, struct ast_flags *mask, struct ast_variable *v);
1445 static void set_socket_transport(struct sip_socket *socket, int transport);
1446
1447 /* Realtime device support */
1448 static void realtime_update_peer(const char *peername, struct ast_sockaddr *addr, const char *username, const char *fullcontact, const char *useragent, int expirey, unsigned short deprecated_username, int lastms);
1449 static void update_peer(struct sip_peer *p, int expire);
1450 static struct ast_variable *get_insecure_variable_from_config(struct ast_config *config);
1451 static const char *get_name_from_variable(struct ast_variable *var, const char *newpeername);
1452 static struct sip_peer *realtime_peer(const char *peername, struct ast_sockaddr *sin, int devstate_only, int which_objects);
1453 static char *sip_prune_realtime(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
1454
1455 /*--- Internal UA client handling (outbound registrations) */
1456 static void ast_sip_ouraddrfor(const struct ast_sockaddr *them, struct ast_sockaddr *us, struct sip_pvt *p);
1457 static void sip_registry_destroy(struct sip_registry *reg);
1458 static int sip_register(const char *value, int lineno);
1459 static const char *regstate2str(enum sipregistrystate regstate) attribute_const;
1460 static int sip_reregister(const void *data);
1461 static int __sip_do_register(struct sip_registry *r);
1462 static int sip_reg_timeout(const void *data);
1463 static void sip_send_all_registers(void);
1464 static int sip_reinvite_retry(const void *data);
1465
1466 /*--- Parsing SIP requests and responses */
1467 static void append_date(struct sip_request *req);       /* Append date to SIP packet */
1468 static int determine_firstline_parts(struct sip_request *req);
1469 static const struct cfsubscription_types *find_subscription_type(enum subscriptiontype subtype);
1470 static const char *gettag(const struct sip_request *req, const char *header, char *tagbuf, int tagbufsize);
1471 static int find_sip_method(const char *msg);
1472 static unsigned int parse_allowed_methods(struct sip_request *req);
1473 static unsigned int set_pvt_allowed_methods(struct sip_pvt *pvt, struct sip_request *req);
1474 static int parse_request(struct sip_request *req);
1475 static const char *referstatus2str(enum referstatus rstatus) attribute_pure;
1476 static int method_match(enum sipmethod id, const char *name);
1477 static void parse_copy(struct sip_request *dst, const struct sip_request *src);
1478 static const char *find_alias(const char *name, const char *_default);
1479 static const char *__get_header(const struct sip_request *req, const char *name, int *start);
1480 static void lws2sws(struct ast_str *msgbuf);
1481 static void extract_uri(struct sip_pvt *p, struct sip_request *req);
1482 static char *remove_uri_parameters(char *uri);
1483 static int get_refer_info(struct sip_pvt *transferer, struct sip_request *outgoing_req);
1484 static int get_also_info(struct sip_pvt *p, struct sip_request *oreq);
1485 static int parse_ok_contact(struct sip_pvt *pvt, struct sip_request *req);
1486 static int set_address_from_contact(struct sip_pvt *pvt);
1487 static void check_via(struct sip_pvt *p, struct sip_request *req);
1488 static int get_rpid(struct sip_pvt *p, struct sip_request *oreq);
1489 static int get_rdnis(struct sip_pvt *p, struct sip_request *oreq, char **name, char **number, int *reason);
1490 static enum sip_get_dest_result get_destination(struct sip_pvt *p, struct sip_request *oreq, int *cc_recall_core_id);
1491 static int get_msg_text(char *buf, int len, struct sip_request *req, int addnewline);
1492 static int transmit_state_notify(struct sip_pvt *p, int state, int full, int timeout);
1493 static void update_connectedline(struct sip_pvt *p, const void *data, size_t datalen);
1494 static void update_redirecting(struct sip_pvt *p, const void *data, size_t datalen);
1495 static int get_domain(const char *str, char *domain, int len);
1496 static void get_realm(struct sip_pvt *p, const struct sip_request *req);
1497
1498 /*-- TCP connection handling ---*/
1499 static void *_sip_tcp_helper_thread(struct sip_pvt *pvt, struct ast_tcptls_session_instance *tcptls_session);
1500 static void *sip_tcp_worker_fn(void *);
1501
1502 /*--- Constructing requests and responses */
1503 static void initialize_initreq(struct sip_pvt *p, struct sip_request *req);
1504 static int init_req(struct sip_request *req, int sipmethod, const char *recip);
1505 static void deinit_req(struct sip_request *req);
1506 static int reqprep(struct sip_request *req, struct sip_pvt *p, int sipmethod, int seqno, int newbranch);
1507 static void initreqprep(struct sip_request *req, struct sip_pvt *p, int sipmethod, const char * const explicit_uri);
1508 static int init_resp(struct sip_request *resp, const char *msg);
1509 static inline int resp_needs_contact(const char *msg, enum sipmethod method);
1510 static int respprep(struct sip_request *resp, struct sip_pvt *p, const char *msg, const struct sip_request *req);
1511 static const struct ast_sockaddr *sip_real_dst(const struct sip_pvt *p);
1512 static void build_via(struct sip_pvt *p);
1513 static int create_addr_from_peer(struct sip_pvt *r, struct sip_peer *peer);
1514 static int create_addr(struct sip_pvt *dialog, const char *opeer, struct ast_sockaddr *addr, int newdialog, struct ast_sockaddr *remote_address);
1515 static char *generate_random_string(char *buf, size_t size);
1516 static void build_callid_pvt(struct sip_pvt *pvt);
1517 static void build_callid_registry(struct sip_registry *reg, const struct ast_sockaddr *ourip, const char *fromdomain);
1518 static void make_our_tag(char *tagbuf, size_t len);
1519 static int add_header(struct sip_request *req, const char *var, const char *value);
1520 static int add_header_max_forwards(struct sip_pvt *dialog, struct sip_request *req);
1521 static int add_content(struct sip_request *req, const char *line);
1522 static int finalize_content(struct sip_request *req);
1523 static int add_text(struct sip_request *req, const char *text);
1524 static int add_digit(struct sip_request *req, char digit, unsigned int duration, int mode);
1525 static int add_rpid(struct sip_request *req, struct sip_pvt *p);
1526 static int add_vidupdate(struct sip_request *req);
1527 static void add_route(struct sip_request *req, struct sip_route *route);
1528 static int copy_header(struct sip_request *req, const struct sip_request *orig, const char *field);
1529 static int copy_all_header(struct sip_request *req, const struct sip_request *orig, const char *field);
1530 static int copy_via_headers(struct sip_pvt *p, struct sip_request *req, const struct sip_request *orig, const char *field);
1531 static void set_destination(struct sip_pvt *p, char *uri);
1532 static void append_date(struct sip_request *req);
1533 static void build_contact(struct sip_pvt *p);
1534
1535 /*------Request handling functions */
1536 static int handle_incoming(struct sip_pvt *p, struct sip_request *req, struct ast_sockaddr *addr, int *recount, int *nounlock);
1537 static int handle_request_update(struct sip_pvt *p, struct sip_request *req);
1538 static int handle_request_invite(struct sip_pvt *p, struct sip_request *req, int debug, int seqno, struct ast_sockaddr *addr, int *recount, const char *e, int *nounlock);
1539 static int handle_request_refer(struct sip_pvt *p, struct sip_request *req, int debug, int seqno, int *nounlock);
1540 static int handle_request_bye(struct sip_pvt *p, struct sip_request *req);
1541 static int handle_request_register(struct sip_pvt *p, struct sip_request *req, struct ast_sockaddr *sin, const char *e);
1542 static int handle_request_cancel(struct sip_pvt *p, struct sip_request *req);
1543 static int handle_request_message(struct sip_pvt *p, struct sip_request *req, struct ast_sockaddr *addr, const char *e);
1544 static int handle_request_subscribe(struct sip_pvt *p, struct sip_request *req, struct ast_sockaddr *addr, int seqno, const char *e);
1545 static void handle_request_info(struct sip_pvt *p, struct sip_request *req);
1546 static int handle_request_options(struct sip_pvt *p, struct sip_request *req, struct ast_sockaddr *addr, const char *e);
1547 static int handle_invite_replaces(struct sip_pvt *p, struct sip_request *req, int debug, int seqno, struct ast_sockaddr *addr, int *nounlock);
1548 static int handle_request_notify(struct sip_pvt *p, struct sip_request *req, struct ast_sockaddr *addr, int seqno, const char *e);
1549 static int local_attended_transfer(struct sip_pvt *transferer, struct sip_dual *current, struct sip_request *req, int seqno, int *nounlock);
1550
1551 /*------Response handling functions */
1552 static void handle_response_publish(struct sip_pvt *p, int resp, const char *rest, struct sip_request *req, int seqno);
1553 static void handle_response_invite(struct sip_pvt *p, int resp, const char *rest, struct sip_request *req, int seqno);
1554 static void handle_response_notify(struct sip_pvt *p, int resp, const char *rest, struct sip_request *req, int seqno);
1555 static void handle_response_refer(struct sip_pvt *p, int resp, const char *rest, struct sip_request *req, int seqno);
1556 static void handle_response_subscribe(struct sip_pvt *p, int resp, const char *rest, struct sip_request *req, int seqno);
1557 static int handle_response_register(struct sip_pvt *p, int resp, const char *rest, struct sip_request *req, int seqno);
1558 static void handle_response(struct sip_pvt *p, int resp, const char *rest, struct sip_request *req, int seqno);
1559
1560 /*------ SRTP Support -------- */
1561 static int setup_srtp(struct sip_srtp **srtp);
1562 static int process_crypto(struct sip_pvt *p, struct ast_rtp_instance *rtp, struct sip_srtp **srtp, const char *a);
1563
1564 /*------ T38 Support --------- */
1565 static int transmit_response_with_t38_sdp(struct sip_pvt *p, char *msg, struct sip_request *req, int retrans);
1566 static struct ast_udptl *sip_get_udptl_peer(struct ast_channel *chan);
1567 static int sip_set_udptl_peer(struct ast_channel *chan, struct ast_udptl *udptl);
1568 static void change_t38_state(struct sip_pvt *p, int state);
1569
1570 /*------ Session-Timers functions --------- */
1571 static void proc_422_rsp(struct sip_pvt *p, struct sip_request *rsp);
1572 static int  proc_session_timer(const void *vp);
1573 static void stop_session_timer(struct sip_pvt *p);
1574 static void start_session_timer(struct sip_pvt *p);
1575 static void restart_session_timer(struct sip_pvt *p);
1576 static const char *strefresher2str(enum st_refresher r);
1577 static int parse_session_expires(const char *p_hdrval, int *const p_interval, enum st_refresher *const p_ref);
1578 static int parse_minse(const char *p_hdrval, int *const p_interval);
1579 static int st_get_se(struct sip_pvt *, int max);
1580 static enum st_refresher st_get_refresher(struct sip_pvt *);
1581 static enum st_mode st_get_mode(struct sip_pvt *, int no_cached);
1582 static struct sip_st_dlg* sip_st_alloc(struct sip_pvt *const p);
1583
1584 /*------- RTP Glue functions -------- */
1585 static int sip_set_rtp_peer(struct ast_channel *chan, struct ast_rtp_instance *instance, struct ast_rtp_instance *vinstance, struct ast_rtp_instance *tinstance, const struct ast_format_cap *cap, int nat_active);
1586
1587 /*!--- SIP MWI Subscription support */
1588 static int sip_subscribe_mwi(const char *value, int lineno);
1589 static void sip_subscribe_mwi_destroy(struct sip_subscription_mwi *mwi);
1590 static void sip_send_all_mwi_subscriptions(void);
1591 static int sip_subscribe_mwi_do(const void *data);
1592 static int __sip_subscribe_mwi_do(struct sip_subscription_mwi *mwi);
1593
1594 /*! \brief Definition of this channel for PBX channel registration */
1595 struct ast_channel_tech sip_tech = {
1596         .type = "SIP",
1597         .description = "Session Initiation Protocol (SIP)",
1598         .properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
1599         .requester = sip_request_call,                  /* called with chan unlocked */
1600         .devicestate = sip_devicestate,                 /* called with chan unlocked (not chan-specific) */
1601         .call = sip_call,                       /* called with chan locked */
1602         .send_html = sip_sendhtml,
1603         .hangup = sip_hangup,                   /* called with chan locked */
1604         .answer = sip_answer,                   /* called with chan locked */
1605         .read = sip_read,                       /* called with chan locked */
1606         .write = sip_write,                     /* called with chan locked */
1607         .write_video = sip_write,               /* called with chan locked */
1608         .write_text = sip_write,
1609         .indicate = sip_indicate,               /* called with chan locked */
1610         .transfer = sip_transfer,               /* called with chan locked */
1611         .fixup = sip_fixup,                     /* called with chan locked */
1612         .send_digit_begin = sip_senddigit_begin,        /* called with chan unlocked */
1613         .send_digit_end = sip_senddigit_end,
1614         .bridge = ast_rtp_instance_bridge,                      /* XXX chan unlocked ? */
1615         .early_bridge = ast_rtp_instance_early_bridge,
1616         .send_text = sip_sendtext,              /* called with chan locked */
1617         .func_channel_read = sip_acf_channel_read,
1618         .setoption = sip_setoption,
1619         .queryoption = sip_queryoption,
1620         .get_pvt_uniqueid = sip_get_callid,
1621 };
1622
1623 /*! \brief This version of the sip channel tech has no send_digit_begin
1624  * callback so that the core knows that the channel does not want
1625  * DTMF BEGIN frames.
1626  * The struct is initialized just before registering the channel driver,
1627  * and is for use with channels using SIP INFO DTMF.
1628  */
1629 struct ast_channel_tech sip_tech_info;
1630
1631 /*------- CC Support -------- */
1632 static int sip_cc_agent_init(struct ast_cc_agent *agent, struct ast_channel *chan);
1633 static int sip_cc_agent_start_offer_timer(struct ast_cc_agent *agent);
1634 static int sip_cc_agent_stop_offer_timer(struct ast_cc_agent *agent);
1635 static void sip_cc_agent_respond(struct ast_cc_agent *agent, enum ast_cc_agent_response_reason reason);
1636 static int sip_cc_agent_status_request(struct ast_cc_agent *agent);
1637 static int sip_cc_agent_start_monitoring(struct ast_cc_agent *agent);
1638 static int sip_cc_agent_recall(struct ast_cc_agent *agent);
1639 static void sip_cc_agent_destructor(struct ast_cc_agent *agent);
1640
1641 static struct ast_cc_agent_callbacks sip_cc_agent_callbacks = {
1642         .type = "SIP",
1643         .init = sip_cc_agent_init,
1644         .start_offer_timer = sip_cc_agent_start_offer_timer,
1645         .stop_offer_timer = sip_cc_agent_stop_offer_timer,
1646         .respond = sip_cc_agent_respond,
1647         .status_request = sip_cc_agent_status_request,
1648         .start_monitoring = sip_cc_agent_start_monitoring,
1649         .callee_available = sip_cc_agent_recall,
1650         .destructor = sip_cc_agent_destructor,
1651 };
1652
1653 static int find_by_notify_uri_helper(void *obj, void *arg, int flags)
1654 {
1655         struct ast_cc_agent *agent = obj;
1656         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1657         const char *uri = arg;
1658
1659         return !sip_uri_cmp(agent_pvt->notify_uri, uri) ? CMP_MATCH | CMP_STOP : 0;
1660 }
1661
1662 static struct ast_cc_agent *find_sip_cc_agent_by_notify_uri(const char * const uri)
1663 {
1664         struct ast_cc_agent *agent = ast_cc_agent_callback(0, find_by_notify_uri_helper, (char *)uri, "SIP");
1665         return agent;
1666 }
1667
1668 static int find_by_subscribe_uri_helper(void *obj, void *arg, int flags)
1669 {
1670         struct ast_cc_agent *agent = obj;
1671         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1672         const char *uri = arg;
1673
1674         return !sip_uri_cmp(agent_pvt->subscribe_uri, uri) ? CMP_MATCH | CMP_STOP : 0;
1675 }
1676
1677 static struct ast_cc_agent *find_sip_cc_agent_by_subscribe_uri(const char * const uri)
1678 {
1679         struct ast_cc_agent *agent = ast_cc_agent_callback(0, find_by_subscribe_uri_helper, (char *)uri, "SIP");
1680         return agent;
1681 }
1682
1683 static int find_by_callid_helper(void *obj, void *arg, int flags)
1684 {
1685         struct ast_cc_agent *agent = obj;
1686         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1687         struct sip_pvt *call_pvt = arg;
1688
1689         return !strcmp(agent_pvt->original_callid, call_pvt->callid) ? CMP_MATCH | CMP_STOP : 0;
1690 }
1691
1692 static struct ast_cc_agent *find_sip_cc_agent_by_original_callid(struct sip_pvt *pvt)
1693 {
1694         struct ast_cc_agent *agent = ast_cc_agent_callback(0, find_by_callid_helper, pvt, "SIP");
1695         return agent;
1696 }
1697
1698 static int sip_cc_agent_init(struct ast_cc_agent *agent, struct ast_channel *chan)
1699 {
1700         struct sip_cc_agent_pvt *agent_pvt = ast_calloc(1, sizeof(*agent_pvt));
1701         struct sip_pvt *call_pvt = chan->tech_pvt;
1702
1703         if (!agent_pvt) {
1704                 return -1;
1705         }
1706
1707         ast_assert(!strcmp(chan->tech->type, "SIP"));
1708
1709         ast_copy_string(agent_pvt->original_callid, call_pvt->callid, sizeof(agent_pvt->original_callid));
1710         ast_copy_string(agent_pvt->original_exten, call_pvt->exten, sizeof(agent_pvt->original_exten));
1711         agent_pvt->offer_timer_id = -1;
1712         agent->private_data = agent_pvt;
1713         sip_pvt_lock(call_pvt);
1714         ast_set_flag(&call_pvt->flags[0], SIP_OFFER_CC);
1715         sip_pvt_unlock(call_pvt);
1716         return 0;
1717 }
1718
1719 static int sip_offer_timer_expire(const void *data)
1720 {
1721         struct ast_cc_agent *agent = (struct ast_cc_agent *) data;
1722         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1723
1724         agent_pvt->offer_timer_id = -1;
1725
1726         return ast_cc_failed(agent->core_id, "SIP agent %s's offer timer expired", agent->device_name);
1727 }
1728
1729 static int sip_cc_agent_start_offer_timer(struct ast_cc_agent *agent)
1730 {
1731         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1732         int when;
1733
1734         when = ast_get_cc_offer_timer(agent->cc_params) * 1000;
1735         agent_pvt->offer_timer_id = ast_sched_add(sched, when, sip_offer_timer_expire, agent);
1736         return 0;
1737 }
1738
1739 static int sip_cc_agent_stop_offer_timer(struct ast_cc_agent *agent)
1740 {
1741         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1742
1743         AST_SCHED_DEL(sched, agent_pvt->offer_timer_id);
1744         return 0;
1745 }
1746
1747 static void sip_cc_agent_respond(struct ast_cc_agent *agent, enum ast_cc_agent_response_reason reason)
1748 {
1749         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1750
1751         sip_pvt_lock(agent_pvt->subscribe_pvt);
1752         ast_set_flag(&agent_pvt->subscribe_pvt->flags[1], SIP_PAGE2_DIALOG_ESTABLISHED);
1753         if (reason == AST_CC_AGENT_RESPONSE_SUCCESS || !ast_strlen_zero(agent_pvt->notify_uri)) {
1754                 /* The second half of this if statement may be a bit hard to grasp,
1755                  * so here's an explanation. When a subscription comes into
1756                  * chan_sip, as long as it is not malformed, it will be passed
1757                  * to the CC core. If the core senses an out-of-order state transition,
1758                  * then the core will call this callback with the "reason" set to a
1759                  * failure condition.
1760                  * However, an out-of-order state transition will occur during a resubscription
1761                  * for CC. In such a case, we can see that we have already generated a notify_uri
1762                  * and so we can detect that this isn't a *real* failure. Rather, it is just
1763                  * something the core doesn't recognize as a legitimate SIP state transition.
1764                  * Thus we respond with happiness and flowers.
1765                  */
1766                 transmit_response(agent_pvt->subscribe_pvt, "200 OK", &agent_pvt->subscribe_pvt->initreq);
1767                 transmit_cc_notify(agent, agent_pvt->subscribe_pvt, CC_QUEUED);
1768         } else {
1769                 transmit_response(agent_pvt->subscribe_pvt, "500 Internal Error", &agent_pvt->subscribe_pvt->initreq);
1770         }
1771         sip_pvt_unlock(agent_pvt->subscribe_pvt);
1772         agent_pvt->is_available = TRUE;
1773 }
1774
1775 static int sip_cc_agent_status_request(struct ast_cc_agent *agent)
1776 {
1777         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1778         enum ast_device_state state = agent_pvt->is_available ? AST_DEVICE_NOT_INUSE : AST_DEVICE_INUSE;
1779         return ast_cc_agent_status_response(agent->core_id, state);
1780 }
1781
1782 static int sip_cc_agent_start_monitoring(struct ast_cc_agent *agent)
1783 {
1784         /* To start monitoring just means to wait for an incoming PUBLISH
1785          * to tell us that the caller has become available again. No special
1786          * action is needed
1787          */
1788         return 0;
1789 }
1790
1791 static int sip_cc_agent_recall(struct ast_cc_agent *agent)
1792 {
1793         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1794         /* If we have received a PUBLISH beforehand stating that the caller in question
1795          * is not available, we can save ourself a bit of effort here and just report
1796          * the caller as busy
1797          */
1798         if (!agent_pvt->is_available) {
1799                 return ast_cc_agent_caller_busy(agent->core_id, "Caller %s is busy, reporting to the core",
1800                                 agent->device_name);
1801         }
1802         /* Otherwise, we transmit a NOTIFY to the caller and await either
1803          * a PUBLISH or an INVITE
1804          */
1805         sip_pvt_lock(agent_pvt->subscribe_pvt);
1806         transmit_cc_notify(agent, agent_pvt->subscribe_pvt, CC_READY);
1807         sip_pvt_unlock(agent_pvt->subscribe_pvt);
1808         return 0;
1809 }
1810
1811 static void sip_cc_agent_destructor(struct ast_cc_agent *agent)
1812 {
1813         struct sip_cc_agent_pvt *agent_pvt = agent->private_data;
1814
1815         if (!agent_pvt) {
1816                 /* The agent constructor probably failed. */
1817                 return;
1818         }
1819
1820         sip_cc_agent_stop_offer_timer(agent);
1821         if (agent_pvt->subscribe_pvt) {
1822                 sip_pvt_lock(agent_pvt->subscribe_pvt);
1823                 if (!ast_test_flag(&agent_pvt->subscribe_pvt->flags[1], SIP_PAGE2_DIALOG_ESTABLISHED)) {
1824                         /* If we haven't sent a 200 OK for the SUBSCRIBE dialog yet, then we need to send a response letting
1825                          * the subscriber know something went wrong
1826                          */
1827                         transmit_response(agent_pvt->subscribe_pvt, "500 Internal Server Error", &agent_pvt->subscribe_pvt->initreq);
1828                 }
1829                 sip_pvt_unlock(agent_pvt->subscribe_pvt);
1830                 agent_pvt->subscribe_pvt = dialog_unref(agent_pvt->subscribe_pvt, "SIP CC agent destructor: Remove ref to subscription");
1831         }
1832         ast_free(agent_pvt);
1833 }
1834
1835 struct ao2_container *sip_monitor_instances;
1836
1837 static int sip_monitor_instance_hash_fn(const void *obj, const int flags)
1838 {
1839         const struct sip_monitor_instance *monitor_instance = obj;
1840         return monitor_instance->core_id;
1841 }
1842
1843 static int sip_monitor_instance_cmp_fn(void *obj, void *arg, int flags)
1844 {
1845         struct sip_monitor_instance *monitor_instance1 = obj;
1846         struct sip_monitor_instance *monitor_instance2 = arg;
1847
1848         return monitor_instance1->core_id == monitor_instance2->core_id ? CMP_MATCH | CMP_STOP : 0;
1849 }
1850
1851 static void sip_monitor_instance_destructor(void *data)
1852 {
1853         struct sip_monitor_instance *monitor_instance = data;
1854         if (monitor_instance->subscription_pvt) {
1855                 sip_pvt_lock(monitor_instance->subscription_pvt);
1856                 monitor_instance->subscription_pvt->expiry = 0;
1857                 transmit_invite(monitor_instance->subscription_pvt, SIP_SUBSCRIBE, FALSE, 0, monitor_instance->subscribe_uri);
1858                 sip_pvt_unlock(monitor_instance->subscription_pvt);
1859                 dialog_unref(monitor_instance->subscription_pvt, "Unref monitor instance ref of subscription pvt");
1860         }
1861         if (monitor_instance->suspension_entry) {
1862                 monitor_instance->suspension_entry->body[0] = '\0';
1863                 transmit_publish(monitor_instance->suspension_entry, SIP_PUBLISH_REMOVE ,monitor_instance->notify_uri);
1864                 ao2_t_ref(monitor_instance->suspension_entry, -1, "Decrementing suspension entry refcount in sip_monitor_instance_destructor");
1865         }
1866         ast_string_field_free_memory(monitor_instance);
1867 }
1868
1869 static struct sip_monitor_instance *sip_monitor_instance_init(int core_id, const char * const subscribe_uri, const char * const peername, const char * const device_name)
1870 {
1871         struct sip_monitor_instance *monitor_instance = ao2_alloc(sizeof(*monitor_instance), sip_monitor_instance_destructor);
1872
1873         if (!monitor_instance) {
1874                 return NULL;
1875         }
1876
1877         if (ast_string_field_init(monitor_instance, 256)) {
1878                 ao2_ref(monitor_instance, -1);
1879                 return NULL;
1880         }
1881
1882         ast_string_field_set(monitor_instance, subscribe_uri, subscribe_uri);
1883         ast_string_field_set(monitor_instance, peername, peername);
1884         ast_string_field_set(monitor_instance, device_name, device_name);
1885         monitor_instance->core_id = core_id;
1886         ao2_link(sip_monitor_instances, monitor_instance);
1887         return monitor_instance;
1888 }
1889
1890 static int find_sip_monitor_instance_by_subscription_pvt(void *obj, void *arg, int flags)
1891 {
1892         struct sip_monitor_instance *monitor_instance = obj;
1893         return monitor_instance->subscription_pvt == arg ? CMP_MATCH | CMP_STOP : 0;
1894 }
1895
1896 static int find_sip_monitor_instance_by_suspension_entry(void *obj, void *arg, int flags)
1897 {
1898         struct sip_monitor_instance *monitor_instance = obj;
1899         return monitor_instance->suspension_entry == arg ? CMP_MATCH | CMP_STOP : 0;
1900 }
1901
1902 static int sip_cc_monitor_request_cc(struct ast_cc_monitor *monitor, int *available_timer_id);
1903 static int sip_cc_monitor_suspend(struct ast_cc_monitor *monitor);
1904 static int sip_cc_monitor_unsuspend(struct ast_cc_monitor *monitor);
1905 static int sip_cc_monitor_cancel_available_timer(struct ast_cc_monitor *monitor, int *sched_id);
1906 static void sip_cc_monitor_destructor(void *private_data);
1907
1908 static struct ast_cc_monitor_callbacks sip_cc_monitor_callbacks = {
1909         .type = "SIP",
1910         .request_cc = sip_cc_monitor_request_cc,
1911         .suspend = sip_cc_monitor_suspend,
1912         .unsuspend = sip_cc_monitor_unsuspend,
1913         .cancel_available_timer = sip_cc_monitor_cancel_available_timer,
1914         .destructor = sip_cc_monitor_destructor,
1915 };
1916
1917 static int sip_cc_monitor_request_cc(struct ast_cc_monitor *monitor, int *available_timer_id)
1918 {
1919         struct sip_monitor_instance *monitor_instance = monitor->private_data;
1920         enum ast_cc_service_type service = monitor->service_offered;
1921         int when;
1922
1923         if (!monitor_instance) {
1924                 return -1;
1925         }
1926
1927         if (!(monitor_instance->subscription_pvt = sip_alloc(NULL, NULL, 0, SIP_SUBSCRIBE, NULL))) {
1928                 return -1;
1929         }
1930
1931         when = service == AST_CC_CCBS ? ast_get_ccbs_available_timer(monitor->interface->config_params) :
1932                 ast_get_ccnr_available_timer(monitor->interface->config_params);
1933
1934         sip_pvt_lock(monitor_instance->subscription_pvt);
1935         ast_set_flag(&monitor_instance->subscription_pvt->flags[0], SIP_OUTGOING);
1936         create_addr(monitor_instance->subscription_pvt, monitor_instance->peername, 0, 1, NULL);
1937         ast_sip_ouraddrfor(&monitor_instance->subscription_pvt->sa, &monitor_instance->subscription_pvt->ourip, monitor_instance->subscription_pvt);
1938         monitor_instance->subscription_pvt->subscribed = CALL_COMPLETION;
1939         monitor_instance->subscription_pvt->expiry = when;
1940
1941         transmit_invite(monitor_instance->subscription_pvt, SIP_SUBSCRIBE, FALSE, 2, monitor_instance->subscribe_uri);
1942         sip_pvt_unlock(monitor_instance->subscription_pvt);
1943
1944         ao2_t_ref(monitor, +1, "Adding a ref to the monitor for the scheduler");
1945         *available_timer_id = ast_sched_add(sched, when * 1000, ast_cc_available_timer_expire, monitor);
1946         return 0;
1947 }
1948
1949 static int construct_pidf_body(enum sip_cc_publish_state state, char *pidf_body, size_t size, const char *presentity)
1950 {
1951         struct ast_str *body = ast_str_alloca(size);
1952         char tuple_id[32];
1953
1954         generate_random_string(tuple_id, sizeof(tuple_id));
1955
1956         /* We'll make this a bare-bones pidf body. In state_notify_build_xml, the PIDF
1957          * body gets a lot more extra junk that isn't necessary, so we'll leave it out here.
1958          */
1959         ast_str_append(&body, 0, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
1960         /* XXX The entity attribute is currently set to the peer name associated with the
1961          * dialog. This is because we currently only call this function for call-completion
1962          * PUBLISH bodies. In such cases, the entity is completely disregarded. For other
1963          * event packages, it may be crucial to have a proper URI as the presentity so this
1964          * should be revisited as support is expanded.
1965          */
1966         ast_str_append(&body, 0, "<presence xmlns=\"urn:ietf:params:xml:ns:pidf\" entity=\"%s\">\n", presentity);
1967         ast_str_append(&body, 0, "<tuple id=\"%s\">\n", tuple_id);
1968         ast_str_append(&body, 0, "<status><basic>%s</basic></status>\n", state == CC_OPEN ? "open" : "closed");
1969         ast_str_append(&body, 0, "</tuple>\n");
1970         ast_str_append(&body, 0, "</presence>\n");
1971         ast_copy_string(pidf_body, ast_str_buffer(body), size);
1972         return 0;
1973 }
1974
1975 static int sip_cc_monitor_suspend(struct ast_cc_monitor *monitor)
1976 {
1977         struct sip_monitor_instance *monitor_instance = monitor->private_data;
1978         enum sip_publish_type publish_type;
1979         struct cc_epa_entry *cc_entry;
1980
1981         if (!monitor_instance) {
1982                 return -1;
1983         }
1984
1985         if (!monitor_instance->suspension_entry) {
1986                 /* We haven't yet allocated the suspension entry, so let's give it a shot */
1987                 if (!(monitor_instance->suspension_entry = create_epa_entry("call-completion", monitor_instance->peername))) {
1988                         ast_log(LOG_WARNING, "Unable to allocate sip EPA entry for call-completion\n");
1989                         ao2_ref(monitor_instance, -1);
1990                         return -1;
1991                 }
1992                 if (!(cc_entry = ast_calloc(1, sizeof(*cc_entry)))) {
1993                         ast_log(LOG_WARNING, "Unable to allocate space for instance data of EPA entry for call-completion\n");
1994                         ao2_ref(monitor_instance, -1);
1995                         return -1;
1996                 }
1997                 cc_entry->core_id = monitor->core_id;
1998                 monitor_instance->suspension_entry->instance_data = cc_entry;
1999                 publish_type = SIP_PUBLISH_INITIAL;
2000         } else {
2001                 publish_type = SIP_PUBLISH_MODIFY;
2002                 cc_entry = monitor_instance->suspension_entry->instance_data;
2003         }
2004
2005         cc_entry->current_state = CC_CLOSED;
2006
2007         if (ast_strlen_zero(monitor_instance->notify_uri)) {
2008                 /* If we have no set notify_uri, then what this means is that we have
2009                  * not received a NOTIFY from this destination stating that he is
2010                  * currently available.
2011                  *
2012                  * This situation can arise when the core calls the suspend callbacks
2013                  * of multiple destinations. If one of the other destinations aside
2014                  * from this one notified Asterisk that he is available, then there
2015                  * is no reason to take any suspension action on this device. Rather,
2016                  * we should return now and if we receive a NOTIFY while monitoring
2017                  * is still "suspended" then we can immediately respond with the
2018                  * proper PUBLISH to let this endpoint know what is going on.
2019                  */
2020                 return 0;
2021         }
2022         construct_pidf_body(CC_CLOSED, monitor_instance->suspension_entry->body, sizeof(monitor_instance->suspension_entry->body), monitor_instance->peername);
2023         return transmit_publish(monitor_instance->suspension_entry, publish_type, monitor_instance->notify_uri);
2024 }
2025
2026 static int sip_cc_monitor_unsuspend(struct ast_cc_monitor *monitor)
2027 {
2028         struct sip_monitor_instance *monitor_instance = monitor->private_data;
2029         struct cc_epa_entry *cc_entry;
2030
2031         if (!monitor_instance) {
2032                 return -1;
2033         }
2034
2035         ast_assert(monitor_instance->suspension_entry != NULL);
2036
2037         cc_entry = monitor_instance->suspension_entry->instance_data;
2038         cc_entry->current_state = CC_OPEN;
2039         if (ast_strlen_zero(monitor_instance->notify_uri)) {
2040                 /* This means we are being asked to unsuspend a call leg we never
2041                  * sent a PUBLISH on. As such, there is no reason to send another
2042                  * PUBLISH at this point either. We can just return instead.
2043                  */
2044                 return 0;
2045         }
2046         construct_pidf_body(CC_OPEN, monitor_instance->suspension_entry->body, sizeof(monitor_instance->suspension_entry->body), monitor_instance->peername);
2047         return transmit_publish(monitor_instance->suspension_entry, SIP_PUBLISH_MODIFY, monitor_instance->notify_uri);
2048 }
2049
2050 static int sip_cc_monitor_cancel_available_timer(struct ast_cc_monitor *monitor, int *sched_id)
2051 {
2052         if (*sched_id != -1) {
2053                 AST_SCHED_DEL(sched, *sched_id);
2054                 ao2_t_ref(monitor, -1, "Removing scheduler's reference to the monitor");
2055         }
2056         return 0;
2057 }
2058
2059 static void sip_cc_monitor_destructor(void *private_data)
2060 {
2061         struct sip_monitor_instance *monitor_instance = private_data;
2062         ao2_unlink(sip_monitor_instances, monitor_instance);
2063         ast_module_unref(ast_module_info->self);
2064 }
2065
2066 static int sip_get_cc_information(struct sip_request *req, char *subscribe_uri, size_t size, enum ast_cc_service_type *service)
2067 {
2068         char *call_info = ast_strdupa(sip_get_header(req, "Call-Info"));
2069         char *uri;
2070         char *purpose;
2071         char *service_str;
2072         static const char cc_purpose[] = "purpose=call-completion";
2073         static const int cc_purpose_len = sizeof(cc_purpose) - 1;
2074
2075         if (ast_strlen_zero(call_info)) {
2076                 /* No Call-Info present. Definitely no CC offer */
2077                 return -1;
2078         }
2079
2080         uri = strsep(&call_info, ";");
2081
2082         while ((purpose = strsep(&call_info, ";"))) {
2083                 if (!strncmp(purpose, cc_purpose, cc_purpose_len)) {
2084                         break;
2085                 }
2086         }
2087         if (!purpose) {
2088                 /* We didn't find the appropriate purpose= parameter. Oh well */
2089                 return -1;
2090         }
2091
2092         /* Okay, call-completion has been offered. Let's figure out what type of service this is */
2093         while ((service_str = strsep(&call_info, ";"))) {
2094                 if (!strncmp(service_str, "m=", 2)) {
2095                         break;
2096                 }
2097         }
2098         if (!service_str) {
2099                 /* So they didn't offer a particular service, We'll just go with CCBS since it really
2100                  * doesn't matter anyway
2101                  */
2102                 service_str = "BS";
2103         } else {
2104                 /* We already determined that there is an "m=" so no need to check
2105                  * the result of this strsep
2106                  */
2107                 strsep(&service_str, "=");
2108         }
2109
2110         if ((*service = service_string_to_service_type(service_str)) == AST_CC_NONE) {
2111                 /* Invalid service offered */
2112                 return -1;
2113         }
2114
2115         ast_copy_string(subscribe_uri, get_in_brackets(uri), size);
2116
2117         return 0;
2118 }
2119
2120 /*
2121  * \brief Determine what, if any, CC has been offered and queue a CC frame if possible
2122  *
2123  * After taking care of some formalities to be sure that this call is eligible for CC,
2124  * we first try to see if we can make use of native CC. We grab the information from
2125  * the passed-in sip_request (which is always a response to an INVITE). If we can
2126  * use native CC monitoring for the call, then so be it.
2127  *
2128  * If native cc monitoring is not possible or not supported, then we will instead attempt
2129  * to use generic monitoring. Falling back to generic from a failed attempt at using native
2130  * monitoring will only work if the monitor policy of the endpoint is "always"
2131  *
2132  * \param pvt The current dialog. Contains CC parameters for the endpoint
2133  * \param req The response to the INVITE we want to inspect
2134  * \param service The service to use if generic monitoring is to be used. For native
2135  * monitoring, we get the service from the SIP response itself
2136  */
2137 static void sip_handle_cc(struct sip_pvt *pvt, struct sip_request *req, enum ast_cc_service_type service)
2138 {
2139         enum ast_cc_monitor_policies monitor_policy = ast_get_cc_monitor_policy(pvt->cc_params);
2140         int core_id;
2141         char interface_name[AST_CHANNEL_NAME];
2142
2143         if (monitor_policy == AST_CC_MONITOR_NEVER) {
2144                 /* Don't bother, just return */
2145                 return;
2146         }
2147
2148         if ((core_id = ast_cc_get_current_core_id(pvt->owner)) == -1) {
2149                 /* For some reason, CC is invalid, so don't try it! */
2150                 return;
2151         }
2152
2153         ast_channel_get_device_name(pvt->owner, interface_name, sizeof(interface_name));
2154
2155         if (monitor_policy == AST_CC_MONITOR_ALWAYS || monitor_policy == AST_CC_MONITOR_NATIVE) {
2156                 char subscribe_uri[SIPBUFSIZE];
2157                 char device_name[AST_CHANNEL_NAME];
2158                 enum ast_cc_service_type offered_service;
2159                 struct sip_monitor_instance *monitor_instance;
2160                 if (sip_get_cc_information(req, subscribe_uri, sizeof(subscribe_uri), &offered_service)) {
2161                         /* If CC isn't being offered to us, or for some reason the CC offer is
2162                          * not formatted correctly, then it may still be possible to use generic
2163                          * call completion since the monitor policy may be "always"
2164                          */
2165                         goto generic;
2166                 }
2167                 ast_channel_get_device_name(pvt->owner, device_name, sizeof(device_name));
2168                 if (!(monitor_instance = sip_monitor_instance_init(core_id, subscribe_uri, pvt->peername, device_name))) {
2169                         /* Same deal. We can try using generic still */
2170                         goto generic;
2171                 }
2172                 /* We bump the refcount of chan_sip because once we queue this frame, the CC core
2173                  * will have a reference to callbacks in this module. We decrement the module
2174                  * refcount once the monitor destructor is called
2175                  */
2176                 ast_module_ref(ast_module_info->self);
2177                 ast_queue_cc_frame(pvt->owner, "SIP", pvt->dialstring, offered_service, monitor_instance);
2178                 ao2_ref(monitor_instance, -1);
2179                 return;
2180         }
2181
2182 generic:
2183         if (monitor_policy == AST_CC_MONITOR_GENERIC || monitor_policy == AST_CC_MONITOR_ALWAYS) {
2184                 ast_queue_cc_frame(pvt->owner, AST_CC_GENERIC_MONITOR_TYPE, interface_name, service, NULL);
2185         }
2186 }
2187
2188 /*! \brief Working TLS connection configuration */
2189 static struct ast_tls_config sip_tls_cfg;
2190
2191 /*! \brief Default TLS connection configuration */
2192 static struct ast_tls_config default_tls_cfg;
2193
2194 /*! \brief The TCP server definition */
2195 static struct ast_tcptls_session_args sip_tcp_desc = {
2196         .accept_fd = -1,
2197         .master = AST_PTHREADT_NULL,
2198         .tls_cfg = NULL,
2199         .poll_timeout = -1,
2200         .name = "SIP TCP server",
2201         .accept_fn = ast_tcptls_server_root,
2202         .worker_fn = sip_tcp_worker_fn,
2203 };
2204
2205 /*! \brief The TCP/TLS server definition */
2206 static struct ast_tcptls_session_args sip_tls_desc = {
2207         .accept_fd = -1,
2208         .master = AST_PTHREADT_NULL,
2209         .tls_cfg = &sip_tls_cfg,
2210         .poll_timeout = -1,
2211         .name = "SIP TLS server",
2212         .accept_fn = ast_tcptls_server_root,
2213         .worker_fn = sip_tcp_worker_fn,
2214 };
2215
2216 /*! \brief Append to SIP dialog history
2217         \return Always returns 0 */
2218 #define append_history(p, event, fmt , args... )        append_history_full(p, "%-15s " fmt, event, ## args)
2219
2220 struct sip_pvt *dialog_ref_debug(struct sip_pvt *p, char *tag, char *file, int line, const char *func)
2221 {
2222         if (p)
2223 #ifdef REF_DEBUG
2224                 __ao2_ref_debug(p, 1, tag, file, line, func);
2225 #else
2226                 ao2_ref(p, 1);
2227 #endif
2228         else
2229                 ast_log(LOG_ERROR, "Attempt to Ref a null pointer\n");
2230         return p;
2231 }
2232
2233 struct sip_pvt *dialog_unref_debug(struct sip_pvt *p, char *tag, char *file, int line, const char *func)
2234 {
2235         if (p)
2236 #ifdef REF_DEBUG
2237                 __ao2_ref_debug(p, -1, tag, file, line, func);
2238 #else
2239                 ao2_ref(p, -1);
2240 #endif
2241         return NULL;
2242 }
2243
2244 /*! \brief map from an integer value to a string.
2245  * If no match is found, return errorstring
2246  */
2247 static const char *map_x_s(const struct _map_x_s *table, int x, const char *errorstring)
2248 {
2249         const struct _map_x_s *cur;
2250
2251         for (cur = table; cur->s; cur++) {
2252                 if (cur->x == x) {
2253                         return cur->s;
2254                 }
2255         }
2256         return errorstring;
2257 }
2258
2259 /*! \brief map from a string to an integer value, case insensitive.
2260  * If no match is found, return errorvalue.
2261  */
2262 static int map_s_x(const struct _map_x_s *table, const char *s, int errorvalue)
2263 {
2264         const struct _map_x_s *cur;
2265
2266         for (cur = table; cur->s; cur++) {
2267                 if (!strcasecmp(cur->s, s)) {
2268                         return cur->x;
2269                 }
2270         }
2271         return errorvalue;
2272 }
2273
2274 static enum AST_REDIRECTING_REASON sip_reason_str_to_code(const char *text)
2275 {
2276         enum AST_REDIRECTING_REASON ast = AST_REDIRECTING_REASON_UNKNOWN;
2277         int i;
2278
2279         for (i = 0; i < ARRAY_LEN(sip_reason_table); ++i) {
2280                 if (!strcasecmp(text, sip_reason_table[i].text)) {
2281                         ast = sip_reason_table[i].code;
2282                         break;
2283                 }
2284         }
2285
2286         return ast;
2287 }
2288
2289 static const char *sip_reason_code_to_str(enum AST_REDIRECTING_REASON code)
2290 {
2291         if (code >= 0 && code < ARRAY_LEN(sip_reason_table)) {
2292                 return sip_reason_table[code].text;
2293         }
2294
2295         return "unknown";
2296 }
2297
2298 /*!
2299  * \brief generic function for determining if a correct transport is being
2300  * used to contact a peer
2301  *
2302  * this is done as a macro so that the "tmpl" var can be passed either a
2303  * sip_request or a sip_peer
2304  */
2305 #define check_request_transport(peer, tmpl) ({ \
2306         int ret = 0; \
2307         if (peer->socket.type == tmpl->socket.type) \
2308                 ; \
2309         else if (!(peer->transports & tmpl->socket.type)) {\
2310                 ast_log(LOG_ERROR, \
2311                         "'%s' is not a valid transport for '%s'. we only use '%s'! ending call.\n", \
2312                         sip_get_transport(tmpl->socket.type), peer->name, get_transport_list(peer->transports) \
2313                         ); \
2314                 ret = 1; \
2315         } else if (peer->socket.type & SIP_TRANSPORT_TLS) { \
2316                 ast_log(LOG_WARNING, \
2317                         "peer '%s' HAS NOT USED (OR SWITCHED TO) TLS in favor of '%s' (but this was allowed in sip.conf)!\n", \
2318                         peer->name, sip_get_transport(tmpl->socket.type) \
2319                 ); \
2320         } else { \
2321                 ast_debug(1, \
2322                         "peer '%s' has contacted us over %s even though we prefer %s.\n", \
2323                         peer->name, sip_get_transport(tmpl->socket.type), sip_get_transport(peer->socket.type) \
2324                 ); \
2325         }\
2326         (ret); \
2327 })
2328
2329 /*! \brief
2330  * duplicate a list of channel variables, \return the copy.
2331  */
2332 static struct ast_variable *copy_vars(struct ast_variable *src)
2333 {
2334         struct ast_variable *res = NULL, *tmp, *v = NULL;
2335
2336         for (v = src ; v ; v = v->next) {
2337                 if ((tmp = ast_variable_new(v->name, v->value, v->file))) {
2338                         tmp->next = res;
2339                         res = tmp;
2340                 }
2341         }
2342         return res;
2343 }
2344
2345 static void tcptls_packet_destructor(void *obj)
2346 {
2347         struct tcptls_packet *packet = obj;
2348
2349         ast_free(packet->data);
2350 }
2351
2352 static void sip_tcptls_client_args_destructor(void *obj)
2353 {
2354         struct ast_tcptls_session_args *args = obj;
2355         if (args->tls_cfg) {
2356                 ast_free(args->tls_cfg->certfile);
2357                 ast_free(args->tls_cfg->pvtfile);
2358                 ast_free(args->tls_cfg->cipher);
2359                 ast_free(args->tls_cfg->cafile);
2360                 ast_free(args->tls_cfg->capath);
2361         }
2362         ast_free(args->tls_cfg);
2363         ast_free((char *) args->name);
2364 }
2365
2366 static void sip_threadinfo_destructor(void *obj)
2367 {
2368         struct sip_threadinfo *th = obj;
2369         struct tcptls_packet *packet;
2370
2371         if (th->alert_pipe[1] > -1) {
2372                 close(th->alert_pipe[0]);
2373         }
2374         if (th->alert_pipe[1] > -1) {
2375                 close(th->alert_pipe[1]);
2376         }
2377         th->alert_pipe[0] = th->alert_pipe[1] = -1;
2378
2379         while ((packet = AST_LIST_REMOVE_HEAD(&th->packet_q, entry))) {
2380                 ao2_t_ref(packet, -1, "thread destruction, removing packet from frame queue");
2381         }
2382
2383         if (th->tcptls_session) {
2384                 ao2_t_ref(th->tcptls_session, -1, "remove tcptls_session for sip_threadinfo object");
2385         }
2386 }
2387
2388 /*! \brief creates a sip_threadinfo object and links it into the threadt table. */
2389 static struct sip_threadinfo *sip_threadinfo_create(struct ast_tcptls_session_instance *tcptls_session, int transport)
2390 {
2391         struct sip_threadinfo *th;
2392
2393         if (!tcptls_session || !(th = ao2_alloc(sizeof(*th), sip_threadinfo_destructor))) {
2394                 return NULL;
2395         }
2396
2397         th->alert_pipe[0] = th->alert_pipe[1] = -1;
2398
2399         if (pipe(th->alert_pipe) == -1) {
2400                 ao2_t_ref(th, -1, "Failed to open alert pipe on sip_threadinfo");
2401                 ast_log(LOG_ERROR, "Could not create sip alert pipe in tcptls thread, error %s\n", strerror(errno));
2402                 return NULL;
2403         }
2404         ao2_t_ref(tcptls_session, +1, "tcptls_session ref for sip_threadinfo object");
2405         th->tcptls_session = tcptls_session;
2406         th->type = transport ? transport : (tcptls_session->ssl ? SIP_TRANSPORT_TLS: SIP_TRANSPORT_TCP);
2407         ao2_t_link(threadt, th, "Adding new tcptls helper thread");
2408         ao2_t_ref(th, -1, "Decrementing threadinfo ref from alloc, only table ref remains");
2409         return th;
2410 }
2411
2412 /*! \brief used to indicate to a tcptls thread that data is ready to be written */
2413 static int sip_tcptls_write(struct ast_tcptls_session_instance *tcptls_session, const void *buf, size_t len)
2414 {
2415         int res = len;
2416         struct sip_threadinfo *th = NULL;
2417         struct tcptls_packet *packet = NULL;
2418         struct sip_threadinfo tmp = {
2419                 .tcptls_session = tcptls_session,
2420         };
2421         enum sip_tcptls_alert alert = TCPTLS_ALERT_DATA;
2422
2423         if (!tcptls_session) {
2424                 return XMIT_ERROR;
2425         }
2426
2427         ast_mutex_lock(&tcptls_session->lock);
2428
2429         if ((tcptls_session->fd == -1) ||
2430                 !(th = ao2_t_find(threadt, &tmp, OBJ_POINTER, "ao2_find, getting sip_threadinfo in tcp helper thread")) ||
2431                 !(packet = ao2_alloc(sizeof(*packet), tcptls_packet_destructor)) ||
2432                 !(packet->data = ast_str_create(len))) {
2433                 goto tcptls_write_setup_error;
2434         }
2435
2436         /* goto tcptls_write_error should _NOT_ be used beyond this point */
2437         ast_str_set(&packet->data, 0, "%s", (char *) buf);
2438         packet->len = len;
2439
2440         /* alert tcptls thread handler that there is a packet to be sent.
2441          * must lock the thread info object to guarantee control of the
2442          * packet queue */
2443         ao2_lock(th);
2444         if (write(th->alert_pipe[1], &alert, sizeof(alert)) == -1) {
2445                 ast_log(LOG_ERROR, "write() to alert pipe failed: %s\n", strerror(errno));
2446                 ao2_t_ref(packet, -1, "could not write to alert pipe, remove packet");
2447                 packet = NULL;
2448                 res = XMIT_ERROR;
2449         } else { /* it is safe to queue the frame after issuing the alert when we hold the threadinfo lock */
2450                 AST_LIST_INSERT_TAIL(&th->packet_q, packet, entry);
2451         }
2452         ao2_unlock(th);
2453
2454         ast_mutex_unlock(&tcptls_session->lock);
2455         ao2_t_ref(th, -1, "In sip_tcptls_write, unref threadinfo object after finding it");
2456         return res;
2457
2458 tcptls_write_setup_error:
2459         if (th) {
2460                 ao2_t_ref(th, -1, "In sip_tcptls_write, unref threadinfo obj, could not create packet");
2461         }
2462         if (packet) {
2463                 ao2_t_ref(packet, -1, "could not allocate packet's data");
2464         }
2465         ast_mutex_unlock(&tcptls_session->lock);
2466
2467         return XMIT_ERROR;
2468 }
2469
2470 /*! \brief SIP TCP connection handler */
2471 static void *sip_tcp_worker_fn(void *data)
2472 {
2473         struct ast_tcptls_session_instance *tcptls_session = data;
2474
2475         return _sip_tcp_helper_thread(NULL, tcptls_session);
2476 }
2477
2478 /*! \brief Check if the authtimeout has expired.
2479  * \param start the time when the session started
2480  *
2481  * \retval 0 the timeout has expired
2482  * \retval -1 error
2483  * \return the number of milliseconds until the timeout will expire
2484  */
2485 static int sip_check_authtimeout(time_t start)
2486 {
2487         int timeout;
2488         time_t now;
2489         if(time(&now) == -1) {
2490                 ast_log(LOG_ERROR, "error executing time(): %s\n", strerror(errno));
2491                 return -1;
2492         }
2493
2494         timeout = (authtimeout - (now - start)) * 1000;
2495         if (timeout < 0) {
2496                 /* we have timed out */
2497                 return 0;
2498         }
2499
2500         return timeout;
2501 }
2502
2503 /*! \brief SIP TCP thread management function
2504         This function reads from the socket, parses the packet into a request
2505 */
2506 static void *_sip_tcp_helper_thread(struct sip_pvt *pvt, struct ast_tcptls_session_instance *tcptls_session)
2507 {
2508         int res, cl, timeout = -1, authenticated = 0, flags, after_poll = 0, need_poll = 1;
2509         time_t start;
2510         struct sip_request req = { 0, } , reqcpy = { 0, };
2511         struct sip_threadinfo *me = NULL;
2512         char buf[1024] = "";
2513         struct pollfd fds[2] = { { 0 }, { 0 }, };
2514         struct ast_tcptls_session_args *ca = NULL;
2515
2516         /* If this is a server session, then the connection has already been
2517          * setup. Check if the authlimit has been reached and if not create the
2518          * threadinfo object so we can access this thread for writing.
2519          *
2520          * if this is a client connection more work must be done.
2521          * 1. We own the parent session args for a client connection.  This pointer needs
2522          *    to be held on to so we can decrement it's ref count on thread destruction.
2523          * 2. The threadinfo object was created before this thread was launched, however
2524          *    it must be found within the threadt table.
2525          * 3. Last, the tcptls_session must be started.
2526          */
2527         if (!tcptls_session->client) {
2528                 if (ast_atomic_fetchadd_int(&unauth_sessions, +1) >= authlimit) {
2529                         /* unauth_sessions is decremented in the cleanup code */
2530                         goto cleanup;
2531                 }
2532
2533                 if ((flags = fcntl(tcptls_session->fd, F_GETFL)) == -1) {
2534                         ast_log(LOG_ERROR, "error setting socket to non blocking mode, fcntl() failed: %s\n", strerror(errno));
2535                         goto cleanup;
2536                 }
2537
2538                 flags |= O_NONBLOCK;
2539                 if (fcntl(tcptls_session->fd, F_SETFL, flags) == -1) {
2540                         ast_log(LOG_ERROR, "error setting socket to non blocking mode, fcntl() failed: %s\n", strerror(errno));
2541                         goto cleanup;
2542                 }
2543
2544                 if (!(me = sip_threadinfo_create(tcptls_session, tcptls_session->ssl ? SIP_TRANSPORT_TLS : SIP_TRANSPORT_TCP))) {
2545                         goto cleanup;
2546                 }
2547                 ao2_t_ref(me, +1, "Adding threadinfo ref for tcp_helper_thread");
2548         } else {
2549                 struct sip_threadinfo tmp = {
2550                         .tcptls_session = tcptls_session,
2551                 };
2552
2553                 if ((!(ca = tcptls_session->parent)) ||
2554                         (!(me = ao2_t_find(threadt, &tmp, OBJ_POINTER, "ao2_find, getting sip_threadinfo in tcp helper thread"))) ||
2555                         (!(tcptls_session = ast_tcptls_client_start(tcptls_session)))) {
2556                         goto cleanup;
2557                 }
2558         }
2559
2560         flags = 1;
2561         if (setsockopt(tcptls_session->fd, SOL_SOCKET, SO_KEEPALIVE, &flags, sizeof(flags))) {
2562                 ast_log(LOG_ERROR, "error enabling TCP keep-alives on sip socket: %s\n", strerror(errno));
2563                 goto cleanup;
2564         }
2565
2566         me->threadid = pthread_self();
2567         ast_debug(2, "Starting thread for %s server\n", tcptls_session->ssl ? "SSL" : "TCP");
2568
2569         /* set up pollfd to watch for reads on both the socket and the alert_pipe */
2570         fds[0].fd = tcptls_session->fd;
2571         fds[1].fd = me->alert_pipe[0];
2572         fds[0].events = fds[1].events = POLLIN | POLLPRI;
2573
2574         if (!(req.data = ast_str_create(SIP_MIN_PACKET))) {
2575                 goto cleanup;
2576         }
2577         if (!(reqcpy.data = ast_str_create(SIP_MIN_PACKET))) {
2578                 goto cleanup;
2579         }
2580
2581         if(time(&start) == -1) {
2582                 ast_log(LOG_ERROR, "error executing time(): %s\n", strerror(errno));
2583                 goto cleanup;
2584         }
2585
2586         for (;;) {
2587                 struct ast_str *str_save;
2588
2589                 if (!tcptls_session->client && req.authenticated && !authenticated) {
2590                         authenticated = 1;
2591                         ast_atomic_fetchadd_int(&unauth_sessions, -1);
2592                 }
2593
2594                 /* calculate the timeout for unauthenticated server sessions */
2595                 if (!tcptls_session->client && !authenticated ) {
2596                         if ((timeout = sip_check_authtimeout(start)) < 0) {
2597                                 goto cleanup;
2598                         }
2599
2600                         if (timeout == 0) {
2601                                 ast_debug(2, "SIP %s server timed out\n", tcptls_session->ssl ? "SSL": "TCP");
2602                                 goto cleanup;
2603                         }
2604                 } else {
2605                         timeout = -1;
2606                 }
2607
2608                 res = ast_poll(fds, 2, timeout); /* polls for both socket and alert_pipe */
2609                 if (res < 0) {
2610                         ast_debug(2, "SIP %s server :: ast_wait_for_input returned %d\n", tcptls_session->ssl ? "SSL": "TCP", res);
2611                         goto cleanup;
2612                 } else if (res == 0) {
2613                         /* timeout */
2614                         ast_debug(2, "SIP %s server timed out\n", tcptls_session->ssl ? "SSL": "TCP");
2615                         goto cleanup;
2616                 }
2617
2618                 /* handle the socket event, check for both reads from the socket fd,
2619                  * and writes from alert_pipe fd */
2620                 if (fds[0].revents) { /* there is data on the socket to be read */
2621                         after_poll = 1;
2622
2623                         fds[0].revents = 0;
2624
2625                         /* clear request structure */
2626                         str_save = req.data;
2627                         memset(&req, 0, sizeof(req));
2628                         req.data = str_save;
2629                         ast_str_reset(req.data);
2630
2631                         str_save = reqcpy.data;
2632                         memset(&reqcpy, 0, sizeof(reqcpy));
2633                         reqcpy.data = str_save;
2634                         ast_str_reset(reqcpy.data);
2635
2636                         memset(buf, 0, sizeof(buf));
2637
2638                         if (tcptls_session->ssl) {
2639                                 set_socket_transport(&req.socket, SIP_TRANSPORT_TLS);
2640                                 req.socket.port = htons(ourport_tls);
2641                         } else {
2642                                 set_socket_transport(&req.socket, SIP_TRANSPORT_TCP);
2643                                 req.socket.port = htons(ourport_tcp);
2644                         }
2645                         req.socket.fd = tcptls_session->fd;
2646
2647                         /* Read in headers one line at a time */
2648                         while (ast_str_strlen(req.data) < 4 || strncmp(REQ_OFFSET_TO_STR(&req, data->used - 4), "\r\n\r\n", 4)) {
2649                                 if (!tcptls_session->client && !authenticated ) {
2650                                         if ((timeout = sip_check_authtimeout(start)) < 0) {
2651                                                 goto cleanup;
2652                                         }
2653
2654                                         if (timeout == 0) {
2655                                                 ast_debug(2, "SIP %s server timed out\n", tcptls_session->ssl ? "SSL": "TCP");
2656                                                 goto cleanup;
2657                                         }
2658                                 } else {
2659                                         timeout = -1;
2660                                 }
2661
2662                                 /* special polling behavior is required for TLS
2663                                  * sockets because of the buffering done in the
2664                                  * TLS layer */
2665                                 if (!tcptls_session->ssl || need_poll) {
2666                                         need_poll = 0;
2667                                         after_poll = 1;
2668                                         res = ast_wait_for_input(tcptls_session->fd, timeout);
2669                                         if (res < 0) {
2670                                                 ast_debug(2, "SIP TCP server :: ast_wait_for_input returned %d\n", res);
2671                                                 goto cleanup;
2672                                         } else if (res == 0) {
2673                                                 /* timeout */
2674                                                 ast_debug(2, "SIP TCP server timed out\n");
2675                                                 goto cleanup;
2676                                         }
2677                                 }
2678
2679                                 ast_mutex_lock(&tcptls_session->lock);
2680                                 if (!fgets(buf, sizeof(buf), tcptls_session->f)) {
2681                                         ast_mutex_unlock(&tcptls_session->lock);
2682                                         if (after_poll) {
2683                                                 goto cleanup;
2684                                         } else {
2685                                                 need_poll = 1;
2686                                                 continue;
2687                                         }
2688                                 }
2689                                 ast_mutex_unlock(&tcptls_session->lock);
2690                                 after_poll = 0;
2691                                 if (me->stop) {
2692                                          goto cleanup;
2693                                 }
2694                                 ast_str_append(&req.data, 0, "%s", buf);
2695                         }
2696                         copy_request(&reqcpy, &req);
2697                         parse_request(&reqcpy);
2698                         /* In order to know how much to read, we need the content-length header */
2699                         if (sscanf(sip_get_header(&reqcpy, "Content-Length"), "%30d", &cl)) {
2700                                 while (cl > 0) {
2701                                         size_t bytes_read;
2702                                         if (!tcptls_session->client && !authenticated ) {
2703                                                 if ((timeout = sip_check_authtimeout(start)) < 0) {
2704                                                         goto cleanup;
2705                                                 }
2706
2707                                                 if (timeout == 0) {
2708                                                         ast_debug(2, "SIP %s server timed out\n", tcptls_session->ssl ? "SSL": "TCP");
2709                                                         goto cleanup;
2710                                                 }
2711                                         } else {
2712                                                 timeout = -1;
2713                                         }
2714
2715                                         if (!tcptls_session->ssl || need_poll) {
2716                                                 need_poll = 0;
2717                                                 after_poll = 1;
2718                                                 res = ast_wait_for_input(tcptls_session->fd, timeout);
2719                                                 if (res < 0) {
2720                                                         ast_debug(2, "SIP TCP server :: ast_wait_for_input returned %d\n", res);
2721                                                         goto cleanup;
2722                                                 } else if (res == 0) {
2723                                                         /* timeout */
2724                                                         ast_debug(2, "SIP TCP server timed out\n");
2725                                                         goto cleanup;
2726                                                 }
2727                                         }
2728
2729                                         ast_mutex_lock(&tcptls_session->lock);
2730                                         if (!(bytes_read = fread(buf, 1, MIN(sizeof(buf) - 1, cl), tcptls_session->f))) {
2731                                                 ast_mutex_unlock(&tcptls_session->lock);
2732                                                 if (after_poll) {
2733                                                         goto cleanup;
2734                                                 } else {
2735                                                         need_poll = 1;
2736                                                         continue;
2737                                                 }
2738                                         }
2739                                         buf[bytes_read] = '\0';
2740                                         ast_mutex_unlock(&tcptls_session->lock);
2741                                         after_poll = 0;
2742                                         if (me->stop) {
2743                                                 goto cleanup;
2744                                         }
2745                                         cl -= strlen(buf);
2746                                         ast_str_append(&req.data, 0, "%s", buf);
2747                                 }
2748                         }
2749                         /*! \todo XXX If there's no Content-Length or if the content-length and what
2750                                         we receive is not the same - we should generate an error */
2751
2752                         req.socket.tcptls_session = tcptls_session;
2753                         handle_request_do(&req, &tcptls_session->remote_address);
2754                 }
2755
2756                 if (fds[1].revents) { /* alert_pipe indicates there is data in the send queue to be sent */
2757                         enum sip_tcptls_alert alert;
2758                         struct tcptls_packet *packet;
2759
2760                         fds[1].revents = 0;
2761
2762                         if (read(me->alert_pipe[0], &alert, sizeof(alert)) == -1) {
2763                                 ast_log(LOG_ERROR, "read() failed: %s\n", strerror(errno));
2764                                 continue;
2765                         }
2766
2767                         switch (alert) {
2768                         case TCPTLS_ALERT_STOP:
2769                                 goto cleanup;
2770                         case TCPTLS_ALERT_DATA:
2771                                 ao2_lock(me);
2772                                 if (!(packet = AST_LIST_REMOVE_HEAD(&me->packet_q, entry))) {
2773                                         ast_log(LOG_WARNING, "TCPTLS thread alert_pipe indicated packet should be sent, but frame_q is empty");
2774                                 }
2775                                 ao2_unlock(me);
2776
2777                                 if (packet) {
2778                                         if (ast_tcptls_server_write(tcptls_session, ast_str_buffer(packet->data), packet->len) == -1) {
2779                                                 ast_log(LOG_WARNING, "Failure to write to tcp/tls socket\n");
2780                                         }
2781                                         ao2_t_ref(packet, -1, "tcptls packet sent, this is no longer needed");
2782                                 }
2783                                 break;
2784                         default:
2785                                 ast_log(LOG_ERROR, "Unknown tcptls thread alert '%d'\n", alert);
2786                         }
2787                 }
2788         }
2789
2790         ast_debug(2, "Shutting down thread for %s server\n", tcptls_session->ssl ? "SSL" : "TCP");
2791
2792 cleanup:
2793         if (tcptls_session && !tcptls_session->client && !authenticated) {
2794                 ast_atomic_fetchadd_int(&unauth_sessions, -1);
2795         }
2796
2797         if (me) {
2798                 ao2_t_unlink(threadt, me, "Removing tcptls helper thread, thread is closing");
2799                 ao2_t_ref(me, -1, "Removing tcp_helper_threads threadinfo ref");
2800         }
2801         deinit_req(&reqcpy);
2802         deinit_req(&req);
2803
2804         /* if client, we own the parent session arguments and must decrement ref */
2805         if (ca) {
2806                 ao2_t_ref(ca, -1, "closing tcptls thread, getting rid of client tcptls_session arguments");
2807         }
2808
2809         if (tcptls_session) {
2810                 ast_mutex_lock(&tcptls_session->lock);
2811                 if (tcptls_session->f) {
2812                         fclose(tcptls_session->f);
2813                         tcptls_session->f = NULL;
2814                 }
2815                 if (tcptls_session->fd != -1) {
2816                         close(tcptls_session->fd);
2817                         tcptls_session->fd = -1;
2818                 }
2819                 tcptls_session->parent = NULL;
2820                 ast_mutex_unlock(&tcptls_session->lock);
2821
2822                 ao2_ref(tcptls_session, -1);
2823                 tcptls_session = NULL;
2824         }
2825         return NULL;
2826 }
2827
2828 #ifdef REF_DEBUG
2829 #define sip_ref_peer(arg1,arg2) _ref_peer((arg1),(arg2), __FILE__, __LINE__, __PRETTY_FUNCTION__)
2830 #define sip_unref_peer(arg1,arg2) _unref_peer((arg1),(arg2), __FILE__, __LINE__, __PRETTY_FUNCTION__)
2831 static struct sip_peer *_ref_peer(struct sip_peer *peer, char *tag, char *file, int line, const char *func)
2832 {
2833         if (peer)
2834                 __ao2_ref_debug(peer, 1, tag, file, line, func);
2835         else
2836                 ast_log(LOG_ERROR, "Attempt to Ref a null peer pointer\n");
2837         return peer;
2838 }
2839
2840 static struct sip_peer *_unref_peer(struct sip_peer *peer, char *tag, char *file, int line, const char *func)
2841 {
2842         if (peer)
2843                 __ao2_ref_debug(peer, -1, tag, file, line, func);
2844         return NULL;
2845 }
2846 #else
2847 /*!
2848  * helper functions to unreference various types of objects.
2849  * By handling them this way, we don't have to declare the
2850  * destructor on each call, which removes the chance of errors.
2851  */
2852 void *sip_unref_peer(struct sip_peer *peer, char *tag)
2853 {
2854         ao2_t_ref(peer, -1, tag);
2855         return NULL;
2856 }
2857
2858 struct sip_peer *sip_ref_peer(struct sip_peer *peer, char *tag)
2859 {
2860         ao2_t_ref(peer, 1, tag);
2861         return peer;
2862 }
2863 #endif /* REF_DEBUG */
2864
2865 static void peer_sched_cleanup(struct sip_peer *peer)
2866 {
2867         if (peer->pokeexpire != -1) {
2868                 AST_SCHED_DEL_UNREF(sched, peer->pokeexpire,
2869                                 sip_unref_peer(peer, "removing poke peer ref"));
2870         }
2871         if (peer->expire != -1) {
2872                 AST_SCHED_DEL_UNREF(sched, peer->expire,
2873                                 sip_unref_peer(peer, "remove register expire ref"));
2874         }
2875 }
2876
2877 typedef enum {
2878         SIP_PEERS_MARKED,
2879         SIP_PEERS_ALL,
2880 } peer_unlink_flag_t;
2881
2882 /* this func is used with ao2_callback to unlink/delete all marked or linked
2883    peers, depending on arg */
2884 static int match_and_cleanup_peer_sched(void *peerobj, void *arg, int flags)
2885 {
2886         struct sip_peer *peer = peerobj;
2887         peer_unlink_flag_t which = *(peer_unlink_flag_t *)arg;
2888
2889         if (which == SIP_PEERS_ALL || peer->the_mark) {
2890                 peer_sched_cleanup(peer);
2891                 return CMP_MATCH;
2892         }
2893         return 0;
2894 }
2895
2896 static void unlink_peers_from_tables(peer_unlink_flag_t flag)
2897 {
2898         ao2_t_callback(peers, OBJ_NODATA | OBJ_UNLINK | OBJ_MULTIPLE,
2899                 match_and_cleanup_peer_sched, &flag, "initiating callback to remove marked peers");
2900         ao2_t_callback(peers_by_ip, OBJ_NODATA | OBJ_UNLINK | OBJ_MULTIPLE,
2901                 match_and_cleanup_peer_sched, &flag, "initiating callback to remove marked peers");
2902 }
2903
2904 /* \brief Unlink all marked peers from ao2 containers */
2905 static void unlink_marked_peers_from_tables(void)
2906 {
2907         unlink_peers_from_tables(SIP_PEERS_MARKED);
2908 }
2909
2910 static void unlink_all_peers_from_tables(void)
2911 {
2912         unlink_peers_from_tables(SIP_PEERS_ALL);
2913 }
2914
2915 /* \brief Unlink single peer from all ao2 containers */
2916 static void unlink_peer_from_tables(struct sip_peer *peer)
2917 {
2918         ao2_t_unlink(peers, peer, "ao2_unlink of peer from peers table");
2919         if (!ast_sockaddr_isnull(&peer->addr)) {
2920                 ao2_t_unlink(peers_by_ip, peer, "ao2_unlink of peer from peers_by_ip table");
2921         }
2922 }
2923
2924 /*! \brief maintain proper refcounts for a sip_pvt's outboundproxy
2925  *
2926  * This function sets pvt's outboundproxy pointer to the one referenced
2927  * by the proxy parameter. Because proxy may be a refcounted object, and
2928  * because pvt's old outboundproxy may also be a refcounted object, we need
2929  * to maintain the proper refcounts.
2930  *
2931  * \param pvt The sip_pvt for which we wish to set the outboundproxy
2932  * \param proxy The sip_proxy which we will point pvt towards.
2933  * \return Returns void
2934  */
2935 static void ref_proxy(struct sip_pvt *pvt, struct sip_proxy *proxy)
2936 {
2937         struct sip_proxy *old_obproxy = pvt->outboundproxy;
2938         /* The sip_cfg.outboundproxy is statically allocated, and so
2939          * we don't ever need to adjust refcounts for it
2940          */
2941         if (proxy && proxy != &sip_cfg.outboundproxy) {
2942                 ao2_ref(proxy, +1);
2943         }
2944         pvt->outboundproxy = proxy;
2945         if (old_obproxy && old_obproxy != &sip_cfg.outboundproxy) {
2946                 ao2_ref(old_obproxy, -1);
2947         }
2948 }
2949
2950  /*!
2951  * \brief Unlink a dialog from the dialogs_checkrtp container
2952  */
2953 static void *dialog_unlink_rtpcheck(struct sip_pvt *dialog)
2954 {
2955         ao2_t_unlink(dialogs_rtpcheck, dialog, "unlinking dialog_rtpcheck via ao2_unlink");
2956         return NULL;
2957 }
2958
2959 void dialog_unlink_all(struct sip_pvt *dialog)
2960 {
2961         struct sip_pkt *cp;
2962         struct ast_channel *owner;
2963
2964         dialog_ref(dialog, "Let's bump the count in the unlink so it doesn't accidentally become dead before we are done");
2965
2966         ao2_t_unlink(dialogs, dialog, "unlinking dialog via ao2_unlink");
2967         ao2_t_unlink(dialogs_needdestroy, dialog, "unlinking dialog_needdestroy via ao2_unlink");
2968         ao2_t_unlink(dialogs_rtpcheck, dialog, "unlinking dialog_rtpcheck via ao2_unlink");
2969
2970         /* Unlink us from the owner (channel) if we have one */
2971         owner = sip_pvt_lock_full(dialog);
2972         if (owner) {
2973                 ast_debug(1, "Detaching from channel %s\n", owner->name);
2974                 owner->tech_pvt = dialog_unref(owner->tech_pvt, "resetting channel dialog ptr in unlink_all");
2975                 ast_channel_unlock(owner);
2976                 ast_channel_unref(owner);
2977                 dialog->owner = NULL;
2978         }
2979         sip_pvt_unlock(dialog);
2980
2981         if (dialog->registry) {
2982                 if (dialog->registry->call == dialog) {
2983                         dialog->registry->call = dialog_unref(dialog->registry->call, "nulling out the registry's call dialog field in unlink_all");
2984                 }
2985                 dialog->registry = registry_unref(dialog->registry, "delete dialog->registry");
2986         }
2987         if (dialog->stateid > -1) {
2988                 ast_extension_state_del(dialog->stateid, NULL);
2989                 dialog_unref(dialog, "removing extension_state, should unref the associated dialog ptr that was stored there.");
2990                 dialog->stateid = -1; /* shouldn't we 'zero' this out? */
2991         }
2992         /* Remove link from peer to subscription of MWI */
2993         if (dialog->relatedpeer && dialog->relatedpeer->mwipvt == dialog) {
2994                 dialog->relatedpeer->mwipvt = dialog_unref(dialog->relatedpeer->mwipvt, "delete ->relatedpeer->mwipvt");
2995         }
2996         if (dialog->relatedpeer && dialog->relatedpeer->call == dialog) {
2997                 dialog->relatedpeer->call = dialog_unref(dialog->relatedpeer->call, "unset the relatedpeer->call field in tandem with relatedpeer field itself");
2998         }
2999
3000         /* remove all current packets in this dialog */
3001         while((cp = dialog->packets)) {
3002                 dialog->packets = dialog->packets->next;
3003                 AST_SCHED_DEL(sched, cp->retransid);
3004                 dialog_unref(cp->owner, "remove all current packets in this dialog, and the pointer to the dialog too as part of __sip_destroy");
3005                 if (cp->data) {
3006                         ast_free(cp->data);
3007                 }
3008                 ast_free(cp);
3009         }
3010
3011         AST_SCHED_DEL_UNREF(sched, dialog->waitid, dialog_unref(dialog, "when you delete the waitid sched, you should dec the refcount for the stored dialog ptr"));
3012
3013         AST_SCHED_DEL_UNREF(sched, dialog->initid, dialog_unref(dialog, "when you delete the initid sched, you should dec the refcount for the stored dialog ptr"));
3014         
3015         if (dialog->autokillid > -1) {
3016                 AST_SCHED_DEL_UNREF(sched, dialog->autokillid, dialog_unref(dialog, "when you delete the autokillid sched, you should dec the refcount for the stored dialog ptr"));
3017         }
3018
3019         if (dialog->request_queue_sched_id > -1) {
3020                 AST_SCHED_DEL_UNREF(sched, dialog->request_queue_sched_id, dialog_unref(dialog, "when you delete the request_queue_sched_id sched, you should dec the refcount for the stored dialog ptr"));
3021         }
3022
3023         AST_SCHED_DEL_UNREF(sched, dialog->provisional_keepalive_sched_id, dialog_unref(dialog, "when you delete the provisional_keepalive_sched_id, you should dec the refcount for the stored dialog ptr"));
3024
3025         if (dialog->t38id > -1) {
3026                 AST_SCHED_DEL_UNREF(sched, dialog->t38id, dialog_unref(dialog, "when you delete the t38id sched, you should dec the refcount for the stored dialog ptr"));
3027         }
3028
3029         if (dialog->stimer) {
3030                 stop_session_timer(dialog);
3031         }
3032
3033         dialog_unref(dialog, "Let's unbump the count in the unlink so the poor pvt can disappear if it is time");
3034 }
3035
3036 void *registry_unref(struct sip_registry *reg, char *tag)
3037 {
3038         ast_debug(3, "SIP Registry %s: refcount now %d\n", reg->hostname, reg->refcount - 1);
3039         ASTOBJ_UNREF(reg, sip_registry_destroy);
3040         return NULL;
3041 }
3042
3043 /*! \brief Add object reference to SIP registry */
3044 static struct sip_registry *registry_addref(struct sip_registry *reg, char *tag)
3045 {
3046         ast_debug(3, "SIP Registry %s: refcount now %d\n", reg->hostname, reg->refcount + 1);
3047         return ASTOBJ_REF(reg); /* Add pointer to registry in packet */
3048 }
3049
3050 /*! \brief Interface structure with callbacks used to connect to UDPTL module*/
3051 static struct ast_udptl_protocol sip_udptl = {
3052         type: "SIP",
3053         get_udptl_info: sip_get_udptl_peer,
3054         set_udptl_peer: sip_set_udptl_peer,
3055 };
3056
3057 static void append_history_full(struct sip_pvt *p, const char *fmt, ...)
3058         __attribute__((format(printf, 2, 3)));
3059
3060
3061 /*! \brief Convert transfer status to string */
3062 static const char *referstatus2str(enum referstatus rstatus)
3063 {
3064         return map_x_s(referstatusstrings, rstatus, "");
3065 }
3066
3067 static inline void pvt_set_needdestroy(struct sip_pvt *pvt, const char *reason)
3068 {
3069         if (pvt->final_destruction_scheduled) {
3070                 return; /* This is already scheduled for final destruction, let the scheduler take care of it. */
3071         }
3072         if(pvt->needdestroy != 1) {
3073                 ao2_t_link(dialogs_needdestroy, pvt, "link pvt into dialogs_needdestroy container");
3074         }
3075         append_history(pvt, "NeedDestroy", "Setting needdestroy because %s", reason);
3076         pvt->needdestroy = 1;
3077 }