aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-08 05:29:08 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-08 05:29:08 +0000
commit9b1a36a294342fc418d9a359a4cf06bd90c4acb9 (patch)
treeecc27fc0db142ea1cd335a74cd1265f993fecd11 /doc
parent5f87b66641d86dbe7afec3b083016b2b1aceafc7 (diff)
Add SRTP support for Asterisk
After 5 years in mantis and over a year on reviewboard, SRTP support is finally being comitted. This includes generic CHANNEL dialplan functions that work for getting the status of whether a call has secure media or signaling as defined by the underlying channel technology and for setting whether or not a new channel being bridged to a calling channel should have secure signaling or media. See doc/tex/secure-calls.tex for examples. Original patch by mikma, updated for trunk and revised by me. (closes issue #5413) Reported by: mikma Tested by: twilson, notthematrix, hemanshurpatel Review: https://reviewboard.asterisk.org/r/191/ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@268894 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rw-r--r--doc/tex/asterisk.tex3
-rw-r--r--doc/tex/secure-calls.tex45
2 files changed, 48 insertions, 0 deletions
diff --git a/doc/tex/asterisk.tex b/doc/tex/asterisk.tex
index c6d36af9c..ebb1ec7bd 100644
--- a/doc/tex/asterisk.tex
+++ b/doc/tex/asterisk.tex
@@ -147,6 +147,9 @@ reference purposes.
\chapter{Security Framework}
\input{security-events.tex}
+\chapter{Secure Calls}
+ \input{secure-calls.tex}
+
\chapter{Call Completion Supplementary Services}
\input{ccss.tex}
diff --git a/doc/tex/secure-calls.tex b/doc/tex/secure-calls.tex
new file mode 100644
index 000000000..222e1171c
--- /dev/null
+++ b/doc/tex/secure-calls.tex
@@ -0,0 +1,45 @@
+\section{Introduction}
+Asterisk supports a channel-agnostic method for handling secure call requirements. Since there is no single meaning of what constitutes a "secure call," Asterisk allows the administrator the control to define "secure" for themselves via the dialplan and channel-specific configuration files.
+
+\section{Channel-specific configuration}
+Currently the IAX2 and SIP channels support the call security features in Asterisk. Both channel-specific configuration files (\path{iax2.conf} and \path{sip.conf}) support the encryption=yes setting. For IAX2, this setting causes Asterisk to offer encryption when placing or receiving a call. To force encryption with IAX2, the forceencrypt=yes option is required. Due to limitations of SDP, encryption=yes in \path{sip.conf} results in a call with only a secure media offer, therefor forceencrypt=yes would be redundant in \path{sip.conf}.
+
+If a peer is defined as requiring encryption but the endpoint does not support it, the call will fail with a HANGUPCAUSE of 58 (bearer capability does not exist).
+
+
+\section{Security-based dialplan branching}
+Each channel that supports secure signaling or media can implement a CHANNEL read callback function that specifies whether or not that channel meets the specified criteria. Currently, chan\_iax2 and chan\_sip implement these callbacks. Channels that do not support secure media or signaling will return an empty string when queried. For example, to only allow an inbound call that has both secure signaling and media, see the following example.
+
+\begin{astlisting}
+\begin{verbatim}
+exten => 123,1,GotoIf("$[${CHANNEL(secure_signaling)}" = ""]?fail)
+exten => 123,n,GotoIf("$[${CHANNEL(seucre_media)}" = ""]?fail)
+exten => 123,n,Dial(SIP/123)
+exten => 123,n,Hangup
+exten => 123,n(fail),Playback(vm-goodbye)
+exten => 123,n,Hangup
+\end{verbatim}
+\end{astlisting}
+
+\section{Forcing bridged channels to be secure}
+Administrators can force outbound channels that are to be bridged to a calling channel to conform to secure media and signaling policies. For example, to first make a call attempt that has both secure signaling and media, but gracefully fall back to non-secure signaling and media see the following example:
+
+\begin{astlisting}
+\begin{verbatim}
+exten => 123,1,NoOp(We got a call)
+exten => 123,n,Set(CHANNEL(secure_bridge_signaling)=1)
+exten => 123,n,Set(CHANNEL(secure_bridge_media)=1)
+exten => 123,n,Dial(SIP/somebody)
+exten => 123,n,NoOp(HANGUPCAUSE=${HANGUPCAUSE})
+exten => 123,n,GotoIf($["${HANGUPCAUSE}"="58"]?encrypt_fail)
+exten => 123,n,Hangup
+
+; notify user that retrying via insecure channel (user-provided prompt)
+exten => 123,n(encrypt_fail),Playback(secure-call-fail-retry)
+exten => 123,n,Set(CHANNEL(secure_bridge_signaling)=0)
+exten => 123,n,Set(CHANNEL(secure_bridge_media)=0)
+exten => 123,n,Dial(SIP/somebody)
+exten => 123,n,Hangup
+\end{verbatim}
+\end{astlisting}
+