cpl_run_script(type,mode)
cpl_process_register()
cpl_run_script
usagecpl-c modules implements a CPL (Call Processing Language) interpreter. Support for uploading/downloading/removing scripts via SIP REGISTER method is present.
IMPORTANT Since CPL-C is not fully releasted in this SER version, before start compiling, please apply to TM module the patch from modules/cpl-c/tm.patch. From sip_router directory do "patch -p0<modules/cpl-c/tm.patch".
The following modules must be loaded before this module:
TM (Transaction) module- used for proxying/forking requests
SL (StateLess) module - used for sending stateless reply when responding to REGISTER request or for sending back error responses
USRLOC (User Location) module - used for implementing lookup("registation") tag (adding into location set of the users's contact)
The following libraries or applications must be installed before running SER with this module loaded:
libxml2 and libxml2-devel - on some SO, these to packages are merged into libxml2. This library contains an engine for XML parsing, DTD validation and DOM manipulation.
A SQL URL have to be given to the module for knowing where the database containing the table with CPL scripts is locates. If required a user name and password can be specified for allowing the module to connect to the database server.
This parameter is MANDATORY!
Indicates the name of the table that store the CPL scripts. This table must be locate into the database specified by "cpl_db" parameter. For more about the format of the CPL table please see modules/cpl-c/init.mysql.
This parameter is MANDATORY!
Points to the DTD file describing the CPL grammar. The file name may include also the path to the file. This path can be absolute or relative (be careful the the path will be relative to the starting directory of SER).
This parameter is MANDATORY!
Points to a directory where should be created all the log file generated by the LOG CPL node. A log file per user will be created (on demand) having the name username.log.
If this parameter is absent, the logging will be disabled without generating error on execution.
Tells for how many time is allow to have recurse for PROXY CPL node If it has value 2, when doing proxy, only twice the proxy action will be re-triggered by a redirect response; the third time, the proxy execution will end by going on REDIRECTION branch. The recurse feature can be disable by setting this parameter to 0
Default value of this parameter is 0.
Before doing proxy (forward), a script route can be executed. All modifications made by that route will be reflected only for the current branch.
Default value of this parameter is 0 (none).
Sets the flag used for marking calls via NAT. Used by lookup tag when retriving a contact behind a NAT (this flag will be set).
Default value of this parameter is 6.
Tells if the lookup tag should use or not the domain part when doing user_location search. Set it to a non zero value to force also domain matching.
Default value of this parameter is 0.
cpl_run_script(type,mode)
Starts the execution of the CPL script. The user name is fetched from new_uri or requested uri or from To header -in this order- (for incoming execution) or from FROM header (for outgoing execution). Regarding the stateful/stateless message processing, the function is very flexibile, being able to run in different modes (see below the"mode" parameter). Normally this function will end script execution. There is no guaranty that the CPL script interpretation ended when ser script ended also (for the same INVITE ;-)) - this can happen when the CPL script does a PROXY and the script interpretation pause after proxying and it will be resume when some reply is received (this can happen in a different process of SER). If the function returns to script, the SIP server should continue with the normal behavior as if no script existed. When some error is returned, the function itself haven't sent any SIP error reply (this can be done from script).
Meaning of the parameters is as follows:
type - which part of the script should be run; set it to "incoming" for having the incoming part of script executed (when an INVITE is received) or to "outgoing" for running the outgoing part of script (when a user is generating an INVITE - call).
mode - sets the interpreter mode as stateless/stateful behaviour. The follwoing modes are accepted:
IS_STATELESS - the current INVITE has no transaction created yet. All replys (redirection or deny) will be done is a stateless way. The execution will switch to statefull only whena proxy is done. So, if the function returns, will be in stateless mode.
IS_STATEFUL - the current INVITE has already a transaction associated. All signalling operations (replys or proxy) will be done in stateful way.So, if the function returns, will be in stateful mode.
FORCE_STATEFUL - the current INVITE has no transaction created yet. All signalling operations will be done is a stateful way (on signalling, the transaction will be created from within the interpreter). So, if the function returns, will be in stateless mode.
HINT: is_statefull is vary difficult to manage from the routing script (script processing can continue in statefull mode); is_stateless is the fastes and less resources consumer (transaction is created only if proxying is done), but there is minimal protection against retransmisions (since replies are send stateless); force_statefull is a good compromise - all signalling is done statefull (retransmission protection) and in the same time, if returning to script, it will be in stateless mode (easy to continue the routing script execution)
cpl_process_register()
This function MUST be called only for REGISTER requests. It checks if the current REGISTER request is related or not with CPL script upload/download/ remove. If it is, all the needed operation will be done. For checking if the REGISTER is CPL related, the function looks fist to "Content-Type" header. If it exists and has a the mime type set to "application/cpl+xml" means this is a CPL script upload/remove operation. The distinction between to case is made by looking at "Content-Disposition" header; id its value is "script;action=store", means it's an upload; if it's "script;action=remove", means it's a remove operation; other values are considered to be errors. If no "Content-Type" header is present, the function looks to "Accept" header and if it contains the "*" or "application/cpl-xml" the request it will be consider one for downloading CPL scripts. The functions returns to script only if the the REGISTER is not related to CPL. In other case, the function will send by itself the necessary replies (stateless - using sl), including for errors.
The module does not provide any sort of API to use in other SER modules.
Take a look at http://iptel.org/ser.
First at all check if your question was already answered on one of our mailing lists:
E-mails regarding any stable version should be sent to <serusers@iptel.org>
and e-mail
regarding development versions or CVS snapshots should be send to <serdev@iptel.org>
.
If you want to keep the mail private, send it to <serhelp@iptel.org>
.
Please follow the guidelines provided at: http://iptel.org/ser/bugs