1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
<!-- Auth Module User's Guide -->
<chapter>
<chapterinfo>
<revhistory>
<revision>
<revnumber>$Revision: 1.5 $</revnumber>
<date>$Date: 2006/05/22 14:13:00 $</date>
</revision>
</revhistory>
</chapterinfo>
<title>User's Guide</title>
<section>
<title>Overview</title>
<para>
This is a generic module that itself doesn't provide all functions
necessary for authentication but provides functions that are needed
by all other authentication related modules (so called authentication
backends).
</para>
<para>
We decided to break the authentication code into several modules
because there are now more than one backends (currently database
authentication and radius are supported). This allows us to create
separate packages so uses can install and load only required
functionality. This also allows us to avoid unnecessary dependencies
in the binary packages.
</para>
</section>
<section>
<title>Dependencies</title>
<section>
<title>&ser; Modules</title>
<para>
The module depends on the following modules (in the other words
the listed modules must be loaded before this module):
<itemizedlist>
<listitem>
<para><emphasis>sl</emphasis> -- Stateless replies</para>
</listitem>
</itemizedlist>
</para>
</section>
<section>
<title>External Libraries or Applications</title>
<para>
The following libraries or applications must be installed
before running &ser; with this module loaded:
<itemizedlist>
<listitem>
<para><emphasis>none</emphasis></para>
</listitem>
</itemizedlist>
</section>
</section>
<section>
<title>Exported Parameters</title>
<section>
<title><varname>secret</varname> (string)</title>
<para>
Secret phrase.
</para>
<para>
Default value is randomly generated string.
</para>
<example>
<title>secret parameter example</title>
<programlisting format="linespecific">
modparam("auth", "secret", "johndoessecretphrase")
</programlisting>
</example>
</section>
<section>
<title><varname>nonce_expire</varname> (integer)</title>
<para>
Nonces have limited lifetime. After a given period of time nonces
will be considered invalid. This is to protect replay attacks.
Credentials containing a stale nonce will be not authorized, but the
user agent will be challenged again. This time the challenge will
contain <varname>stale</varname> parameter which will indicate to the
client that it doesn't have to disturb user by asking for username
and password, it can recalculate credentials using existing username
and password.
</para>
<para>
The value is in seconds and default value is 300 seconds.
</para>
<example>
<title>nonce_expire parameter example</title>
<programlisting format="linespecific">
modparam("auth", "nonce_expire", 600) # Set nonce_expire to 600s
</programlisting>
</example>
</section>
<section>
<title><varname>rpid_prefix</varname> (string)</title>
<para>
Prefix to be added to Remote-Party-ID header field just before
the URI returned from either radius or database.
</para>
<para>
Default value is <quote></quote>.
</para>
<example>
<title>rpid_prefix parameter example</title>
<programlisting format="linespecific">
modparam("auth", "rpid_prefix", "Whatever <")
</programlisting>
</example>
</section>
<section>
<title><varname>rpid_suffix</varname> (string)</title>
<para>
Suffix to be added to Remote-Party-ID header field after the URI
returned from either radius or database.
</para>
<para>
Default value is
<quote>;party=calling;id-type=subscriber;screen=yes</quote>.
</para>
<example>
<title>rpid_suffix parameter example</title>
<programlisting format="linespecific">
modparam("auth", "rpid_suffix", "@1.2.3.4>")
</programlisting>
</example>
</section>
<section>
<title><varname>realm_prefix</varname> (string)</title>
<para>
Prefix to be automatically strip from realm. As an alternative to
SRV records (not all SIP clients support SRV lookup), a subdomain
of the master domain can be defined for SIP purposes (like
sip.mydomain.net pointing to same IP address as the SRV
record for mydomain.net). By ignoring the realm_prefix
<quote>sip.</quote>, at authentication, sip.mydomain.net will be
equivalent to mydomain.net .
</para>
<para>
Default value is empty string.
</para>
<example>
<title>realm_prefix parameter example</title>
<programlisting format="linespecific">
modparam("auth", "realm_prefix", "sip.")
</programlisting>
</example>
</section>
<section>
<title><varname>rpid_avp</varname> (string)</title>
<para>
Full AVP specification (ID, Name, Alias) for the AVP which
stores the RPID value. It used to transport the RPID value from
authntication backend modules (auth_db or auth_radius) or from
script to the auth function append_rpid_hf and is_rpid_user_e164.
</para>
<para>
If defined to NULL string, all RPID functions will fail at
runtime.
</para>
<para>
Default value is <quote>rpid</quote> (Name AVP - e.g, 'i:number',
's:string' or 'avp_alias_string').
</para>
<example>
<title>rpid_avp parameter example</title>
<programlisting format="linespecific">
modparam("auth", "rpid_avp", "i:13")
</programlisting>
</example>
</section>
</section>
<section>
<title>Exported Functions</title>
<section>
<title>
<function moreinfo="none">www_challenge(realm, qop)</function>
</title>
<para>
The function challenges a user agent. It will generate a
WWW-Authorize header field containing a digest challenge, it will
put the header field into a response generated from the request the
server is processing and send the reply. Upon reception of such a
reply the user agent should compute credentials and retry the
request. For more information regarding digest authentication
see RFC2617.
</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
<para><emphasis>realm</emphasis> - Realm is a opaque string that
the user agent should present to the user so he can decide what
username and password to use. Usually this is domain of the host
the server is running on.
</para>
<para>
If an empty string <quote></quote> is used then the server will
generate it from the request. In case of REGISTER requests To
header field domain will be used (because this header field
represents a user being registered), for all other messages From
header field domain will be used.
</para>
<para>
The string may contain pseudo variables.
</para>
</listitem>
<listitem>
<para><emphasis>qop</emphasis> - Value of this parameter can be
either <quote>1</quote> or <quote>0</quote>. When set to 1 then
the server will put qop parameter in the challenge. When set to 0
then the server will not put qop parameter in the challenge. It
is strongly recommended to use qop parameter, however there are
still some user agents that cannot handle qop parameter properly
so we made this optional. On the other hand there are still some
user agents that cannot handle request without qop parameter too.
</para>
</listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE.
</para>
<example>
<title>www_challenge usage</title>
<programlisting format="linespecific">
...
if (www_authorize("siphub.net", "subscriber")) {
www_challenge("siphub.net", "1");
};
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">proxy_challenge(realm, qop)</function>
</title>
<para>
The function challenges a user agent. It will generate a
Proxy-Authorize header field containing a digest challenge, it will
put the header field into a response generated from the request the
server is processing and send the reply. Upon reception of such a
reply the user agent should compute credentials and retry the request.
For more information regarding digest authentication see RFC2617.
</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
<para><emphasis>realm</emphasis> - Realm is a opaque string that
the user agent should present to the user so he can decide what
username and password to use. Usually this is domain of the host
the server is running on.
</para>
<para>
If an empty string <quote></quote> is used then the server will
generate it from the request. From header field domain will be
used as realm.
</para>
<para>
The string may contain pseudo variables.
</para>
</listitem>
<listitem>
<para><emphasis>qop</emphasis> - Value of this parameter can be
either <quote>1</quote> or <quote>0</quote>. When set to 1 then
the server will put qop parameter in the challenge. When set to 0
then the server will not put qop parameter in the challenge. It
is strongly recommended to use qop parameter, however there are
still some user agents that cannot handle qop parameter properly
so we made this optional. On the other hand there are still some
user agents that cannot handle request without qop parameter too.
</para>
</listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE.
</para>
<example>
<title>proxy_challenge usage</title>
<programlisting format="linespecific">
...
if (!proxy_authorize("", "subscriber)) {
proxy_challenge("", "1"); # Realm will be autogenerated
};
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">consume_credentials()</function>
</title>
<para>
This function removes previously authorized credentials from the
message being processed by the server. That means that the downstream
message will not contain credentials there were used by this server.
This ensures that the proxy will not reveal information about
credentials used to downstream elements and also the message will be
a little bit shorter. The function must be called after
<function moreinfo="none">www_authorize</function> or
<function moreinfo="none">proxy_authorize</function>.
</para>
<para>
This function can be used from REQUEST_ROUTE.
</para>
<example>
<title>consume_credentials example</title>
<programlisting format="linespecific">
...
if (www_authorize("", "subscriber)) {
consume_credentials();
};
...
</programlisting>
</example>
</section>
<section>
<title>
<function moreinfo="none">is_rpid_user_e164()</function>
</title>
<para>
The function checks if the SIP URI received from the database or
radius server and will potentially be used in Remote-Party-ID header
field contains an E164 number (+followed by up to 15 decimal digits)
in its user part. Check fails, if no such SIP URI exists
(i.e. radius server or database didn't provide this information).
</para>
<para>
This function can be used from REQUEST_ROUTE.
</para>
<example>
<title>is_rpid_user_e164 usage</title>
<programlisting format="linespecific">
...
if (is_rpid_user_e164()) {
# do something here
};
...
</programlisting>
</example>
</section>
<section id="append-rpid-hf-no-params">
<title>
<function moreinfo="none">append_rpid_hf()</function></title>
<para>
Appends to the message a Remote-Party-ID header that contains header
'Remote-Party-ID: ' followed by the saved value of the SIP URI
received from the database or radius server followed by the value of
module parameter radius_rpid_suffix. The function does nothing if
no saved SIP URI exists.
</para>
<para>
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,
BRANCH_ROUTE.
</para>
<example>
<title>append_rpid_hf usage</title>
<programlisting format="linespecific">
...
append_rpid_hf(); # Append Remote-Party-ID header field
...
</programlisting>
</example>
</section>
<section id="append-rpid-hf-params">
<title>
<function moreinfo="none">append_rpid_hf(prefix, suffix)</function>
</title>
<para>
This function is the same as
<xref linkend="append-rpid-hf-no-params">. The only difference is
that it accepts two parameters--prefix and suffix to be added to
Remote-Party-ID header field. This function ignores rpid_prefix and
rpid_suffix parameters, instead of that allows to set them in every
call.
</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
<para><emphasis>prefix</emphasis> - Prefix of the
Remote-Party-ID URI. The string will be added at the begining of
body of the header field, just before the URI.
</para>
</listitem>
<listitem>
<para><emphasis>suffix</emphasis> - Suffix of the Remote-Party-ID
header field. The string will be appended at the end of the
header field. It can be used to set various URI parameters,
for example.
</para>
</listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,
BRANCH_ROUTE.
</para>
<example>
<title>append_rpid_hf(prefix, suffix) usage</title>
<programlisting format="linespecific">
...
append_rpid_hf("", ";party=calling;id-type=subscriber;screen=yes"); # Append Remote-Party-ID header field
...
</programlisting>
</example>
</section>
</section>
</chapter>
<!-- Keep this element at the end of the file
Local Variables:
sgml-parent-document: ("auth.sgml" "Book" "chapter")
End:
-->
|