Asterisk - The Open Source Telephony Project  18.5.0
res_pjsip_session.h
Go to the documentation of this file.
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 2013, Digium, Inc.
5  *
6  * Mark Michelson <[email protected]>
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 #ifndef _RES_PJSIP_SESSION_H
20 #define _RES_PJSIP_SESSION_H
21 
22 /* Needed for pj_timer_entry definition */
23 #include <pjlib.h>
24 #include "asterisk/linkedlists.h"
25 /* Needed for AST_MAX_EXTENSION constant */
26 #include "asterisk/channel.h"
27 /* Needed for ast_sockaddr struct */
28 #include "asterisk/netsock2.h"
29 /* Needed for ast_sdp_srtp struct */
30 #include "asterisk/sdp_srtp.h"
31 /* Needed for ast_media_type */
32 #include "asterisk/codec.h"
33 /* Needed for pjmedia_sdp_session and pjsip_inv_session */
34 #include <pjsip_ua.h>
35 
36 
37 /* Forward declarations */
38 struct ast_sip_endpoint;
39 struct ast_sip_transport;
40 struct pjsip_inv_session;
41 struct ast_channel;
42 struct ast_datastore;
43 struct ast_datastore_info;
44 struct ao2_container;
45 struct pjsip_tx_data;
46 struct pjsip_rx_data;
47 struct ast_party_id;
48 struct pjmedia_sdp_media;
49 struct pjmedia_sdp_session;
50 struct ast_dsp;
51 struct ast_udptl;
52 
53 /*! \brief T.38 states for a session */
55  T38_DISABLED = 0, /*!< Not enabled */
56  T38_LOCAL_REINVITE, /*!< Offered from local - REINVITE */
57  T38_PEER_REINVITE, /*!< Offered from peer - REINVITE */
58  T38_ENABLED, /*!< Negotiated (enabled) */
59  T38_REJECTED, /*!< Refused */
60  T38_MAX_ENUM, /*!< Not an actual state; used as max value in the enum */
61 };
62 
64 struct ast_sip_session;
65 struct ast_sip_session_caps;
67 
68 typedef struct ast_frame *(*ast_sip_session_media_read_cb)(struct ast_sip_session *session, struct ast_sip_session_media *session_media);
69 typedef int (*ast_sip_session_media_write_cb)(struct ast_sip_session *session, struct ast_sip_session_media *session_media,
70  struct ast_frame *frame);
71 
72 /*!
73  * \brief A structure containing SIP session media information
74  */
76  /*! \brief RTP instance itself */
78  /*! \brief UDPTL instance itself */
79  struct ast_udptl *udptl;
80  /*! \brief Direct media address */
82  /*! \brief SDP handler that setup the RTP */
84  /*! \brief Holds SRTP information */
85  struct ast_sdp_srtp *srtp;
86  /*! \brief What type of encryption is in use on this stream */
88  /*! \brief The media transport in use for this stream */
89  pj_str_t transport;
90  /*! \brief Scheduler ID for RTP keepalive */
92  /*! \brief Scheduler ID for RTP timeout */
94  /*! \brief Stream is on hold by remote side */
95  unsigned int remotely_held:1;
96  /*! \brief Stream is held by remote side changed during this negotiation*/
97  unsigned int remotely_held_changed:1;
98  /*! \brief Stream is on hold by local side */
99  unsigned int locally_held:1;
100  /*! \brief Does remote support rtcp_mux */
101  unsigned int remote_rtcp_mux:1;
102  /*! \brief Does remote support ice */
103  unsigned int remote_ice:1;
104  /*! \brief Media type of this session media */
106  /*! \brief The write callback when writing frames */
108  /*! \brief The stream number to place into any resulting frames */
110  /*! \brief Media identifier for this stream (may be shared across multiple streams) */
111  char *mid;
112  /*! \brief The bundle group the stream belongs to */
114  /*! \brief Whether this stream is currently bundled or not */
115  unsigned int bundled;
116  /*! \brief Media stream label */
118  /*! \brief Track label */
120  /*! \brief The underlying session has been changed in some fashion */
121  unsigned int changed;
122  /*! \brief Remote media stream label */
124  /*! \brief Remote stream label */
126  /*! \brief Stream name */
127  char *stream_name;
128 };
129 
130 /*!
131  * \brief Structure which contains read callback information
132  */
134  /*! \brief The file descriptor itself */
135  int fd;
136  /*! \brief The callback to invoke */
138  /*! \brief The media session */
140 };
141 
142 /*!
143  * \brief Structure which contains media state information (streams, sessions)
144  */
146  /*! \brief Mapping of stream to media sessions */
148  /*! \brief Added read callbacks - these are whole structs and not pointers */
149  AST_VECTOR(, struct ast_sip_session_media_read_callback_state) read_callbacks;
150  /*! \brief Default media sessions for each type */
151  struct ast_sip_session_media *default_session[AST_MEDIA_TYPE_END];
152  /*! \brief The media stream topology */
154 };
155 
156 /*!
157  * \brief Opaque structure representing a request that could not be sent
158  * due to an outstanding INVITE transaction
159  */
161 
162 /*! \brief Opaque struct controlling the suspension of the session's serializer. */
164 
165 /*! \brief Indicates the call direction respective to Asterisk */
169 };
170 
171 /*!
172  * \brief A structure describing a SIP session
173  *
174  * For the sake of brevity, a "SIP session" in Asterisk is referring to
175  * a dialog initiated by an INVITE. While "session" is typically interpreted
176  * to refer to the negotiated media within a SIP dialog, we have opted
177  * to use the term "SIP session" to refer to the INVITE dialog itself.
178  */
180  /*! Dialplan extension where incoming call is destined */
182  /*! The endpoint with which Asterisk is communicating */
184  /*! The contact associated with this session */
186  /*! The PJSIP details of the session, which includes the dialog */
187  struct pjsip_inv_session *inv_session;
188  /*! The Asterisk channel associated with the session */
190  /*! Registered session supplements */
192  /*! Datastores added to the session by supplements to the session */
194  /*! Serializer for tasks relating to this SIP session */
196  /*! Non-null if the session serializer is suspended or being suspended. */
198  /*! Requests that could not be sent due to current inv_session state */
200  /*! When we need to reschedule a reinvite, we use this structure to do it */
201  pj_timer_entry rescheduled_reinvite;
202  /*! Format capabilities pertaining to direct media */
204  /*! When we need to forcefully end the session */
205  pj_timer_entry scheduled_termination;
206  /*! Identity of endpoint this session deals with */
207  struct ast_party_id id;
208  /*! Active media state (sessions + streams) - contents are guaranteed not to change */
210  /*! Pending media state (sessions + streams) */
212  /*! Optional DSP, used only for inband DTMF/Fax-CNG detection if configured */
213  struct ast_dsp *dsp;
214  /*! Whether the termination of the session should be deferred */
215  unsigned int defer_terminate:1;
216  /*! Termination requested while termination deferred */
217  unsigned int terminate_while_deferred:1;
218  /*! Deferred incoming re-invite */
219  pjsip_rx_data *deferred_reinvite;
220  /*! Current T.38 state */
222  /*! The AOR associated with this session */
223  struct ast_sip_aor *aor;
224  /*! From header saved at invite creation */
225  pjsip_fromto_hdr *saved_from_hdr;
226  /*! Whether the end of the session should be deferred */
227  unsigned int defer_end:1;
228  /*! Session end (remote hangup) requested while termination deferred */
229  unsigned int ended_while_deferred:1;
230  /*! Whether to pass through hold and unhold using re-invites with recvonly and sendrecv */
231  unsigned int moh_passthrough:1;
232  /*! DTMF mode to use with this session, from endpoint but can change */
233  enum ast_sip_dtmf_mode dtmf;
234  /*! Initial incoming INVITE Request-URI. NULL otherwise. */
235  pjsip_uri *request_uri;
236  /*! Media statistics for negotiated RTP streams */
237  AST_VECTOR(, struct ast_rtp_instance_stats *) media_stats;
238  /*! Number of challenges received during outgoing requests to determine if we are in a loop */
240  /*! The direction of the call respective to Asterisk */
241  enum ast_sip_session_call_direction call_direction;
242  /*! Originating Line Info (ANI II digits) */
243  int ani2;
244 };
245 
246 typedef int (*ast_sip_session_request_creation_cb)(struct ast_sip_session *session, pjsip_tx_data *tdata);
247 typedef int (*ast_sip_session_response_cb)(struct ast_sip_session *session, pjsip_rx_data *rdata);
248 typedef int (*ast_sip_session_sdp_creation_cb)(struct ast_sip_session *session, pjmedia_sdp_session *sdp);
249 
250 /*!
251  * \brief Describes when a supplement should be called into on incoming responses.
252  *
253  * In most cases, session supplements will not need to worry about this because in most cases,
254  * the correct value will be automatically applied. However, there are rare circumstances
255  * when a supplement will want to specify when it should be called.
256  *
257  * The values below are listed in chronological order.
258  */
260  /*!
261  * When processing 3XX responses, the supplement is called into before
262  * the redirecting information is processed.
263  */
265  /*!
266  * For responses to INVITE transactions, the supplement is called into
267  * before media is negotiated.
268  *
269  * This priority is applied by default to any session supplement that
270  * does not specify a response priority.
271  */
273  /*!
274  * For INVITE transactions, the supplement is called into after media
275  * is negotiated.
276  */
278 };
279 
280 /*!
281  * \brief A supplement to SIP message processing
282  *
283  * These can be registered by any module in order to add
284  * processing to incoming and outgoing SIP requests and responses
285  */
287  /*! Reference module info */
289  /*! Method on which to call the callbacks. If NULL, call on all methods */
290  const char *method;
291  /*! Priority for this supplement. Lower numbers are visited before higher numbers */
293  /*!
294  * \brief Notification that the session has begun
295  * This method will always be called from a SIP servant thread.
296  */
297  void (*session_begin)(struct ast_sip_session *session);
298  /*!
299  * \brief Notification that the session has ended
300  *
301  * This method may or may not be called from a SIP servant thread. Do
302  * not make assumptions about being able to call PJSIP methods from within
303  * this method.
304  */
306  /*!
307  * \brief Notification that the session is being destroyed
308  */
310  /*!
311  * \brief Called on incoming SIP request
312  * This method can indicate a failure in processing in its return. If there
313  * is a failure, it is required that this method sends a response to the request.
314  * This method is always called from a SIP servant thread.
315  *
316  * \note
317  * The following PJSIP methods will not work properly:
318  * pjsip_rdata_get_dlg()
319  * pjsip_rdata_get_tsx()
320  * The reason is that the rdata passed into this function is a cloned rdata structure,
321  * and its module data is not copied during the cloning operation.
322  * If you need to get the dialog, you can get it via session->inv_session->dlg.
323  *
324  * \note
325  * There is no guarantee that a channel will be present on the session when this is called.
326  */
327  int (*incoming_request)(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
328  /*!
329  * \brief Called on an incoming SIP response
330  * This method is always called from a SIP servant thread.
331  *
332  * \note
333  * The following PJSIP methods will not work properly:
334  * pjsip_rdata_get_dlg()
335  * pjsip_rdata_get_tsx()
336  * The reason is that the rdata passed into this function is a cloned rdata structure,
337  * and its module data is not copied during the cloning operation.
338  * If you need to get the dialog, you can get it via session->inv_session->dlg.
339  *
340  * \note
341  * There is no guarantee that a channel will be present on the session when this is called.
342  */
343  void (*incoming_response)(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
344  /*!
345  * \brief Called on an outgoing SIP request
346  * This method is always called from a SIP servant thread.
347  */
348  void (*outgoing_request)(struct ast_sip_session *session, struct pjsip_tx_data *tdata);
349  /*!
350  * \brief Called on an outgoing SIP response
351  * This method is always called from a SIP servant thread.
352  */
353  void (*outgoing_response)(struct ast_sip_session *session, struct pjsip_tx_data *tdata);
354  /*! Next item in the list */
356  /*!
357  * Determines when the supplement is processed when handling a response.
358  * Defaults to AST_SIP_SESSION_BEFORE_MEDIA
359  */
360  enum ast_sip_session_response_priority response_priority;
361 };
362 
364  /*! The stream was not handled by this handler. If there are other registered handlers for this stream type, they will be called. */
366  /*! There was an error encountered. No further operations will take place and the current negotiation will be abandoned. */
368  /*! Re-invite is not needed */
370  /*! Re-invite should be deferred and will be resumed later. No further operations will take place. */
372 };
373 
374 /*!
375  * \brief A handler for SDPs in SIP sessions
376  *
377  * An SDP handler is registered by a module that is interested in being the
378  * responsible party for specific types of SDP streams.
379  */
381  /*! An identifier for this handler */
382  const char *id;
383  /*!
384  * \brief Determine whether a stream requires that the re-invite be deferred.
385  * If a stream can not be immediately negotiated the re-invite can be deferred and
386  * resumed at a later time. It is up to the handler which caused deferral to occur
387  * to resume it.
388  *
389  * \param session The session for which the media is being re-invited
390  * \param session_media The media being reinvited
391  * \param sdp The entire SDP. Useful for getting "global" information, such as connections or attributes
392  * \param stream PJSIP incoming SDP media lines to parse by handler.
393  *
394  * \return enum ast_sip_session_defer_stream
395  *
396  * \note This is optional, if not implemented the stream is assumed to not be deferred.
397  */
398  enum ast_sip_session_sdp_stream_defer (*defer_incoming_sdp_stream)(struct ast_sip_session *session, struct ast_sip_session_media *session_media, const struct pjmedia_sdp_session *sdp, const struct pjmedia_sdp_media *stream);
399  /*!
400  * \brief Set session details based on a stream in an incoming SDP offer or answer
401  * \param session The session for which the media is being negotiated
402  * \param session_media The media session
403  * \param sdp The entire SDP. Useful for getting "global" information, such as connections or attributes
404  * \param index The index for the session media, Asterisk stream, and PJMEDIA stream being negotiated
405  * \param asterisk_stream The Asterisk stream representation
406  * \retval 0 The stream was not handled by this handler. If there are other registered handlers for this stream type, they will be called.
407  * \retval <0 There was an error encountered. No further operation will take place and the current negotiation will be abandoned.
408  * \retval >0 The stream was handled by this handler. No further handler of this stream type will be called.
409  */
411  const struct pjmedia_sdp_session *sdp, int index, struct ast_stream *asterisk_stream);
412  /*!
413  * \brief Create an SDP media stream and add it to the outgoing SDP offer or answer
414  * \param session The session for which media is being added
415  * \param session_media The media to be setup for this session
416  * \param sdp The entire SDP as currently built
417  * \param remote Optional remote SDP if this is an answer
418  * \param stream The stream that is to be added to the outgoing SDP
419  * \retval 0 This handler has no stream to add. If there are other registered handlers for this stream type, they will be called.
420  * \retval <0 There was an error encountered. No further operation will take place and the current SDP negotiation will be abandoned.
421  * \retval >0 The handler has a stream to be added to the SDP. No further handler of this stream type will be called.
422  */
423  int (*create_outgoing_sdp_stream)(struct ast_sip_session *session, struct ast_sip_session_media *session_media, struct pjmedia_sdp_session *sdp,
424  const struct pjmedia_sdp_session *remote, struct ast_stream *stream);
425  /*!
426  * \brief Update media stream with external address if applicable
427  * \param tdata The outgoing message itself
428  * \param stream The stream on which to operate
429  * \param transport The transport the SDP is going out on
430  */
431  void (*change_outgoing_sdp_stream_media_address)(struct pjsip_tx_data *tdata, struct pjmedia_sdp_media *stream, struct ast_sip_transport *transport);
432  /*!
433  * \brief Apply a negotiated SDP media stream
434  * \param session The session for which media is being applied
435  * \param session_media The media session
436  * \param local The entire local negotiated SDP
437  * \param remote The entire remote negotiated SDP
438  * \param index The index of the session media, SDP streams, and Asterisk streams
439  * \param asterisk_stream The Asterisk stream representation
440  * \retval 0 The stream was not applied by this handler. If there are other registered handlers for this stream type, they will be called.
441  * \retval <0 There was an error encountered. No further operation will take place and the current application will be abandoned.
442  * \retval >0 The stream was handled by this handler. No further handler of this stream type will be called.
443  */
445  const struct pjmedia_sdp_session *local, const struct pjmedia_sdp_session *remote, int index,
446  struct ast_stream *asterisk_stream);
447  /*!
448  * \brief Stop a session_media created by this handler but do not destroy resources
449  * \param session The session for which media is being stopped
450  * \param session_media The media to destroy
451  */
452  void (*stream_stop)(struct ast_sip_session_media *session_media);
453  /*!
454  * \brief Destroy a session_media created by this handler
455  * \param session The session for which media is being destroyed
456  * \param session_media The media to destroy
457  */
458  void (*stream_destroy)(struct ast_sip_session_media *session_media);
459  /*! Next item in the list. */
461 };
462 
463 /*!
464  * \brief A structure which contains a channel implementation and session
465  */
467  /*! \brief Pointer to channel specific implementation information, must be ao2 object */
468  void *pvt;
469  /*! \brief Pointer to session */
471 };
472 
473 /*!
474  * \brief Allocate a new SIP channel pvt structure
475  *
476  * \param pvt Pointer to channel specific information
477  * \param session Pointer to SIP session
478  *
479  * \retval non-NULL success
480  * \retval NULL failure
481  */
482 struct ast_sip_channel_pvt *ast_sip_channel_pvt_alloc(void *pvt, struct ast_sip_session *session);
483 
484 /*!
485  * \brief Allocate a new SIP session
486  *
487  * This will take care of allocating the datastores container on the session as well
488  * as placing all registered supplements onto the session.
489  *
490  * The endpoint that is passed in will have its reference count increased by one since
491  * the session will be keeping a reference to the endpoint. The session will relinquish
492  * this reference when the session is destroyed.
493  *
494  * \param endpoint The endpoint that this session communicates with
495  * \param contact The contact associated with this session
496  * \param inv_session The PJSIP INVITE session data
497  * \param rdata INVITE request received (NULL if for outgoing allocation)
498  */
500  struct ast_sip_contact *contact, pjsip_inv_session *inv, pjsip_rx_data *rdata);
501 
502 /*!
503  * \brief Request and wait for the session serializer to be suspended.
504  * \since 12.7.0
505  *
506  * \param session Which session to suspend the serializer.
507  *
508  * \note No channel locks can be held while calling without risk of deadlock.
509  *
510  * \return Nothing
511  */
512 void ast_sip_session_suspend(struct ast_sip_session *session);
513 
514 /*!
515  * \brief Request the session serializer be unsuspended.
516  * \since 12.7.0
517  *
518  * \param session Which session to unsuspend the serializer.
519  *
520  * \return Nothing
521  */
522 void ast_sip_session_unsuspend(struct ast_sip_session *session);
523 
524 /*!
525  * \brief Create a new outgoing SIP session
526  *
527  * The endpoint that is passed in will have its reference count increased by one since
528  * the session will be keeping a reference to the endpoint. The session will relinquish
529  * this reference when the session is destroyed.
530  *
531  * \param endpoint The endpoint that this session uses for settings
532  * \param contact The contact that this session will communicate with
533  * \param location Name of the location to call, be it named location or explicit URI. Overrides contact if present.
534  * \param request_user Optional request user to place in the request URI if permitted
535  * \param req_topology The requested capabilities
536  */
538  struct ast_sip_contact *contact, const char *location, const char *request_user,
539  struct ast_stream_topology *req_topology);
540 
541 /*!
542  * \brief Terminate a session and, if possible, send the provided response code
543  *
544  * \param session The session to terminate
545  * \param response The response code to use for termination if possible
546  *
547  * \warning Calling this function MAY cause the last session reference to be
548  * released and the session destructor to be called. If you need to do something
549  * with session after this call, be sure to bump the ref count before calling terminate.
550  */
551 void ast_sip_session_terminate(struct ast_sip_session *session, int response);
552 
553 /*!
554  * \brief Defer local termination of a session until remote side terminates, or an amount of time passes
555  *
556  * \param session The session to defer termination on
557  *
558  * \retval 0 Success
559  * \retval -1 Failure
560  */
562 
563 /*!
564  * \brief Cancel a pending deferred termination.
565  *
566  * \param session The session to cancel a deferred termination on.
567  */
569 
570 /*!
571  * \brief End the session if it had been previously deferred
572  *
573  * \param session The session to end if it had been deferred
574  */
576 
577 /*!
578  * \brief Register an SDP handler
579  *
580  * An SDP handler is responsible for parsing incoming SDP streams and ensuring that
581  * Asterisk can cope with the contents. Similarly, the SDP handler will be
582  * responsible for constructing outgoing SDP streams.
583  *
584  * Multiple handlers for the same stream type may be registered. They will be
585  * visited in the order they were registered. Handlers will be visited for each
586  * stream type until one claims to have handled the stream.
587  *
588  * \param handler The SDP handler to register
589  * \param stream_type The type of media stream for which to call the handler
590  * \retval 0 Success
591  * \retval -1 Failure
592  */
593 int ast_sip_session_register_sdp_handler(struct ast_sip_session_sdp_handler *handler, const char *stream_type);
594 
595 /*!
596  * \brief Unregister an SDP handler
597  *
598  * \param handler The SDP handler to unregister
599  * \param stream_type Stream type for which the SDP handler was registered
600  */
601 void ast_sip_session_unregister_sdp_handler(struct ast_sip_session_sdp_handler *handler, const char *stream_type);
602 
603 /*!
604  * \brief Register a supplement to SIP session processing
605  *
606  * This allows for someone to insert themselves in the processing of SIP
607  * requests and responses. This, for example could allow for a module to
608  * set channel data based on headers in an incoming message. Similarly,
609  * a module could reject an incoming request if desired.
610  *
611  * \param module Referenced module(NULL safe)
612  * \param supplement The supplement to register
613  */
615 
616 #define ast_sip_session_register_supplement(supplement) \
617  ast_sip_session_register_supplement_with_module(AST_MODULE_SELF, supplement)
618 
619 /*!
620  * \brief Unregister a an supplement to SIP session processing
621  *
622  * \param supplement The supplement to unregister
623  */
625 
626 /*!
627  * \brief Add supplements to a SIP session
628  *
629  * \param session The session to initialize
630  */
632 
633 /*!
634  * \brief Remove supplements from a SIP session
635  *
636  * \param session The session to remove
637  */
639 
640 /*!
641  * \brief Alternative for ast_datastore_alloc()
642  *
643  * There are two major differences between this and ast_datastore_alloc()
644  * 1) This allocates a refcounted object
645  * 2) This will fill in a uid if one is not provided
646  *
647  * DO NOT call ast_datastore_free() on a datastore allocated in this
648  * way since that function will attempt to free the datastore rather
649  * than play nicely with its refcount.
650  *
651  * \param info Callbacks for datastore
652  * \param uid Identifier for datastore
653  * \retval NULL Failed to allocate datastore
654  * \retval non-NULL Newly allocated datastore
655  */
656 struct ast_datastore *ast_sip_session_alloc_datastore(const struct ast_datastore_info *info, const char *uid);
657 
658 /*!
659  * \brief Add a datastore to a SIP session
660  *
661  * Note that SIP uses reference counted datastores. The datastore passed into this function
662  * must have been allocated using ao2_alloc() or there will be serious problems.
663  *
664  * \param session The session to add the datastore to
665  * \param datastore The datastore to be added to the session
666  * \retval 0 Success
667  * \retval -1 Failure
668  */
669 int ast_sip_session_add_datastore(struct ast_sip_session *session, struct ast_datastore *datastore);
670 
671 /*!
672  * \brief Retrieve a session datastore
673  *
674  * The datastore retrieved will have its reference count incremented. When the caller is done
675  * with the datastore, the reference counted needs to be decremented using ao2_ref().
676  *
677  * \param session The session from which to retrieve the datastore
678  * \param name The name of the datastore to retrieve
679  * \retval NULL Failed to find the specified datastore
680  * \retval non-NULL The specified datastore
681  */
682 struct ast_datastore *ast_sip_session_get_datastore(struct ast_sip_session *session, const char *name);
683 
684 /*!
685  * \brief Remove a session datastore from the session
686  *
687  * This operation may cause the datastore's free() callback to be called if the reference
688  * count reaches zero.
689  *
690  * \param session The session to remove the datastore from
691  * \param name The name of the datastore to remove
692  */
693 void ast_sip_session_remove_datastore(struct ast_sip_session *session, const char *name);
694 
695 /*!
696  * \brief Send a reinvite or UPDATE on a session
697  *
698  * This method will inspect the session in order to construct an appropriate
699  * session refresh request. As with any outgoing request in res_pjsip_session,
700  * this will call into registered supplements in case they wish to add anything.
701  *
702  * Note: The on_request_creation callback may or may not be called in the same
703  * thread where this function is called. Request creation may need to be delayed
704  * due to the current INVITE transaction state.
705  *
706  * \param session The session on which the reinvite will be sent
707  * \param on_request_creation Callback called when request is created
708  * \param on_sdp_creation Callback called when SDP is created
709  * \param on_response Callback called when response for request is received
710  * \param method The method that should be used when constructing the session refresh
711  * \param generate_new_sdp Boolean to indicate if a new SDP should be created
712  * \param media_state Optional requested media state for the SDP
713  *
714  * \retval 0 Successfully sent refresh
715  * \retval -1 Failure to send refresh
716  *
717  * \note If a media_state is passed in ownership will be taken in all cases
718  */
719 int ast_sip_session_refresh(struct ast_sip_session *session,
720  ast_sip_session_request_creation_cb on_request_creation,
721  ast_sip_session_sdp_creation_cb on_sdp_creation,
722  ast_sip_session_response_cb on_response,
724  int generate_new_sdp,
725  struct ast_sip_session_media_state *media_state);
726 
727 /*!
728  * \brief Regenerate SDP Answer
729  *
730  * This method is used when an SDP offer has been received but an SDP answer
731  * has not been sent yet. It requests that a new local SDP be created and
732  * set as the SDP answer. As with any outgoing request in res_pjsip_session,
733  * this will call into registered supplements in case they wish to add anything.
734  *
735  * \param session The session on which the answer will be updated
736  * \param on_sdp_creation Callback called when SDP is created
737  * \param generate_new_sdp Boolean to indicate if a new SDP should be created
738  * \retval 0 Successfully updated the SDP answer
739  * \retval -1 Failure to updated the SDP answer
740  */
742  ast_sip_session_sdp_creation_cb on_sdp_creation);
743 
744 /*!
745  * \brief Send a SIP response
746  *
747  * This will send the SIP response specified in tdata and
748  * call into any registered supplements' outgoing_response callback.
749  *
750  * \param session The session on which to send the response.
751  * \param tdata The response to send
752  */
753 void ast_sip_session_send_response(struct ast_sip_session *session, pjsip_tx_data *tdata);
754 
755 /*!
756  * \brief Send a SIP request
757  *
758  * This will send the SIP request specified in tdata and
759  * call into any registered supplements' outgoing_request callback.
760  *
761  * \param session The session to which to send the request
762  * \param tdata The request to send
763  */
764 void ast_sip_session_send_request(struct ast_sip_session *session, pjsip_tx_data *tdata);
765 
766 /*!
767  * \brief Creates an INVITE request.
768  *
769  * \param session Starting session for the INVITE
770  * \param tdata The created request.
771  */
772 int ast_sip_session_create_invite(struct ast_sip_session *session, pjsip_tx_data **tdata);
773 
774 /*!
775  * \brief Send a SIP request and get called back when a response is received
776  *
777  * This will send the request out exactly the same as ast_sip_send_request() does.
778  * The difference is that when a response arrives, the specified callback will be
779  * called into
780  *
781  * \param session The session on which to send the request
782  * \param tdata The request to send
783  * \param on_response Callback to be called when a response is received
784  */
785 void ast_sip_session_send_request_with_cb(struct ast_sip_session *session, pjsip_tx_data *tdata,
786  ast_sip_session_response_cb on_response);
787 
788 /*!
789  * \brief Retrieves a session from a dialog
790  *
791  * \param dlg The dialog to retrieve the session from
792  *
793  * \retval non-NULL if session exists
794  * \retval NULL if no session
795  *
796  * \note The reference count of the session is increased when returned
797  *
798  * \note This function *must* be called with the dialog locked
799  */
800 struct ast_sip_session *ast_sip_dialog_get_session(pjsip_dialog *dlg);
801 
802 /*!
803  * \brief Resumes processing of a deferred incoming re-invite
804  *
805  * \param session The session which has a pending incoming re-invite
806  *
807  * \note When resuming a re-invite it is given to the pjsip stack as if it
808  * had just been received from a transport, this means that the deferral
809  * callback will be called again.
810  */
812 
813 /*!
814  * \brief Determines if a provided pending stream will be the default stream or not
815  * \since 15.0.0
816  *
817  * \param session The session to check against
818  * \param stream The pending stream
819  *
820  * \retval 1 if stream will be default
821  * \retval 0 if stream will NOT be the default
822  */
823 int ast_sip_session_is_pending_stream_default(const struct ast_sip_session *session, const struct ast_stream *stream);
824 
825 /*!
826  * \brief Allocate a session media state structure
827  * \since 15.0.0
828  *
829  * \retval non-NULL success
830  * \retval NULL failure
831  */
833 
834 /*!
835  * \brief Allocate an ast_session_media and add it to the media state's vector.
836  * \since 15.0.0
837  *
838  * This allocates a session media of the specified type. The position argument
839  * determines where in the vector that the new session media will be inserted.
840  *
841  * \note The returned ast_session_media is the reference held by the vector. Callers
842  * of this function must NOT decrement the refcount of the session media.
843  *
844  * \param session Session on which to query active media state for
845  * \param media_state Media state to place the session media into
846  * \param type The type of the session media
847  * \param position Position at which to insert the new session media.
848  *
849  * \note The active media state will be queried and if a media session already
850  * exists at the given position for the same type it will be reused instead of
851  * allocating a new one.
852  *
853  * \retval non-NULL success
854  * \retval NULL failure
855  */
857  struct ast_sip_session_media_state *media_state, enum ast_media_type type, int position);
858 
859 /*!
860  * \brief Save a media stats.
861  *
862  * \param media_state The media state to save
863  */
864 void ast_sip_session_media_stats_save(struct ast_sip_session *sip_session, struct ast_sip_session_media_state *media_state);
865 
866 /*!
867  * \brief Reset a media state to a clean state
868  * \since 15.0.0
869  *
870  * \param media_state The media state to reset
871  */
873 
874 /*!
875  * \brief Clone a media state
876  * \since 15.0.0
877  *
878  * \param media_state The media state to clone
879  *
880  * \retval non-NULL success
881  * \retval NULL failure
882  */
884 
885 /*!
886  * \brief Free a session media state structure
887  * \since 15.0.0
888  */
890 
891 /*!
892  * \brief Set a read callback for a media session with a specific file descriptor
893  * \since 15.0.0
894  *
895  * \param session The session
896  * \param session_media The media session
897  * \param fd The file descriptor
898  * \param callback The read callback
899  *
900  * \retval 0 the read callback was successfully added
901  * \retval -1 the read callback could not be added
902  *
903  * \note This operations on the pending media state
904  */
905 int ast_sip_session_media_add_read_callback(struct ast_sip_session *session, struct ast_sip_session_media *session_media,
906  int fd, ast_sip_session_media_read_cb callback);
907 
908 /*!
909  * \brief Set a write callback for a media session
910  * \since 15.0.0
911  *
912  * \param session The session
913  * \param session_media The media session
914  * \param callback The write callback
915  *
916  * \retval 0 the write callback was successfully add
917  * \retval -1 the write callback is already set to something different
918  *
919  * \note This operates on the pending media state
920  */
921 int ast_sip_session_media_set_write_callback(struct ast_sip_session *session, struct ast_sip_session_media *session_media,
923 
924 /*!
925  * \brief Retrieve the underlying media session that is acting as transport for a media session
926  * \since 15.0.0
927  *
928  * \param session The session
929  * \param session_media The media session to retrieve the transport for
930  *
931  * \note This operates on the pending media state
932  *
933  * \note This function is guaranteed to return non-NULL
934  */
936 
937 /*!
938  * \brief Get the channel or endpoint name associated with the session
939  * \since 18.0.0
940  *
941  * \param session
942  * \retval Channel name or endpoint name or "unknown"
943  */
944 const char *ast_sip_session_get_name(const struct ast_sip_session *session);
945 
946 #endif /* _RES_PJSIP_SESSION_H */
ast_sip_session_response_priority
Describes when a supplement should be called into on incoming responses.
unsigned int defer_end
structure for secure RTP audio
Definition: sdp_srtp.h:37
void ast_sip_session_send_request(struct ast_sip_session *session, pjsip_tx_data *tdata)
Send a SIP request.
Information needed to identify an endpoint in a call.
Definition: channel.h:339
static char exten[AST_MAX_EXTENSION]
Definition: chan_alsa.c:118
Main Channel structure associated with a channel.
struct ast_sip_endpoint * endpoint
struct ast_sip_session_media_state * ast_sip_session_media_state_alloc(void)
Allocate a session media state structure.
void ast_sip_session_media_state_free(struct ast_sip_session_media_state *media_state)
Free a session media state structure.
struct ast_frame *(* ast_sip_session_media_read_cb)(struct ast_sip_session *session, struct ast_sip_session_media *session_media)
static int incoming_request(struct ast_sip_session *session, pjsip_rx_data *rdata)
Structure which contains media state information (streams, sessions)
A SIP address of record.
Definition: res_pjsip.h:361
struct supplements supplements
int(* ast_sip_session_response_cb)(struct ast_sip_session *session, pjsip_rx_data *rdata)
#define AST_LIST_HEAD(name, type)
Defines a structure to be used to hold a list of specified type.
Definition: linkedlists.h:172
unsigned int locally_held
Stream is on hold by local side.
int(* ast_sip_session_request_creation_cb)(struct ast_sip_session *session, pjsip_tx_data *tdata)
int(* ast_sip_session_media_write_cb)(struct ast_sip_session *session, struct ast_sip_session_media *session_media, struct ast_frame *frame)
struct ast_sip_session_media_state * pending_media_state
struct ast_sockaddr direct_media_addr
Direct media address.
ast_sip_session_media_encryption
Definition: res_pjsip.h:504
ast_sip_session_call_direction
Indicates the call direction respective to Asterisk.
#define AST_UUID_STR_LEN
Definition: uuid.h:27
void ast_sip_session_unsuspend(struct ast_sip_session *session)
Request the session serializer be unsuspended.
struct ast_sip_session_media * ast_sip_session_media_get_transport(struct ast_sip_session *session, struct ast_sip_session_media *session_media)
Retrieve the underlying media session that is acting as transport for a media session.
pjsip_uri * request_uri
int ast_sip_session_create_invite(struct ast_sip_session *session, pjsip_tx_data **tdata)
Creates an INVITE request.
void ast_sip_session_terminate(struct ast_sip_session *session, int response)
Terminate a session and, if possible, send the provided response code.
void ast_sip_session_suspend(struct ast_sip_session *session)
Request and wait for the session serializer to be suspended.
struct ast_udptl * udptl
UDPTL instance itself.
unsigned int defer_terminate
static struct sessions sessions
unsigned int terminate_while_deferred
struct ao2_container * datastores
struct ast_sip_session * ast_sip_session_create_outgoing(struct ast_sip_endpoint *endpoint, struct ast_sip_contact *contact, const char *location, const char *request_user, struct ast_stream_topology *req_topology)
Create a new outgoing SIP session.
unsigned int ended_while_deferred
char * mid
Media identifier for this stream (may be shared across multiple streams)
A handler for SDPs in SIP sessions.
static enum ast_sip_session_sdp_stream_defer defer_incoming_sdp_stream(struct ast_sip_session *session, struct ast_sip_session_media *session_media, const struct pjmedia_sdp_session *sdp, const struct pjmedia_sdp_media *stream)
Function which defers an incoming media stream.
pj_str_t transport
The media transport in use for this stream.
void * pvt
Pointer to channel specific implementation information, must be ao2 object.
Structure for a data store type.
Definition: datastore.h:31
Structure for an UDPTL session.
Definition: udptl.c:156
Codec API.
ast_sip_session_media_write_cb write_callback
The write callback when writing frames.
A structure which contains a channel implementation and session.
struct ast_sip_session * session
Pointer to session.
t38state
T38 States for a call.
Definition: sip.h:665
char mslabel[AST_UUID_STR_LEN]
Media stream label.
Structure for a data store object.
Definition: datastore.h:68
static void stream_destroy(struct ast_sip_session_media *session_media)
Function which destroys the RTP instance when session ends.
void ast_sip_session_unregister_supplement(struct ast_sip_session_supplement *supplement)
Unregister a an supplement to SIP session processing.
Definition: pjsip_session.c:63
struct ast_sip_session_media_state * ast_sip_session_media_state_clone(const struct ast_sip_session_media_state *media_state)
Clone a media state.
struct pjsip_inv_session * inv_session
static int priority
Socket address structure.
Definition: netsock2.h:97
A structure describing a SIP session.
struct ast_format_cap * direct_media_cap
enum ast_sip_session_media_encryption encryption
What type of encryption is in use on this stream.
ast_sip_supplement_priority
Definition: res_pjsip.h:2869
const char * uid
Definition: datastore.h:69
unsigned int bundled
Whether this stream is currently bundled or not.
struct ast_sip_session_media_state * active_media_state
char * stream_name
Stream name.
void ast_sip_session_remove_datastore(struct ast_sip_session *session, const char *name)
Remove a session datastore from the session.
struct ast_dsp * dsp
void ast_sip_session_register_supplement_with_module(struct ast_module *module, struct ast_sip_session_supplement *supplement)
Register a supplement to SIP session processing.
Definition: pjsip_session.c:35
static int session_end(void *vsession)
struct ast_sip_session_media * ast_sip_session_media_state_add(struct ast_sip_session *session, struct ast_sip_session_media_state *media_state, enum ast_media_type type, int position)
Allocate an ast_session_media and add it to the media state&#39;s vector.
static int apply_negotiated_sdp_stream(struct ast_sip_session *session, struct ast_sip_session_media *session_media, const struct pjmedia_sdp_session *local, const struct pjmedia_sdp_session *remote, int index, struct ast_stream *asterisk_stream)
pjsip_rx_data * deferred_reinvite
struct ast_sip_session_sdp_handler * next
General Asterisk PBX channel definitions.
int ast_sip_session_register_sdp_handler(struct ast_sip_session_sdp_handler *handler, const char *stream_type)
Register an SDP handler.
struct ast_sip_session * ast_sip_session_alloc(struct ast_sip_endpoint *endpoint, struct ast_sip_contact *contact, pjsip_inv_session *inv, pjsip_rx_data *rdata)
Allocate a new SIP session.
struct ast_datastore * ast_sip_session_alloc_datastore(const struct ast_datastore_info *info, const char *uid)
Alternative for ast_datastore_alloc()
int ast_sip_session_is_pending_stream_default(const struct ast_sip_session *session, const struct ast_stream *stream)
Determines if a provided pending stream will be the default stream or not.
struct ast_datastore * ast_sip_session_get_datastore(struct ast_sip_session *session, const char *name)
Retrieve a session datastore.
SRTP and SDP Security descriptions.
Definition: dsp.c:405
static struct ast_mansession session
struct ast_sip_channel_pvt * ast_sip_channel_pvt_alloc(void *pvt, struct ast_sip_session *session)
Allocate a new SIP channel pvt structure.
int ast_sip_session_refresh(struct ast_sip_session *session, ast_sip_session_request_creation_cb on_request_creation, ast_sip_session_sdp_creation_cb on_sdp_creation, ast_sip_session_response_cb on_response, enum ast_sip_session_refresh_method method, int generate_new_sdp, struct ast_sip_session_media_state *media_state)
Send a reinvite or UPDATE on a session.
#define AST_MAX_EXTENSION
Definition: channel.h:135
void ast_sip_session_defer_termination_cancel(struct ast_sip_session *session)
Cancel a pending deferred termination.
pj_timer_entry rescheduled_reinvite
ast_sip_session_media_read_cb read_callback
The callback to invoke.
struct ast_sip_session_media * session
The media session.
struct ast_channel * channel
const char * method
Definition: res_pjsip.c:4335
A set of macros to manage forward-linked lists.
#define AST_VECTOR(name, type)
Define a vector structure.
Definition: vector.h:44
void ast_sip_session_resume_reinvite(struct ast_sip_session *session)
Resumes processing of a deferred incoming re-invite.
struct ast_sdp_srtp * srtp
Holds SRTP information.
AST_LIST_HEAD_NOLOCK(contactliststruct, contact)
Structure which contains read callback information.
An entity with which Asterisk communicates.
Definition: res_pjsip.h:812
void ast_sip_session_send_response(struct ast_sip_session *session, pjsip_tx_data *tdata)
Send a SIP response.
ast_sip_session_t38state
T.38 states for a session.
void ast_sip_session_unregister_sdp_handler(struct ast_sip_session_sdp_handler *handler, const char *stream_type)
Unregister an SDP handler.
static int negotiate_incoming_sdp_stream(struct ast_sip_session *session, struct ast_sip_session_media *session_media, const pjmedia_sdp_session *sdp, int index, struct ast_stream *asterisk_stream)
Function which negotiates an incoming media stream.
Network socket handling.
struct ast_taskprocessor * serializer
void ast_sip_session_media_stats_save(struct ast_sip_session *sip_session, struct ast_sip_session_media_state *media_state)
Save a media stats.
void ast_sip_session_remove_supplements(struct ast_sip_session *session)
Remove supplements from a SIP session.
int stream_num
The stream number to place into any resulting frames.
int fd
The file descriptor itself.
static void outgoing_request(struct ast_sip_session *session, pjsip_tx_data *tdata)
struct ast_module * module
const char * ast_sip_session_get_name(const struct ast_sip_session *session)
Get the channel or endpoint name associated with the session.
static void stream_stop(struct ast_sip_session_media *session_media)
Function which stops the RTP instance.
Format capabilities structure, holds formats + preference order + etc.
Definition: format_cap.c:54
Transport to bind to.
Definition: res_pjsip.h:171
def info(msg)
Contact associated with an address of record.
Definition: res_pjsip.h:281
static void change_outgoing_sdp_stream_media_address(pjsip_tx_data *tdata, struct pjmedia_sdp_media *stream, struct ast_sip_transport *transport)
Function which updates the media stream with external media address, if applicable.
ast_sip_session_refresh_method
Definition: res_pjsip.h:484
ast_sip_dtmf_mode
DTMF modes for SIP endpoints.
Definition: res_pjsip.h:408
pj_timer_entry scheduled_termination
unsigned int remotely_held
Stream is on hold by remote side.
#define AST_LIST_ENTRY(type)
Declare a forward link structure inside a list entry.
Definition: linkedlists.h:409
ast_sip_session_sdp_stream_defer
int ast_sip_session_defer_termination(struct ast_sip_session *session)
Defer local termination of a session until remote side terminates, or an amount of time passes...
int timeout_sched_id
Scheduler ID for RTP timeout.
static const char name[]
Definition: cdr_mysql.c:74
int ast_sip_session_media_add_read_callback(struct ast_sip_session *session, struct ast_sip_session_media *session_media, int fd, ast_sip_session_media_read_cb callback)
Set a read callback for a media session with a specific file descriptor.
Structure used for sending delayed requests.
struct controlling the suspension of the session&#39;s serializer.
char * remote_mslabel
Remote media stream label.
int bundle_group
The bundle group the stream belongs to.
int keepalive_sched_id
Scheduler ID for RTP keepalive.
A structure containing SIP session media information.
struct ast_sip_session_suspender * suspended
struct ast_sip_session_supplement * next
static int create_outgoing_sdp_stream(struct ast_sip_session *session, struct ast_sip_session_media *session_media, struct pjmedia_sdp_session *sdp, const struct pjmedia_sdp_session *remote, struct ast_stream *stream)
Function which creates an outgoing stream.
A supplement to SIP message processing.
enum ast_media_type type
Media type of this session media.
A ast_taskprocessor structure is a singleton by name.
Definition: taskprocessor.c:69
unsigned int changed
The underlying session has been changed in some fashion.
struct ast_stream_topology * topology
The media stream topology.
void ast_sip_session_end_if_deferred(struct ast_sip_session *session)
End the session if it had been previously deferred.
unsigned int remotely_held_changed
Stream is held by remote side changed during this negotiation.
struct ast_sip_session_sdp_handler * handler
SDP handler that setup the RTP.
struct ast_rtp_instance * rtp
RTP instance itself.
Data structure associated with a single frame of data.
int ast_sip_session_media_set_write_callback(struct ast_sip_session *session, struct ast_sip_session_media *session_media, ast_sip_session_media_write_cb callback)
Set a write callback for a media session.
unsigned int authentication_challenge_count
static void session_destroy(struct mansession_session *s)
Definition: manager.c:2269
int ast_sip_session_add_supplements(struct ast_sip_session *session)
Add supplements to a SIP session.
Definition: pjsip_session.c:90
enum queue_result id
Definition: app_queue.c:1507
ast_media_type
Types of media.
Definition: codec.h:30
char label[AST_UUID_STR_LEN]
Track label.
unsigned int remote_rtcp_mux
Does remote support rtcp_mux.
Generic container type.
int ast_sip_session_regenerate_answer(struct ast_sip_session *session, ast_sip_session_sdp_creation_cb on_sdp_creation)
Regenerate SDP Answer.
void ast_sip_session_media_state_reset(struct ast_sip_session_media_state *media_state)
Reset a media state to a clean state.
pjsip_fromto_hdr * saved_from_hdr
struct ast_sip_contact * contact
char * remote_label
Remote stream label.
struct ast_sip_aor * aor
struct ast_sip_session * ast_sip_dialog_get_session(pjsip_dialog *dlg)
Retrieves a session from a dialog.
int(* ast_sip_session_sdp_creation_cb)(struct ast_sip_session *session, pjmedia_sdp_session *sdp)
int ast_sip_session_add_datastore(struct ast_sip_session *session, struct ast_datastore *datastore)
Add a datastore to a SIP session.
void ast_sip_session_send_request_with_cb(struct ast_sip_session *session, pjsip_tx_data *tdata, ast_sip_session_response_cb on_response)
Send a SIP request and get called back when a response is received.
unsigned int moh_passthrough
unsigned int remote_ice
Does remote support ice.