Table of Contents
OpenSER Pseudo-variables for Version 1.1.x
Authors of initial tutorial: Elena-Ramona Modroiu <ramona (at) rosdev.ro> Bogdan-Andrei Iancu <bogdan (at) voice-system.ro> Daniel-Constantin Mierla <miconda (at) gmail.com>
Introduction
The term “pseudo-variable” is used for special tokens that can be given as parameters to different script functions and they will be replaced with a value before the execution of the function.
The beginning of a “pseudo-variable” is marked by the character “$”. If you want to have the character “$” just double it “$$”.
There is a set of predefined pseudo-variables, which have the name composed from one to three letters, and special pseudo-variables that are references to dynamic fields (AVP and Headers)
Pseudo-variables usage
Pseudo-variables can be used with many modules of OpenSER, among them:
The list of pseudo-variables in OpenSER
Predefined pseudo-variables are listed in alphabetical order.
Pseudo-variable marker
$$ - represents the character '$'
Auth realm
$ar - realm from Authorization or Proxy-Authorization header
Auth username
$au - username from Authorization or Proxy-Authorization header
Request's first branch
$br - reference to request's first branch
Request's all branches
$bR - reference to request's all branches
Call-Id
$ci - reference to body of call-id header
Content-Length
$cl - reference to body of content-length header
CSeq
$cs - reference to body of cseq header
Contact header
$ct - reference to body of contact header
Content-Type
$cT - reference to body of content-type header
Domain of destination URI
$dd - reference to IP domain of destination uri (IP from the NAT)
Diversion header URI
$di - reference to Diversion header URI
Port of destination URI
$dp - reference to port of destination uri
Transport protocol of destination URI
$dP - reference to transport protocol of destination uri
Destination set
$ds - reference to destination set
Destination URI
$du - reference to destination uri
From URI domain
$fd - reference to domain in URI of 'From' header
From display name
$fn - reference to display name of 'From' header
From tag
$ft - reference to tag parameter of 'From' header
From URI
$fu - reference to URI of 'From' header
From URI username
$fU - reference to username in URI of 'From' header
SIP message buffer
$mb - reference to SIP message buffer
Flags
$mf - reference to flags set for current SIP request
Flags in hexadecimal
$mF -reference to flags set for current SIP request in hexa
SIP message id
$mi - reference to SIP message id
SIP message length
$ml - reference to SIP message length ybcslmio, http://lynntownship.org/ clomid, bbcqumby
Domain in SIP Request's original URI
$od - reference to domain in request's original URI
Port of SIP request's original URI
$op - reference to port of original R-URI
Transport protocol of SIP request original URI
$oP - reference to transport protocol of original R-URI
SIP Request's original URI
$ou - reference to request's original URI
Username in SIP Request's original URI
$oU - reference to username in request's original URI
Process id
$pp - reference to process id (pid)
Domain in SIP Request's URI
$rd - reference to domain in request's URI
Body of request/reply
$rb - reference to message body
Returned code
$rc - reference to returned code by last invoked function
SIP request's method
$rm - reference to request's method
SIP request's port
$rp - reference to port of R-URI
Transport protocol of SIP request URI
$rP - reference to transport protocol of R-URI
SIP reply's reason
$rr - reference to reply's reason
SIP reply's status
$rs - reference to reply's status
Refer-to URI
$rt - reference to URI of refer-to header
SIP Request's URI
$ru - reference to request's URI
Username in SIP Request's URI
$rU - reference to username in request's URI
Received IP address
$Ri - reference to IP address of the interface where the request has been received
Received port
$Rp - reference to the port where the message was received
IP source address
$si - reference to IP source address of the message
Source port
$sp - reference to the source port of the message
Source port
$fs - reference to the forced socket for the message sending (if any)
To URI Domain
$td - reference to domain in URI of 'To' header
To display name
$tn - reference to display name of 'To' header
To tag
$tt - reference to tag parameter of 'To' header
To URI
$tu - reference to URI of 'To' header
To URI Username
$tU - reference to username in URI of 'To' header
String formatted time
$Tf - reference string formatted time
Unix time stamp
$Ts - reference to unix time stamp
User agent header
$ua - reference to user agent header field
Remote-Party-ID header URI
$re - reference to Remote-Party-ID header URI
AVPs
$avp(id[N]) - represents the value of N-th AVP identified by 'id'.
The 'id' can be:
* “[si]:name” - name is the id of an AVP; 's' and 'i' specifies if the id is string or integer. If missing, it is considered to be string. * “$name” - the name is an AVP alias
Headers
$hdr(name[N]) - represents the body of the N-th header identified by 'name'. If [N] is omitted then the body of the first header is printed. The first header is got when N=0, for the second N=1, a.s.o. To print the last header of that type, use -1, no other negative values are supported now. No white spaces are allowed inside the specifier (before }, before or after {, [, ] symbols). When N='*', all headers of that type are printed.
The module should identify most of compact header names (the ones recognized by OpenSER which should be all at this moment), if not, the compact form has to be specified explicitly. It is recommended to use dedicated specifiers for headers (e.g., %ua for user agent header), if they are available – they are faster.
Special pseudo-variables in OpenSER - Escape Sequences
These pseudo variables are used by xlog module to print messages in many colors using escape sequences. The other modules ingnore them or throw error if they met these pseudo-variables.
Foreground and background colors
$Cxy - reference to an escape sequence. “x” represents the foreground color and “y” represents the background color.
Colors could be:
* x : default color of the terminal * s : Black * r : Red * g : Green * y : Yellow * b : Blue * p : Purple * c : Cyan * w : White
Examples
A few examples of usage.
Example 1. Pseudo-variables usage
... modparam("avpops", "avp_aliases", "uuid=I:50") ... route { ... avp_write("caller_id", "$uuid"); avp_printf("$avp(i:20)", "$avp($uuid): $fu"); xdbg("$Cbgi:20$Cxx [$avp(i:20)] $Cbrcseq$Cxx=[$hdr(cseq)]\n"); ... } ...
OpenSER versions
This document is valid for following OpenSER versions:
- OpenSER Devel v1.1.x