Copyright © 2003 FhG FOKUS
Revision History | |
---|---|
Revision $Revision: 7480 $ | $Date: 2013-01-29 13:35:11 +0100 (Tue, 29 Jan 2013) $ |
Table of Contents
filter_body(content_type)
append_to_reply(txt)
append_hf(txt)
append_hf(txt, hdr)
insert_hf(txt)
insert_hf(txt, hdr)
append_urihf(prefix, suffix)
is_present_hf(hf_name)
append_time()
is_method(name)
remove_hf(hname [,flags])
has_body()
,
has_body(mime)
is_audio_on_hold()
is_privacy(privacy_type)
strip_body(),
strip_body(mime)
add_body(body_text, new_content_type)
sipmsg_validate([flags])
codec_exists (name [,clock] )
codec_delete (name [,clock] )
codec_move_up (name [,clock] )
codec_move_down (name [,clock] )
codec_exists_re ( regexp )
codec_delete_re ( regexp )
codec_delete_except_re ( regexp )
codec_move_up_re ( regexp )
codec_move_down_re ( regexp )
change_reply_status(code, reason)
stream_exists(regexp)
stream_delete(regexp)
List of Examples
filter_body
usageappend_to_reply
usageappend_hf
usageappend_hf
usageinsert_hf
usageinsert_hf
usageappend_urihf
usageis_present_hf
usageappend_time
usageis_method
usageremove_hf
usagehas_body
usageis_audio_on_hold
usageis_privacy
usagestrip_body
usageadd_body
usagesipmsg_validate
usagecodec_exists
usagecodec_delete
usagecodec_move_up
usagecodec_move_down
usagecodec_move_down
usagecodec_exists_re
usagecodec_delete_re
usagecodec_delete_except_re
usagecodec_move_up_re
usagecodec_move_down_re
usagecodec_move_down
usagechange_reply_status
usagestream_exists
usagestream_delete
usageThe module implements SIP based operations over the messages processed by OpenSIPS. SIP is a text based protocol and the module provides a large set of very useful functions to manipulate the message at SIP level, e.g., inserting new headers or deleting them, check for method type, etc.
The following modules must be loaded before this module:
No dependencies on other OpenSIPS modules.
Filters multipart body by leaving out all other body parts except the first body part of given type.
Meaning of the parameters is as follows:
content_type - Content type to be left in the body.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
Example 1.1. filter_body
usage
... if (has_body("multipart/mixed")) { if (filter_body("application/sdp") { remove_hf("Content-Type"); append_hf("Content-Type: application/sdp\r\n"); } else { xlog("Body part application/sdp not found\n"); } } ...
Append txt as header to all replies that will be generated by OpenSIPS for this request.
Meaning of the parameters is as follows:
txt - String which may contains pseudo-variables.
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE, ERROR_ROUTE.
Example 1.2. append_to_reply
usage
... append_to_reply("Foo: bar\r\n"); append_to_reply("Foo: $rm at $Ts\r\n"); ...
Appends 'txt' as header after the last header field.
Meaning of the parameters is as follows:
txt - Header field to be appended. The value can contain pseudo-variables which will be replaced at run time.
Note: Headers which are added in main route cannot be removed in further routes (e.g. failure routes). So, the idea is not to add there any headers that you might want to remove later. To add headers temporarely use the branch route because the changes you do there are per-branch.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
Example 1.3. append_hf
usage
... append_hf("P-hint: VOICEMAIL\r\n"); append_hf("From-username: $fU\r\n"); ...
Appends 'txt' as header after first 'hdr' header field.
Meaning of the parameters is as follows:
txt - Header field to be appended. The value can contain pseudo-variables which will be replaced at run time.
hdr - Header name after which the 'txt' is appended.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
Example 1.4. append_hf
usage
... append_hf("P-hint: VOICEMAIL\r\n", "Call-ID"); append_hf("From-username: $fU\r\n", "Call-ID"); ...
Inserts 'txt' as header before the first header field.
Meaning of the parameters is as follows:
txt - Header field to be inserted. The value can contain pseudo-variables which will be replaced at run time.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
Example 1.5. insert_hf
usage
... insert_hf("P-hint: VOICEMAIL\r\n"); insert_hf("To-username: $tU\r\n"); ...
Inserts 'txt' as header before first 'hdr' header field.
Meaning of the parameters is as follows:
txt - Header field to be inserted. The value can contain pseudo-variables which will be replaced at run time.
hdr - Header name before which the 'txt' is inserted.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
Example 1.6. insert_hf
usage
... insert_hf("P-hint: VOICEMAIL\r\n", "Call-ID"); insert_hf("To-username: $tU\r\n", "Call-ID"); ...
Append header field name with original Request-URI in middle.
Meaning of the parameters is as follows:
prefix - string (usually at least header field name).
suffix - string (usually at least line terminator).
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
Return true if a header field is present in message.
The function is also able to distinguish the compact names. For exmaple “From” will match with “f”
Meaning of the parameters is as follows:
hf_name - Header field name.(long or compact form). The hf_name parameter can have the following types:
string - Static header field name
pvar - Header field name is given as a pseudo-variable (as string value)
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
Adds a time header to the reply of the request. You must use it before functions that are likely to send a reply, e.g., save() from 'registrar' module. Header format is: “Date: %a, %d %b %Y %H:%M:%S GMT”, with the legend:
%a abbreviated week of day name (locale)
%d day of month as decimal number
%b abbreviated month name (locale)
%Y year with century
%H hour
%M minutes
%S seconds
Return true if a header was succesfully appended.
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
Check if the method of the message matches the name. If name is a known method (invite, cancel, ack, bye, options, info, update, register, message, subscribe, notify, refer, prack), the function performs method ID testing (integer comparison) instead of ignore case string comparison.
The 'name' can be a list of methods in the form of 'method1|method2|...'. In this case, the function returns true if the SIP message's method is one from the list. IMPORTANT NOTE: in the list must be only methods defined in OpenSIPS with ID (invite, cancel, ack, bye, options, info, update, register, message, subscribe, notify, refer, prack, publish; for more see: http://www.iana.org/assignments/sip-parameters).
If used for replies, the function tests the value of method field from CSeq header.
Meaning of the parameters is as follows:
name - SIP method name
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, and BRANCH_ROUTE.
Example 1.10. is_method
usage
... if(is_method("INVITE")) { # process INVITEs here } if(is_method("OPTION|UPDATE")) { # process OPTIONs and UPDATEs here } ...
Remove from message all headers with name “hname”
Returns true if at least one header is found and removed.
Meaning of the parameters is as follows:
hname - header name to be removed. The hname parameter can have the following types:
string - Header name to be removed
pvar - Header name to be removed is the value of an existing pseudo-variable (as string value)
pattern - pattern to match the names of the headers to be removed; can be a simple wildcard or a regexp (see the second param too)
flags - how to interpret the pattern from the first parameted.
r - pattern is a regexp
g - pattern is glob (shell wildcard pattern)
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE and BRANCH_ROUTE.
Example 1.11. remove_hf
usage
... if(remove_hf("User-Agent")) { # User Agent header removed } ... # removes X-Billing-Account, X-Billing-Price, X-Billing-rateplan, etc remove_hf("X-Billing*", "g"); ... #removes headers by regex remove_hf("^X-g.+[0-9]", "r"); ...
The function returns true if the SIP message has a body attached. The checked includes also the “Content-Lenght” header presence and value.
If a paramter is given, the mime described will be also checked against the “Content-Type” header.
If the SIP message has a multipart body and mime is not a multipart type , it will search through all the parts for the given type.
It will not handle multi-layer multiparts
Meaning of the parameters is as follows:
mime - mime to be checked against the “Content-Type” header. If not present or 0, this check will be disabled.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE and BRANCH_ROUTE.
Example 1.12. has_body
usage
... if(has_body("application/sdp")) { # do interesting stuff here } ...
The function returns true if the SIP message has an SDP body attached and at least one audio stream in on hold.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE and BRANCH_ROUTE.
The function returns true if the SIP message has a Privacy header field that includes the given privacy_type among its privacy values. See http://www.iana.org/assignments/sip-priv-values for possible privacy type values.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE and BRANCH_ROUTE.
If the message has a body, this function deletes it, correcting Content-Length. This function also deletes the Content-Type header.
If a MIME type is specified it will delete the body if it has the same type or, if the message has a multipart body it will go through the parts and delete all those with the specified type.
It will not handle multi-layer multiparts
Meaning of the parameters is as follows:
mime - mime to be checked against the “Content-Type” header. If not present or 0, this check will be disabled.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
Example 1.15. strip_body
usage
... strip_body(); #delete any body strip_body("multipart/related") # delete a multipart/related body strip_body("application/sdp") # delete all sdp bodies, even ones enclosed in multipart ...
This function can be used to add a body to a message. If a body already exists, it will be replaced with the new one. The second parameter is the content type of the new body. It is optional: in case the function is used to replace an existing body with a body of the same type, there is no need to set this parameter. If the message has no body or if the types are different, it is compulsory to set this parameter.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
The function returns true if the SIP message is properly built according to SIP RFC3261. It verifies if the mandatory headers for each request/reply and can also check the format of the headers body.
The flags parameter received is optional and can be composed with the following values:
's' - checks the integrity of the SDP body, if it exists
'h' - checks the format and integrity of each header body.
'm' - don't check the Max-Forwards header.
'r' - checks the R-URI and whether the domain contains valid characters.
This function can return the following codes:
1 - the message is RFC3261 compliant and has been successfully validated.
-1 - the message is not RFC3261 compliant.
-2 - signals a parsing error.
-3 - invalid SDP body.
-4 - invalid headers body.
-5 - invalid R-URI.
-6 - invalid R-URI domain.
-255 - undefined errors.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE and BRANCH_ROUTE.
Example 1.17. sipmsg_validate
usage
... if(!sipmsg_validate()) { send_reply("400", "Bad Request"); exit; } ... ... # checks also the SDP and headers body if(!sipmsg_validate("sh")) { send_reply("400", "Bad Request/Body"); exit; } ...
This function can be used to verify if a codec exists inside an sdp payload. It will search for the codec inside all streams from all sdp sessions. If it is found anywhere it will return TRUE otherwise it will return FALSE. The second parameter is optional, if it is not supplied any clockrate will match. Parameters are CASE INSENSITIVE.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
This function can be used to delete a codec from inside an sdp payload. It will search for the codec inside all streams from all sdp sessions. If it is found anywhere it will be deleted from the mapping ("a=...") and from the list of indexes ("m=..."). Returns TRUE if any deletion occured otherwise it will return FALSE. The second parameter is optional, if it is not supplied any clockrate will match and all will be deleted. Parameters are CASE INSENSITIVE.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
This function can be used to move a codec up in the list of indexes ("m=..."). It will search for the codec inside all streams from all sdp sessions. If it is found anywhere it will be moved to the top of the index list. Returns TRUE if any moves occured otherwise it will return FALSE. The second parameter is optional, if it is not supplied any clockrate will match and all codecs will be moved to the front while preserving their original ordering. Parameters are CASE INSENSITIVE.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
This function can be used to move a codec down in the list of indexes ("m=..."). It will search for the codec inside all streams from all sdp sessions. If it is found anywhere it will be moved to the back of the index list. Returns TRUE if any moves occured otherwise it will return FALSE. The second parameter is optional, if it is not supplied any clockrate will match and all codecs will be moved to the back while preserving their original ordering. Parameters are CASE INSENSITIVE.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
Example 1.21. codec_move_down
usage
... codec_move_down("speex"); or codec_move_down("GSM","8000"); ...
Example 1.22. codec_move_down
usage
... /* This example will move speex with 8000 codec to the back of the list, then it will erase GSM with 8000 clock, and then it will bring all speex codecs to the front of the list. Speex/8000 will be behind any other speex. */ codec_move_down("speex","8000"); codec_delete("GSM","8000"); codec_move_up("speex"); ...
This function has the same effect as codec_exists ( without the clock parameter ) the only difference is that it takes a POSIX regular expression as a parameter.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
This function has the same effect as codec_delete ( without the clock parameter ) the only difference is that it takes a POSIX regular expression as a parameter.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
This function deletes all the codecs except those specified by the regular expression.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
Example 1.25. codec_delete_except_re
usage
... codec_delete_except_re("PCMA|PCMU");#will delete all codecs except PCMA and PCMU ...
This function has the same effect as codec_move_up ( without the clock parameter ) the only difference is that it takes a POSIX regular expression as a parameter.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
This function has the same effect as codec_move_down ( without the clock parameter ) the only difference is that it takes a POSIX regular expression as a parameter.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
Example 1.28. codec_move_down
usage
... /* This example will move speex with 8000 codec to the back of the list, then it will erase GSM with 8000 clock, and then it will bring all speex codecs to the front of the list. Speex/8000 will be behind any other speex. */ codec_move_down("speex","8000"); codec_delete("GSM","8000"); codec_move_up("speex"); ...
Intercept a SIP reply (in any onreply_route) and change its status code and reason phrase prior to propogating it.
Meaning of the parameters is as follows:
code - Status code.
reason - Reason phrase.
This function can be used from ONREPLY_ROUTE.
Example 1.29. change_reply_status
usage
... onreply_route { if ($rs == "603") { change_reply_status("404", "Not Found"); exit; } } ...
This function can be used to verify if a stream exists inside an sdp payload. It will search for the stream inside all sdp sessions. If it is found anywhere it will return TRUE otherwise it will return FALSE.
Meaning of the parameters is as follows:
regexp - a POSIX regular expression to match the stream media name.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.
This function can be used to delete a whole stream from inside an sdp payload. It will search for the stream inside all sdp sessions. If it is found anywhere it will be deleted along with all attributes Returns TRUE if any deletion occured otherwise it will return FALSE.
Meaning of the parameters is as follows:
regexp - a POSIX regular expression to match the stream media name.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE and LOCAL_ROUTE.