Project Overview¶
This project's aim is to create a new SIP channel driver to be included in Asterisk 12.
Asterisk's current SIP channel driver (hereon referred to as "chan_sip") basically has the flaw of being poorly architected.
- The code is not arranged in a stack. Attempting to add elements such as a new transport or other new feature means touching the code in places you would never expect to have to touch.
- chan_sip is monolithic; all aspects of SIP reside in the channel driver. Attempting to have a SIP registrar that does not accept calls is not easy.
- Fixing bugs in chan_sip is rarely straightforward. Changing code in order to fix one bug usually leads to new faults being discovered as a result.
- chan_sip takes up the lion's share of issues in the issue tracker. Here is an up-to-date list of open issues against chan_sip. This accounts for about 25% of the open issues in the issue tracker.
- Many limitations are deeply-ingrained in chan_sip. For instance, trying to change chan_sip to support binding to multiple addresses would require huge changes.
Asterisk developers have on several occasions attempted projects to give chan_sip a transaction layer, or to give it some semblance of a refactor. In every case, they've found that the magnitute of their efforts was much greater than originally expected. In the end, their frustration got the better of them and they reported that the effort that it would take in order to do whatever task they were doing would be better spent in rewriting chan_sip altogether.
Requirements and Specification¶
SIP stack¶
The new chan_sip will use a third-party SIP stack. Research was done into various offerings. SIP stack research can be found here. The result of the research was to choose PJSIP as the SIP stack. This was communicated on the asterisk-dev mailing list on December 10th, 2012.
As part of this work, pjproject has been pulled out of the Asterisk source tree and placed into its own Git repository. The repository is available at
!!! note ** You **must use the version of pjproject in the github repository. Asterisk requires the shared objects built by this version of pjproject and will not build against another version of pjproject.
If you already have an old installation of pjproject, you can remove it with:
Note
Alternatively, packages for CentOS 6 are available at http://packages.asterisk.org/centos/6/current/.
Installing pjproject¶
- Check-out pjproject from the github repository
Note
You may need additional configure options depending on your local system and what is already installed.
Commonly used options are: --with-external-speex --with-external-gsm --with-external-srtp --disable-sound --disable-resample
- Compile pjproject and install
Configuration
Configuration for the new chan_sip will be redesigned entirely. Configuration will be more modular, allowing easier control over aspects than previously allowed. At the same time, the new chan_sip MUST be backwards-compatible with the old chan_sip's configuration to ease upgrade. The tentative plan for this is to parse old configuration and translate the options into their new equivalents where possible.
At this stage, no configuration schema have been devised. This will be added as it is decided.
Features¶
A brief high-level overview of features for the new chan_sip includes:
- Transports (all IPv4 and IPv6)
- UDP
- TCP
- TLS
- Websocket
- Digest authentication
- Media sessions
- Basic phone calls
- Call transfer
- Audio/video capability negotiation (to include T.38 negotiation)
- Direct media
- Session timers
- Party Identity
- Registration
- Registrar for incoming registrations
- Client registration (i.e. outgoing registration)
- Subscriptions
- Presence
- Dialog-info
- Message-summary
- Call-completion
- Messaging
- Out-of-call messaging
Use cases¶
Since A SIP channel driver has so many use cases, these reside on their own sub-page. SIP use cases can be found here.
Documentation¶
In order to increase adoption of the new chan_sip and encourage enhancement, detailed documentation MUST be provided. Documentation will be provided in several forms.
In-code documentation¶
This can be broken into two categories
- API documentation (i.e. Doxygen)
- User documentation (i.e. XML documentation)
All functions must have thorough doxygen documentation, and all applications, dialplan functions, manager actions, and manager events must have XML.
Configuration sample¶
A sample configuration will be included. The sample configuration will serve to be a minimal documentation of options. More detailed explanations may be found on the wiki.
Wiki documentation¶
The wiki will be used to document high-level information, ranging from configuration option details to an explanation of the threading model and architecture for developers. Links to documentation pages will be added here as documentation is written.
APIs¶
At a minimum, all dialplan applications, dialplan functions, manager commands, and CLI commands that worked with the old chan_sip must also work with new chan_sip. The following will be present
Dialplan applications¶
Legacy applications¶
New applications¶
TBD
Dialplan functions¶
Legacy functions¶
- CHANNEL (The SIP-specific bits)
- SIP_HEADER
- SIPPEER
- CHECKSIPDOMAIN
New functions¶
TBD
CLI commands¶
Legacy CLI commands¶
- sip show channels
- sip show channelstats
- sip show domains
- sip show inuse
- sip show objects
- sip show peers
- sip show peer
- sip show users
- sip show user
- sip show registry
- sip show settings
- sip show mwi
- sip show channel
- sip show history
- sip show sched
- sip show tcp
- sip prune realtime
- sip debug
- sip set history
- sip reload
- sip qualify peer
- sip unregister
- sip notify
New CLI commands¶
TBD
Manager commands¶
Legacy Manager commands¶
New Manager commands¶
TBD
AGI commands¶
Legacy AGI commands¶
None
New AGI commands¶
TBD
Design¶
Since a SIP stack has not been chosen yet, it is difficult to go about trying to design anything. As design is done, more will be added here.
Test Plan¶
The new chan_sip test plan can be found here
Project Planning¶
Jira issues will be posted here for the new chan_sip as they become created. If you are interested in helping with any of these, feel free to step forward and help out. Please comment on the specific Jira issue rather than on this page. If you wish to have more in-depth discussions about a task you wish to take on, then please direct the discussion to the Asterisk developers mailing list
true
Reference information¶
The decision to move forward with a new chan_sip was made at AstriDevCon 2012.
Testing¶
Notable Reviews¶
Review | Link |
---|---|
res_sip and res_sip_session design review | https://reviewboard.asterisk.org/r/2251/ |
Initial work for res_sip and res_sip_session: Inbound and outbound calls work | https://reviewboard.asterisk.org/r/2285/ |
SIP authentication support | https://reviewboard.asterisk.org/r/2310/ |
Pimp My SIP Media Improvements | https://reviewboard.asterisk.org/r/2318/ |
Make new SIP work make use of threadpool | https://reviewboard.asterisk.org/r/2305/ |
Fix pjproject's build system to support shared objects | https://code.asterisk.org/code/cru/CR-AST-12 |