kemi:performance-tests:5.2.x
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
kemi:performance-tests:5.2.x [2018/11/23 16:05] – [SIPP Scenario] miconda | kemi:performance-tests:5.2.x [2019/01/07 08:05] (current) – [Remarks] miconda | ||
---|---|---|---|
Line 112: | Line 112: | ||
</ | </ | ||
- | Testing command: | + | These users have to be added to Kamailio subscriber table. To add them from the source code tree of Kamailio: |
+ | |||
+ | < | ||
+ | cd utils/ | ||
+ | DBENGINE=MYSQL ./kamdbctl create | ||
+ | DBENGINE=MYSQL ./kamctl add test0@127.0.0.1 test0 | ||
+ | DBENGINE=MYSQL ./kamctl add test1@127.0.0.1 test1 | ||
+ | DBENGINE=MYSQL ./kamctl add test2@127.0.0.1 test2 | ||
+ | DBENGINE=MYSQL ./kamctl add test3@127.0.0.1 test3 | ||
+ | DBENGINE=MYSQL ./kamctl add test4@127.0.0.1 test4 | ||
+ | DBENGINE=MYSQL ./kamctl add test5@127.0.0.1 test5 | ||
+ | DBENGINE=MYSQL ./kamctl add test6@127.0.0.1 test6 | ||
+ | DBENGINE=MYSQL ./kamctl add test7@127.0.0.1 test7 | ||
+ | DBENGINE=MYSQL ./kamctl add test8@127.0.0.1 test8 | ||
+ | DBENGINE=MYSQL ./kamctl add test9@127.0.0.1 test9 | ||
+ | DBENGINE=MYSQL ./kamctl db show subscriber | ||
+ | </ | ||
+ | |||
+ | ===== SIPP Testing | ||
+ | |||
+ | SIPP was run on the same system with Kamailio. The command | ||
< | < | ||
Line 122: | Line 142: | ||
Kamailio was run from source tree, after compilation, | Kamailio was run from source tree, after compilation, | ||
- | Configuration files: TBA | + | Configuration files are presented in the next sections. |
- | Commands: | + | ==== Common Config File ==== |
+ | |||
+ | File: ../ | ||
+ | |||
+ | <code c> | ||
+ | # | ||
+ | # | ||
+ | # Kamailio (OpenSER) SIP Server v5.3 - default configuration script | ||
+ | # - web: http:// | ||
+ | # - git: http:// | ||
+ | # | ||
+ | # Direct your questions about this file to: < | ||
+ | # | ||
+ | # Refer to the Core CookBook at http:// | ||
+ | # for an explanation of possible statements, functions and parameters. | ||
+ | # | ||
+ | # Several features can be enabled using '# | ||
+ | # | ||
+ | # *** To run in debug mode: | ||
+ | # - define WITH_DEBUG | ||
+ | # | ||
+ | # *** To enable mysql: | ||
+ | # - define WITH_MYSQL | ||
+ | # | ||
+ | # *** To enable authentication execute: | ||
+ | # - enable mysql | ||
+ | # - define WITH_AUTH | ||
+ | # - add users using ' | ||
+ | # | ||
+ | # *** To enable IP authentication execute: | ||
+ | # - enable mysql | ||
+ | # - enable authentication | ||
+ | # - define WITH_IPAUTH | ||
+ | # - add IP addresses with group id ' | ||
+ | # | ||
+ | # *** To enable persistent user location execute: | ||
+ | # - enable mysql | ||
+ | # - define WITH_USRLOCDB | ||
+ | # | ||
+ | # *** To enable nat traversal execute: | ||
+ | # - define WITH_NAT | ||
+ | # - install RTPProxy: http:// | ||
+ | # - start RTPProxy: | ||
+ | # rtpproxy -l _your_public_ip_ -s udp: | ||
+ | # - option for NAT SIP OPTIONS keepalives: WITH_NATSIPPING | ||
+ | # | ||
+ | # *** To enable TLS support execute: | ||
+ | # - adjust CFGDIR/ | ||
+ | # - define WITH_TLS | ||
+ | # | ||
+ | # *** To enhance accounting execute: | ||
+ | # - enable mysql | ||
+ | # - define WITH_ACCDB | ||
+ | # - add following columns to database | ||
+ | #!ifdef ACCDB_COMMENT | ||
+ | ALTER TABLE acc ADD COLUMN src_user VARCHAR(64) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE acc ADD COLUMN src_domain VARCHAR(128) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE acc ADD COLUMN src_ip varchar(64) NOT NULL default ''; | ||
+ | ALTER TABLE acc ADD COLUMN dst_ouser VARCHAR(64) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE acc ADD COLUMN dst_user VARCHAR(64) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE acc ADD COLUMN dst_domain VARCHAR(128) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE missed_calls ADD COLUMN src_user VARCHAR(64) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE missed_calls ADD COLUMN src_domain VARCHAR(128) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE missed_calls ADD COLUMN src_ip varchar(64) NOT NULL default ''; | ||
+ | ALTER TABLE missed_calls ADD COLUMN dst_ouser VARCHAR(64) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE missed_calls ADD COLUMN dst_user VARCHAR(64) NOT NULL DEFAULT ''; | ||
+ | ALTER TABLE missed_calls ADD COLUMN dst_domain VARCHAR(128) NOT NULL DEFAULT ''; | ||
+ | #!endif | ||
+ | |||
+ | #!define WITH_MYSQL | ||
+ | #!define WITH_AUTH | ||
+ | #!define WITH_IPAUTH | ||
+ | #!define WITH_USRLOCDB | ||
+ | #!define WITH_NAT | ||
+ | #!define WITH_ANTIFLOOD | ||
+ | #!define WITH_ACCDB | ||
+ | |||
+ | ####### Include Local Config If Exists ######### | ||
+ | import_file " | ||
+ | |||
+ | ####### Defined Values ######### | ||
+ | |||
+ | # *** Value defines - IDs used later in config | ||
+ | #!ifdef WITH_MYSQL | ||
+ | # - database URL - used to connect to database server by modules such | ||
+ | # as: auth_db, acc, usrloc, a.s.o. | ||
+ | #!ifndef DBURL | ||
+ | #!define DBURL " | ||
+ | #!endif | ||
+ | #!endif | ||
+ | #!define MULTIDOMAIN 0 | ||
+ | |||
+ | # - flags | ||
+ | # FLT_ - per transaction (message) flags | ||
+ | # FLB_ - per branch flags | ||
+ | #!define FLT_ACC 1 | ||
+ | #!define FLT_ACCMISSED 2 | ||
+ | #!define FLT_ACCFAILED 3 | ||
+ | #!define FLT_NATS 5 | ||
+ | |||
+ | #!define FLB_NATB 6 | ||
+ | #!define FLB_NATSIPPING 7 | ||
+ | |||
+ | ####### Global Parameters ######### | ||
+ | |||
+ | ### LOG Levels: 3=DBG, 2=INFO, 1=NOTICE, 0=WARN, -1=ERR | ||
+ | #!ifdef WITH_DEBUG | ||
+ | debug=4 | ||
+ | log_stderror=yes | ||
+ | #!else | ||
+ | debug=2 | ||
+ | log_stderror=no | ||
+ | #!endif | ||
+ | |||
+ | memdbg=5 | ||
+ | memlog=5 | ||
+ | |||
+ | #!ifdef WITH_CFGLUA | ||
+ | log_prefix=" | ||
+ | #!else | ||
+ | #!ifdef WITH_CFGPYTHON | ||
+ | log_prefix=" | ||
+ | #!else | ||
+ | log_prefix=" | ||
+ | #!endif | ||
+ | #!endif | ||
+ | |||
+ | latency_cfg_log=2 | ||
+ | |||
+ | log_facility=LOG_LOCAL0 | ||
+ | log_prefix=" | ||
+ | |||
+ | fork=yes | ||
+ | children=16 | ||
+ | |||
+ | /* uncomment the next line to disable TCP (default on) */ | ||
+ | # | ||
+ | |||
+ | /* uncomment the next line to disable the auto discovery of local aliases | ||
+ | * based on reverse DNS on IPs (default on) */ | ||
+ | # | ||
+ | |||
+ | /* add local domain aliases */ | ||
+ | # | ||
+ | |||
+ | /* uncomment and configure the following line if you want Kamailio to | ||
+ | * bind on a specific interface/ | ||
+ | # | ||
+ | |||
+ | /* port to listen to | ||
+ | * - can be specified more than once if needed to listen on many ports */ | ||
+ | port=5060 | ||
+ | |||
+ | #!ifdef WITH_TLS | ||
+ | enable_tls=yes | ||
+ | #!endif | ||
+ | |||
+ | # life time of TCP connection when there is no traffic | ||
+ | # - a bit higher than registration expires to cope with UA behind NAT | ||
+ | tcp_connection_lifetime=3605 | ||
+ | |||
+ | ####### Modules Section ######## | ||
+ | |||
+ | /* set paths to location of modules (to sources or installation folders) */ | ||
+ | # mpath="/ | ||
+ | |||
+ | #!ifdef WITH_MYSQL | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | |||
+ | #!ifdef WITH_AUTH | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | #!ifdef WITH_IPAUTH | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_NAT | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_TLS | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_DEBUG | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_ANTIFLOOD | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_CFGLUA | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_CFGPYTHON | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_CFGJSDT | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_CFGSQLANG | ||
+ | loadmodule " | ||
+ | #!endif | ||
+ | |||
+ | # ----------------- setting module-specific parameters --------------- | ||
+ | |||
+ | # ----- jsonrpcs params ----- | ||
+ | modparam(" | ||
+ | /* set the path to RPC fifo control file */ | ||
+ | # modparam(" | ||
+ | /* set the path to RPC unix socket control file */ | ||
+ | # modparam(" | ||
+ | |||
+ | # ----- ctl params ----- | ||
+ | # | ||
+ | |||
+ | # ----- tm params ----- | ||
+ | # auto-discard branches from previous serial forking leg | ||
+ | modparam(" | ||
+ | # default retransmission timeout: 30sec | ||
+ | modparam(" | ||
+ | # default invite retransmission timeout after 1xx: 120sec | ||
+ | modparam(" | ||
+ | |||
+ | |||
+ | # ----- rr params ----- | ||
+ | # add value to ;lr param to cope with most of the UAs | ||
+ | modparam(" | ||
+ | # do not append from tag to the RR (no need for this script) | ||
+ | modparam(" | ||
+ | |||
+ | |||
+ | # ----- registrar params ----- | ||
+ | modparam(" | ||
+ | /* uncomment the next line to disable parallel forking via location */ | ||
+ | # modparam(" | ||
+ | /* uncomment the next line not to allow more than 10 contacts per AOR */ | ||
+ | # | ||
+ | # max value for expires of registrations | ||
+ | modparam(" | ||
+ | # set it to 1 to enable GRUU | ||
+ | modparam(" | ||
+ | |||
+ | |||
+ | # ----- acc params ----- | ||
+ | /* what special events should be accounted ? */ | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | /* by default we do not adjust the direct of the sequential requests. | ||
+ | * if you enable this parameter, be sure the enable " | ||
+ | * in " | ||
+ | modparam(" | ||
+ | /* account triggers (flags) */ | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | " | ||
+ | " | ||
+ | modparam(" | ||
+ | /* enhanced DB accounting */ | ||
+ | #!ifdef WITH_ACCDB | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | " | ||
+ | " | ||
+ | #!endif | ||
+ | |||
+ | |||
+ | # ----- usrloc params ----- | ||
+ | /* enable DB persistency for location entries */ | ||
+ | modparam(" | ||
+ | #!ifdef WITH_USRLOCDB | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | #!endif | ||
+ | |||
+ | |||
+ | # ----- auth_db params ----- | ||
+ | #!ifdef WITH_AUTH | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | |||
+ | # ----- permissions params ----- | ||
+ | #!ifdef WITH_IPAUTH | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | #!endif | ||
+ | |||
+ | #!endif | ||
+ | |||
+ | |||
+ | #!ifdef WITH_NAT | ||
+ | # ----- rtpproxy params ----- | ||
+ | modparam(" | ||
+ | |||
+ | # ----- nathelper params ----- | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | |||
+ | # params needed for NAT traversal in other modules | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | #!endif | ||
+ | |||
+ | |||
+ | #!ifdef WITH_TLS | ||
+ | # ----- tls params ----- | ||
+ | modparam(" | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_DEBUG | ||
+ | # ----- debugger params ----- | ||
+ | modparam(" | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_ANTIFLOOD | ||
+ | # ----- pike params ----- | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | |||
+ | # ----- htable params ----- | ||
+ | # ip ban htable with autoexpire after 5 minutes | ||
+ | modparam(" | ||
+ | #!endif | ||
+ | |||
+ | #!ifdef WITH_CFGPYTHON | ||
+ | modparam(" | ||
+ | cfgengine " | ||
+ | #!else | ||
+ | |||
+ | #!ifdef WITH_CFGLUA | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | cfgengine " | ||
+ | #!else | ||
+ | |||
+ | #!ifdef WITH_CFGJSDT | ||
+ | modparam(" | ||
+ | cfgengine " | ||
+ | #!else | ||
+ | #!ifdef WITH_CFGSQLANG | ||
+ | modparam(" | ||
+ | cfgengine " | ||
+ | #!else | ||
+ | cfgengine " | ||
+ | include_file " | ||
+ | #!endif | ||
+ | |||
+ | #!endif | ||
+ | |||
+ | #!endif | ||
+ | |||
+ | #!endif | ||
+ | |||
+ | </ | ||
+ | |||
+ | ==== Native Scripting Routing Blocks ==== | ||
+ | |||
+ | File: ../ | ||
+ | |||
+ | <code c> | ||
+ | ####### Routing Logic ######## | ||
+ | |||
+ | |||
+ | # Main SIP request routing logic | ||
+ | # - processing of any incoming SIP request starts with this route | ||
+ | # - note: this is the same as route { ... } | ||
+ | request_route { | ||
+ | |||
+ | # per request initial checks | ||
+ | route(REQINIT); | ||
+ | |||
+ | sl_send_reply(" | ||
+ | |||
+ | # NAT detection | ||
+ | route(NATDETECT); | ||
+ | |||
+ | # CANCEL processing | ||
+ | if (is_method(" | ||
+ | if (t_check_trans()) { | ||
+ | route(RELAY); | ||
+ | } | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | # handle requests within SIP dialogs | ||
+ | route(WITHINDLG); | ||
+ | |||
+ | ### only initial requests (no To tag) | ||
+ | |||
+ | # handle retransmissions | ||
+ | if(t_precheck_trans()) { | ||
+ | t_check_trans(); | ||
+ | exit; | ||
+ | } | ||
+ | t_check_trans(); | ||
+ | |||
+ | # authentication | ||
+ | route(AUTH); | ||
+ | |||
+ | # record routing for dialog forming requests (in case they are routed) | ||
+ | # - remove preloaded route headers | ||
+ | remove_hf(" | ||
+ | if (is_method(" | ||
+ | record_route(); | ||
+ | |||
+ | # account only INVITEs | ||
+ | if (is_method(" | ||
+ | setflag(FLT_ACC); | ||
+ | } | ||
+ | |||
+ | # dispatch requests to foreign domains | ||
+ | route(SIPOUT); | ||
+ | |||
+ | ### requests for my local domains | ||
+ | |||
+ | # handle registrations | ||
+ | route(REGISTRAR); | ||
+ | |||
+ | if ($rU==$null) { | ||
+ | # request with no Username in RURI | ||
+ | sl_send_reply(" | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | # user location service | ||
+ | route(LOCATION); | ||
+ | } | ||
+ | |||
+ | |||
+ | route[RELAY] { | ||
+ | # enable additional event routes for forwarded requests | ||
+ | # - serial forking, RTP relaying handling, a.s.o. | ||
+ | if (is_method(" | ||
+ | if(!t_is_set(" | ||
+ | } | ||
+ | if (is_method(" | ||
+ | if(!t_is_set(" | ||
+ | } | ||
+ | if (is_method(" | ||
+ | if(!t_is_set(" | ||
+ | } | ||
+ | |||
+ | if (!t_relay()) { | ||
+ | sl_reply_error(); | ||
+ | } | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | # Per SIP request initial checks | ||
+ | route[REQINIT] { | ||
+ | #!ifdef WITH_ANTIFLOOD | ||
+ | # flood dection from same IP and traffic ban for a while | ||
+ | # be sure you exclude checking trusted peers, such as pstn gateways | ||
+ | # - local host excluded (e.g., loop to self) | ||
+ | if(src_ip!=myself) { | ||
+ | if($sht(ipban=> | ||
+ | # ip is already blocked | ||
+ | xdbg(" | ||
+ | exit; | ||
+ | } | ||
+ | if (!pike_check_req()) { | ||
+ | xlog(" | ||
+ | $sht(ipban=> | ||
+ | exit; | ||
+ | } | ||
+ | } | ||
+ | if($ua =~ " | ||
+ | sl_send_reply(" | ||
+ | exit; | ||
+ | } | ||
+ | #!endif | ||
+ | |||
+ | if (!mf_process_maxfwd_header(" | ||
+ | sl_send_reply(" | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | if(is_method(" | ||
+ | sl_send_reply(" | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | if(!sanity_check(" | ||
+ | xlog(" | ||
+ | exit; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | # Handle requests within SIP dialogs | ||
+ | route[WITHINDLG] { | ||
+ | if (!has_totag()) return; | ||
+ | |||
+ | # sequential request withing a dialog should | ||
+ | # take the path determined by record-routing | ||
+ | if (loose_route()) { | ||
+ | route(DLGURI); | ||
+ | if (is_method(" | ||
+ | setflag(FLT_ACC); | ||
+ | setflag(FLT_ACCFAILED); | ||
+ | } | ||
+ | else if ( is_method(" | ||
+ | # ACK is forwarded statelessly | ||
+ | route(NATMANAGE); | ||
+ | } | ||
+ | else if ( is_method(" | ||
+ | # Add Record-Route for in-dialog NOTIFY as per RFC 6665. | ||
+ | record_route(); | ||
+ | } | ||
+ | route(RELAY); | ||
+ | exit; | ||
+ | } | ||
+ | if ( is_method(" | ||
+ | if ( t_check_trans() ) { | ||
+ | # no loose-route, | ||
+ | # must be an ACK after a 487 | ||
+ | # or e.g. 404 from upstream server | ||
+ | route(RELAY); | ||
+ | exit; | ||
+ | } else { | ||
+ | # ACK without matching transaction ... ignore and discard | ||
+ | exit; | ||
+ | } | ||
+ | } | ||
+ | sl_send_reply(" | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | # Handle SIP registrations | ||
+ | route[REGISTRAR] { | ||
+ | if (!is_method(" | ||
+ | if(isflagset(FLT_NATS)) { | ||
+ | setbflag(FLB_NATB); | ||
+ | #!ifdef WITH_NATSIPPING | ||
+ | # do SIP NAT pinging | ||
+ | setbflag(FLB_NATSIPPING); | ||
+ | #!endif | ||
+ | } | ||
+ | if (!save(" | ||
+ | sl_reply_error(); | ||
+ | |||
+ | exit; | ||
+ | } | ||
+ | |||
+ | # User location service | ||
+ | route[LOCATION] { | ||
+ | if (!lookup(" | ||
+ | $var(rc) = $rc; | ||
+ | t_newtran(); | ||
+ | switch ($var(rc)) { | ||
+ | case -1: | ||
+ | case -3: | ||
+ | send_reply(" | ||
+ | exit; | ||
+ | case -2: | ||
+ | send_reply(" | ||
+ | exit; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | # when routing via usrloc, log the missed calls also | ||
+ | if (is_method(" | ||
+ | setflag(FLT_ACCMISSED); | ||
+ | } | ||
+ | |||
+ | route(RELAY); | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | |||
+ | # IP authorization and user uthentication | ||
+ | route[AUTH] { | ||
+ | #!ifdef WITH_AUTH | ||
+ | |||
+ | #!ifdef WITH_IPAUTH | ||
+ | if((!is_method(" | ||
+ | # source IP allowed | ||
+ | return; | ||
+ | } | ||
+ | #!endif | ||
+ | |||
+ | if (is_method(" | ||
+ | # authenticate requests | ||
+ | if (!auth_check(" | ||
+ | auth_challenge(" | ||
+ | exit; | ||
+ | } | ||
+ | # user authenticated - remove auth header | ||
+ | if(!is_method(" | ||
+ | consume_credentials(); | ||
+ | } | ||
+ | # if caller is not local subscriber, then check if it calls | ||
+ | # a local destination, | ||
+ | if (from_uri!=myself && uri!=myself) { | ||
+ | sl_send_reply(" | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | #!endif | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | # Caller NAT detection | ||
+ | route[NATDETECT] { | ||
+ | #!ifdef WITH_NAT | ||
+ | force_rport(); | ||
+ | if (nat_uac_test(" | ||
+ | if (is_method(" | ||
+ | fix_nated_register(); | ||
+ | } else { | ||
+ | if(is_first_hop()) | ||
+ | set_contact_alias(); | ||
+ | } | ||
+ | setflag(FLT_NATS); | ||
+ | } | ||
+ | #!endif | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | # RTPProxy control | ||
+ | route[NATMANAGE] { | ||
+ | #!ifdef WITH_NAT | ||
+ | if (is_request()) { | ||
+ | if(has_totag()) { | ||
+ | if(check_route_param(" | ||
+ | setbflag(FLB_NATB); | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | if (!(isflagset(FLT_NATS) || isbflagset(FLB_NATB))) | ||
+ | return; | ||
+ | |||
+ | rtpproxy_manage(" | ||
+ | |||
+ | if (is_request()) { | ||
+ | if (!has_totag()) { | ||
+ | if(t_is_branch_route()) { | ||
+ | add_rr_param("; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | if (is_reply()) { | ||
+ | if(isbflagset(FLB_NATB)) { | ||
+ | set_contact_alias(); | ||
+ | } | ||
+ | } | ||
+ | #!endif | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | # URI update for dialog requests | ||
+ | route[DLGURI] { | ||
+ | #!ifdef WITH_NAT | ||
+ | if(!isdsturiset()) { | ||
+ | handle_ruri_alias(); | ||
+ | } | ||
+ | #!endif | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | # Routing to foreign domains | ||
+ | route[SIPOUT] { | ||
+ | if (uri==myself) return; | ||
+ | |||
+ | append_hf(" | ||
+ | route(RELAY); | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | # Manage outgoing branches | ||
+ | branch_route[MANAGE_BRANCH] { | ||
+ | xdbg(" | ||
+ | route(NATMANAGE); | ||
+ | } | ||
+ | |||
+ | # Manage incoming replies | ||
+ | onreply_route[MANAGE_REPLY] { | ||
+ | xdbg(" | ||
+ | if(status=~" | ||
+ | route(NATMANAGE); | ||
+ | } | ||
+ | |||
+ | # Manage failure routing cases | ||
+ | failure_route[MANAGE_FAILURE] { | ||
+ | route(NATMANAGE); | ||
+ | |||
+ | if (t_is_canceled()) { | ||
+ | exit; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | |||
+ | ==== Lua Scripting Routing Functions ==== | ||
+ | |||
+ | File: ../ | ||
+ | |||
+ | <code lua> | ||
+ | -- Kamailio - equivalent of routing blocks in Lua | ||
+ | -- | ||
+ | -- KSR - the new dynamic object exporting Kamailio functions (kemi) | ||
+ | -- sr - the old static object exporting Kamailio functions | ||
+ | -- | ||
+ | |||
+ | -- Relevant remarks: | ||
+ | -- * do not execute Lua ' | ||
+ | -- embedded in Kamailio, resulting in killing Kamailio | ||
+ | -- * use KSR.x.exit() to trigger the stop of executing the script | ||
+ | -- * KSR.drop() is only marking the SIP message for drop, but doesn' | ||
+ | -- the execution of the script. Use KSR.x.exit() after it or KSR.x.drop() | ||
+ | -- | ||
+ | |||
+ | |||
+ | -- global variables corresponding to defined values (e.g., flags) in kamailio.cfg | ||
+ | FLT_ACC=1 | ||
+ | FLT_ACCMISSED=2 | ||
+ | FLT_ACCFAILED=3 | ||
+ | FLT_NATS=5 | ||
+ | |||
+ | FLB_NATB=6 | ||
+ | FLB_NATSIPPING=7 | ||
+ | |||
+ | -- global variables with common SIP attributes exposed by Kamailio | ||
+ | K_si = ""; | ||
+ | K_su = ""; | ||
+ | K_fu = ""; | ||
+ | K_fd = ""; | ||
+ | K_rm = ""; | ||
+ | K_ua = ""; | ||
+ | |||
+ | -- SIP request routing | ||
+ | -- equivalent of request_route{} | ||
+ | function ksr_request_route() | ||
+ | |||
+ | ksr_set_sipvars(); | ||
+ | -- per request initial checks | ||
+ | ksr_route_reqinit(); | ||
+ | |||
+ | KSR.sl.send_reply(" | ||
+ | |||
+ | -- NAT detection | ||
+ | ksr_route_natdetect(); | ||
+ | |||
+ | -- CANCEL processing | ||
+ | if KSR.is_CANCEL() then | ||
+ | if KSR.tm.t_check_trans()> | ||
+ | ksr_route_relay(); | ||
+ | end | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- handle requests within SIP dialogs | ||
+ | ksr_route_withindlg(); | ||
+ | |||
+ | -- -- only initial requests (no To tag) | ||
+ | |||
+ | -- handle retransmissions | ||
+ | if KSR.tmx.t_precheck_trans()> | ||
+ | KSR.tm.t_check_trans(); | ||
+ | return 1; | ||
+ | end | ||
+ | if KSR.tm.t_check_trans()==0 then return 1 end | ||
+ | |||
+ | -- authentication | ||
+ | ksr_route_auth(); | ||
+ | |||
+ | -- record routing for dialog forming requests (in case they are routed) | ||
+ | -- - remove preloaded route headers | ||
+ | KSR.hdr.remove(" | ||
+ | -- if INVITE or SUBSCRIBE | ||
+ | if KSR.is_method_in(" | ||
+ | KSR.rr.record_route(); | ||
+ | end | ||
+ | |||
+ | -- account only INVITEs | ||
+ | if KSR.is_INVITE() then | ||
+ | KSR.setflag(FLT_ACC); | ||
+ | end | ||
+ | |||
+ | -- dispatch requests to foreign domains | ||
+ | ksr_route_sipout(); | ||
+ | |||
+ | -- -- requests for my local domains | ||
+ | |||
+ | -- handle registrations | ||
+ | ksr_route_registrar(); | ||
+ | |||
+ | if KSR.corex.has_ruri_user() < 0 then | ||
+ | -- request with no Username in RURI | ||
+ | KSR.sl.sl_send_reply(484," | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- user location service | ||
+ | ksr_route_location(); | ||
+ | |||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- wrapper around tm relay function | ||
+ | function ksr_route_relay() | ||
+ | -- enable additional event routes for forwarded requests | ||
+ | -- - serial forking, RTP relaying handling, a.s.o. | ||
+ | if KSR.is_method_in(" | ||
+ | if KSR.tm.t_is_set(" | ||
+ | KSR.tm.t_on_branch(" | ||
+ | end | ||
+ | end | ||
+ | if KSR.is_method_in(" | ||
+ | if KSR.tm.t_is_set(" | ||
+ | KSR.tm.t_on_reply(" | ||
+ | end | ||
+ | end | ||
+ | |||
+ | if KSR.is_INVITE() then | ||
+ | if KSR.tm.t_is_set(" | ||
+ | KSR.tm.t_on_failure(" | ||
+ | end | ||
+ | end | ||
+ | |||
+ | if KSR.tm.t_relay()< | ||
+ | KSR.sl.sl_reply_error(); | ||
+ | end | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | |||
+ | -- Per SIP request initial checks | ||
+ | function ksr_route_reqinit() | ||
+ | if not KSR.is_myself_srcip() then | ||
+ | if KSR.htable.sht_has_name(" | ||
+ | -- ip is already blocked | ||
+ | KSR.dbg(" | ||
+ | .. " from " .. K_fu .. " (SRC:" .. K_su .. " | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | if KSR.pike.pike_check_req()< | ||
+ | KSR.err(" | ||
+ | .. " from " .. K_fu .. " (SRC:" .. K_su .. " | ||
+ | KSR.htable.sht_seti(" | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | end | ||
+ | if KSR.corex.has_user_agent() > 0 then | ||
+ | if string.find(K_ua, | ||
+ | or string.find(K_ua, | ||
+ | KSR.sl.sl_send_reply(200, | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | end | ||
+ | |||
+ | if KSR.maxfwd.process_maxfwd(10) < 0 then | ||
+ | KSR.sl.sl_send_reply(483," | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | if KSR.is_OPTIONS() | ||
+ | and KSR.is_myself_ruri() | ||
+ | and KSR.corex.has_ruri_user() < 0 then | ||
+ | KSR.sl.sl_send_reply(200," | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | if KSR.sanity.sanity_check(1511, | ||
+ | KSR.err(" | ||
+ | .. K_su .." | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | end | ||
+ | |||
+ | |||
+ | -- Handle requests within SIP dialogs | ||
+ | function ksr_route_withindlg() | ||
+ | if KSR.siputils.has_totag()< | ||
+ | |||
+ | -- sequential request withing a dialog should | ||
+ | -- take the path determined by record-routing | ||
+ | if KSR.rr.loose_route()> | ||
+ | ksr_route_dlguri(); | ||
+ | if KSR.is_BYE() then | ||
+ | KSR.setflag(FLT_ACC); | ||
+ | KSR.setflag(FLT_ACCFAILED); | ||
+ | elseif KSR.is_ACK() then | ||
+ | -- ACK is forwarded statelessly | ||
+ | ksr_route_natmanage(); | ||
+ | elseif | ||
+ | -- Add Record-Route for in-dialog NOTIFY as per RFC 6665. | ||
+ | KSR.rr.record_route(); | ||
+ | end | ||
+ | ksr_route_relay(); | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | if KSR.is_ACK() then | ||
+ | if KSR.tm.t_check_trans() >0 then | ||
+ | -- no loose-route, | ||
+ | -- must be an ACK after a 487 | ||
+ | -- or e.g. 404 from upstream server | ||
+ | ksr_route_relay(); | ||
+ | KSR.x.exit(); | ||
+ | else | ||
+ | -- ACK without matching transaction ... ignore and discard | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | end | ||
+ | KSR.sl.sl_send_reply(404, | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | -- Handle SIP registrations | ||
+ | function ksr_route_registrar() | ||
+ | if not KSR.is_REGISTER() then return 1; end | ||
+ | if KSR.isflagset(FLT_NATS) then | ||
+ | KSR.setbflag(FLB_NATB); | ||
+ | -- do SIP NAT pinging | ||
+ | KSR.setbflag(FLB_NATSIPPING); | ||
+ | end | ||
+ | if KSR.registrar.save(" | ||
+ | KSR.sl.sl_reply_error(); | ||
+ | end | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | -- User location service | ||
+ | function ksr_route_location() | ||
+ | local rc = KSR.registrar.lookup(" | ||
+ | if rc<0 then | ||
+ | KSR.tm.t_newtran(); | ||
+ | if rc==-1 or rc==-3 then | ||
+ | KSR.sl.send_reply(" | ||
+ | KSR.x.exit(); | ||
+ | elseif rc==-2 then | ||
+ | KSR.sl.send_reply(" | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | end | ||
+ | |||
+ | -- when routing via usrloc, log the missed calls also | ||
+ | if KSR.is_INVITE() then | ||
+ | KSR.setflag(FLT_ACCMISSED); | ||
+ | end | ||
+ | |||
+ | ksr_route_relay(); | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | |||
+ | -- IP authorization and user uthentication | ||
+ | function ksr_route_auth() | ||
+ | |||
+ | if not KSR.is_REGISTER() then | ||
+ | if KSR.permissions.allow_source_address(1)> | ||
+ | -- source IP allowed | ||
+ | return 1; | ||
+ | end | ||
+ | end | ||
+ | |||
+ | if KSR.is_REGISTER() or KSR.is_myself_furi() then | ||
+ | -- authenticate requests | ||
+ | if KSR.auth_db.auth_check(K_fd, | ||
+ | KSR.auth.auth_challenge(K_fd, | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | -- user authenticated - remove auth header | ||
+ | if not KSR.is_method_in(" | ||
+ | KSR.auth.consume_credentials(); | ||
+ | end | ||
+ | end | ||
+ | |||
+ | -- if caller is not local subscriber, then check if it calls | ||
+ | -- a local destination, | ||
+ | if (not KSR.is_myself_furi()) | ||
+ | and (not KSR.is_myself_ruri()) then | ||
+ | KSR.sl.sl_send_reply(403," | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- Caller NAT detection | ||
+ | function ksr_route_natdetect() | ||
+ | KSR.force_rport(); | ||
+ | if KSR.nathelper.nat_uac_test(19)> | ||
+ | if KSR.is_REGISTER() then | ||
+ | KSR.nathelper.fix_nated_register(); | ||
+ | elseif KSR.siputils.is_first_hop()> | ||
+ | KSR.nathelper.set_contact_alias(); | ||
+ | end | ||
+ | KSR.setflag(FLT_NATS); | ||
+ | end | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- RTPProxy control | ||
+ | function ksr_route_natmanage() | ||
+ | if KSR.siputils.is_request()> | ||
+ | if KSR.siputils.has_totag()> | ||
+ | if KSR.rr.check_route_param(" | ||
+ | KSR.setbflag(FLB_NATB); | ||
+ | end | ||
+ | end | ||
+ | end | ||
+ | if (not (KSR.isflagset(FLT_NATS) or KSR.isbflagset(FLB_NATB))) then | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | KSR.rtpproxy.rtpproxy_manage(" | ||
+ | |||
+ | if KSR.siputils.is_request()> | ||
+ | if KSR.siputils.has_totag()< | ||
+ | if KSR.tmx.t_is_branch_route()> | ||
+ | KSR.rr.add_rr_param("; | ||
+ | end | ||
+ | end | ||
+ | end | ||
+ | if KSR.siputils.is_reply()> | ||
+ | if KSR.isbflagset(FLB_NATB) then | ||
+ | KSR.nathelper.set_contact_alias(); | ||
+ | end | ||
+ | end | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- URI update for dialog requests | ||
+ | function ksr_route_dlguri() | ||
+ | if not KSR.isdsturiset() then | ||
+ | KSR.nathelper.handle_ruri_alias(); | ||
+ | end | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- Routing to foreign domains | ||
+ | function ksr_route_sipout() | ||
+ | if KSR.is_myself_ruri() then return 1; end | ||
+ | |||
+ | KSR.hdr.append(" | ||
+ | ksr_route_relay(); | ||
+ | KSR.x.exit(); | ||
+ | end | ||
+ | |||
+ | -- Manage outgoing branches | ||
+ | -- equivalent of branch_route[...]{} | ||
+ | function ksr_branch_manage() | ||
+ | KSR.dbg(" | ||
+ | .. "] to ".. KSR.pv.get(" | ||
+ | ksr_route_natmanage(); | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- Manage incoming replies | ||
+ | -- equivalent of onreply_route[...]{} | ||
+ | function ksr_onreply_manage() | ||
+ | KSR.dbg(" | ||
+ | local scode = KSR.pv.get(" | ||
+ | if scode> | ||
+ | ksr_route_natmanage(); | ||
+ | end | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- Manage failure routing cases | ||
+ | -- equivalent of failure_route[...]{} | ||
+ | function ksr_failure_manage() | ||
+ | ksr_route_natmanage(); | ||
+ | |||
+ | if KSR.tm.t_is_canceled()> | ||
+ | return 1; | ||
+ | end | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- SIP response handling | ||
+ | -- equivalent of reply_route{} | ||
+ | function ksr_reply_route() | ||
+ | KSR.info(" | ||
+ | return 1; | ||
+ | end | ||
+ | |||
+ | -- set common SIP attributes in global vars | ||
+ | function ksr_set_sipvars() | ||
+ | K_si = KSR.pv.gete(" | ||
+ | K_su = KSR.pv.gete(" | ||
+ | K_fu = KSR.pv.gete(" | ||
+ | K_fd = KSR.pv.gete(" | ||
+ | K_rm = KSR.pv.gete(" | ||
+ | K_ua = KSR.pv.gete(" | ||
+ | end | ||
+ | |||
+ | </ | ||
+ | |||
+ | ==== Python Scripting Routing Functions ==== | ||
+ | |||
+ | File: ../ | ||
+ | |||
+ | <code python> | ||
+ | ## Kamailio - equivalent of routing blocks in Python | ||
+ | ## | ||
+ | ## KSR - the new dynamic object exporting Kamailio functions | ||
+ | ## Router - the old object exporting Kamailio functions | ||
+ | ## | ||
+ | |||
+ | ## Relevant remarks: | ||
+ | ## * return code -255 is used to propagate the ' | ||
+ | ## parent route block function. The alternative is to use the native | ||
+ | ## Python function os.exit() (or exit()) -- it throws an exception that | ||
+ | ## is caught by Kamailio and previents the stop of the interpreter. | ||
+ | |||
+ | |||
+ | import sys | ||
+ | import Router.Logger as Logger | ||
+ | import KSR as KSR | ||
+ | |||
+ | # global variables corresponding to defined values (e.g., flags) in kamailio.cfg | ||
+ | FLT_ACC=1 | ||
+ | FLT_ACCMISSED=2 | ||
+ | FLT_ACCFAILED=3 | ||
+ | FLT_NATS=5 | ||
+ | |||
+ | FLB_NATB=6 | ||
+ | FLB_NATSIPPING=7 | ||
+ | |||
+ | |||
+ | # global function to instantiate a kamailio class object | ||
+ | # -- executed when kamailio app_python module is initialized | ||
+ | def mod_init(): | ||
+ | KSR.info(" | ||
+ | # dumpObj(KSR); | ||
+ | return kamailio(); | ||
+ | |||
+ | |||
+ | # -- {start defining kamailio class} | ||
+ | class kamailio: | ||
+ | def __init__(self): | ||
+ | KSR.info(' | ||
+ | |||
+ | |||
+ | # executed when kamailio child processes are initialized | ||
+ | def child_init(self, | ||
+ | KSR.info(' | ||
+ | return 0; | ||
+ | |||
+ | |||
+ | # SIP request routing | ||
+ | # -- equivalent of request_route{} | ||
+ | def ksr_request_route(self, | ||
+ | # KSR.info(" | ||
+ | # KSR.info(" | ||
+ | |||
+ | # per request initial checks | ||
+ | if self.ksr_route_reqinit(msg)==-255 : | ||
+ | return 1; | ||
+ | |||
+ | # NAT detection | ||
+ | if self.ksr_route_natdetect(msg)==-255 : | ||
+ | return 1; | ||
+ | |||
+ | # CANCEL processing | ||
+ | if KSR.is_CANCEL() : | ||
+ | if KSR.tm.t_check_trans()> | ||
+ | self.ksr_route_relay(msg); | ||
+ | return 1; | ||
+ | |||
+ | # handle requests within SIP dialogs | ||
+ | if self.ksr_route_withindlg(msg)==-255 : | ||
+ | return 1; | ||
+ | |||
+ | # -- only initial requests (no To tag) | ||
+ | |||
+ | # handle retransmissions | ||
+ | if KSR.tmx.t_precheck_trans()> | ||
+ | KSR.tm.t_check_trans(); | ||
+ | return 1; | ||
+ | |||
+ | if KSR.tm.t_check_trans()==0 : | ||
+ | return 1; | ||
+ | |||
+ | # authentication | ||
+ | if self.ksr_route_auth(msg)==-255 : | ||
+ | return 1 | ||
+ | |||
+ | # record routing for dialog forming requests (in case they are routed) | ||
+ | # - remove preloaded route headers | ||
+ | KSR.hdr.remove(" | ||
+ | if KSR.is_method_in(" | ||
+ | KSR.rr.record_route(); | ||
+ | |||
+ | |||
+ | # account only INVITEs | ||
+ | if KSR.pv.get(" | ||
+ | KSR.setflag(FLT_ACC); | ||
+ | |||
+ | |||
+ | # dispatch requests to foreign domains | ||
+ | if self.ksr_route_sipout(msg)==-255 : | ||
+ | return 1; | ||
+ | |||
+ | # # requests for my local domains | ||
+ | |||
+ | # handle registrations | ||
+ | if self.ksr_route_registrar(msg)==-255 : | ||
+ | return 1; | ||
+ | |||
+ | if KSR.corex.has_ruri_user() < 0 : | ||
+ | # request with no Username in RURI | ||
+ | KSR.sl.sl_send_reply(484," | ||
+ | return 1; | ||
+ | |||
+ | |||
+ | # user location service | ||
+ | self.ksr_route_location(msg); | ||
+ | |||
+ | return 1; | ||
+ | |||
+ | |||
+ | # wrapper around tm relay function | ||
+ | def ksr_route_relay(self, | ||
+ | # enable additional event routes for forwarded requests | ||
+ | # - serial forking, RTP relaying handling, a.s.o. | ||
+ | if KSR.is_method_in(" | ||
+ | if KSR.tm.t_is_set(" | ||
+ | KSR.tm.t_on_branch(" | ||
+ | |||
+ | if KSR.is_method_in(" | ||
+ | if KSR.tm.t_is_set(" | ||
+ | KSR.tm.t_on_reply(" | ||
+ | |||
+ | if KSR.is_INVITE() : | ||
+ | if KSR.tm.t_is_set(" | ||
+ | KSR.tm.t_on_failure(" | ||
+ | |||
+ | if KSR.tm.t_relay()< | ||
+ | KSR.sl.sl_reply_error(); | ||
+ | |||
+ | return -255; | ||
+ | |||
+ | |||
+ | # Per SIP request initial checks | ||
+ | def ksr_route_reqinit(self, | ||
+ | if not KSR.is_myself(KSR.pv.get(" | ||
+ | if not KSR.pv.is_null(" | ||
+ | # ip is already blocked | ||
+ | KSR.dbg(" | ||
+ | + " from " + KSR.pv.get(" | ||
+ | + KSR.pv.get(" | ||
+ | return -255; | ||
+ | |||
+ | if KSR.pike.pike_check_req()< | ||
+ | KSR.err(" | ||
+ | + " from " + KSR.pv.get(" | ||
+ | + KSR.pv.get(" | ||
+ | KSR.pv.seti(" | ||
+ | return -255; | ||
+ | |||
+ | if KSR.corex.has_user_agent() > 0 : | ||
+ | ua = KSR.pv.gete(" | ||
+ | if (ua.find(" | ||
+ | or ua.find(" | ||
+ | KSR.sl.sl_send_reply(200, | ||
+ | return -255; | ||
+ | |||
+ | if KSR.maxfwd.process_maxfwd(10) < 0 : | ||
+ | KSR.sl.sl_send_reply(483," | ||
+ | return -255; | ||
+ | |||
+ | if (KSR.is_OPTIONS() | ||
+ | and KSR.is_myself_ruri() | ||
+ | and KSR.corex.has_ruri_user() < 0) : | ||
+ | KSR.sl.sl_send_reply(200," | ||
+ | return -255; | ||
+ | |||
+ | if KSR.sanity.sanity_check(1511, | ||
+ | KSR.err(" | ||
+ | + KSR.pv.get(" | ||
+ | return -255; | ||
+ | |||
+ | |||
+ | # Handle requests within SIP dialogs | ||
+ | def ksr_route_withindlg(self, | ||
+ | if KSR.siputils.has_totag()< | ||
+ | return 1; | ||
+ | |||
+ | # sequential request withing a dialog should | ||
+ | # take the path determined by record-routing | ||
+ | if KSR.rr.loose_route()> | ||
+ | if self.ksr_route_dlguri(msg)==-255 : | ||
+ | return -255; | ||
+ | if KSR.is_BYE() : | ||
+ | # do accounting ... | ||
+ | KSR.setflag(FLT_ACC); | ||
+ | # ... even if the transaction fails | ||
+ | KSR.setflag(FLT_ACCFAILED); | ||
+ | elif KSR.is_ACK() : | ||
+ | # ACK is forwarded statelessly | ||
+ | if self.ksr_route_natmanage(msg)==-255 : | ||
+ | return -255; | ||
+ | elif KSR.is_NOTIFY() : | ||
+ | # Add Record-Route for in-dialog NOTIFY as per RFC 6665. | ||
+ | KSR.rr.record_route(); | ||
+ | |||
+ | self.ksr_route_relay(msg); | ||
+ | return -255; | ||
+ | |||
+ | if KSR.is_ACK() : | ||
+ | if KSR.tm.t_check_trans() >0 : | ||
+ | # no loose-route, | ||
+ | # must be an ACK after a 487 | ||
+ | # or e.g. 404 from upstream server | ||
+ | self.ksr_route_relay(msg); | ||
+ | return -255; | ||
+ | else: | ||
+ | # ACK without matching transaction ... ignore and discard | ||
+ | return -255; | ||
+ | |||
+ | KSR.sl.sl_send_reply(404, | ||
+ | return -255; | ||
+ | |||
+ | |||
+ | # Handle SIP registrations | ||
+ | def ksr_route_registrar(self, | ||
+ | if not KSR.is_REGISTER() : | ||
+ | return 1; | ||
+ | if KSR.isflagset(FLT_NATS) : | ||
+ | KSR.setbflag(FLB_NATB); | ||
+ | # do SIP NAT pinging | ||
+ | KSR.setbflag(FLB_NATSIPPING); | ||
+ | |||
+ | if KSR.registrar.save(" | ||
+ | KSR.sl.sl_reply_error(); | ||
+ | |||
+ | return -255; | ||
+ | |||
+ | |||
+ | # User location service | ||
+ | def ksr_route_location(self, | ||
+ | rc = KSR.registrar.lookup(" | ||
+ | if rc<0 : | ||
+ | KSR.tm.t_newtran(); | ||
+ | if rc==-1 or rc==-3 : | ||
+ | KSR.sl.send_reply(404, | ||
+ | return -255; | ||
+ | elif rc==-2 : | ||
+ | KSR.sl.send_reply(405, | ||
+ | return -255; | ||
+ | |||
+ | # when routing via usrloc, log the missed calls also | ||
+ | if KSR.is_INVITE() : | ||
+ | KSR.setflag(FLT_ACCMISSED); | ||
+ | |||
+ | self.ksr_route_relay(msg); | ||
+ | return -255; | ||
+ | |||
+ | |||
+ | |||
+ | # IP authorization and user uthentication | ||
+ | def ksr_route_auth(self, | ||
+ | |||
+ | if not KSR.is_REGISTER() : | ||
+ | if KSR.permissions.allow_source_address(1)> | ||
+ | # source IP allowed | ||
+ | return 1; | ||
+ | |||
+ | if KSR.is_REGISTER() or KSR.is_myself_furi() : | ||
+ | # authenticate requests | ||
+ | if KSR.auth_db.auth_check(KSR.pv.get(" | ||
+ | KSR.auth.auth_challenge(KSR.pv.get(" | ||
+ | return -255; | ||
+ | |||
+ | # user authenticated - remove auth header | ||
+ | if not KSR.is_method_in(" | ||
+ | KSR.auth.consume_credentials(); | ||
+ | |||
+ | # if caller is not local subscriber, then check if it calls | ||
+ | # a local destination, | ||
+ | if (not KSR.is_myself_furi()) and (not KSR.is_myself_ruri()) : | ||
+ | KSR.sl.sl_send_reply(403," | ||
+ | return -255; | ||
+ | |||
+ | return 1; | ||
+ | |||
+ | |||
+ | # Caller NAT detection | ||
+ | def ksr_route_natdetect(self, | ||
+ | KSR.force_rport(); | ||
+ | if KSR.nathelper.nat_uac_test(19)> | ||
+ | if KSR.is_REGISTER() : | ||
+ | KSR.nathelper.fix_nated_register(); | ||
+ | elif KSR.siputils.is_first_hop()> | ||
+ | KSR.nathelper.set_contact_alias(); | ||
+ | |||
+ | KSR.setflag(FLT_NATS); | ||
+ | |||
+ | return 1; | ||
+ | |||
+ | |||
+ | # RTPProxy control | ||
+ | def ksr_route_natmanage(self, | ||
+ | if KSR.siputils.is_request()> | ||
+ | if KSR.siputils.has_totag()> | ||
+ | if KSR.rr.check_route_param(" | ||
+ | KSR.setbflag(FLB_NATB); | ||
+ | |||
+ | if (not (KSR.isflagset(FLT_NATS) or KSR.isbflagset(FLB_NATB))) : | ||
+ | return 1; | ||
+ | |||
+ | KSR.rtpproxy.rtpproxy_manage(" | ||
+ | |||
+ | if KSR.siputils.is_request()> | ||
+ | if not KSR.siputils.has_totag() : | ||
+ | if KSR.tmx.t_is_branch_route()> | ||
+ | KSR.rr.add_rr_param("; | ||
+ | |||
+ | if KSR.siputils.is_reply()> | ||
+ | if KSR.isbflagset(FLB_NATB) : | ||
+ | KSR.nathelper.set_contact_alias(); | ||
+ | |||
+ | return 1; | ||
+ | |||
+ | |||
+ | # URI update for dialog requests | ||
+ | def ksr_route_dlguri(self, | ||
+ | if not KSR.isdsturiset() : | ||
+ | KSR.nathelper.handle_ruri_alias(); | ||
+ | |||
+ | return 1; | ||
+ | |||
+ | |||
+ | # Routing to foreign domains | ||
+ | def ksr_route_sipout(self, | ||
+ | if KSR.is_myself_ruri() : | ||
+ | return 1; | ||
+ | |||
+ | KSR.hdr.append(" | ||
+ | self.ksr_route_relay(msg); | ||
+ | return -255; | ||
+ | |||
+ | |||
+ | # Manage outgoing branches | ||
+ | # -- equivalent of branch_route[...]{} | ||
+ | def ksr_branch_manage(self, | ||
+ | KSR.dbg(" | ||
+ | + "] to "+ KSR.pv.get(" | ||
+ | self.ksr_route_natmanage(msg); | ||
+ | return 1; | ||
+ | |||
+ | |||
+ | # Manage incoming replies | ||
+ | # -- equivalent of onreply_route[...]{} | ||
+ | def ksr_onreply_manage(self, | ||
+ | KSR.dbg(" | ||
+ | scode = KSR.pv.get(" | ||
+ | if scode> | ||
+ | self.ksr_route_natmanage(msg); | ||
+ | |||
+ | return 1; | ||
+ | |||
+ | |||
+ | # Manage failure routing cases | ||
+ | # -- equivalent of failure_route[...]{} | ||
+ | def ksr_failure_manage(self, | ||
+ | if self.ksr_route_natmanage()==-255 : return 1; | ||
+ | |||
+ | if KSR.tm.t_is_canceled()> | ||
+ | return 1; | ||
+ | |||
+ | return 1; | ||
+ | |||
+ | |||
+ | # SIP response handling | ||
+ | # -- equivalent of reply_route{} | ||
+ | def ksr_reply_route(self, | ||
+ | KSR.info(" | ||
+ | return 1; | ||
+ | |||
+ | |||
+ | # -- {end defining kamailio class} | ||
+ | |||
+ | |||
+ | # global helper function for debugging purposes | ||
+ | def dumpObj(obj): | ||
+ | for attr in dir(obj): | ||
+ | # KSR.info(" | ||
+ | Logger.LM_INFO(" | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | ==== Kamailio Start Commands | ||
+ | |||
+ | Executed when running with native scripting language: | ||
+ | |||
+ | < | ||
+ | ./ | ||
+ | </ | ||
+ | |||
+ | Executed when running with Lua scripting language: | ||
< | < | ||
./ | ./ | ||
+ | </ | ||
- | ./ | + | Executed when running with Python scripting language: |
+ | < | ||
+ | ./ | ||
</ | </ | ||
===== Results ===== | ===== Results ===== | ||
+ | |||
+ | The following metrics are collected for each test: | ||
+ | |||
+ | * cnt - number of SIP messages processed (counter) | ||
+ | * sum - the sum of execution times for request_route or ksr_request_route() (microseconds) | ||
+ | * min - the minimum execution time for request_route or ksr_request_route() (microseconds) | ||
+ | * max - the maximum execution time for request_route or ksr_request_route() (microseconds) | ||
+ | * avg - the average execution time for request_route or ksr_request_route() (microseconds) | ||
+ | |||
+ | The metrics are extracted from the log messages using the next awk script: | ||
+ | |||
+ | <code awk> | ||
+ | BEGIN { | ||
+ | sum = 0 | ||
+ | avg = 0 | ||
+ | min = 1000000 | ||
+ | max = 0 | ||
+ | cnt = 0 | ||
+ | } | ||
+ | |||
+ | / | ||
+ | sum += $(NF-1) | ||
+ | cnt += 1 | ||
+ | if(min > $(NF-1)) { | ||
+ | min = $(NF-1) | ||
+ | } | ||
+ | if(max < $(NF-1)) { | ||
+ | max = $(NF-1) | ||
+ | } | ||
+ | } | ||
+ | |||
+ | END { | ||
+ | print "cnt: ", cnt | ||
+ | print "sum: ", sum | ||
+ | print "min: ", min | ||
+ | print "max: ", max | ||
+ | if(cnt> | ||
+ | avg = sum/cnt | ||
+ | } | ||
+ | print "avg: ", avg | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | |||
+ | The results of several iterations running the tests: | ||
< | < | ||
Line 142: | Line 1742: | ||
max: 2028 | max: 2028 | ||
avg: 75.1823 | avg: 75.1823 | ||
- | |||
- | $ awk -f kamailio-exec-report.awk / | ||
- | cnt: 61080 | ||
- | sum: 4203512 | ||
- | min: 26 | ||
- | max: 1316 | ||
- | avg: 68.8198 | ||
$ awk -f kamailio-exec-report.awk / | $ awk -f kamailio-exec-report.awk / | ||
Line 156: | Line 1749: | ||
max: 1791 | max: 1791 | ||
avg: 75.0521 | avg: 75.0521 | ||
- | |||
- | $ awk -f kamailio-exec-report.awk / | ||
- | cnt: 61006 | ||
- | sum: 4852005 | ||
- | min: 25 | ||
- | max: 2535 | ||
- | avg: 79.5332 | ||
$ awk -f kamailio-exec-report.awk / | $ awk -f kamailio-exec-report.awk / | ||
Line 170: | Line 1756: | ||
max: 3226 | max: 3226 | ||
avg: 77.3734 | avg: 77.3734 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 62752 | ||
+ | sum: 4184315 | ||
+ | min: 17 | ||
+ | max: 1948 | ||
+ | avg: 66.6802 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 63616 | ||
+ | sum: 4255858 | ||
+ | min: 17 | ||
+ | max: 1619 | ||
+ | avg: 66.8992 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 62420 | ||
+ | sum: 3697635 | ||
+ | min: 17 | ||
+ | max: 2144 | ||
+ | avg: 59.238 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 63595 | ||
+ | sum: 4426750 | ||
+ | min: 17 | ||
+ | max: 3456 | ||
+ | avg: 69.6085 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 61080 | ||
+ | sum: 4203512 | ||
+ | min: 26 | ||
+ | max: 1316 | ||
+ | avg: 68.8198 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 61006 | ||
+ | sum: 4852005 | ||
+ | min: 25 | ||
+ | max: 2535 | ||
+ | avg: 79.5332 | ||
$ awk -f kamailio-exec-report.awk / | $ awk -f kamailio-exec-report.awk / | ||
Line 177: | Line 1805: | ||
max: 2159 | max: 2159 | ||
avg: 67.6884 | avg: 67.6884 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 61850 | ||
+ | sum: 4466376 | ||
+ | min: 23 | ||
+ | max: 2110 | ||
+ | avg: 72.213 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 61197 | ||
+ | sum: 3844555 | ||
+ | min: 22 | ||
+ | max: 1852 | ||
+ | avg: 62.8226 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 61445 | ||
+ | sum: 4202427 | ||
+ | min: 23 | ||
+ | max: 1750 | ||
+ | avg: 68.3933 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 61103 | ||
+ | sum: 4248753 | ||
+ | min: 23 | ||
+ | max: 2442 | ||
+ | avg: 69.5343 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 60846 | ||
+ | sum: 4432028 | ||
+ | min: 22 | ||
+ | max: 2628 | ||
+ | avg: 72.8401 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 61031 | ||
+ | sum: 4353501 | ||
+ | min: 23 | ||
+ | max: 3005 | ||
+ | avg: 71.3326 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 60785 | ||
+ | sum: 4400362 | ||
+ | min: 20 | ||
+ | max: 2093 | ||
+ | avg: 72.3922 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 60836 | ||
+ | sum: 4427855 | ||
+ | min: 23 | ||
+ | max: 3441 | ||
+ | avg: 72.7835 | ||
+ | |||
+ | $ awk -f kamailio-exec-report.awk / | ||
+ | cnt: 60813 | ||
+ | sum: 4591943 | ||
+ | min: 20 | ||
+ | max: 1751 | ||
+ | avg: 75.5092 | ||
+ | |||
</ | </ | ||
+ | |||
+ | ===== Remarks ===== | ||
+ | |||
+ | Mentioning it again, the target of the tests was not to measure the capacity of Kamailio processing, but how the execution time differs in more or less same conditions between native scripting configuration file and KEMI alternatives, | ||
+ | |||
+ | Testing was done on the same system, running first the test with native configuration file and immediately after, the one for Lua or Python scripting. | ||
+ | |||
+ | It was observed that the execution of native scripting routing blocks and Lua scripting functions takes more or less same time. Sometimes is native scripting slightly faster, other times is Lua scripting slightly faster. The average (for both native and Lua scripts) is in the range of 60 to 80 microseconds ( 1 / 1 000 000 of a second) for processing the registration request. The minimum reflects more what it takes for the first REGISTER request without authorization header, which is quickly challenged with 401 response. The maximum reflect the processing of the REGISTER request with valid authorization header, which does a query to database to fetch the password as well as store/ | ||
+ | |||
+ | There are variable number of retransmissions, | ||
+ | |||
+ | Comparing with the state of KEMI exports for version 5.1.x, in the v5.2.x were introduced some functions to be the equivalent of some conditions done with core keywords. | ||
+ | |||
+ | For example, in the native scripting: | ||
+ | |||
+ | <code c> | ||
+ | if(uri == myself) | ||
+ | </ | ||
+ | |||
+ | can be done in a KEMI scripting language with: | ||
+ | |||
+ | <code lua> | ||
+ | if KSR.is_myself_ruri() then | ||
+ | </ | ||
+ | |||
+ | Tests for Python (using app_python module) were done couple of days later (the Debian Testing system was upgraded to latest version of packages). It was a pleasant surprise to see that the execution times were in the same range as for native and Lua routing scripts. | ||
+ | |||
+ | The plan is to as run Lua tests using LuaJIT interpreter instead of the standard Lua (support for LuaJIT was also added for v5.2.x) as well as test for other KEMI itnerpreters (JavaScript, | ||
+ | |||
+ | |||
+ |
kemi/performance-tests/5.2.x.1542989134.txt.gz · Last modified: 2018/11/23 16:05 by miconda