1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
|
/*
* $Id$
*
* transaction maintenance functions
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
* ser is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* For a license to use the ser software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
* info@iptel.org
*
* ser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* History:
* -------
* 2003-03-31 200 for INVITE/UAS resent even for UDP (jiri)
* info only if compiling w/ -DEXTRA_DEBUG (andrei)
* 2003-03-19 replaced all mallocs/frees w/ pkg_malloc/pkg_free (andrei)
* 2003-03-13 send_pr_buffer is called w/ file/function/line debugging
* 2003-03-01 start_retr changed to retransmit only for UDP
* 2003-02-13 modified send_pr_buffer to use msg_send & rb->dst (andrei)
* 2003-04-14 use protocol from uri (jiri)
* 2003-04-25 do it (^) really everywhere (jiri)
* 2003-04-26 do it (^) really really really everywhere (jiri)
* 2003-07-07 added get_proto calls when proxy!=0 (andrei)
* 2004-02-13 t->is_invite and t->local replaced with flags (bogdan)
* 2005-02-16 fr_*_timer acceps full AVP specifications; empty AVP
* desable variable timer feature (bogdan)
* 2005-12-11 t_relay doesn't return 0 (stop script) on send error
* anymore (andrei)
* 2006-08-11 updated forward_request usage (andrei)
* t_relay_to releases the transaction if t_forward_non_ack
* fails and t_kill fails or this is a failed replication (andrei)
* 2007-05-02 t_relay_to() uses now t_forward_cancel for cancels (andrei)
* 2007-06-05 delay t_relay() replies till script end so that they can be
* overwritten by the script user; generate 100 automatically
* only if T_NO_100 is not set (andrei)
*/
#include <limits.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include "../../dprint.h"
#include "../../hash_func.h"
#include "../../dset.h"
#include "../../mem/mem.h"
#include "../../sr_compat.h"
#include "../../pvar.h"
#include "defs.h"
#include "t_funcs.h"
#include "t_fwd.h"
#include "t_lookup.h"
#include "config.h"
#include "t_stats.h"
/* if defined t_relay* error reply generation will be delayed till script
* end (this allows the script writter to send its own error reply) */
#define TM_DELAYED_REPLY
/* fr_timer AVP specs */
static int fr_timer_avp_type = 0;
static int_str fr_timer_avp = {0};
static str fr_timer_str;
static int fr_timer_index = 0;
int fr_inv_timer_avp_type = 0;
int_str fr_inv_timer_avp = {0};
static str fr_inv_timer_str;
static int fr_inv_timer_index = 0;
int tm_error = 0; /* delayed tm error */
struct msgid_var user_cell_set_flags; /* extra cell->flags to be set */
struct msgid_var user_cell_reset_flags; /* extra cell->flags to be reset */
/* ----------------------------------------------------- */
int send_pr_buffer( struct retr_buf *rb, void *buf, int len
#ifdef EXTRA_DEBUG
, char* file, const char *function, int line
#endif
)
{
if (buf && len && rb )
return msg_send( &rb->dst, buf, len);
else {
#ifdef EXTRA_DEBUG
LOG(L_CRIT, "ERROR: send_pr_buffer: sending an empty buffer"
"from %s: %s (%d)\n", file, function, line );
#else
LOG(L_CRIT, "ERROR: send_pr_buffer: attempt to send an "
"empty buffer\n");
#endif
return -1;
}
}
void tm_shutdown()
{
DBG("DEBUG: tm_shutdown : start\n");
/* destroy the hash table */
DBG("DEBUG: tm_shutdown : emptying hash table\n");
free_hash_table( );
DBG("DEBUG: tm_shutdown : removing semaphores\n");
lock_cleanup();
DBG("DEBUG: tm_shutdown : destroying tmcb lists\n");
destroy_tmcb_lists();
free_tm_stats();
DBG("DEBUG: tm_shutdown : done\n");
}
/* returns 1 if everything was OK or -1 for error
*/
int t_release_transaction( struct cell *trans )
{
set_kr(REQ_RLSD);
stop_rb_timers(&trans->uas.response);
cleanup_uac_timers( trans );
put_on_wait( trans );
return 1;
}
/* -----------------------HELPER FUNCTIONS----------------------- */
/*
*/
void put_on_wait( struct cell *Trans )
{
#ifdef EXTRA_DEBUG
DBG("DEBUG: put on WAIT \n");
#endif
/* we put the transaction on wait timer; we do it only once
in transaction's timelife because putting it multiple-times
might result in a second instance of a wait timer to be
set after the first one fired; on expiration of the second
instance, the transaction would be re-deleted
PROCESS1 PROCESS2 TIMER PROCESS
0. 200/INVITE rx;
put_on_wait
1. 200/INVITE rx;
2. WAIT fires; transaction
about to be deleted
3. avoid putting
on WAIT again
4. WAIT timer executed,
transaction deleted
*/
if (timer_add(&Trans->wait_timer, cfg_get(tm, tm_cfg, wait_timeout))==0){
/* sucess */
t_stats_wait();
}else{
DBG("tm: put_on_wait: transaction %p already on wait\n", Trans);
}
}
/* WARNING: doesn't work from failure route (deadlock, uses t_reply =>
* tries to get the reply lock again) */
int kill_transaction( struct cell *trans, int error )
{
char err_buffer[128];
int sip_err;
int reply_ret;
int ret;
/* we reply statefully and enter WAIT state since error might
have occurred in middle of forking and we do not
want to put the forking burden on upstream client;
however, it may fail too due to lack of memory */
ret=err2reason_phrase(error, &sip_err,
err_buffer, sizeof(err_buffer), "TM" );
if (ret>0) {
reply_ret=t_reply( trans, trans->uas.request,
sip_err, err_buffer);
/* t_release_transaction( T ); */
return reply_ret;
} else {
LOG(L_ERR, "ERROR: kill_transaction: err2reason failed\n");
return -1;
}
}
/* unsafe version of kill_transaction() that works
* in failure route
* WARNING: assumes that the reply lock is held!
*/
int kill_transaction_unsafe( struct cell *trans, int error )
{
char err_buffer[128];
int sip_err;
int reply_ret;
int ret;
/* we reply statefully and enter WAIT state since error might
have occurred in middle of forking and we do not
want to put the forking burden on upstream client;
however, it may fail too due to lack of memory */
ret=err2reason_phrase(error, &sip_err,
err_buffer, sizeof(err_buffer), "TM" );
if (ret>0) {
reply_ret=t_reply_unsafe( trans, trans->uas.request,
sip_err, err_buffer);
/* t_release_transaction( T ); */
return reply_ret;
} else {
LOG(L_ERR, "ERROR: kill_transaction_unsafe: err2reason failed\n");
return -1;
}
}
/* WARNING: doesn't work from failure route (deadlock, uses t_reply => tries
* to get the reply lock again */
int t_relay_to( struct sip_msg *p_msg , struct proxy_l *proxy, int proto,
int replicate)
{
int ret;
int new_tran;
/* struct hdr_field *hdr; */
struct cell *t;
struct dest_info dst;
unsigned short port;
str host;
short comp;
#ifndef TM_DELAYED_REPLY
int reply_ret;
#endif
ret=0;
/* special case for CANCEL */
if ( p_msg->REQ_METHOD==METHOD_CANCEL){
ret=t_forward_cancel(p_msg, proxy, proto, &t);
if (t) goto handle_ret;
goto done;
}
new_tran = t_newtran( p_msg );
/* parsing error, memory alloc, whatever ... if via is bad
and we are forced to reply there, return with 0 (->break),
pass error status otherwise
MMA: return value E_SCRIPT means that transaction was already started
from the script so continue with that transaction
*/
if (likely(new_tran!=E_SCRIPT)) {
if (new_tran<0) {
ret = (ser_error==E_BAD_VIA && reply_to_via) ? 0 : new_tran;
goto done;
}
/* if that was a retransmission, return we are happily done */
if (new_tran==0) {
ret = 1;
goto done;
}
}else if (unlikely(p_msg->REQ_METHOD==METHOD_ACK)) {
/* transaction previously found (E_SCRIPT) and msg==ACK
=> ack to neg. reply or ack to local trans.
=> process it and exit */
/* FIXME: there's no way to distinguish here between acks to
local trans. and neg. acks */
/* in normal operation we should never reach this point, if we
do WARN(), it might hide some real bug (apart from possibly
hiding a bug the most harm done is calling the TMCB_ACK_NEG
callbacks twice) */
WARN("negative or local ACK caught, please report\n");
t=get_t();
if (unlikely(has_tran_tmcbs(t, TMCB_ACK_NEG_IN)))
run_trans_callbacks(TMCB_ACK_NEG_IN, t, p_msg, 0,
p_msg->REQ_METHOD);
t_release_transaction(t);
ret=1;
goto done;
}
/* new transaction */
/* at this point if the msg is an ACK it is an e2e ACK and
e2e ACKs do not establish a transaction and are fwd-ed statelessly */
if ( p_msg->REQ_METHOD==METHOD_ACK) {
DBG( "SER: forwarding ACK statelessly \n");
if (proxy==0) {
init_dest_info(&dst);
dst.proto=proto;
if (get_uri_send_info(GET_NEXT_HOP(p_msg), &host, &port,
&dst.proto, &comp)!=0){
ret=E_BAD_ADDRESS;
goto done;
}
#ifdef USE_COMP
dst.comp=comp;
#endif
/* dst->send_sock not set, but forward_request will take care
* of it */
ret=forward_request(p_msg, &host, port, &dst);
} else {
init_dest_info(&dst);
dst.proto=get_proto(proto, proxy->proto);
proxy2su(&dst.to, proxy);
/* dst->send_sock not set, but forward_request will take care
* of it */
ret=forward_request( p_msg , 0, 0, &dst) ;
}
goto done;
}
/* if replication flag is set, mark the transaction as local
so that replies will not be relayed */
t=get_t();
if (replicate) t->flags|=T_IS_LOCAL_FLAG;
/* INVITE processing might take long, particularly because of DNS
look-ups -- let upstream know we're working on it */
if (p_msg->REQ_METHOD==METHOD_INVITE && (t->flags&T_AUTO_INV_100)
&& (t->uas.status < 100)
) {
DBG( "SER: new INVITE\n");
if (!t_reply( t, p_msg , 100 ,
cfg_get(tm, tm_cfg, tm_auto_inv_100_r)))
DBG("SER: ERROR: t_reply (100)\n");
}
/* now go ahead and forward ... */
ret=t_forward_nonack(t, p_msg, proxy, proto);
handle_ret:
if (ret<=0) {
DBG( "ERROR:tm:t_relay_to: t_forward_nonack returned error \n");
/* we don't want to pass upstream any reply regarding replicating
* a request; replicated branch must stop at us*/
if (likely(!replicate)) {
if(t->flags&T_DISABLE_INTERNAL_REPLY) {
/* flag set to don't generate the internal negative reply
* - let the transaction live further, processing should
* continue in config */
DBG("not generating immediate reply for error %d\n", ser_error);
tm_error=ser_error;
ret = -4;
goto done;
}
#ifdef TM_DELAYED_REPLY
/* current error in tm_error */
tm_error=ser_error;
set_kr(REQ_ERR_DELAYED);
DBG("%d error reply generation delayed \n", ser_error);
#else
reply_ret=kill_transaction( t, ser_error );
if (reply_ret>0) {
/* we have taken care of all -- do nothing in
script */
DBG("ERROR: generation of a stateful reply "
"on error succeeded\n");
/*ret=0; -- we don't want to stop the script */
} else {
DBG("ERROR: generation of a stateful reply "
"on error failed\n");
t_release_transaction(t);
}
#endif /* TM_DELAYED_REPLY */
}else{
t_release_transaction(t); /* kill it silently */
}
} else {
DBG( "SER: new transaction fwd'ed\n");
}
done:
return ret;
}
/*
* Initialize parameters containing the ID of
* AVPs with various timers
*/
int init_avp_params(char *fr_timer_param, char *fr_inv_timer_param)
{
pv_spec_t avp_spec;
unsigned short avp_type;
if (fr_timer_param && *fr_timer_param) {
fr_timer_str.s = fr_timer_param;
fr_timer_str.len = strlen(fr_timer_str.s);
LM_WARN("using AVP for TM fr_timer is deprecated,"
" use t_set_fr(...) instead\n");
if(fr_timer_str.s[0]==PV_MARKER) {
if (pv_parse_spec(&fr_timer_str, &avp_spec)==0
|| avp_spec.type!=PVT_AVP) {
LM_ERR("malformed or non AVP %s AVP definition\n",
fr_timer_param);
return -1;
}
if(pv_get_avp_name(0, &avp_spec.pvp, &fr_timer_avp, &avp_type)!=0)
{
LM_ERR("[%s]- invalid AVP definition\n", fr_timer_param);
return -1;
}
fr_timer_avp_type = avp_type;
} else {
if (parse_avp_spec( &fr_timer_str, &fr_timer_avp_type,
&fr_timer_avp, &fr_timer_index)<0) {
LOG(L_CRIT,"ERROR:tm:init_avp_params: invalid fr_timer "
"AVP specs \"%s\"\n", fr_timer_param);
return -1;
}
/* ser flavour uses the To track of AVPs */
fr_timer_avp_type |= AVP_TRACK_TO;
}
}
if (fr_inv_timer_param && *fr_inv_timer_param) {
fr_inv_timer_str.s = fr_inv_timer_param;
fr_inv_timer_str.len = strlen(fr_inv_timer_str.s);
LM_WARN("using AVP for TM fr_inv_timer is deprecated,"
" use t_set_fr(...) instead\n");
if(fr_inv_timer_str.s[0]==PV_MARKER) {
if (pv_parse_spec(&fr_inv_timer_str, &avp_spec)==0
|| avp_spec.type!=PVT_AVP) {
LM_ERR("malformed or non AVP %s AVP definition\n",
fr_inv_timer_param);
return -1;
}
if(pv_get_avp_name(0, &avp_spec.pvp, &fr_inv_timer_avp,
&avp_type)!=0)
{
LM_ERR("[%s]- invalid AVP definition\n", fr_inv_timer_param);
return -1;
}
fr_inv_timer_avp_type = avp_type;
} else {
if (parse_avp_spec( &fr_inv_timer_str, &fr_inv_timer_avp_type,
&fr_inv_timer_avp, &fr_inv_timer_index)<0) {
LOG(L_CRIT,"ERROR:tm:init_avp_params: invalid fr_inv_timer "
"AVP specs \"%s\"\n", fr_inv_timer_param);
return -1;
}
/* ser flavour uses the To track of AVPs */
fr_inv_timer_avp_type |= AVP_TRACK_TO;
}
}
return 0;
}
/** Get the FR_{INV}_TIMER from corresponding AVP.
* @return 0 on success (use *timer) or 1 on failure (avp non-existent,
* avp present but empty/0, avp value not numeric).
*/
static inline int avp2timer(unsigned int* timer, int type, int_str name)
{
struct usr_avp *avp;
int_str val_istr;
int err;
avp = search_first_avp(type, name, &val_istr, 0);
if (!avp) {
/*
DBG("avp2timer: AVP '%.*s' not found\n", param.s->len, ZSW(param.s->s));
*/
return 1;
}
if (avp->flags & AVP_VAL_STR) {
*timer = str2s(val_istr.s.s, val_istr.s.len, &err);
if (err) {
LOG(L_ERR, "avp2timer: Error while converting string to integer\n");
return -1;
}
} else {
*timer = val_istr.n;
}
return *timer==0; /* 1 if 0 (use default), 0 if !=0 (use *timer) */
}
int fr_avp2timer(unsigned int* timer)
{
if (fr_timer_avp.n!=0)
return avp2timer( timer, fr_timer_avp_type, fr_timer_avp);
else
return 1;
}
int fr_inv_avp2timer(unsigned int* timer)
{
if (fr_inv_timer_avp.n!=0)
return avp2timer( timer, fr_inv_timer_avp_type, fr_inv_timer_avp);
else
return 1;
}
void unref_cell(struct cell *t)
{
UNREF(t);
}
|