CPL_C module
Admin Guide
Section titled “Admin Guide”Overview
Section titled “Overview”cpl_c modules implements a CPL (Call Processing Language) interpreter. Support for uploading/downloading/removing scripts via SIP REGISTER method is present.
Dependencies
Section titled “Dependencies”OpenSIPS Modules
Section titled “OpenSIPS Modules”The following modules must be loaded before this module:
- any DB module- a DB module for interfacing the DB operations (modules like mysql, postgres, dbtext, etc)
- 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(“registration”) tag (adding into location set of the users’ contact)
External Libraries or Applications
Section titled “External Libraries or Applications”The following libraries or applications must be installed before running OpenSIPS 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.
Exported Parameters
Section titled “Exported Parameters”db_url (string)
Section titled “db_url (string)”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.
Default value is “mysql://opensips:opensipsrw@localhost/opensips”.
...modparam("cpl_c","db_url","dbdriver://username:password@dbhost/dbname")...db_table (string)
Section titled “db_table (string)”Indicates the name of the table that store the CPL scripts. This table must be locate into the database specified by “db_url” parameter. For more about the format of the CPL table please see the modules/cpl_c/init.mysql file.
Default value is “cpl”.
...modparam("cpl_c","cpl_table","cpl")...username_column (string)
Section titled “username_column (string)”Indicates the name of the column used for storing the username.
Default value is “username”.
...modparam("cpl_c","username_column","username")...domain_column (string)
Section titled “domain_column (string)”Indicates the name of the column used for storing the domain.
Default value is “domain”.
...modparam("cpl_c","domain_column","domain")...cpl_xml_column (string)
Section titled “cpl_xml_column (string)”Indicates the name of the column used for storing the the XML version of the cpl script.
Default value is “cpl_xml”.
...modparam("cpl_c","cpl_xml_column","cpl_xml")...cpl_bin_column (string)
Section titled “cpl_bin_column (string)”Indicates the name of the column used for storing the the binary version of the cpl script (compiled version).
Default value is “cpl_bin”.
...modparam("cpl_c","cpl_bin_column","cpl_bin")...cpl_dtd_file (string)
Section titled “cpl_dtd_file (string)”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 path will be relative to the starting directory of OpenSIPS).
This parameter is MANDATORY!
...modparam("cpl_c","cpl_dtd_file","/etc/opensips/cpl-06.dtd")...log_dir (string)
Section titled “log_dir (string)”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.
...modparam("cpl_c","log_dir","/var/log/opensips/cpl")...proxy_recurse (int)
Section titled “proxy_recurse (int)”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.
...modparam("cpl_c","proxy_recurse",2)...proxy_route (string)
Section titled “proxy_route (string)”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 NULL (none).
...modparam("cpl_c","proxy_route", "1")...case_sensitive (int)
Section titled “case_sensitive (int)”Tells if the username matching should be perform case sensitive or not. Set it to a non zero value to force a case sensitive handling of usernames.
Default value of this parameter is 0.
...modparam("cpl_c","case_sensitive",1)...realm_prefix (string)
Section titled “realm_prefix (string)”Defines a prefix for the domain part which should be ignored in handling users and scripts.
Default value of this parameter is empty string.
...modparam("cpl_c","realm_prefix","sip.")...lookup_domain (string)
Section titled “lookup_domain (string)”Used by lookup tag to indicate where to perform user location. Basically this is the name of the usrloc domain (table) where the user registrations are kept.
If set to empty string, the lookup node will be disabled - no user location will be performed.
Default value of this parameter is NULL.
...modparam("cpl_c","lookup_domain","location")...lookup_append_branches (int)
Section titled “lookup_append_branches (int)”Tells if the lookup tag should append branches (to do parallel forking) if user_location lookup returns more than one contact. Set it to a non zero value to enable parallel forking for location lookup tag.
Default value of this parameter is 0.
...modparam("cpl_c","lookup_append_branches",1)...use_domain (boolean)
Section titled “use_domain (boolean)”Indicates if the domain part of the URI should be used in user identification (otherwise only username part will be used).
Default value is true (enabled).
...modparam("cpl_c", "use_domain", true)...Exported Functions
Section titled “Exported Functions”cpl_run_script(type,mode)
Section titled “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 flexible, 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 OpenSIPS 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 OpenSIPS).
If the function returns true to script, if value “1” is returned, the SIP server should continue with the normal behavior as if no script existed; if value (2) is returned, it means no script was found, so nothing was done.
When some error is reported (a false return code), the function itself haven’t sent any SIP error reply (this can be done from script).
Meaning of the parameters is as follows:
-
type (string) - 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 (string) - sets the interpreter mode as stateless/stateful behavior. The following modes are accepted:
- IS_STATELESS - the current INVITE has no transaction created yet. All replies (redirection or deny) will be done is a stateless way. The execution will switch to stateful only when proxy is done. So, if the function returns, will be in stateless mode.
- IS_STATEFUL - the current INVITE has already a transaction associated. All signaling operations (replies 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 signaling operations will be done is a stateful way (on signaling, the transaction will be created from within the interpreter). So, if the function returns, will be in stateless mode. HINT: is_stateful is very difficult to manage from the routing script (script processing can continue in stateful mode); is_stateless is the fastest and less resources consumer (transaction is created only if proxying is done), but there is minimal protection against retransmissions (since replies are send stateless); force_stateful is a good compromise - all signaling is done stateful (retransmission protection) and in the same time, if returning to script, it will be in stateless mode (easy to continue the routing script execution)
This function can be used from REQUEST_ROUTE.
...cpl_run_script("incoming","force_stateful");...cpl_process_register()
Section titled “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 REGISTER is not related to CPL. In other case, the function will send by itself the necessary replies (stateless - using sl), including for errors.
This function can be used from REQUEST_ROUTE.
...if ($rm=="REGISTER") { cpl_process_register();}...cpl_process_register_norpl()
Section titled “cpl_process_register_norpl()”Same as “cpl_process_register” without internally generating the reply. All information (script) is appended to the reply but without sending it out.
Main purpose of this function is to allow integration between CPL and UserLocation services via same REGISTER messages.
This function can be used from REQUEST_ROUTE.
...if ($rm=="REGISTER") { cpl_process_register(); # continue with usrloc part save("location");}...Exported MI Functions
Section titled “Exported MI Functions”cpl_c:load
Section titled “cpl_c:load”Replaces obsolete MI command: LOAD_CPL.
For the given user, loads the XML cpl file, compiles it into binary format and stores both format into database.
Name: cpl_c:load
Parameters:
- username : name of the user
- cpl_filename: file name
MI FIFO Command format:
opensips-cli -x mi cpl_c:load sip:bob@domain.com cpl_script.xmlcpl_c:remove
Section titled “cpl_c:remove”Replaces obsolete MI command: REMOVE_CPL.
For the given user, removes the entire database record (XML cpl and binary cpl); user with empty cpl scripts are not accepted.
Name: cpl_c:remove
Parameters:
- username : name of the user
MI FIFO Command format:
opensips-cli -x mi cpl_c:remove sip:bob@domain.comcpl_c:get
Section titled “cpl_c:get”Replaces obsolete MI command: GET_CPL.
For the given user, returns the CPL script in XML format.
Name: cpl_c:get
Parameters:
- username : name of the user
MI FIFO Command format:
opensips-cli -x mi cpl_c:get sip:bob@domain.comInstallation and Running
Section titled “Installation and Running”Database setup
Section titled “Database setup”Before running OpenSIPS with cpl_c, you have to setup the database table where the module will store the CPL scripts. For that, if the table was not created by the installation script or you choose to install everything by yourself you can use the cpc-create.sql SQL script in the database directories in the opensips/scripts folder as template. Database and table name can be set with module parameters so they can be changed, but the name of the columns must be as they are in the SQL script. You can also find the complete database documentation on the project webpage, https://opensips.org/docs/db/db-schema-devel.html.
Contributors
Section titled “Contributors”By Commit Statistics
Section titled “By Commit Statistics”Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)
| # | Name | DevScore | Commits | Lines++ | Lines— |
|---|---|---|---|---|---|
| 1. | Bogdan-Andrei Iancu (@bogdan-iancu) | 630 | 174 | 24209 | 15201 |
| 2. | Razvan Crainea (@razvancrainea) | 49 | 22 | 126 | 1452 |
| 3. | Liviu Chircu (@liviuchircu) | 20 | 16 | 104 | 151 |
| 4. | Daniel-Constantin Mierla (@miconda) | 18 | 15 | 80 | 73 |
| 5. | Jan Janak (@janakj) | 18 | 10 | 464 | 220 |
| 6. | Henning Westerholt (@henningw) | 16 | 12 | 113 | 137 |
| 7. | Stefan Darius | 15 | 5 | 723 | 146 |
| 8. | Vlad Patrascu (@rvlad-patrascu) | 13 | 8 | 129 | 123 |
| 9. | Andrei Pelinescu-Onciul | 9 | 7 | 107 | 60 |
| 10. | Maksym Sobolyev (@sobomax) | 7 | 5 | 9 | 11 |
All remaining contributors: Jiri Kuthan (@jiriatipteldotorg), Elena-Ramona Modroiu, Alexandra Titoc, Eric Tamme (@etamme), Dan Pascu (@danpascu), Nick Altmann (@nikbyte), Ovidiu Sas (@ovidiusas), Konstantin Bokarius, Jesus Rodrigues, Norman Brandinger (@NormB), Ionel Cerghit (@ionel-cerghit), UnixDev, Andreas Granig, Ken Rice, Peter Lemenkov (@lemenkov), Julián Moreno Patiño, Edson Gellert Schubert.
(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)
(2) including any documentation-related commits, excluding merge commits
(3) ignoring whitespace edits, renamed files and auto-generated files
By Commit Activity
Section titled “By Commit Activity”| # | Name | Commit Activity |
|---|---|---|
| 1. | Stefan Darius | Jun 2026 - Jul 2026 |
| 2. | Razvan Crainea (@razvancrainea) | Sep 2010 - Jun 2026 |
| 3. | Liviu Chircu (@liviuchircu) | Mar 2014 - Apr 2026 |
| 4. | Ken Rice | Sep 2025 - Sep 2025 |
| 5. | Bogdan-Andrei Iancu (@bogdan-iancu) | Aug 2002 - May 2025 |
| 6. | Maksym Sobolyev (@sobomax) | Feb 2017 - Apr 2025 |
| 7. | Alexandra Titoc | Sep 2024 - Sep 2024 |
| 8. | Vlad Patrascu (@rvlad-patrascu) | May 2017 - Apr 2019 |
| 9. | Peter Lemenkov (@lemenkov) | Jun 2018 - Jun 2018 |
| 10. | Eric Tamme (@etamme) | Sep 2017 - Sep 2017 |
All remaining contributors: Julián Moreno Patiño, Nick Altmann (@nikbyte), Ionel Cerghit (@ionel-cerghit), Ovidiu Sas (@ovidiusas), UnixDev, Dan Pascu (@danpascu), Henning Westerholt (@henningw), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Jesus Rodrigues, Elena-Ramona Modroiu, Norman Brandinger (@NormB), Andreas Granig, Andrei Pelinescu-Onciul, Jan Janak (@janakj), Jiri Kuthan (@jiriatipteldotorg).
(1) including any documentation-related commits, excluding merge commits
Documentation
Section titled “Documentation”Contributors
Section titled “Contributors”Last edited by: Razvan Crainea (@razvancrainea), Liviu Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu), Peter Lemenkov (@lemenkov), Nick Altmann (@nikbyte), Bogdan-Andrei Iancu (@bogdan-iancu), Daniel-Constantin Mierla (@miconda), Konstantin Bokarius, Edson Gellert Schubert, Henning Westerholt (@henningw), Jesus Rodrigues, Elena-Ramona Modroiu, Jan Janak (@janakj).
License
Section titled “License”All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0