1. Kamailio will send the request to the address of the list member (normal DNS lookups).
2. If there is a problem with OpenIMS then you should ask the OpenIMS guys, we are not familiar with OpenIMS.
regards klaus
Am 22.12.2010 12:57, schrieb "Andrés S. García Ruiz":
Thanks a lot for your response!
I've been thinking about it and there's something abnormal. Firs, the RLS is suppose to send the initial SUBSCRIBE to the S-CSCF instead of sending it to the I-CSCF. Then, I don't know why the S-CSCF translates the SUBSCRIBE URI (sip:testuser02@open-ims.test) to "sip:testuser01@155.54.190.245:8060;rinstance=9b7761b4bcaa4bd0". All the routing is the default configuration of both cscfs and rls.
How can I change the routing of the RLS in order it to send the SUBSCRIBE messages to the S-CSCF?
Here's the configuration file: / #!KAMAILIO
#!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 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 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
####### Defined Values #########
#!define WITH_DEBUG #!define WITH_AUTH #!define WITH_MYSQL #!define WITH_USRLOCDB #!define WITH_PRESENCE #!define WITH_XCAPSRV
# *** 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. #!define DBURL "mysql://openser:openserrw@localhost/openser" #!endif #!ifdef WITH_MULTIDOMAIN # - the value for 'use_domain' parameters #!define MULTIDOMAIN 1 #!else #!define MULTIDOMAIN 0 #!endif
# - 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 #########
#!ifdef WITH_DEBUG debug=4 log_stderror=yes #!else debug=2 log_stderror=no #!endif
memdbg=5 memlog=5
log_facility=LOG_LOCAL0
fork=yes children=4
/* uncomment the next line to disable TCP (default on) */ #disable_tcp=yes
/* uncomment the next line to disable the auto discovery of local aliases based on reverse DNS on IPs (default on) */ #auto_aliases=no
/* add local domain aliases */ alias="open-ims.test"
/* uncomment and configure the following line if you want Kamailio to bind on a specific interface/port/proto (default bind on all available) */ #listen=udp:10.0.0.10:5060
/* 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
#!ifdef WITH_XCAPSRV tcp_accept_no_cl=yes #!endif
####### Custom Parameters #########
# These parameters can be modified runtime via RPC interface # - see the documentation of 'cfg_rpc' module. # # Format: group.id = value 'desc' description # Access: $sel(cfg_get.group.id) or @cfg_get.group.id #
#!ifdef WITH_PSTN # PSTN GW Routing # # - pstn.gw_ip: valid IP or hostname as string value, example: # pstn.gw_ip = "10.0.0.101" desc "My PSTN GW Address" # # - by default is empty to avoid misrouting pstn.gw_ip = "" desc "PSTN GW Address" #!endif
####### Modules Section ########
# set paths to location of modules #!ifdef LOCAL_TEST_RUN mpath="modules_k:modules" #!else mpath="/usr/local/kamailio-3.1-xcap-rls/lib/kamailio/modules_k/:/usr/local/kamailio-3.1-xcap-rls/lib/kamailio/modules/" #!endif
#!ifdef WITH_MYSQL loadmodule "db_mysql.so" #!endif
loadmodule "mi_fifo.so" loadmodule "kex.so" loadmodule "tm.so" loadmodule "tmx.so" loadmodule "sl.so" loadmodule "rr.so" loadmodule "pv.so" loadmodule "maxfwd.so" loadmodule "usrloc.so" loadmodule "registrar.so" loadmodule "textops.so" loadmodule "siputils.so" loadmodule "xlog.so" loadmodule "sanity.so" loadmodule "ctl.so" loadmodule "mi_rpc.so" loadmodule "acc.so" # loadmodule "pua_mi.so" # loadmodule "pua_usrloc.so"
#!ifdef WITH_AUTH loadmodule "auth.so" loadmodule "auth_db.so" #!ifdef WITH_IPAUTH loadmodule "permissions.so" #!endif #!endif
#!ifdef WITH_ALIASDB loadmodule "alias_db.so" #!endif
#!ifdef WITH_MULTIDOMAIN loadmodule "domain.so" #!endif
#!ifdef WITH_PRESENCE loadmodule "presence.so" loadmodule "presence_xml.so" loadmodule "pua.so" loadmodule "rls.so" #!endif
#!ifdef WITH_NAT loadmodule "nathelper.so" loadmodule "rtpproxy.so" #!endif
#!ifdef WITH_TLS loadmodule "tls.so" #!endif
#!ifdef WITH_ANTIFLOOD loadmodule "htable.so" loadmodule "pike.so" #!endif
#!ifdef WITH_XMLRPC loadmodule "xmlrpc.so" #!endif
#!ifdef WITH_XCAPSRV loadmodule "xhttp.so" loadmodule "xcap_server.so" #!endif
# ----------------- setting module-specific parameters ---------------
# ----- mi_fifo params ----- modparam("mi_fifo", "fifo_name", "/tmp/kamailio_fifo")
# ----- tm params ----- # auto-discard branches from previous serial forking leg modparam("tm", "failure_reply_mode", 3) # default retransmission timeout: 30sec modparam("tm", "fr_timer", 30000) # default invite retransmission timeout after 1xx: 120sec modparam("tm", "fr_inv_timer", 120000)
# ----- rr params ----- # add value to ;lr param to cope with most of the UAs modparam("rr", "enable_full_lr", 1) # do not append from tag to the RR (no need for this script) modparam("rr", "append_fromtag", 0)
# ----- registrar params ----- modparam("registrar", "method_filtering", 1) /* uncomment the next line to disable parallel forking via location */ # modparam("registrar", "append_branches", 0) /* uncomment the next line not to allow more than 10 contacts per AOR */ #modparam("registrar", "max_contacts", 10)
# ----- acc params ----- /* what special events should be accounted ? */ modparam("acc", "early_media", 0) modparam("acc", "report_ack", 0) modparam("acc", "report_cancels", 0) /* by default ww do not adjust the direct of the sequential requests. if you enable this parameter, be sure the enable "append_fromtag" in "rr" module */ modparam("acc", "detect_direction", 0) /* account triggers (flags) */ modparam("acc", "log_flag", FLT_ACC) modparam("acc", "log_missed_flag", FLT_ACCMISSED) modparam("acc", "log_extra", "src_user=$fU;src_domain=$fd;dst_ouser=$tU;dst_user=$rU;dst_domain=$rd") modparam("acc", "failed_transaction_flag", FLT_ACCFAILED) /* enhanced DB accounting */ #!ifdef WITH_ACCDB modparam("acc", "db_flag", FLT_ACC) modparam("acc", "db_missed_flag", FLT_ACCMISSED) modparam("acc", "db_url", DBURL) modparam("acc", "db_extra", "src_user=$fU;src_domain=$fd;dst_ouser=$tU;dst_user=$rU;dst_domain=$rd") #!endif
# ----- usrloc params ----- /* enable DB persistency for location entries */ #!ifdef WITH_USRLOCDB modparam("usrloc", "db_url", DBURL) modparam("usrloc", "db_mode", 2) modparam("usrloc", "use_domain", MULTIDOMAIN) #!endif
# ----- auth_db params ----- #!ifdef WITH_AUTH modparam("auth_db", "db_url", DBURL) modparam("auth_db", "calculate_ha1", yes) modparam("auth_db", "password_column", "password") modparam("auth_db", "load_credentials", "") modparam("auth_db", "use_domain", MULTIDOMAIN)
# ----- permissions params ----- #!ifdef WITH_IPAUTH modparam("permissions", "db_url", DBURL) modparam("permissions", "db_mode", 1) #!endif
#!endif
# ----- alias_db params ----- #!ifdef WITH_ALIASDB modparam("alias_db", "db_url", DBURL) modparam("alias_db", "use_domain", MULTIDOMAIN) #!endif
# ----- domain params ----- #!ifdef WITH_MULTIDOMAIN modparam("domain", "db_url", DBURL) # use caching modparam("domain", "db_mode", 1) # register callback to match myself condition with domains list modparam("domain", "register_myself", 1) #!endif
#!ifdef WITH_PRESENCE # ----- presence params ----- modparam("presence", "db_url", DBURL)
# ----- presence_xml params ----- modparam("presence_xml", "db_url", DBURL) modparam("presence_xml", "force_active", 1) modparam("presence_xml", "integrated_xcap_server", 1) modparam("rls", "db_url", DBURL) modparam("rls", "xcap_table", "xcap") modparam("rls", "rlsubs_table", "rls_watchers") modparam("rls", "rlpres_table", "rls_presentity") modparam("rls", "clean_period", 100) modparam("rls", "waitn_time", 50) modparam("rls", "max_expires", 10800) modparam("rls", "hash_size", 9) modparam("rls", "xcap_root", "http://ciervo.inf.um.es/xcap-root:5060") modparam("rls", "integrated_xcap_server", 1) modparam("rls", "to_presence_code", 10) modparam("rls", "rls_event", "presence") #!endif
#!ifdef WITH_NAT # ----- rtpproxy params ----- modparam("rtpproxy", "rtpproxy_sock", "udp:127.0.0.1:7722")
# ----- nathelper params ----- modparam("nathelper", "natping_interval", 30) modparam("nathelper", "ping_nated_only", 1) modparam("nathelper", "sipping_bflag", FLB_NATSIPPING) modparam("nathelper", "sipping_from", "sip:pinger@kamailio.org")
# params needed for NAT traversal in other modules modparam("nathelper|registrar", "received_avp", "$avp(RECEIVED)") modparam("usrloc", "nat_bflag", FLB_NATB) #!endif
#!ifdef WITH_TLS # ----- tls params ----- modparam("tls", "config", "/usr/local/etc/kamailio/tls.cfg") #!endif
#!ifdef WITH_ANTIFLOOD # ----- pike params ----- modparam("pike", "sampling_time_unit", 2) modparam("pike", "reqs_density_per_unit", 16) modparam("pike", "remove_latency", 4)
# ----- htable params ----- # ip ban htable with autoexpire after 5 minutes modparam("htable", "htable", "ipban=>size=8;autoexpire=300;") #!endif
#!ifdef WITH_XMLRPC # ----- xmlrpc params ----- modparam("xmlrpc", "route", "XMLRPC"); modparam("xmlrpc", "url_match", "^/RPC") #!endif
#!ifdef WITH_XCAPSRV # ----- xcap_server params ----- modparam("xcap_server", "db_url", DBURL) # modparam("rls", "integrated_xcap_server", 1) #!endif
####### Routing Logic ########
# Main SIP request routing logic # - processing of any incoming SIP request starts with this route route {
# per request initial checks route(REQINIT);
# NAT detection route(NAT);
# handle requests within SIP dialogs route(WITHINDLG);
### only initial requests (no To tag)
# CANCEL processing if (is_method("CANCEL")) { if (t_check_trans()) t_relay(); exit; }
t_check_trans();
# authentication route(AUTH);
# record routing for dialog forming requests (in case they are routed) # - remove preloaded route headers remove_hf("Route"); if (is_method("INVITE|SUBSCRIBE")) record_route();
# account only INVITEs if (is_method("INVITE")) { setflag(FLT_ACC); # do accounting }
# dispatch requests to foreign domains route(SIPOUT);
### requests for my local domains
# handle presence related requests route(PRESENCE);
# handle registrations route(REGISTRAR);
if ($rU==$null) { # request with no Username in RURI sl_send_reply("484","Address Incomplete"); exit; }
# dispatch destinations to PSTN route(PSTN);
# user location service route(LOCATION);
route(RELAY); }
route[RELAY] { #!ifdef WITH_NAT if (check_route_param("nat=yes")) { setbflag(FLB_NATB); } if (isflagset(FLT_NATS) || isbflagset(FLB_NATB)) { route(RTPPROXY); } #!endif
/* example how to enable some additional event routes */ if (is_method("INVITE")) { #t_on_branch("BRANCH_ONE"); t_on_reply("REPLY_ONE"); t_on_failure("FAIL_ONE"); }
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=>$si)!=$null) { # ip is already blocked xdbg("request from blocked IP - $rm from $fu (IP:$si:$sp)\n"); exit; } if (!pike_check_req()) { xlog("L_ALERT","ALERT: pike blocking $rm from $fu (IP:$si:$sp)\n"); $sht(ipban=>$si) = 1; exit; } } #!endif
if (!mf_process_maxfwd_header("10")) { sl_send_reply("483","Too Many Hops"); exit; }
if(!sanity_check("1511", "7")) { xlog("Malformed SIP message from $si:$sp\n"); exit; } }
# Handle requests within SIP dialogs route[WITHINDLG] { if (has_totag()) { # sequential request withing a dialog should # take the path determined by record-routing if (loose_route()) { if (is_method("BYE")) { setflag(FLT_ACC); # do accounting ... setflag(FLT_ACCFAILED); # ... even if the transaction fails } route(RELAY); } else { if (is_method("SUBSCRIBE") && uri == myself) { # in-dialog subscribe requests route(PRESENCE); exit; } if ( is_method("ACK") ) { if ( t_check_trans() ) { # no loose-route, but stateful ACK; # must be an ACK after a 487 # or e.g. 404 from upstream server t_relay(); exit; } else { # ACK without matching transaction ... ignore and discard exit; } } sl_send_reply("404","Not here"); } exit; } }
# Handle SIP registrations route[REGISTRAR] { if (is_method("REGISTER")) { if(isflagset(FLT_NATS)) { setbflag(FLB_NATB); # uncomment next line to do SIP NAT pinging ## setbflag(FLB_NATSIPPING); } if (!save("location")) sl_reply_error();
exit; } }
# USER location service route[LOCATION] {
#!ifdef WITH_ALIASDB # search in DB-based aliases alias_db_lookup("dbaliases"); #!endif
if (!lookup("location")) { switch ($rc) { case -1: case -3: t_newtran(); t_reply("404", "Not Found"); exit; case -2: sl_send_reply("405", "Method Not Allowed"); exit; } }
# when routing via usrloc, log the missed calls also if (is_method("INVITE")) { setflag(FLT_ACCMISSED); } }
# Presence server route route[PRESENCE] {
if(!is_method("PUBLISH|SUBSCRIBE")) return;
#!ifdef WITH_PRESENCE
if (!t_newtran()) { sl_reply_error(); exit; };
if(is_method("PUBLISH")) { handle_publish(); t_release(); } else if( is_method("SUBSCRIBE")) { $var(ret_code)= rls_handle_subscribe();
if($var(ret_code)== 10) { handle_subscribe(); } t_release();
}else if(method=="NOTIFY") { rls_handle_notify(); }
exit; #!endif # if presence enabled, this part will not be executed if (is_method("PUBLISH") || $rU==$null) { sl_send_reply("404", "Not here"); exit; } return; }
# Authentication route route[AUTH] { return; #!ifdef WITH_AUTH if (is_method("REGISTER")) { # authenticate the REGISTER requests (uncomment to enable auth) if (!www_authorize("$td", "subscriber")) { www_challenge("$td", "0"); exit; }
if ($au!=$tU) { sl_send_reply("403","Forbidden auth ID"); exit; } } else {
#!ifdef WITH_IPAUTH if(allow_source_address()) { # source IP allowed return; } #!endif # authenticate if from local subscriber if (from_uri==myself) { if (!proxy_authorize("$fd", "subscriber")) { proxy_challenge("$fd", "0"); exit; } if (is_method("PUBLISH")) { if ($au!=$tU) { sl_send_reply("403","Forbidden auth ID"); exit; } } else { if ($au!=$fU) { sl_send_reply("403","Forbidden auth ID"); exit; } }
consume_credentials(); # caller authenticated } else { # caller is not local subscriber, then check if it calls # a local destination, otherwise deny, not an open relay here if (!uri==myself) { sl_send_reply("403","Not relaying"); exit; } } } #!endif return; }
# Caller NAT detection route route[NAT] { #!ifdef WITH_NAT force_rport(); if (nat_uac_test("19")) { if (method=="REGISTER") { fix_nated_register(); } else { fix_nated_contact(); } setflag(FLT_NATS); } #!endif return; }
# RTPProxy control route[RTPPROXY] { #!ifdef WITH_NAT if (is_method("BYE")) { unforce_rtp_proxy(); } else if (is_method("INVITE")){ force_rtp_proxy(); } if (!has_totag()) add_rr_param(";nat=yes"); #!endif return; }
# Routing to foreign domains route[SIPOUT] { if (!uri==myself) { append_hf("P-hint: outbound\r\n"); route(RELAY); } }
# PSTN GW routing route[PSTN] { #!ifdef WITH_PSTN # check if PSTN GW IP is defined if (strempty($sel(cfg_get.pstn.gw_ip))) { xlog("SCRIPT: PSTN rotuing enabled but pstn.gw_ip not defined\n"); return; }
# route to PSTN dialed numbers starting with '+' or '00' # (international format) # - update the condition to match your dialing rules for PSTN routing if(!($rU=~"^(+|00)[1-9][0-9]{3,20}$")) return;
# only local users allowed to call if(from_uri!=myself) { sl_send_reply("403", "Not Allowed"); exit; }
$ru = "sip:" + $rU + "@" + $sel(cfg_get.pstn.gw_ip);
route(RELAY); exit; #!endif
return; }
# XMLRPC routing #!ifdef WITH_XMLRPC route[XMLRPC] { # allow XMLRPC from localhost if ((method=="POST" || method=="GET") && (src_ip==127.0.0.1)) { # close connection only for xmlrpclib user agents (there is a bug in # xmlrpclib: it waits for EOF before interpreting the response). if ($hdr(User-Agent) =~ "xmlrpclib") set_reply_close(); set_reply_no_connect(); dispatch_rpc(); exit; } send_reply("403", "Forbidden"); exit; } #!endif
# Sample branch router branch_route[BRANCH_ONE] { xdbg("new branch at $ru\n"); }
# Sample onreply route onreply_route[REPLY_ONE] { xdbg("incoming reply\n"); #!ifdef WITH_NAT if ((isflagset(FLT_NATS) || isbflagset(FLB_NATB)) && status=~"(183)|(2[0-9][0-9])") { force_rtp_proxy(); } if (isbflagset("6")) { fix_nated_contact(); } #!endif }
# Sample failure route failure_route[FAIL_ONE] { #!ifdef WITH_NAT if (is_method("INVITE") && (isbflagset(FLB_NATB) || isflagset(FLT_NATS))) { unforce_rtp_proxy(); } #!endif
if (t_is_canceled()) { exit; }
# uncomment the following lines if you want to block client # redirect based on 3xx replies. ##if (t_check_status("3[0-9][0-9]")) { ##t_reply("404","Not found"); ## exit; ##}
# uncomment the following lines if you want to redirect the failed # calls to a different new destination ##if (t_check_status("486|408")) { ## sethostport("192.168.2.100:5060"); ## append_branch(); ## # do not set the missed call flag again ## t_relay(); ##} }
#!ifdef WITH_XCAPSRV # #!define WITH_XHTTPAUTH event_route[xhttp:request] { xdbg("===== xhttp: request [$rv] $rm => $hu\n");
#!ifdef WITH_XHTTPAUTH if (!www_authorize("xcap", "subscriber")) { www_challenge("xcap", "0"); exit; } #!endif xdbg("===== xhttp: Antes del if de $hu\n"); if($hu=~"^/xcap-root/") { xdbg("===== xhttp: Dentro del if de $hu\n"); set_reply_close(); set_reply_no_connect(); # xcap ops $xcapuri(u=>data) = $hu; if($xcapuri(u=>xuid)=~"^sip:.+@.+") $var(uri) = $xcapuri(u=>xuid); else if($xcapuri(u=>xuid)=~".+@.+") $var(uri) = "sip:" + $xcapuri(u=>xuid); else $var(uri) = "sip:"+ $xcapuri(u=>xuid) + "@" + $Ri; xlog("===== xhttp: $xcapuri(u=>auid) : $xcapuri(u=>xuid)\n"); if($xcapuri(u=>auid)=="xcap-caps") { $var(xbody) = "<?xml version='1.0' encoding='UTF-8'?>
<xcap-caps xmlns='urn:ietf:params:xml:ns:xcap-caps'> <auids> <auid>rls-services</auid> <auid>pidf-manipulation</auid> <auid>xcap-caps</auid> <auid>resource-lists</auid> <auid>pres-rules</auid> <auid>org.openmobilealliance.pres-rules</auid> </auids> <extensions> </extensions> <namespaces> <namespace>urn:ietf:params:xml:ns:rls-services</namespace> <namespace>urn:ietf:params:xml:ns:pidf</namespace> <namespace>urn:ietf:params:xml:ns:xcap-caps</namespace> <namespace>urn:ietf:params:xml:ns:resource-lists</namespace> <namespace>urn:ietf:params:xml:ns:pres-rules</namespace> </namespaces> </xcap-caps>"; xhttp_reply("200", "ok", "application/xcap-caps+xml", "$var(xbody)"); exit; }
#!ifdef WITH_XHTTPAUTH # be sure auth user access only its documents if ($au!=$(var(uri){uri.user})) { xhttp_reply("403", "Forbidden", "text/html", "<html><body>$si:$sp</body></html>"); exit; }
#!endif xdbg("===== xhttp: Antes del switch $rm => $hu\n"); switch($rm) { case "PUT": xcaps_put("$var(uri)", "$hu", "$rb"); if($xcapuri(u=>auid)=~"pres-rules") { xlog("===== xhttp put: refreshing watchers for $var(uri)\n"); pres_update_watchers("$var(uri)", "presence"); pres_refresh_watchers("$var(uri)", "presence", 1); } exit; break; case "GET": xlog("===== xhttp: get $var(uri) => $hu\n"); xcaps_get("$var(uri)", "$hu"); exit; break; case "DELETE": xcaps_del("$var(uri)", "$hu"); if($xcapuri(u=>auid)=~"pres-rules") { xlog("===== xhttp del: refreshing watchers for $var(uri)\n"); pres_update_watchers("$var(uri)", "presence"); pres_refresh_watchers("$var(uri)", "presence", 1); } exit; break; } }
# http ops xhttp_reply("200", "ok", "text/html", "<html><body>OK: $si:$sp</body></html>"); exit; } #!endif/
Regards, Andrés.
El 21/12/10 10:22, Klaus Darilion escribió:
Am 16.12.2010 13:36, schrieb "Andrés S. García Ruiz":
B.5) P-CSCF ---- SUBSCRIBE ----> Presentity???
SUBSCRIBE sip:testuser01@155.54.190.245:8060;rinstance=9b7761b4bcaa4bd0 SIP/2.0 Record-Route: sip:mt@pcscf.open-ims.test:4060;lr Record-Route: sip:mt@scscf.open-ims.test:6060;lr Via: SIP/2.0/TCP 155.54.210.134:4060;branch=z9hG4bK07df.baa7cf24.0 Via: SIP/2.0/UDP 155.54.210.135:6060;received=155.54.210.135;rport=6060;branch=z9hG4bK07df.8a35e4f3.0
Via: SIP/2.0/UDP 155.54.210.136;branch=z9hG4bK07df.3688b985.0 Via: SIP/2.0/UDP 155.54.190.245;branch=z9hG4bK07df.964e0ba7.0 To: sip:testuser01@open-ims.test From: sip:restricted_areas@open-ims.test;tag=533cb9e91f4b999cf76861cbb9ed54ed-32d5
CSeq: 10 SUBSCRIBE Call-ID: 7fd8dfdd-21694@127.0.0.1 Content-Length: 0 User-Agent: kamailio (3.2.0-dev1 (i386/linux)) Max-Forwards: 14 Event: presence Contact: sip:155.54.190.245:5060;transport=udp Expires: 10810 Max-Forwards: 70 Support: eventlist P-Called-Party-ID: sip:testuser01@open-ims.test
The step B.5 is sent directly to the presentity testuser01. Instead of that, I thought that message was suppose to be sent to the presence server in the URI that is shown in Contact header.
If the P-CSCF is not forwarding the request as supposed, I guess you have to fix the routing on the P-CSCF.
klaus
Hello,
On 12/22/10 4:55 PM, Klaus Darilion wrote:
- Kamailio will send the request to the address of the list member
(normal DNS lookups).
- If there is a problem with OpenIMS then you should ask the OpenIMS
guys, we are not familiar with OpenIMS.
for sake of completion, openimscore is running now on the same core as version 3.x, it has just some extra modules. So in regard to routing and common modules, it the same thing.
Cheers, Daniel
regards klaus
Am 22.12.2010 12:57, schrieb "Andrés S. García Ruiz":
Thanks a lot for your response!
I've been thinking about it and there's something abnormal. Firs, the RLS is suppose to send the initial SUBSCRIBE to the S-CSCF instead of sending it to the I-CSCF. Then, I don't know why the S-CSCF translates the SUBSCRIBE URI (sip:testuser02@open-ims.test) to "sip:testuser01@155.54.190.245:8060;rinstance=9b7761b4bcaa4bd0". All the routing is the default configuration of both cscfs and rls.
How can I change the routing of the RLS in order it to send the SUBSCRIBE messages to the S-CSCF?
Here's the configuration file: / #!KAMAILIO
#!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 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 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
####### Defined Values #########
#!define WITH_DEBUG #!define WITH_AUTH #!define WITH_MYSQL #!define WITH_USRLOCDB #!define WITH_PRESENCE #!define WITH_XCAPSRV
# *** 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. #!define DBURL "mysql://openser:openserrw@localhost/openser" #!endif #!ifdef WITH_MULTIDOMAIN # - the value for 'use_domain' parameters #!define MULTIDOMAIN 1 #!else #!define MULTIDOMAIN 0 #!endif
# - 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 #########
#!ifdef WITH_DEBUG debug=4 log_stderror=yes #!else debug=2 log_stderror=no #!endif
memdbg=5 memlog=5
log_facility=LOG_LOCAL0
fork=yes children=4
/* uncomment the next line to disable TCP (default on) */ #disable_tcp=yes
/* uncomment the next line to disable the auto discovery of local aliases based on reverse DNS on IPs (default on) */ #auto_aliases=no
/* add local domain aliases */ alias="open-ims.test"
/* uncomment and configure the following line if you want Kamailio to bind on a specific interface/port/proto (default bind on all available) */ #listen=udp:10.0.0.10:5060
/* 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
#!ifdef WITH_XCAPSRV tcp_accept_no_cl=yes #!endif
####### Custom Parameters #########
# These parameters can be modified runtime via RPC interface # - see the documentation of 'cfg_rpc' module. # # Format: group.id = value 'desc' description # Access: $sel(cfg_get.group.id) or @cfg_get.group.id #
#!ifdef WITH_PSTN # PSTN GW Routing # # - pstn.gw_ip: valid IP or hostname as string value, example: # pstn.gw_ip = "10.0.0.101" desc "My PSTN GW Address" # # - by default is empty to avoid misrouting pstn.gw_ip = "" desc "PSTN GW Address" #!endif
####### Modules Section ########
# set paths to location of modules #!ifdef LOCAL_TEST_RUN mpath="modules_k:modules" #!else mpath="/usr/local/kamailio-3.1-xcap-rls/lib/kamailio/modules_k/:/usr/local/kamailio-3.1-xcap-rls/lib/kamailio/modules/"
#!endif
#!ifdef WITH_MYSQL loadmodule "db_mysql.so" #!endif
loadmodule "mi_fifo.so" loadmodule "kex.so" loadmodule "tm.so" loadmodule "tmx.so" loadmodule "sl.so" loadmodule "rr.so" loadmodule "pv.so" loadmodule "maxfwd.so" loadmodule "usrloc.so" loadmodule "registrar.so" loadmodule "textops.so" loadmodule "siputils.so" loadmodule "xlog.so" loadmodule "sanity.so" loadmodule "ctl.so" loadmodule "mi_rpc.so" loadmodule "acc.so" # loadmodule "pua_mi.so" # loadmodule "pua_usrloc.so"
#!ifdef WITH_AUTH loadmodule "auth.so" loadmodule "auth_db.so" #!ifdef WITH_IPAUTH loadmodule "permissions.so" #!endif #!endif
#!ifdef WITH_ALIASDB loadmodule "alias_db.so" #!endif
#!ifdef WITH_MULTIDOMAIN loadmodule "domain.so" #!endif
#!ifdef WITH_PRESENCE loadmodule "presence.so" loadmodule "presence_xml.so" loadmodule "pua.so" loadmodule "rls.so" #!endif
#!ifdef WITH_NAT loadmodule "nathelper.so" loadmodule "rtpproxy.so" #!endif
#!ifdef WITH_TLS loadmodule "tls.so" #!endif
#!ifdef WITH_ANTIFLOOD loadmodule "htable.so" loadmodule "pike.so" #!endif
#!ifdef WITH_XMLRPC loadmodule "xmlrpc.so" #!endif
#!ifdef WITH_XCAPSRV loadmodule "xhttp.so" loadmodule "xcap_server.so" #!endif
# ----------------- setting module-specific parameters ---------------
# ----- mi_fifo params ----- modparam("mi_fifo", "fifo_name", "/tmp/kamailio_fifo")
# ----- tm params ----- # auto-discard branches from previous serial forking leg modparam("tm", "failure_reply_mode", 3) # default retransmission timeout: 30sec modparam("tm", "fr_timer", 30000) # default invite retransmission timeout after 1xx: 120sec modparam("tm", "fr_inv_timer", 120000)
# ----- rr params ----- # add value to ;lr param to cope with most of the UAs modparam("rr", "enable_full_lr", 1) # do not append from tag to the RR (no need for this script) modparam("rr", "append_fromtag", 0)
# ----- registrar params ----- modparam("registrar", "method_filtering", 1) /* uncomment the next line to disable parallel forking via location */ # modparam("registrar", "append_branches", 0) /* uncomment the next line not to allow more than 10 contacts per AOR */ #modparam("registrar", "max_contacts", 10)
# ----- acc params ----- /* what special events should be accounted ? */ modparam("acc", "early_media", 0) modparam("acc", "report_ack", 0) modparam("acc", "report_cancels", 0) /* by default ww do not adjust the direct of the sequential requests. if you enable this parameter, be sure the enable "append_fromtag" in "rr" module */ modparam("acc", "detect_direction", 0) /* account triggers (flags) */ modparam("acc", "log_flag", FLT_ACC) modparam("acc", "log_missed_flag", FLT_ACCMISSED) modparam("acc", "log_extra", "src_user=$fU;src_domain=$fd;dst_ouser=$tU;dst_user=$rU;dst_domain=$rd") modparam("acc", "failed_transaction_flag", FLT_ACCFAILED) /* enhanced DB accounting */ #!ifdef WITH_ACCDB modparam("acc", "db_flag", FLT_ACC) modparam("acc", "db_missed_flag", FLT_ACCMISSED) modparam("acc", "db_url", DBURL) modparam("acc", "db_extra", "src_user=$fU;src_domain=$fd;dst_ouser=$tU;dst_user=$rU;dst_domain=$rd") #!endif
# ----- usrloc params ----- /* enable DB persistency for location entries */ #!ifdef WITH_USRLOCDB modparam("usrloc", "db_url", DBURL) modparam("usrloc", "db_mode", 2) modparam("usrloc", "use_domain", MULTIDOMAIN) #!endif
# ----- auth_db params ----- #!ifdef WITH_AUTH modparam("auth_db", "db_url", DBURL) modparam("auth_db", "calculate_ha1", yes) modparam("auth_db", "password_column", "password") modparam("auth_db", "load_credentials", "") modparam("auth_db", "use_domain", MULTIDOMAIN)
# ----- permissions params ----- #!ifdef WITH_IPAUTH modparam("permissions", "db_url", DBURL) modparam("permissions", "db_mode", 1) #!endif
#!endif
# ----- alias_db params ----- #!ifdef WITH_ALIASDB modparam("alias_db", "db_url", DBURL) modparam("alias_db", "use_domain", MULTIDOMAIN) #!endif
# ----- domain params ----- #!ifdef WITH_MULTIDOMAIN modparam("domain", "db_url", DBURL) # use caching modparam("domain", "db_mode", 1) # register callback to match myself condition with domains list modparam("domain", "register_myself", 1) #!endif
#!ifdef WITH_PRESENCE # ----- presence params ----- modparam("presence", "db_url", DBURL)
# ----- presence_xml params ----- modparam("presence_xml", "db_url", DBURL) modparam("presence_xml", "force_active", 1) modparam("presence_xml", "integrated_xcap_server", 1) modparam("rls", "db_url", DBURL) modparam("rls", "xcap_table", "xcap") modparam("rls", "rlsubs_table", "rls_watchers") modparam("rls", "rlpres_table", "rls_presentity") modparam("rls", "clean_period", 100) modparam("rls", "waitn_time", 50) modparam("rls", "max_expires", 10800) modparam("rls", "hash_size", 9) modparam("rls", "xcap_root", "http://ciervo.inf.um.es/xcap-root:5060") modparam("rls", "integrated_xcap_server", 1) modparam("rls", "to_presence_code", 10) modparam("rls", "rls_event", "presence") #!endif
#!ifdef WITH_NAT # ----- rtpproxy params ----- modparam("rtpproxy", "rtpproxy_sock", "udp:127.0.0.1:7722")
# ----- nathelper params ----- modparam("nathelper", "natping_interval", 30) modparam("nathelper", "ping_nated_only", 1) modparam("nathelper", "sipping_bflag", FLB_NATSIPPING) modparam("nathelper", "sipping_from", "sip:pinger@kamailio.org")
# params needed for NAT traversal in other modules modparam("nathelper|registrar", "received_avp", "$avp(RECEIVED)") modparam("usrloc", "nat_bflag", FLB_NATB) #!endif
#!ifdef WITH_TLS # ----- tls params ----- modparam("tls", "config", "/usr/local/etc/kamailio/tls.cfg") #!endif
#!ifdef WITH_ANTIFLOOD # ----- pike params ----- modparam("pike", "sampling_time_unit", 2) modparam("pike", "reqs_density_per_unit", 16) modparam("pike", "remove_latency", 4)
# ----- htable params ----- # ip ban htable with autoexpire after 5 minutes modparam("htable", "htable", "ipban=>size=8;autoexpire=300;") #!endif
#!ifdef WITH_XMLRPC # ----- xmlrpc params ----- modparam("xmlrpc", "route", "XMLRPC"); modparam("xmlrpc", "url_match", "^/RPC") #!endif
#!ifdef WITH_XCAPSRV # ----- xcap_server params ----- modparam("xcap_server", "db_url", DBURL) # modparam("rls", "integrated_xcap_server", 1) #!endif
####### Routing Logic ########
# Main SIP request routing logic # - processing of any incoming SIP request starts with this route route {
# per request initial checks route(REQINIT);
# NAT detection route(NAT);
# handle requests within SIP dialogs route(WITHINDLG);
### only initial requests (no To tag)
# CANCEL processing if (is_method("CANCEL")) { if (t_check_trans()) t_relay(); exit; }
t_check_trans();
# authentication route(AUTH);
# record routing for dialog forming requests (in case they are routed) # - remove preloaded route headers remove_hf("Route"); if (is_method("INVITE|SUBSCRIBE")) record_route();
# account only INVITEs if (is_method("INVITE")) { setflag(FLT_ACC); # do accounting }
# dispatch requests to foreign domains route(SIPOUT);
### requests for my local domains
# handle presence related requests route(PRESENCE);
# handle registrations route(REGISTRAR);
if ($rU==$null) { # request with no Username in RURI sl_send_reply("484","Address Incomplete"); exit; }
# dispatch destinations to PSTN route(PSTN);
# user location service route(LOCATION);
route(RELAY); }
route[RELAY] { #!ifdef WITH_NAT if (check_route_param("nat=yes")) { setbflag(FLB_NATB); } if (isflagset(FLT_NATS) || isbflagset(FLB_NATB)) { route(RTPPROXY); } #!endif
/* example how to enable some additional event routes */ if (is_method("INVITE")) { #t_on_branch("BRANCH_ONE"); t_on_reply("REPLY_ONE"); t_on_failure("FAIL_ONE"); }
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=>$si)!=$null) { # ip is already blocked xdbg("request from blocked IP - $rm from $fu (IP:$si:$sp)\n"); exit; } if (!pike_check_req()) { xlog("L_ALERT","ALERT: pike blocking $rm from $fu (IP:$si:$sp)\n"); $sht(ipban=>$si) = 1; exit; } } #!endif
if (!mf_process_maxfwd_header("10")) { sl_send_reply("483","Too Many Hops"); exit; }
if(!sanity_check("1511", "7")) { xlog("Malformed SIP message from $si:$sp\n"); exit; } }
# Handle requests within SIP dialogs route[WITHINDLG] { if (has_totag()) { # sequential request withing a dialog should # take the path determined by record-routing if (loose_route()) { if (is_method("BYE")) { setflag(FLT_ACC); # do accounting ... setflag(FLT_ACCFAILED); # ... even if the transaction fails } route(RELAY); } else { if (is_method("SUBSCRIBE") && uri == myself) { # in-dialog subscribe requests route(PRESENCE); exit; } if ( is_method("ACK") ) { if ( t_check_trans() ) { # no loose-route, but stateful ACK; # must be an ACK after a 487 # or e.g. 404 from upstream server t_relay(); exit; } else { # ACK without matching transaction ... ignore and discard exit; } } sl_send_reply("404","Not here"); } exit; } }
# Handle SIP registrations route[REGISTRAR] { if (is_method("REGISTER")) { if(isflagset(FLT_NATS)) { setbflag(FLB_NATB); # uncomment next line to do SIP NAT pinging ## setbflag(FLB_NATSIPPING); } if (!save("location")) sl_reply_error();
exit; } }
# USER location service route[LOCATION] {
#!ifdef WITH_ALIASDB # search in DB-based aliases alias_db_lookup("dbaliases"); #!endif
if (!lookup("location")) { switch ($rc) { case -1: case -3: t_newtran(); t_reply("404", "Not Found"); exit; case -2: sl_send_reply("405", "Method Not Allowed"); exit; } }
# when routing via usrloc, log the missed calls also if (is_method("INVITE")) { setflag(FLT_ACCMISSED); } }
# Presence server route route[PRESENCE] {
if(!is_method("PUBLISH|SUBSCRIBE")) return;
#!ifdef WITH_PRESENCE
if (!t_newtran()) { sl_reply_error(); exit; };
if(is_method("PUBLISH")) { handle_publish(); t_release(); } else if( is_method("SUBSCRIBE")) { $var(ret_code)= rls_handle_subscribe();
if($var(ret_code)== 10) { handle_subscribe(); } t_release();
}else if(method=="NOTIFY") { rls_handle_notify(); }
exit; #!endif # if presence enabled, this part will not be executed if (is_method("PUBLISH") || $rU==$null) { sl_send_reply("404", "Not here"); exit; } return; }
# Authentication route route[AUTH] { return; #!ifdef WITH_AUTH if (is_method("REGISTER")) { # authenticate the REGISTER requests (uncomment to enable auth) if (!www_authorize("$td", "subscriber")) { www_challenge("$td", "0"); exit; }
if ($au!=$tU) { sl_send_reply("403","Forbidden auth ID"); exit; } } else {
#!ifdef WITH_IPAUTH if(allow_source_address()) { # source IP allowed return; } #!endif # authenticate if from local subscriber if (from_uri==myself) { if (!proxy_authorize("$fd", "subscriber")) { proxy_challenge("$fd", "0"); exit; } if (is_method("PUBLISH")) { if ($au!=$tU) { sl_send_reply("403","Forbidden auth ID"); exit; } } else { if ($au!=$fU) { sl_send_reply("403","Forbidden auth ID"); exit; } }
consume_credentials(); # caller authenticated } else { # caller is not local subscriber, then check if it calls # a local destination, otherwise deny, not an open relay here if (!uri==myself) { sl_send_reply("403","Not relaying"); exit; } } } #!endif return; }
# Caller NAT detection route route[NAT] { #!ifdef WITH_NAT force_rport(); if (nat_uac_test("19")) { if (method=="REGISTER") { fix_nated_register(); } else { fix_nated_contact(); } setflag(FLT_NATS); } #!endif return; }
# RTPProxy control route[RTPPROXY] { #!ifdef WITH_NAT if (is_method("BYE")) { unforce_rtp_proxy(); } else if (is_method("INVITE")){ force_rtp_proxy(); } if (!has_totag()) add_rr_param(";nat=yes"); #!endif return; }
# Routing to foreign domains route[SIPOUT] { if (!uri==myself) { append_hf("P-hint: outbound\r\n"); route(RELAY); } }
# PSTN GW routing route[PSTN] { #!ifdef WITH_PSTN # check if PSTN GW IP is defined if (strempty($sel(cfg_get.pstn.gw_ip))) { xlog("SCRIPT: PSTN rotuing enabled but pstn.gw_ip not defined\n"); return; }
# route to PSTN dialed numbers starting with '+' or '00' # (international format) # - update the condition to match your dialing rules for PSTN routing if(!($rU=~"^(+|00)[1-9][0-9]{3,20}$")) return;
# only local users allowed to call if(from_uri!=myself) { sl_send_reply("403", "Not Allowed"); exit; }
$ru = "sip:" + $rU + "@" + $sel(cfg_get.pstn.gw_ip);
route(RELAY); exit; #!endif
return; }
# XMLRPC routing #!ifdef WITH_XMLRPC route[XMLRPC] { # allow XMLRPC from localhost if ((method=="POST" || method=="GET") && (src_ip==127.0.0.1)) { # close connection only for xmlrpclib user agents (there is a bug in # xmlrpclib: it waits for EOF before interpreting the response). if ($hdr(User-Agent) =~ "xmlrpclib") set_reply_close(); set_reply_no_connect(); dispatch_rpc(); exit; } send_reply("403", "Forbidden"); exit; } #!endif
# Sample branch router branch_route[BRANCH_ONE] { xdbg("new branch at $ru\n"); }
# Sample onreply route onreply_route[REPLY_ONE] { xdbg("incoming reply\n"); #!ifdef WITH_NAT if ((isflagset(FLT_NATS) || isbflagset(FLB_NATB)) && status=~"(183)|(2[0-9][0-9])") { force_rtp_proxy(); } if (isbflagset("6")) { fix_nated_contact(); } #!endif }
# Sample failure route failure_route[FAIL_ONE] { #!ifdef WITH_NAT if (is_method("INVITE") && (isbflagset(FLB_NATB) || isflagset(FLT_NATS))) { unforce_rtp_proxy(); } #!endif
if (t_is_canceled()) { exit; }
# uncomment the following lines if you want to block client # redirect based on 3xx replies. ##if (t_check_status("3[0-9][0-9]")) { ##t_reply("404","Not found"); ## exit; ##}
# uncomment the following lines if you want to redirect the failed # calls to a different new destination ##if (t_check_status("486|408")) { ## sethostport("192.168.2.100:5060"); ## append_branch(); ## # do not set the missed call flag again ## t_relay(); ##} }
#!ifdef WITH_XCAPSRV # #!define WITH_XHTTPAUTH event_route[xhttp:request] { xdbg("===== xhttp: request [$rv] $rm => $hu\n");
#!ifdef WITH_XHTTPAUTH if (!www_authorize("xcap", "subscriber")) { www_challenge("xcap", "0"); exit; } #!endif xdbg("===== xhttp: Antes del if de $hu\n"); if($hu=~"^/xcap-root/") { xdbg("===== xhttp: Dentro del if de $hu\n"); set_reply_close(); set_reply_no_connect(); # xcap ops $xcapuri(u=>data) = $hu; if($xcapuri(u=>xuid)=~"^sip:.+@.+") $var(uri) = $xcapuri(u=>xuid); else if($xcapuri(u=>xuid)=~".+@.+") $var(uri) = "sip:" + $xcapuri(u=>xuid); else $var(uri) = "sip:"+ $xcapuri(u=>xuid) + "@" + $Ri; xlog("===== xhttp: $xcapuri(u=>auid) : $xcapuri(u=>xuid)\n"); if($xcapuri(u=>auid)=="xcap-caps") { $var(xbody) = "<?xml version='1.0' encoding='UTF-8'?>
<xcap-caps xmlns='urn:ietf:params:xml:ns:xcap-caps'> <auids> <auid>rls-services</auid> <auid>pidf-manipulation</auid> <auid>xcap-caps</auid> <auid>resource-lists</auid> <auid>pres-rules</auid> <auid>org.openmobilealliance.pres-rules</auid> </auids> <extensions> </extensions> <namespaces> <namespace>urn:ietf:params:xml:ns:rls-services</namespace> <namespace>urn:ietf:params:xml:ns:pidf</namespace> <namespace>urn:ietf:params:xml:ns:xcap-caps</namespace> <namespace>urn:ietf:params:xml:ns:resource-lists</namespace> <namespace>urn:ietf:params:xml:ns:pres-rules</namespace> </namespaces> </xcap-caps>"; xhttp_reply("200", "ok", "application/xcap-caps+xml", "$var(xbody)"); exit; }
#!ifdef WITH_XHTTPAUTH # be sure auth user access only its documents if ($au!=$(var(uri){uri.user})) { xhttp_reply("403", "Forbidden", "text/html", "<html><body>$si:$sp</body></html>"); exit; }
#!endif xdbg("===== xhttp: Antes del switch $rm => $hu\n"); switch($rm) { case "PUT": xcaps_put("$var(uri)", "$hu", "$rb"); if($xcapuri(u=>auid)=~"pres-rules") { xlog("===== xhttp put: refreshing watchers for $var(uri)\n"); pres_update_watchers("$var(uri)", "presence"); pres_refresh_watchers("$var(uri)", "presence", 1); } exit; break; case "GET": xlog("===== xhttp: get $var(uri) => $hu\n"); xcaps_get("$var(uri)", "$hu"); exit; break; case "DELETE": xcaps_del("$var(uri)", "$hu"); if($xcapuri(u=>auid)=~"pres-rules") { xlog("===== xhttp del: refreshing watchers for $var(uri)\n"); pres_update_watchers("$var(uri)", "presence"); pres_refresh_watchers("$var(uri)", "presence", 1); } exit; break; } }
# http ops xhttp_reply("200", "ok", "text/html", "<html><body>OK: $si:$sp</body></html>"); exit; } #!endif/
Regards, Andrés.
El 21/12/10 10:22, Klaus Darilion escribió:
Am 16.12.2010 13:36, schrieb "Andrés S. García Ruiz":
B.5) P-CSCF ---- SUBSCRIBE ----> Presentity???
SUBSCRIBE sip:testuser01@155.54.190.245:8060;rinstance=9b7761b4bcaa4bd0 SIP/2.0 Record-Route: sip:mt@pcscf.open-ims.test:4060;lr Record-Route: sip:mt@scscf.open-ims.test:6060;lr Via: SIP/2.0/TCP 155.54.210.134:4060;branch=z9hG4bK07df.baa7cf24.0 Via: SIP/2.0/UDP 155.54.210.135:6060;received=155.54.210.135;rport=6060;branch=z9hG4bK07df.8a35e4f3.0
Via: SIP/2.0/UDP 155.54.210.136;branch=z9hG4bK07df.3688b985.0 Via: SIP/2.0/UDP 155.54.190.245;branch=z9hG4bK07df.964e0ba7.0 To: sip:testuser01@open-ims.test From: sip:restricted_areas@open-ims.test;tag=533cb9e91f4b999cf76861cbb9ed54ed-32d5
CSeq: 10 SUBSCRIBE Call-ID: 7fd8dfdd-21694@127.0.0.1 Content-Length: 0 User-Agent: kamailio (3.2.0-dev1 (i386/linux)) Max-Forwards: 14 Event: presence Contact: sip:155.54.190.245:5060;transport=udp Expires: 10810 Max-Forwards: 70 Support: eventlist P-Called-Party-ID: sip:testuser01@open-ims.test
The step B.5 is sent directly to the presentity testuser01. Instead of that, I thought that message was suppose to be sent to the presence server in the URI that is shown in Contact header.
If the P-CSCF is not forwarding the request as supposed, I guess you have to fix the routing on the P-CSCF.
klaus
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
Hello,
Thanks for your responses and happy new year!
Could anyone tell me how to make the RLS module work properly?
I've tried several different solutions, but I still don't know what's the expected behaviour of the RLS.
I'm using the Kamailio integrated presence server + RLS. Then, the RLS is supposed to send a SUBSCRIBE to each of the presentities in the subscribed presence list?
In that case, and if the domain of the presentity is the same as the used by the watcher, the SUBSCRIBE will go back to the Kamailio?
This is the reason why I don't receive the notify. There are no dialogs for the subscription:
5(13925) DEBUG: presence [notify.c:1302]: found 0 dialogs( 0 in database and 0 in hash_table) 5(13925) DEBUG: presence [notify.c:1387]: Could not get subscription dialog 5(13925) DEBUG: presence [notify.c:1461]: dialog info: 5(13925) DEBUG: presence [notify.c:122]: [pres_uri]= sip:restricted_areas_presentities@open-ims.test [to_user]= restricted_areas_presentities [to_domain]= open-ims.test [w_user]= restricted_areas [w_domain]= open-ims.test [event]= presence [status]= active [expires]= 0 [callid]= nYhLl92BHRHtSTy3f8iNZ1v6irOhhfd2fNnFtSXTOlk. [local_cseq]=1 [to_tag]= a6a1c5f60faecf035a1ae5b6e96e979a-5cc7 [from_tag]= f733f739 [contact]= sip:restricted_areas@155.54.190.245:8060 [record_route]= sip:mo@scscf.open-ims.test:6060;lr,sip:mo@pcscf.open-ims.test:4060;lr 5(13925) DEBUG: presence [hash.c:471]: pres_uri= sip:restricted_areas_presentities@open-ims.test 5(13925) DEBUG: presence [notify.c:643]: No record exists in hash_table 5(13925) DEBUG: presence [notify.c:1515]: Could not get the notify_body 5(13925) DEBUG: presence [notify.c:225]: state = terminated 5(13925) DEBUG: presence [notify.c:1555]: headers: Max-Forwards: 70 Event: presence Contact: sip:155.54.190.245:5060;transport=udp Subscription-State: terminated;reason=timeout
Any hints?
Cheers, Andrés.
El 24/12/10 11:03, Daniel-Constantin Mierla escribió:
Hello,
On 12/22/10 4:55 PM, Klaus Darilion wrote:
- Kamailio will send the request to the address of the list member
(normal DNS lookups).
- If there is a problem with OpenIMS then you should ask the OpenIMS
guys, we are not familiar with OpenIMS.
for sake of completion, openimscore is running now on the same core as version 3.x, it has just some extra modules. So in regard to routing and common modules, it the same thing.
Cheers, Daniel
regards klaus
Am 22.12.2010 12:57, schrieb "Andrés S. García Ruiz":
Thanks a lot for your response!
I've been thinking about it and there's something abnormal. Firs, the RLS is suppose to send the initial SUBSCRIBE to the S-CSCF instead of sending it to the I-CSCF. Then, I don't know why the S-CSCF translates the SUBSCRIBE URI (sip:testuser02@open-ims.test) to "sip:testuser01@155.54.190.245:8060;rinstance=9b7761b4bcaa4bd0". All the routing is the default configuration of both cscfs and rls.
How can I change the routing of the RLS in order it to send the SUBSCRIBE messages to the S-CSCF?
Here's the configuration file: / #!KAMAILIO
#!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 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 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
####### Defined Values #########
#!define WITH_DEBUG #!define WITH_AUTH #!define WITH_MYSQL #!define WITH_USRLOCDB #!define WITH_PRESENCE #!define WITH_XCAPSRV
# *** 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. #!define DBURL "mysql://openser:openserrw@localhost/openser" #!endif #!ifdef WITH_MULTIDOMAIN # - the value for 'use_domain' parameters #!define MULTIDOMAIN 1 #!else #!define MULTIDOMAIN 0 #!endif
# - 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 #########
#!ifdef WITH_DEBUG debug=4 log_stderror=yes #!else debug=2 log_stderror=no #!endif
memdbg=5 memlog=5
log_facility=LOG_LOCAL0
fork=yes children=4
/* uncomment the next line to disable TCP (default on) */ #disable_tcp=yes
/* uncomment the next line to disable the auto discovery of local aliases based on reverse DNS on IPs (default on) */ #auto_aliases=no
/* add local domain aliases */ alias="open-ims.test"
/* uncomment and configure the following line if you want Kamailio to bind on a specific interface/port/proto (default bind on all available) */ #listen=udp:10.0.0.10:5060
/* 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
#!ifdef WITH_XCAPSRV tcp_accept_no_cl=yes #!endif
####### Custom Parameters #########
# These parameters can be modified runtime via RPC interface # - see the documentation of 'cfg_rpc' module. # # Format: group.id = value 'desc' description # Access: $sel(cfg_get.group.id) or @cfg_get.group.id #
#!ifdef WITH_PSTN # PSTN GW Routing # # - pstn.gw_ip: valid IP or hostname as string value, example: # pstn.gw_ip = "10.0.0.101" desc "My PSTN GW Address" # # - by default is empty to avoid misrouting pstn.gw_ip = "" desc "PSTN GW Address" #!endif
####### Modules Section ########
# set paths to location of modules #!ifdef LOCAL_TEST_RUN mpath="modules_k:modules" #!else mpath="/usr/local/kamailio-3.1-xcap-rls/lib/kamailio/modules_k/:/usr/local/kamailio-3.1-xcap-rls/lib/kamailio/modules/"
#!endif
#!ifdef WITH_MYSQL loadmodule "db_mysql.so" #!endif
loadmodule "mi_fifo.so" loadmodule "kex.so" loadmodule "tm.so" loadmodule "tmx.so" loadmodule "sl.so" loadmodule "rr.so" loadmodule "pv.so" loadmodule "maxfwd.so" loadmodule "usrloc.so" loadmodule "registrar.so" loadmodule "textops.so" loadmodule "siputils.so" loadmodule "xlog.so" loadmodule "sanity.so" loadmodule "ctl.so" loadmodule "mi_rpc.so" loadmodule "acc.so" # loadmodule "pua_mi.so" # loadmodule "pua_usrloc.so"
#!ifdef WITH_AUTH loadmodule "auth.so" loadmodule "auth_db.so" #!ifdef WITH_IPAUTH loadmodule "permissions.so" #!endif #!endif
#!ifdef WITH_ALIASDB loadmodule "alias_db.so" #!endif
#!ifdef WITH_MULTIDOMAIN loadmodule "domain.so" #!endif
#!ifdef WITH_PRESENCE loadmodule "presence.so" loadmodule "presence_xml.so" loadmodule "pua.so" loadmodule "rls.so" #!endif
#!ifdef WITH_NAT loadmodule "nathelper.so" loadmodule "rtpproxy.so" #!endif
#!ifdef WITH_TLS loadmodule "tls.so" #!endif
#!ifdef WITH_ANTIFLOOD loadmodule "htable.so" loadmodule "pike.so" #!endif
#!ifdef WITH_XMLRPC loadmodule "xmlrpc.so" #!endif
#!ifdef WITH_XCAPSRV loadmodule "xhttp.so" loadmodule "xcap_server.so" #!endif
# ----------------- setting module-specific parameters ---------------
# ----- mi_fifo params ----- modparam("mi_fifo", "fifo_name", "/tmp/kamailio_fifo")
# ----- tm params ----- # auto-discard branches from previous serial forking leg modparam("tm", "failure_reply_mode", 3) # default retransmission timeout: 30sec modparam("tm", "fr_timer", 30000) # default invite retransmission timeout after 1xx: 120sec modparam("tm", "fr_inv_timer", 120000)
# ----- rr params ----- # add value to ;lr param to cope with most of the UAs modparam("rr", "enable_full_lr", 1) # do not append from tag to the RR (no need for this script) modparam("rr", "append_fromtag", 0)
# ----- registrar params ----- modparam("registrar", "method_filtering", 1) /* uncomment the next line to disable parallel forking via location */ # modparam("registrar", "append_branches", 0) /* uncomment the next line not to allow more than 10 contacts per AOR */ #modparam("registrar", "max_contacts", 10)
# ----- acc params ----- /* what special events should be accounted ? */ modparam("acc", "early_media", 0) modparam("acc", "report_ack", 0) modparam("acc", "report_cancels", 0) /* by default ww do not adjust the direct of the sequential requests. if you enable this parameter, be sure the enable "append_fromtag" in "rr" module */ modparam("acc", "detect_direction", 0) /* account triggers (flags) */ modparam("acc", "log_flag", FLT_ACC) modparam("acc", "log_missed_flag", FLT_ACCMISSED) modparam("acc", "log_extra", "src_user=$fU;src_domain=$fd;dst_ouser=$tU;dst_user=$rU;dst_domain=$rd")
modparam("acc", "failed_transaction_flag", FLT_ACCFAILED) /* enhanced DB accounting */ #!ifdef WITH_ACCDB modparam("acc", "db_flag", FLT_ACC) modparam("acc", "db_missed_flag", FLT_ACCMISSED) modparam("acc", "db_url", DBURL) modparam("acc", "db_extra", "src_user=$fU;src_domain=$fd;dst_ouser=$tU;dst_user=$rU;dst_domain=$rd")
#!endif
# ----- usrloc params ----- /* enable DB persistency for location entries */ #!ifdef WITH_USRLOCDB modparam("usrloc", "db_url", DBURL) modparam("usrloc", "db_mode", 2) modparam("usrloc", "use_domain", MULTIDOMAIN) #!endif
# ----- auth_db params ----- #!ifdef WITH_AUTH modparam("auth_db", "db_url", DBURL) modparam("auth_db", "calculate_ha1", yes) modparam("auth_db", "password_column", "password") modparam("auth_db", "load_credentials", "") modparam("auth_db", "use_domain", MULTIDOMAIN)
# ----- permissions params ----- #!ifdef WITH_IPAUTH modparam("permissions", "db_url", DBURL) modparam("permissions", "db_mode", 1) #!endif
#!endif
# ----- alias_db params ----- #!ifdef WITH_ALIASDB modparam("alias_db", "db_url", DBURL) modparam("alias_db", "use_domain", MULTIDOMAIN) #!endif
# ----- domain params ----- #!ifdef WITH_MULTIDOMAIN modparam("domain", "db_url", DBURL) # use caching modparam("domain", "db_mode", 1) # register callback to match myself condition with domains list modparam("domain", "register_myself", 1) #!endif
#!ifdef WITH_PRESENCE # ----- presence params ----- modparam("presence", "db_url", DBURL)
# ----- presence_xml params ----- modparam("presence_xml", "db_url", DBURL) modparam("presence_xml", "force_active", 1) modparam("presence_xml", "integrated_xcap_server", 1) modparam("rls", "db_url", DBURL) modparam("rls", "xcap_table", "xcap") modparam("rls", "rlsubs_table", "rls_watchers") modparam("rls", "rlpres_table", "rls_presentity") modparam("rls", "clean_period", 100) modparam("rls", "waitn_time", 50) modparam("rls", "max_expires", 10800) modparam("rls", "hash_size", 9) modparam("rls", "xcap_root", "http://ciervo.inf.um.es/xcap-root:5060") modparam("rls", "integrated_xcap_server", 1) modparam("rls", "to_presence_code", 10) modparam("rls", "rls_event", "presence") #!endif
#!ifdef WITH_NAT # ----- rtpproxy params ----- modparam("rtpproxy", "rtpproxy_sock", "udp:127.0.0.1:7722")
# ----- nathelper params ----- modparam("nathelper", "natping_interval", 30) modparam("nathelper", "ping_nated_only", 1) modparam("nathelper", "sipping_bflag", FLB_NATSIPPING) modparam("nathelper", "sipping_from", "sip:pinger@kamailio.org")
# params needed for NAT traversal in other modules modparam("nathelper|registrar", "received_avp", "$avp(RECEIVED)") modparam("usrloc", "nat_bflag", FLB_NATB) #!endif
#!ifdef WITH_TLS # ----- tls params ----- modparam("tls", "config", "/usr/local/etc/kamailio/tls.cfg") #!endif
#!ifdef WITH_ANTIFLOOD # ----- pike params ----- modparam("pike", "sampling_time_unit", 2) modparam("pike", "reqs_density_per_unit", 16) modparam("pike", "remove_latency", 4)
# ----- htable params ----- # ip ban htable with autoexpire after 5 minutes modparam("htable", "htable", "ipban=>size=8;autoexpire=300;") #!endif
#!ifdef WITH_XMLRPC # ----- xmlrpc params ----- modparam("xmlrpc", "route", "XMLRPC"); modparam("xmlrpc", "url_match", "^/RPC") #!endif
#!ifdef WITH_XCAPSRV # ----- xcap_server params ----- modparam("xcap_server", "db_url", DBURL) # modparam("rls", "integrated_xcap_server", 1) #!endif
####### Routing Logic ########
# Main SIP request routing logic # - processing of any incoming SIP request starts with this route route {
# per request initial checks route(REQINIT);
# NAT detection route(NAT);
# handle requests within SIP dialogs route(WITHINDLG);
### only initial requests (no To tag)
# CANCEL processing if (is_method("CANCEL")) { if (t_check_trans()) t_relay(); exit; }
t_check_trans();
# authentication route(AUTH);
# record routing for dialog forming requests (in case they are routed) # - remove preloaded route headers remove_hf("Route"); if (is_method("INVITE|SUBSCRIBE")) record_route();
# account only INVITEs if (is_method("INVITE")) { setflag(FLT_ACC); # do accounting }
# dispatch requests to foreign domains route(SIPOUT);
### requests for my local domains
# handle presence related requests route(PRESENCE);
# handle registrations route(REGISTRAR);
if ($rU==$null) { # request with no Username in RURI sl_send_reply("484","Address Incomplete"); exit; }
# dispatch destinations to PSTN route(PSTN);
# user location service route(LOCATION);
route(RELAY); }
route[RELAY] { #!ifdef WITH_NAT if (check_route_param("nat=yes")) { setbflag(FLB_NATB); } if (isflagset(FLT_NATS) || isbflagset(FLB_NATB)) { route(RTPPROXY); } #!endif
/* example how to enable some additional event routes */ if (is_method("INVITE")) { #t_on_branch("BRANCH_ONE"); t_on_reply("REPLY_ONE"); t_on_failure("FAIL_ONE"); }
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=>$si)!=$null) { # ip is already blocked xdbg("request from blocked IP - $rm from $fu (IP:$si:$sp)\n"); exit; } if (!pike_check_req()) { xlog("L_ALERT","ALERT: pike blocking $rm from $fu (IP:$si:$sp)\n"); $sht(ipban=>$si) = 1; exit; } } #!endif
if (!mf_process_maxfwd_header("10")) { sl_send_reply("483","Too Many Hops"); exit; }
if(!sanity_check("1511", "7")) { xlog("Malformed SIP message from $si:$sp\n"); exit; } }
# Handle requests within SIP dialogs route[WITHINDLG] { if (has_totag()) { # sequential request withing a dialog should # take the path determined by record-routing if (loose_route()) { if (is_method("BYE")) { setflag(FLT_ACC); # do accounting ... setflag(FLT_ACCFAILED); # ... even if the transaction fails } route(RELAY); } else { if (is_method("SUBSCRIBE") && uri == myself) { # in-dialog subscribe requests route(PRESENCE); exit; } if ( is_method("ACK") ) { if ( t_check_trans() ) { # no loose-route, but stateful ACK; # must be an ACK after a 487 # or e.g. 404 from upstream server t_relay(); exit; } else { # ACK without matching transaction ... ignore and discard exit; } } sl_send_reply("404","Not here"); } exit; } }
# Handle SIP registrations route[REGISTRAR] { if (is_method("REGISTER")) { if(isflagset(FLT_NATS)) { setbflag(FLB_NATB); # uncomment next line to do SIP NAT pinging ## setbflag(FLB_NATSIPPING); } if (!save("location")) sl_reply_error();
exit; } }
# USER location service route[LOCATION] {
#!ifdef WITH_ALIASDB # search in DB-based aliases alias_db_lookup("dbaliases"); #!endif
if (!lookup("location")) { switch ($rc) { case -1: case -3: t_newtran(); t_reply("404", "Not Found"); exit; case -2: sl_send_reply("405", "Method Not Allowed"); exit; } }
# when routing via usrloc, log the missed calls also if (is_method("INVITE")) { setflag(FLT_ACCMISSED); } }
# Presence server route route[PRESENCE] {
if(!is_method("PUBLISH|SUBSCRIBE")) return;
#!ifdef WITH_PRESENCE
if (!t_newtran()) { sl_reply_error(); exit; };
if(is_method("PUBLISH")) { handle_publish(); t_release(); } else if( is_method("SUBSCRIBE")) { $var(ret_code)= rls_handle_subscribe();
if($var(ret_code)== 10) { handle_subscribe(); } t_release();
}else if(method=="NOTIFY") { rls_handle_notify(); }
exit; #!endif # if presence enabled, this part will not be executed if (is_method("PUBLISH") || $rU==$null) { sl_send_reply("404", "Not here"); exit; } return; }
# Authentication route route[AUTH] { return; #!ifdef WITH_AUTH if (is_method("REGISTER")) { # authenticate the REGISTER requests (uncomment to enable auth) if (!www_authorize("$td", "subscriber")) { www_challenge("$td", "0"); exit; }
if ($au!=$tU) { sl_send_reply("403","Forbidden auth ID"); exit; } } else {
#!ifdef WITH_IPAUTH if(allow_source_address()) { # source IP allowed return; } #!endif # authenticate if from local subscriber if (from_uri==myself) { if (!proxy_authorize("$fd", "subscriber")) { proxy_challenge("$fd", "0"); exit; } if (is_method("PUBLISH")) { if ($au!=$tU) { sl_send_reply("403","Forbidden auth ID"); exit; } } else { if ($au!=$fU) { sl_send_reply("403","Forbidden auth ID"); exit; } }
consume_credentials(); # caller authenticated } else { # caller is not local subscriber, then check if it calls # a local destination, otherwise deny, not an open relay here if (!uri==myself) { sl_send_reply("403","Not relaying"); exit; } } } #!endif return; }
# Caller NAT detection route route[NAT] { #!ifdef WITH_NAT force_rport(); if (nat_uac_test("19")) { if (method=="REGISTER") { fix_nated_register(); } else { fix_nated_contact(); } setflag(FLT_NATS); } #!endif return; }
# RTPProxy control route[RTPPROXY] { #!ifdef WITH_NAT if (is_method("BYE")) { unforce_rtp_proxy(); } else if (is_method("INVITE")){ force_rtp_proxy(); } if (!has_totag()) add_rr_param(";nat=yes"); #!endif return; }
# Routing to foreign domains route[SIPOUT] { if (!uri==myself) { append_hf("P-hint: outbound\r\n"); route(RELAY); } }
# PSTN GW routing route[PSTN] { #!ifdef WITH_PSTN # check if PSTN GW IP is defined if (strempty($sel(cfg_get.pstn.gw_ip))) { xlog("SCRIPT: PSTN rotuing enabled but pstn.gw_ip not defined\n"); return; }
# route to PSTN dialed numbers starting with '+' or '00' # (international format) # - update the condition to match your dialing rules for PSTN routing if(!($rU=~"^(+|00)[1-9][0-9]{3,20}$")) return;
# only local users allowed to call if(from_uri!=myself) { sl_send_reply("403", "Not Allowed"); exit; }
$ru = "sip:" + $rU + "@" + $sel(cfg_get.pstn.gw_ip);
route(RELAY); exit; #!endif
return; }
# XMLRPC routing #!ifdef WITH_XMLRPC route[XMLRPC] { # allow XMLRPC from localhost if ((method=="POST" || method=="GET") && (src_ip==127.0.0.1)) { # close connection only for xmlrpclib user agents (there is a bug in # xmlrpclib: it waits for EOF before interpreting the response). if ($hdr(User-Agent) =~ "xmlrpclib") set_reply_close(); set_reply_no_connect(); dispatch_rpc(); exit; } send_reply("403", "Forbidden"); exit; } #!endif
# Sample branch router branch_route[BRANCH_ONE] { xdbg("new branch at $ru\n"); }
# Sample onreply route onreply_route[REPLY_ONE] { xdbg("incoming reply\n"); #!ifdef WITH_NAT if ((isflagset(FLT_NATS) || isbflagset(FLB_NATB)) && status=~"(183)|(2[0-9][0-9])") { force_rtp_proxy(); } if (isbflagset("6")) { fix_nated_contact(); } #!endif }
# Sample failure route failure_route[FAIL_ONE] { #!ifdef WITH_NAT if (is_method("INVITE") && (isbflagset(FLB_NATB) || isflagset(FLT_NATS))) { unforce_rtp_proxy(); } #!endif
if (t_is_canceled()) { exit; }
# uncomment the following lines if you want to block client # redirect based on 3xx replies. ##if (t_check_status("3[0-9][0-9]")) { ##t_reply("404","Not found"); ## exit; ##}
# uncomment the following lines if you want to redirect the failed # calls to a different new destination ##if (t_check_status("486|408")) { ## sethostport("192.168.2.100:5060"); ## append_branch(); ## # do not set the missed call flag again ## t_relay(); ##} }
#!ifdef WITH_XCAPSRV # #!define WITH_XHTTPAUTH event_route[xhttp:request] { xdbg("===== xhttp: request [$rv] $rm => $hu\n");
#!ifdef WITH_XHTTPAUTH if (!www_authorize("xcap", "subscriber")) { www_challenge("xcap", "0"); exit; } #!endif xdbg("===== xhttp: Antes del if de $hu\n"); if($hu=~"^/xcap-root/") { xdbg("===== xhttp: Dentro del if de $hu\n"); set_reply_close(); set_reply_no_connect(); # xcap ops $xcapuri(u=>data) = $hu; if($xcapuri(u=>xuid)=~"^sip:.+@.+") $var(uri) = $xcapuri(u=>xuid); else if($xcapuri(u=>xuid)=~".+@.+") $var(uri) = "sip:" + $xcapuri(u=>xuid); else $var(uri) = "sip:"+ $xcapuri(u=>xuid) + "@" + $Ri; xlog("===== xhttp: $xcapuri(u=>auid) : $xcapuri(u=>xuid)\n"); if($xcapuri(u=>auid)=="xcap-caps") { $var(xbody) = "<?xml version='1.0' encoding='UTF-8'?>
<xcap-caps xmlns='urn:ietf:params:xml:ns:xcap-caps'> <auids> <auid>rls-services</auid> <auid>pidf-manipulation</auid> <auid>xcap-caps</auid> <auid>resource-lists</auid> <auid>pres-rules</auid> <auid>org.openmobilealliance.pres-rules</auid> </auids> <extensions> </extensions> <namespaces> <namespace>urn:ietf:params:xml:ns:rls-services</namespace> <namespace>urn:ietf:params:xml:ns:pidf</namespace> <namespace>urn:ietf:params:xml:ns:xcap-caps</namespace> <namespace>urn:ietf:params:xml:ns:resource-lists</namespace> <namespace>urn:ietf:params:xml:ns:pres-rules</namespace> </namespaces> </xcap-caps>"; xhttp_reply("200", "ok", "application/xcap-caps+xml", "$var(xbody)"); exit; }
#!ifdef WITH_XHTTPAUTH # be sure auth user access only its documents if ($au!=$(var(uri){uri.user})) { xhttp_reply("403", "Forbidden", "text/html", "<html><body>$si:$sp</body></html>"); exit; }
#!endif xdbg("===== xhttp: Antes del switch $rm => $hu\n"); switch($rm) { case "PUT": xcaps_put("$var(uri)", "$hu", "$rb"); if($xcapuri(u=>auid)=~"pres-rules") { xlog("===== xhttp put: refreshing watchers for $var(uri)\n"); pres_update_watchers("$var(uri)", "presence"); pres_refresh_watchers("$var(uri)", "presence", 1); } exit; break; case "GET": xlog("===== xhttp: get $var(uri) => $hu\n"); xcaps_get("$var(uri)", "$hu"); exit; break; case "DELETE": xcaps_del("$var(uri)", "$hu"); if($xcapuri(u=>auid)=~"pres-rules") { xlog("===== xhttp del: refreshing watchers for $var(uri)\n"); pres_update_watchers("$var(uri)", "presence"); pres_refresh_watchers("$var(uri)", "presence", 1); } exit; break; } }
# http ops xhttp_reply("200", "ok", "text/html", "<html><body>OK: $si:$sp</body></html>"); exit; } #!endif/
Regards, Andrés.
El 21/12/10 10:22, Klaus Darilion escribió:
Am 16.12.2010 13:36, schrieb "Andrés S. García Ruiz":
B.5) P-CSCF ---- SUBSCRIBE ----> Presentity???
SUBSCRIBE sip:testuser01@155.54.190.245:8060;rinstance=9b7761b4bcaa4bd0 SIP/2.0 Record-Route: sip:mt@pcscf.open-ims.test:4060;lr Record-Route: sip:mt@scscf.open-ims.test:6060;lr Via: SIP/2.0/TCP 155.54.210.134:4060;branch=z9hG4bK07df.baa7cf24.0 Via: SIP/2.0/UDP 155.54.210.135:6060;received=155.54.210.135;rport=6060;branch=z9hG4bK07df.8a35e4f3.0
Via: SIP/2.0/UDP 155.54.210.136;branch=z9hG4bK07df.3688b985.0 Via: SIP/2.0/UDP 155.54.190.245;branch=z9hG4bK07df.964e0ba7.0 To: sip:testuser01@open-ims.test From: sip:restricted_areas@open-ims.test;tag=533cb9e91f4b999cf76861cbb9ed54ed-32d5
CSeq: 10 SUBSCRIBE Call-ID: 7fd8dfdd-21694@127.0.0.1 Content-Length: 0 User-Agent: kamailio (3.2.0-dev1 (i386/linux)) Max-Forwards: 14 Event: presence Contact: sip:155.54.190.245:5060;transport=udp Expires: 10810 Max-Forwards: 70 Support: eventlist P-Called-Party-ID: sip:testuser01@open-ims.test
The step B.5 is sent directly to the presentity testuser01. Instead of that, I thought that message was suppose to be sent to the presence server in the URI that is shown in Contact header.
If the P-CSCF is not forwarding the request as supposed, I guess you have to fix the routing on the P-CSCF.
klaus
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
Am 04.01.2011 13:06, schrieb "Andrés S. García Ruiz":
Hello,
Thanks for your responses and happy new year!
Could anyone tell me how to make the RLS module work properly?
I've tried several different solutions, but I still don't know what's the expected behaviour of the RLS.
I'm using the Kamailio integrated presence server + RLS. Then, the RLS is supposed to send a SUBSCRIBE to each of the presentities in the subscribed presence list?
Correct. So-called "backend subscriptions"
In that case, and if the domain of the presentity is the same as the used by the watcher, the SUBSCRIBE will go back to the Kamailio?
yes.
This is the reason why I don't receive the notify. There are no dialogs for the subscription:
5(13925) DEBUG: presence [notify.c:1302]: found 0 dialogs( 0 in database and 0 in hash_table) 5(13925) DEBUG: presence [notify.c:1387]: Could not get subscription dialog 5(13925) DEBUG: presence [notify.c:1461]: dialog info: 5(13925) DEBUG: presence [notify.c:122]: [pres_uri]= sip:restricted_areas_presentities@open-ims.test [to_user]= restricted_areas_presentities [to_domain]= open-ims.test [w_user]= restricted_areas [w_domain]= open-ims.test [event]= presence [status]= active [expires]= 0 [callid]= nYhLl92BHRHtSTy3f8iNZ1v6irOhhfd2fNnFtSXTOlk. [local_cseq]=1 [to_tag]= a6a1c5f60faecf035a1ae5b6e96e979a-5cc7 [from_tag]= f733f739 [contact]= sip:restricted_areas@155.54.190.245:8060 [record_route]= sip:mo@scscf.open-ims.test:6060;lr,sip:mo@pcscf.open-ims.test:4060;lr 5(13925) DEBUG: presence [hash.c:471]: pres_uri= sip:restricted_areas_presentities@open-ims.test 5(13925) DEBUG: presence [notify.c:643]: No record exists in hash_table 5(13925) DEBUG: presence [notify.c:1515]: Could not get the notify_body 5(13925) DEBUG: presence [notify.c:225]: state = terminated 5(13925) DEBUG: presence [notify.c:1555]: headers: Max-Forwards: 70 Event: presence Contact: sip:155.54.190.245:5060;transport=udp Subscription-State: terminated;reason=timeout
Any hints?
That shouldn'T be the problem. You should see the backend subscription by sniffing on the loopback interface, e.g. to sniff an all interfaces (and in nice format) use:
ngrep -d any -W byline -t -P "" port 5060
regards Klaus
Hi,
Thanks. I've already been sniffing the network. The capture file of the presence server (kamailio) and the ua (watcher) is attached.
Backend subscriptions must be sent to what CSCF of the presentity domain? The S-CSCF? You wrote me that Kamailio uses dns queries in order to determine the ip of the next IMS entity. In case of a subscription to list@open-ims.test, what dns query will Kamalio do?
The subscription message is:
SUBSCRIBE sip:restricted_areas_presentities@open-ims.test SIP/2.0 Call-ID: nYhLl92BHRHtSTy3f8iNZ1v6irOhhfd2fNnFtSXTOlk. CSeq: 1 SUBSCRIBE From: "restricted_areas" sip:restricted_areas@open-ims.test;tag=f733f739 To: sip:restricted_areas_presentities@open-ims.test Via: SIP/2.0/TCP 155.54.190.245:8060;rport;branch=z9hG4bK-d8754z-a71d1c184df2d432-1---d8754z- Max-Forwards: 70 Event: presence Accept: multipart/related, application/rlmi+xml, application/pidf+xml, application/auth-policy+xml Expires: 30000 Contact: sip:restricted_areas@155.54.190.245:8060 Supported: eventlist Route: sip:orig@scscf.open-ims.test:6060;lr Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO User-Agent: X-Lite IMS-OSGi-Client 0.1 CVS-Mon_Jan_03_09-56-46_CET_2011 Content-Length: 0
And the XCAP document: <?xml version="1.0" encoding="UTF-8"?><rls-services xmlns:rl="urn:ietf:params:xml:ns:resource-lists" xmlns="urn:ietf:params:xml:ns:rls-services"><service uri="sip:restricted_areas_presentities@open-ims.test"><resource-list><list name="friends"><rl:entry uri="sip:testuser01@open-ims.test"/><rl:entry uri="sip:testuser02@open-ims.test"/></list></resource-list><packages><package>presence</package></packages></service></rls-services>
The URI for the document is: /xcap-root/rls-services/users/sip:restricted_areas@open-ims.test/index
Could anyone send me a capture file with the whole process of the subscription to the rls and the notifies sent along with the configuration files of Kamailio (if needed) and the xcap documents?
Thank you all, Andrés.
El 04/01/11 15:08, Klaus Darilion escribió:
Am 04.01.2011 13:06, schrieb "Andrés S. García Ruiz":
Hello,
Thanks for your responses and happy new year!
Could anyone tell me how to make the RLS module work properly?
I've tried several different solutions, but I still don't know what's the expected behaviour of the RLS.
I'm using the Kamailio integrated presence server + RLS. Then, the RLS is supposed to send a SUBSCRIBE to each of the presentities in the subscribed presence list?
Correct. So-called "backend subscriptions"
In that case, and if the domain of the presentity is the same as the used by the watcher, the SUBSCRIBE will go back to the Kamailio?
yes.
This is the reason why I don't receive the notify. There are no dialogs for the subscription:
5(13925) DEBUG: presence [notify.c:1302]: found 0 dialogs( 0 in database and 0 in hash_table) 5(13925) DEBUG: presence [notify.c:1387]: Could not get subscription dialog 5(13925) DEBUG: presence [notify.c:1461]: dialog info: 5(13925) DEBUG: presence [notify.c:122]: [pres_uri]= sip:restricted_areas_presentities@open-ims.test [to_user]= restricted_areas_presentities [to_domain]= open-ims.test [w_user]= restricted_areas [w_domain]= open-ims.test [event]= presence [status]= active [expires]= 0 [callid]= nYhLl92BHRHtSTy3f8iNZ1v6irOhhfd2fNnFtSXTOlk. [local_cseq]=1 [to_tag]= a6a1c5f60faecf035a1ae5b6e96e979a-5cc7 [from_tag]= f733f739 [contact]= sip:restricted_areas@155.54.190.245:8060 [record_route]= sip:mo@scscf.open-ims.test:6060;lr,sip:mo@pcscf.open-ims.test:4060;lr
5(13925) DEBUG: presence [hash.c:471]: pres_uri= sip:restricted_areas_presentities@open-ims.test 5(13925) DEBUG: presence [notify.c:643]: No record exists in hash_table 5(13925) DEBUG: presence [notify.c:1515]: Could not get the notify_body 5(13925) DEBUG: presence [notify.c:225]: state = terminated 5(13925) DEBUG: presence [notify.c:1555]: headers: Max-Forwards: 70 Event: presence Contact: sip:155.54.190.245:5060;transport=udp Subscription-State: terminated;reason=timeout
Any hints?
That shouldn'T be the problem. You should see the backend subscription by sniffing on the loopback interface, e.g. to sniff an all interfaces (and in nice format) use:
ngrep -d any -W byline -t -P "" port 5060
regards Klaus
Andrés, I'm not familiar with the routing policies of Open-IMS. thus you may want to ask also on their mailing lists. But at least I can talk about the RLS in general and Kamailio:
Theory: =======
If the RLS receives a SUBSCRIBE for a RL it generates subscriptions for the list entries. These are either virtual subscriptions (if the RLS acts also as Presence Server and thus knows already the state of a list member in the same domain) or back-end subscriptions (if the list member is in another domain or RLS and PS are separate instances).
If the list member is on another domain it depends on the local policies if the RLS sends the SUBSCRIBE directly to the target domain or sends the request to a local outboundproxy.
If the list member is in the same domain but the RLS and PS are dedicated instances, then routing depends also on the local policy. Of course it would be most efficient if the RLS sends the SUBSCRIBE request directly to the PS, but local policy may also decide to route the request via some proxy (e.g. for accounting or authorization).
Kamailio ========
RLS server in Kamailio is a dedicated module and has no direct interaction with presence server modules. Thus, RLS module does not support virtual subscriptions but all subscriptions are real SIP back-end subscriptions.
RLS module in Kamailio does not support setting an outbound proxy (IIRC code is there but broken), thus, when RLS module sends SUBSCRIBE requests it always uses normal SIP resolutions mechanism to find the target address (NAPTR/SRV/A)
Your Setup ===========
Now, you have to decide how you want the SUBSCRIBE request to be routed - directly from RLS to PS or via some proxy? This is a policy decision and you have to decide (or maybe 3GPP has such a policy?). Once you have decided how you want the back-end SUBSCRIBE to be routed, then you can implement it - either current Kamailio behavior is fine or you have to find some workarounds.
We recently had some discussions on the list about missing features in RLS module compared to Opensips' RLS module. Opensips support outboundproxy and also uses the proper resource list type. That's why I use Opensips as PS/RLS although my main proxy is still Kamailio.
regards Klaus
Am 04.01.2011 21:14, schrieb "Andrés S. García Ruiz":
Hi,
Thanks. I've already been sniffing the network. The capture file of the presence server (kamailio) and the ua (watcher) is attached.
Backend subscriptions must be sent to what CSCF of the presentity domain? The S-CSCF? You wrote me that Kamailio uses dns queries in order to determine the ip of the next IMS entity. In case of a subscription to list@open-ims.test, what dns query will Kamalio do?
The subscription message is:
SUBSCRIBE sip:restricted_areas_presentities@open-ims.test SIP/2.0 Call-ID: nYhLl92BHRHtSTy3f8iNZ1v6irOhhfd2fNnFtSXTOlk. CSeq: 1 SUBSCRIBE From: "restricted_areas" sip:restricted_areas@open-ims.test;tag=f733f739 To: sip:restricted_areas_presentities@open-ims.test Via: SIP/2.0/TCP 155.54.190.245:8060;rport;branch=z9hG4bK-d8754z-a71d1c184df2d432-1---d8754z- Max-Forwards: 70 Event: presence Accept: multipart/related, application/rlmi+xml, application/pidf+xml, application/auth-policy+xml Expires: 30000 Contact: sip:restricted_areas@155.54.190.245:8060 Supported: eventlist Route: sip:orig@scscf.open-ims.test:6060;lr Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO User-Agent: X-Lite IMS-OSGi-Client 0.1 CVS-Mon_Jan_03_09-56-46_CET_2011 Content-Length: 0
And the XCAP document:
<?xml version="1.0" encoding="UTF-8"?><rls-services
xmlns:rl="urn:ietf:params:xml:ns:resource-lists" xmlns="urn:ietf:params:xml:ns:rls-services"><service uri="sip:restricted_areas_presentities@open-ims.test"><resource-list><list name="friends"><rl:entry uri="sip:testuser01@open-ims.test"/>rl:entry uri="sip:testuser02@open-ims.test"/</list></resource-list><packages><package>presence</package></packages></service></rls-services>
The URI for the document is: /xcap-root/rls-services/users/sip:restricted_areas@open-ims.test/index
Could anyone send me a capture file with the whole process of the subscription to the rls and the notifies sent along with the configuration files of Kamailio (if needed) and the xcap documents?
Thank you all, Andrés.
El 04/01/11 15:08, Klaus Darilion escribió:
Am 04.01.2011 13:06, schrieb "Andrés S. García Ruiz":
Hello,
Thanks for your responses and happy new year!
Could anyone tell me how to make the RLS module work properly?
I've tried several different solutions, but I still don't know what's the expected behaviour of the RLS.
I'm using the Kamailio integrated presence server + RLS. Then, the RLS is supposed to send a SUBSCRIBE to each of the presentities in the subscribed presence list?
Correct. So-called "backend subscriptions"
In that case, and if the domain of the presentity is the same as the used by the watcher, the SUBSCRIBE will go back to the Kamailio?
yes.
This is the reason why I don't receive the notify. There are no dialogs for the subscription:
5(13925) DEBUG: presence [notify.c:1302]: found 0 dialogs( 0 in database and 0 in hash_table) 5(13925) DEBUG: presence [notify.c:1387]: Could not get subscription dialog 5(13925) DEBUG: presence [notify.c:1461]: dialog info: 5(13925) DEBUG: presence [notify.c:122]: [pres_uri]= sip:restricted_areas_presentities@open-ims.test [to_user]= restricted_areas_presentities [to_domain]= open-ims.test [w_user]= restricted_areas [w_domain]= open-ims.test [event]= presence [status]= active [expires]= 0 [callid]= nYhLl92BHRHtSTy3f8iNZ1v6irOhhfd2fNnFtSXTOlk. [local_cseq]=1 [to_tag]= a6a1c5f60faecf035a1ae5b6e96e979a-5cc7 [from_tag]= f733f739 [contact]= sip:restricted_areas@155.54.190.245:8060 [record_route]= sip:mo@scscf.open-ims.test:6060;lr,sip:mo@pcscf.open-ims.test:4060;lr
5(13925) DEBUG: presence [hash.c:471]: pres_uri= sip:restricted_areas_presentities@open-ims.test 5(13925) DEBUG: presence [notify.c:643]: No record exists in hash_table 5(13925) DEBUG: presence [notify.c:1515]: Could not get the notify_body 5(13925) DEBUG: presence [notify.c:225]: state = terminated 5(13925) DEBUG: presence [notify.c:1555]: headers: Max-Forwards: 70 Event: presence Contact: sip:155.54.190.245:5060;transport=udp Subscription-State: terminated;reason=timeout
Any hints?
That shouldn'T be the problem. You should see the backend subscription by sniffing on the loopback interface, e.g. to sniff an all interfaces (and in nice format) use:
ngrep -d any -W byline -t -P "" port 5060
regards Klaus
[...]
RLS module in Kamailio does not support setting an outbound proxy (IIRC code is there but broken)
There was no code for support of outbound proxy address in RLS module, but was something trivial to add. I just committed the code on master branch, there is new parameter for RLS module called outbound_proxy which takes a SIP URI as address where to deliver the subscriptions.
If anyone can test, I'll backport on stable branch.
, thus, when RLS module sends SUBSCRIBE requests it always uses normal SIP resolutions mechanism to find the target address (NAPTR/SRV/A)
RLS module in Kamailio works fine for my deployments, if it is something wrong, that will be fixed if it is reported, like any bug for other pieces of code. What do you mean by "not supporting proper resource list type"?
Btw, you kept me back from some commits because you said you have some to do. Is it still valid?
Thanks, Daniel
Daniel-Constantin Mierla writes:
RLS module in Kamailio works fine for my deployments, if it is something wrong, that will be fixed if it is reported, like any bug for other pieces of code. What do you mean by "not supporting proper resource list type"?
daniel,
one thing that is currently missing in both k and opensips rls module is capability to follow external references such as in this example:
<?xml version="1.0" encoding="UTF-8"?> <rls-services xmlns="urn:ietf:params:xml:ns:rls-services"> <service uri="sip:jh_...@test.fi"> <resource-list>http://xcap.test.fi:8080/xcap-root/resource-lists/users/sip:j...@test.fi/gen...</resource-list> <packages> <package>presence</package> </packages> </service> </rls-services>
so, instead of in-line member list, there is a reference to another document where the members are listed.
-- juha
Hello Juha,
On 1/5/11 11:41 AM, Juha Heinanen wrote:
Daniel-Constantin Mierla writes:
RLS module in Kamailio works fine for my deployments, if it is something wrong, that will be fixed if it is reported, like any bug for other pieces of code. What do you mean by "not supporting proper resource list type"?
daniel,
one thing that is currently missing in both k and openips rls module is capability to follow external references such as in this example:
iirc, we discussed this before. This a new feature that is not common at all in clients and thus hard to implemented -- you mentioned that some Nokia phone supports it, if I am not wrong, but I have no access to such device. In addition, afaik, out there were some complaints about security in this approach.
What I try to solve now is eventual bugs in existing implementation. Kamailio version of SIMPLE presence is running just fine, I have most of the modules running in production. I feel some trends in suggesting is not longer developed, which is completely false. There was one open issue, related to a potential race reported by Alex Hermann, which is in my to-do list. Then Klaus reported something regarding the contact, which is going to be fixed as well, probably would have been done by now but Klaus said on devel list he has some patches to commit.
As a matter of fact, I think Kamailio has the most complete SIMPLE Presence specs implementation out there at this moment, being the only one with an integrated xcap server. That was added with the latest release, so it is simply wrong suggesting presence extensions development is stalled.
On another hand, following all new crazy extensions from SIMPLE IETF is not a big priority, since no phone vendor is actually looking to add them. But the core presence services and rls are here and going to be developed. We have to admit that the latest SIMPLE spec were not really much in touch with reality, even IETF guys realized that, hopefully we will see alternatives as another group at IETF is looking to reuse XMPP for presence in SIP and others try to find easier presence architecture for SIP.
Cheers, Daniel
<?xml version="1.0" encoding="UTF-8"?>
<rls-services xmlns="urn:ietf:params:xml:ns:rls-services"> <service uri="sip:jh_...@test.fi"> <resource-list>http://xcap.test.fi:8080/xcap-root/resource-lists/users/sip:j...@test.fi/generallist.xml/~~/resource-lists/list...@name=%22oma_buddylist%22%5d</resource-list> <packages> <package>presence</package> </packages> </service> </rls-services>
so, instead of in-line member list, there is a reference to another document where the members are listed.
-- juha
Am 05.01.2011 11:26, schrieb Daniel-Constantin Mierla:
[...]
Btw, you kept me back from some commits because you said you have some to do. Is it still valid?
Yes, you are right. Sorry - I'm currently just to busy to apply them in a clean way. (it would take me at least 1 day to get used to git again :-)
Attached is a patch with all the changes I made in my local test setup - maybe you find some time to merge them with your fixes.
The attached patch includes:
- remove purple compilation as it didn't worked for me (probably you can skip that) - extend documentation of xhttp - extend documentation of rls with server_adress (local contact) and presence_server (outboundproxy) - do not start if RLs "server_address" is not set - add presence_server (outbound proxy) support, obsolete by your patch - fix: CSeq was reported as wrong although it correct due to wrong checking - fix: respond with proper contact header - fix: remove duplicate Max-Forwards header - fix: use "Supported" instead of "Support" - fix: xcap exported pseudo variables: "uri" is only 3 characters long, not 4 - increased table version in xcap module to 4 to write directly into opensips xcap tables (probably you can skip that) - debian fix: remove rls from EXTRA_EXCLUDED_MODULES
Thanks Klaus
On 1/5/11 11:58 AM, Klaus Darilion wrote:
Am 05.01.2011 11:26, schrieb Daniel-Constantin Mierla:
[...]
Btw, you kept me back from some commits because you said you have some to do. Is it still valid?
Yes, you are right. Sorry - I'm currently just to busy to apply them in a clean way. (it would take me at least 1 day to get used to git again :-)
Thanks, I can merge them.
Just some notes: - $hu should be better documented in pseudo-variables cookbook -- somehow I missed adding it, but wiki is the place where all PV are documented. - I added outbound proxy, so will fix the part with the contact, but I wanted to double check a thing -- the change in reply_200() function is just parameter name, I see no reason to change that since it refers to the contact address, the problem was the value given, not inside this function
Cheers, Daniel
Attached is a patch with all the changes I made in my local test setup
- maybe you find some time to merge them with your fixes.
The attached patch includes:
- remove purple compilation as it didn't worked for me (probably you
can skip that)
- extend documentation of xhttp
- extend documentation of rls with server_adress (local contact) and
presence_server (outboundproxy)
- do not start if RLs "server_address" is not set
- add presence_server (outbound proxy) support, obsolete by your patch
- fix: CSeq was reported as wrong although it correct due to wrong
checking
- fix: respond with proper contact header
- fix: remove duplicate Max-Forwards header
- fix: use "Supported" instead of "Support"
- fix: xcap exported pseudo variables: "uri" is only 3 characters
long, not 4
- increased table version in xcap module to 4 to write directly into
opensips xcap tables (probably you can skip that)
- debian fix: remove rls from EXTRA_EXCLUDED_MODULES
Thanks Klaus
Am 05.01.2011 12:15, schrieb Daniel-Constantin Mierla:
On 1/5/11 11:58 AM, Klaus Darilion wrote:
Am 05.01.2011 11:26, schrieb Daniel-Constantin Mierla:
[...]
Btw, you kept me back from some commits because you said you have some to do. Is it still valid?
Yes, you are right. Sorry - I'm currently just to busy to apply them in a clean way. (it would take me at least 1 day to get used to git again :-)
Thanks, I can merge them.
Just some notes:
- $hu should be better documented in pseudo-variables cookbook --
somehow I missed adding it, but wiki is the place where all PV are documented.
AFAIK some module PVs are documented in module READMEs (and IMO this is fine - new PV code should come with documentation)
klaus
On 1/5/11 12:34 PM, Klaus Darilion wrote:
Am 05.01.2011 12:15, schrieb Daniel-Constantin Mierla:
On 1/5/11 11:58 AM, Klaus Darilion wrote:
Am 05.01.2011 11:26, schrieb Daniel-Constantin Mierla:
[...]
Btw, you kept me back from some commits because you said you have some to do. Is it still valid?
Yes, you are right. Sorry - I'm currently just to busy to apply them in a clean way. (it would take me at least 1 day to get used to git again :-)
Thanks, I can merge them.
Just some notes:
- $hu should be better documented in pseudo-variables cookbook --
somehow I missed adding it, but wiki is the place where all PV are documented.
AFAIK some module PVs are documented in module READMEs (and IMO this is fine - new PV code should come with documentation)
Completely true regarding documenting new PV, but it is about not mixing where the PVs are documented. True also that some of PVs are still in the readmes, but baving all in wiki offers a single place where all PVs can be found. Spreading them across modules will make it harder to find.
So, I think the first place to add (and a must) is the wiki, then readmes are fine also, the much more documentation the better, just don't forget to sunc them on radical changes.
Cheers, Daniel
Am 05.01.2011 11:26, schrieb Daniel-Constantin Mierla:
pieces of code. What do you mean by "not supporting proper resource list type"?
"- use rls-services document to take the list instead of resource-list document"
and some more, see: http://opensips.svn.sourceforge.net/viewvc/opensips?view=revision&revisi...
klaus
Daniel, are there any functions to terminate subscriptions?
E.g. in case of maintenance shutdown I would want to terminate all SUBSCRIPTIONs (send NOTIFY with "terminated" on incoming subscrioptions and send SUBSCRIBE with Expires=0 on outgoing subscriptions).
Are there any e.g. RPC methods to do this, or do it on shutdown automatically?
regards klaus
Hello,
first, I've just backported all fixes to rls module in 3.1 branch, so there should be no open issue anymore with this module. Testing and feedback is very much appreciated.
More inline.
On 1/5/11 1:48 PM, Klaus Darilion wrote:
Daniel, are there any functions to terminate subscriptions?
E.g. in case of maintenance shutdown I would want to terminate all SUBSCRIPTIONs (send NOTIFY with "terminated" on incoming subscrioptions and send SUBSCRIBE with Expires=0 on outgoing subscriptions).
Are there any e.g. RPC methods to do this, or do it on shutdown automatically?
There isn't, but do you need such behavior? Shouldn't the subs dialogs be recovered after restart?
Cheers, Daniel
Am 05.01.2011 14:19, schrieb Daniel-Constantin Mierla:
Are there any e.g. RPC methods to do this, or do it on shutdown automatically?
There isn't, but do you need such behavior? Shouldn't the subs dialogs be recovered after restart?
Storing subscription states in DB and continue from there after reload is fine to recover from crashes and for quick restarts (e.g. config changes).
I thought more about a function which really terminats all subscriptions, and respond with 500 for further subscriptions. This is useful for example to really shutdown a server cleanly (e.g for maintenance of a server in a cluster)
regards klaus