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 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
|
rr Module
Jan Janak
FhG FOKUS
Bogdan-Andrei Iancu
voice-system.ro
Edited by
Jan Janak
Bogdan-Andrei Iancu
Copyright 2003 FhG FOKUS
Copyright 2005 voice-system.ro
_________________________________________________________
Table of Contents
1. User's Guide
1.1. Overview
1.2. Dialog support
1.3. Dependencies
1.3.1. OpenSER Modules
1.3.2. External Libraries or Applications
1.4. Exported Parameters
1.4.1. enable_full_lr (integer)
1.4.2. append_fromtag (integer)
1.4.3. enable_double_rr (integer)
1.4.4. add_username (integer)
1.5. Exported Functions
1.5.1. loose_route()
1.5.2. record_route() and record_route(string)
1.5.3. record_route_preset(string)
1.5.4. add_rr_param(param)
1.5.5. check_route_param(re)
1.5.6. is_direction(dir)
2. Developer's Guide
2.1. Available Functions
2.1.1. add_rr_param( msg, param)
2.1.2. check_route_param( msg, re)
2.1.3. is_direction( msg, dir)
2.1.4. get_route_param( msg, name, val)
2.1.5. register_rrcb( callback, param)
2.1.6. Examples
3. Frequently Asked Questions
List of Examples
1-1. Dialog support in RR module
1-2. Set enable_full_lr parameter
1-3. Set append_fromtag parameter
1-4. Set enable_double_rr parameter
1-5. Set add_username parameter
1-6. loose_route usage
1-7. record_route usage
1-8. record_route_preset usage
1-9. add_rr_param usage
1-10. check_route_param usage
1-11. check_route_param usage
2-1. Loading RR module's API from another module
_________________________________________________________
Chapter 1. User's Guide
1.1. Overview
The module contains record routing logic
_________________________________________________________
1.2. Dialog support
OpenSER is basically only a transaction statefull proxy,
without any dialog support build in. There are many
features/services which actually requires a dialog awareness,
like storing the information in the dialog creation stage,
information which will be used during the whole dialog
existence.
The most urging example is NAT traversal, in dealing with the
within the dialog INVITEs (re-INVITEs). When processing the
initial INVITE, the proxy detects if the caller or callee is
behind some NAT and fixes the signalling and media parts -
since not all the detection mechanism are available for within
the dialog requests (like usrloc), to be able to fix
correspondingly the sequential requests, the proxy must
remember that the original request was NAT processed. There
are many other cases where dialog awareness fixes or helps.
The solution is to store additional dialog-related information
in the routing set (Record-Route/Route headers), headers which
show up in all sequential requests. So any information added
to the Record-Route header will be found (with no direction
dependencies) in Route header (corresponding to the proxy
address).
As storage container, the parameters of the Record-Route /
Route header will be used - Record-Route parameters mirroring
are reinforced by RFC 3261 (see 12.1.1 UAS behavior).
For this purpose, the modules offers the following functions:
* add_rr_param() - see Section 1.5.4
* check_route_param() - see Section 1.5.5
Example 1-1. Dialog support in RR module
UAC OpenSER PROXY UAS
---- INVITE ------> record_route() ----- INVITE ---->
add_rr_param(";foo=true")
--- reINVITE -----> loose_route() ---- reINVITE --->
check_route_param(";foo=true")
<-- reINVITE ------ loose_route() <--- reINVITE ----
check_route_param(";foo=true")
<------ BYE ------- loose_route() <----- BYE -------
check_route_param(";foo=true")
_________________________________________________________
1.3. Dependencies
1.3.1. OpenSER Modules
The following modules must be loaded before this module:
* No dependencies on other OpenSER modules.
_________________________________________________________
1.3.2. External Libraries or Applications
The following libraries or applications must be installed
before running OpenSER with this module loaded:
* None.
_________________________________________________________
1.4. Exported Parameters
1.4.1. enable_full_lr (integer)
If set to 1 then ";lr=on" instead of just ";lr" will be used.
This is to overcome problems with broken UAs which strip ";lr"
parameter when generating Route header fields from
Record-Route (";lr=on" seems to help).
Default value is 0 (no).
Example 1-2. Set enable_full_lr parameter
...
modparam("rr", "enable_full_lr", 1)
...
_________________________________________________________
1.4.2. append_fromtag (integer)
If turned on, request's from-tag is appended to record-route;
that's useful for understanding whether subsequent requests
(such as BYE) come from caller (route's from-tag==BYE's
from-tag) or callee (route's from-tag==BYE's to-tag)
Default value is 1 (yes).
Example 1-3. Set append_fromtag parameter
...
modparam("rr", "append_fromtag", 0)
...
_________________________________________________________
1.4.3. enable_double_rr (integer)
There are some situations when the server needs to insert two
Record-Route header fields instead of one. For example when
using two disconnected networks or doing cross-protocol
forwarding from UDP->TCP. This parameter enables inserting of
2 Record-Routes. The server will later remove both of them.
Default value is 1 (yes).
Example 1-4. Set enable_double_rr parameter
...
modparam("rr", "enable_double_rr", 0)
...
_________________________________________________________
1.4.4. add_username (integer)
If set to a non 0 value (which means yes), the username part
will be also added in the Record-Route URI.
Default value is 0 (no).
Example 1-5. Set add_username parameter
...
modparam("rr", "add_username", 1)
...
_________________________________________________________
1.5. Exported Functions
1.5.1. loose_route()
The function performs loose routing as defined in RFC3261. See
the RFC3261 for more details.
This function can be used from REQUEST_ROUTE.
Example 1-6. loose_route usage
...
loose_route();
...
_________________________________________________________
1.5.2. record_route() and record_route(string)
The function adds a new Record-Route header field. The header
field will be inserted in the message before any other
Record-Route header fields.
If any string is passed as parameter, it will be appended as
URI parameter to the Record-Route header. The string must
follow the ";name=value" scheme and it may contain
pseudo-variables.
This function can be used from REQUEST_ROUTE, BRANCH_ROUTE and
FAILURE_ROUTE.
Example 1-7. record_route usage
...
record_route();
...
_________________________________________________________
1.5.3. record_route_preset(string)
This function will put the string into Record-Route, don't use
unless you know what you are doing.
Meaning of the parameters is as follows:
* string - String to be inserted into the header field; it
may contain pseudo-variables.
This function can be used from REQUEST_ROUTE, BRANCH_ROUTE and
FAILURE_ROUTE.
Example 1-8. record_route_preset usage
...
record_route_preset("1.2.3.4:5090");
...
_________________________________________________________
1.5.4. add_rr_param(param)
Adds a parameter to the Record-Route URI (param must be in
";name=value" format. The function may be called also before
or after the record_route() call (see Section 1.5.2).
Meaning of the parameters is as follows:
* param - String containing the URI parameter to be added.
It must follow the ";name=value" scheme; it may contain
pseudo-variables.
This function can be used from REQUEST_ROUTE, BRANCH_ROUTE and
FAILURE_ROUTE.
Example 1-9. add_rr_param usage
...
add_rr_param(";nat=yes");
...
_________________________________________________________
1.5.5. check_route_param(re)
The function checks if the URI parameters of the local Route
header (corresponding to the local server) matches the given
regular expression. It must be call after loose_route() (see
Section 1.5.1).
Meaning of the parameters is as follows:
* re - regular expression to check against the Route URI
parameters.
This function can be used from REQUEST_ROUTE.
Example 1-10. check_route_param usage
...
if (check_route_param("nat=yes")) {
setflag(6);
}
...
_________________________________________________________
1.5.6. is_direction(dir)
The function checks the flow direction of the request. As for
checking it's used the "ftag" Route header parameter, the
append_fromtag (see Section 1.4.2 module parameter must be
enables. Also this must be call only after loose_route() (see
Section 1.5.1).
The function returns true if the "dir" is the same with the
request's flow direction.
The "downstream" (UAC to UAS) direction is relative to the
initial request that created the dialog.
Meaning of the parameters is as follows:
* dir - string containing the direction to be checked. It
may be "upstream" (from UAS to UAC) or "downstream" (UAC
to UAS).
This function can be used from REQUEST_ROUTE.
Example 1-11. check_route_param usage
...
if (is_direction("upstream")) {
xdbg("upstream request ($rm)\n");
}
...
_________________________________________________________
Chapter 2. Developer's Guide
The RR module provides an internal API to be used by other
OpenSER modules. The API offers support for SIP dialog based
functionalities - for more about the dialog support offered by
RR module, see Section 1.2.
For internal(non-script) usage, the RR module offers to other
module the possibility to register callback functions to be
executed each time a local Route header is processed. The
callback function will receive as parameter the register
parameter and the Route header parameter string.
_________________________________________________________
2.1. Available Functions
2.1.1. add_rr_param( msg, param)
Adds a parameter to the requests's Record-Route URI (param
must be in ";name=value" format).
The function returns 0 on success. Otherwise, -1 is returned.
Meaning of the parameters is as follows:
* struct sip_msg* msg - request that will has the parameter
"param" added to its Record-Route header.
* str* param - parameter to be added to the Record-Route
header - it must be in ";name=value" format.
_________________________________________________________
2.1.2. check_route_param( msg, re)
The function checks for the request "msg" if the URI
parameters of the local Route header (corresponding to the
local server) matches the given regular expression "re". It
must be call after the loose_route was done.
The function returns 0 on success. Otherwise, -1 is returned.
Meaning of the parameters is as follows:
* struct sip_msg* msg - request that will has the Route
header parameters checked.
* regex_t* param - compiled regular expression to be checked
against the Route header parameters.
_________________________________________________________
2.1.3. is_direction( msg, dir)
The function checks the flow direction of the request "msg".
As for checking it's used the "ftag" Route header parameter,
the append_fromtag (see Section 1.4.2 module parameter must be
enables. Also this must be call only after the loose_route is
done.
The function returns 0 if the "dir" is the same with the
request's flow direction. Otherwise, -1 is returned.
Meaning of the parameters is as follows:
* struct sip_msg* msg - request that will have the direction
checked.
* int dir - direction to be checked against. It may be
"RR_FLOW_UPSTREAM" or "RR_FLOW_DOWNSTREAM".
_________________________________________________________
2.1.4. get_route_param( msg, name, val)
The function search in to the "msg"'s Route header parameters
the parameter called "name" and returns its value into "val".
It must be call only after the loose_route is done.
The function returns 0 if parameter was found (even if it has
no value). Otherwise, -1 is returned.
Meaning of the parameters is as follows:
* struct sip_msg* msg - request that will have the Route
header parameter searched.
* str *name - contains the Route header parameter to be
serached.
* str *val - returns the value of the searched Route header
parameter if found. It might be empty string if the
parameter had no value.
_________________________________________________________
2.1.5. register_rrcb( callback, param)
The function register a new callback (along with its
parameter). The callback will be called when a loose route
will be performed for the local address.
The function returns 0 on success. Otherwise, -1 is returned.
Meaning of the parameters is as follows:
* rr_cb_t callback - callback function to be registered.
* void *param - parameter to be passed to the callback
function.
_________________________________________________________
2.1.6. Examples
Example 2-1. Loading RR module's API from another module
...
#include "../rr/api.h"
...
struct rr_binds my_rrb;
...
...
/* load the RR API */
if (load_rr_api( & my_rrb )!=0) {
LOG(L_ERR, "ERROR: can't load RR API\n");
goto error;
}
...
...
/* register a RR callback */
if (my_rrb.register_rrcb(my_callback,0))!=0) {
LOG(L_ERR, "ERROR: can't register RR callback\n");
goto error;
}
...
_________________________________________________________
Chapter 3. Frequently Asked Questions
3.1. Where can I find more about OpenSER?
3.2. Where can I post a question about this module?
3.3. How can I report a bug?
3.1. Where can I find more about OpenSER?
Take a look at http://openser.org/.
3.2. Where can I post a question about this module?
First at all check if your question was already answered on
one of our mailing lists:
* User Mailing List -
http://openser.org/cgi-bin/mailman/listinfo/users
* Developer Mailing List -
http://openser.org/cgi-bin/mailman/listinfo/devel
E-mails regarding any stable OpenSER release should be sent to
<users@openser.org> and e-mails regarding development versions
should be sent to <devel@openser.org>.
If you want to keep the mail private, send it to
<team@openser.org>.
3.3. How can I report a bug?
Please follow the guidelines provided at:
http://sourceforge.net/tracker/?group_id=139143.
|