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 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
|
/*
* $Id: contact_ops.c,v 1.3 2005/07/01 14:52:33 bogdan_iancu Exp $
*
* mangler module
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of openser, a free SIP server.
*
* openser 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
*
* openser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* History:
* --------
* 2003-04-07 first version.
*/
#include "contact_ops.h"
#include "utils.h"
#include "common.h"
#include "../../mem/mem.h"
#include "../../data_lump.h"
#include "../../parser/hf.h"
#include "../../parser/parse_uri.h"
#include "../../parser/contact/parse_contact.h"
#include "../../ut.h"
#include <stdio.h>
#include <string.h>
//#define DEBUG
int
encode_contact (struct sip_msg *msg, char *encoding_prefix,char *public_ip)
{
contact_body_t *cb;
contact_t *c;
str uri;
str newUri;
int res;
char separator;
/*
* I have a list of contacts in contact->parsed which is of type contact_body_t
* inside i have a contact->parsed->contact which is the head of the list of contacts
* inside it is a
* str uri;
* struct contact *next;
* I just have to visit each uri and encode each uri according to a scheme
*/
#ifdef DEBUG
fprintf (stdout,"---START--------ENCODE CONTACT-----------------\n");
fprintf (stdout,"%.*s\n",50,msg->buf);
#endif
if ((msg->contact == NULL)&&((parse_headers(msg,HDR_CONTACT_F,0) == -1) ||
(msg->contact == NULL) ))
{
LOG(L_ERR,"ERROR: encode_contact: no Contact header present\n");
return -1;
}
separator = DEFAULT_SEPARATOR[0];
if (contact_flds_separator != NULL)
if (strlen(contact_flds_separator)>=1)
separator = contact_flds_separator[0];
#ifdef DEBUG
fprintf (stdout,"Using separator %c\n",separator);
#endif
if (msg->contact->parsed == NULL) parse_contact (msg->contact);
if (msg->contact->parsed != NULL)
{
cb = (contact_body_t *) msg->contact->parsed;
c = cb->contacts;
/* we visit each contact */
if (c != NULL)
{
uri = c->uri;
#ifdef DEBUG
fprintf (stdout, "olduri.s=[%.*s]\n", uri.len, uri.s);
#endif
res = encode_uri (uri, encoding_prefix, public_ip,separator, &newUri);
if (res != 0)
{
LOG (L_ERR,"ERROR: encode_contact: Failed encoding contact.Code %d\n", res);
#ifdef DEBUG
fprintf (stdout, "Encoding uri failed with code %d\n",res);
#endif
#ifdef STRICT_CHECK
return res;
#endif
}
else
if (patch (msg, uri.s, uri.len, newUri.s, newUri.len) < 0)
{
LOG (L_ERR,"ERROR: encode_contact: lumping failed in mangling port \n");
return -2;
}
#ifdef DEBUG
if (res == 0) fprintf (stdout, "newuri.s=[%.*s]\nnewlen=%d\n", newUri.len, newUri.s,newUri.len);
#endif
/* encoding next contacts too?*/
#ifdef ENCODE_ALL_CONTACTS
while (c->next != NULL)
{
c = c->next;
uri = c->uri;
res = encode_uri (uri, encoding_prefix,public_ip,separator,&newUri);
if (res != 0)
{
LOG(L_ERR,"ERROR: encode_contact: Failed encode_uri.Code %d\n",res);
#ifdef STRICT_CHECK
return res;
#endif
}
else
if (patch (msg, uri.s, uri.len, newUri.s, newUri.len)< 0)
{
LOG (L_ERR,"ERROR: encode_contact: lumping failed in mangling port \n");
return -3;
}
} /* while */
#endif /* ENCODE_ALL_CONTACTS */
} /* if c != NULL */
} /* end if */
else /* after parsing still NULL */
{
LOG(L_ERR,"ERROR: encode_contact: Unable to parse Contact header\n");
#ifdef DEBUG
printf("ERROR: encode_contact: Unable to parse Contact header\n");
#endif
return -4;
}
#ifdef DEBUG
fprintf (stdout,"---END--------ENCODE CONTACT-----------------\n");
#endif
return 1;
}
int
decode_contact (struct sip_msg *msg,char *unused1,char *unused2)
{
str uri;
str newUri;
char separator;
int res;
uri.s = 0;
#ifdef DEBUG
fprintf (stdout,"---START--------DECODE CONTACT-----------------\n");
fprintf (stdout,"%.*s\n",50,msg->buf);
fprintf (stdout, "INITIAL.s=[%.*s]\n", uri.len, uri.s);
#endif
separator = DEFAULT_SEPARATOR[0];
if (contact_flds_separator != NULL)
if (strlen(contact_flds_separator)>=1)
separator = contact_flds_separator[0];
if ((msg->new_uri.s == NULL) || (msg->new_uri.len == 0))
{
uri = msg->first_line.u.request.uri;
if (uri.s == NULL) return -1;
}
res = decode_uri (uri, separator, &newUri);
#ifdef DEBUG
if (res == 0) fprintf (stdout, "newuri.s=[%.*s]\n", newUri.len, newUri.s);
#endif
if (res != 0)
{
LOG (L_ERR,"ERROR: decode_contact:Failed decoding contact.Code %d\n", res);
#ifdef STRICT_CHECK
return res;
#endif
}
else
/* we do not modify the original first line */
if ((msg->new_uri.s == NULL) || (msg->new_uri.len == 0)) msg->new_uri = newUri;
else
{
pkg_free(msg->new_uri.s);
msg->new_uri = newUri;
}
/*
if (patch (msg, uri.s, uri.len, newUri.s, newUri.len) < 0)
{
LOG (L_ERR,"ERROR: decode_contact:lumping failed in mangling port \n");
return -2;
}
*/
return 1;
}
int
decode_contact_header (struct sip_msg *msg,char *unused1,char *unused2)
{
contact_body_t *cb;
contact_t *c;
str uri;
str newUri;
char separator;
int res;
#ifdef DEBUG
fprintf (stdout,"---START--------DECODE CONTACT HEADER-----------------\n");
#endif
if ((msg->contact == NULL)&&((parse_headers(msg,HDR_CONTACT_F,0) == -1) ||
(msg->contact== NULL) ))
{
LOG(L_ERR,"ERROR: decode_contact_header: no Contact header present\n");
return -1;
}
separator = DEFAULT_SEPARATOR[0];
if (contact_flds_separator != NULL)
if (strlen(contact_flds_separator)>=1)
separator = contact_flds_separator[0];
#ifdef DEBUG
fprintf (stdout,"Using separator %c\n",separator);
str* ruri;
ruri = GET_RURI(msg);
fprintf (stdout,"[len = %d]New uri is->%*.s\n",ruri->len,ruri->len,ruri->s);
ruri = &msg->first_line.u.request.uri;
fprintf (stdout, "INITIAL.s=[%.*s]\n", ruri->len, ruri->s);
#endif
if (msg->contact->parsed == NULL) parse_contact (msg->contact);
if (msg->contact->parsed != NULL)
{
cb = (contact_body_t *) msg->contact->parsed;
c = cb->contacts;
// we visit each contact
if (c != NULL)
{
uri = c->uri;
res = decode_uri (uri, separator, &newUri);
#ifdef DEBUG
fprintf (stdout, "newuri.s=[%.*s]\n", newUri.len, newUri.s);
#endif
if (res != 0)
{
LOG (L_ERR,"ERROR: decode_contact_header:Failed decoding contact.Code %d\n", res);
#ifdef STRICT_CHECK
return res;
#endif
}
else
if (patch (msg, uri.s, uri.len, newUri.s, newUri.len) < 0)
{
LOG (L_ERR,"ERROR: decode_contact:lumping failed in mangling port \n");
return -2;
}
#ifdef DECODE_ALL_CONTACTS
while (c->next != NULL)
{
c = c->next;
uri = c->uri;
res = decode_uri (uri, separator, &newUri);
if (res != 0)
{
LOG (L_ERR,"ERROR: decode_contact: Failed decoding contact.Code %d\n",res);
#ifdef STRICT_CHECK
return res;
#endif
}
else
if (patch (msg, uri.s, uri.len, newUri.s, newUri.len) < 0)
{
LOG (L_ERR,"ERROR: decode_contact:lumping failed in mangling port \n");
return -3;
}
} // end while
#endif
} // if c!= NULL
} // end if
else // after parsing still NULL
{
LOG(L_ERR,"ERROR: decode_contact: Unable to parse Contact header\n");
return -4;
}
#ifdef DEBUG
fprintf (stdout,"---END--------DECODE CONTACT HEADER-----------------\n");fflush(stdout);
#endif
return 1;
}
int
encode2format (str uri, struct uri_format *format)
{
int foo;
char *string, *pos, *start, *end;
struct sip_uri sipUri;
if (uri.s == NULL)
return -1;
string = uri.s;
pos = q_memchr (string, '<', uri.len);
if (pos != NULL) /* we are only interested of chars inside <> */
{
start = q_memchr (string, ':', uri.len);
if (start == NULL) return -2;
if (start - pos < 4) return -3;
start = start - 3;
end = strchr (start, '>');
if (end == NULL)
return -4; /* must be a match to < */
}
else /* we do not have <> */
{
start = q_memchr (string, ':', uri.len);
if (start == NULL)
return -5;
if (start - pos < 3)
return -6;
start = start - 3;
end = string + uri.len;
}
memset(format,0,sizeof(struct uri_format));
format->first = start - string + 4; /*sip: */
format->second = end - string;
/* --------------------------testing ------------------------------- */
/* sip:gva@pass@10.0.0.1;;transport=udp>;expires=2 INCORECT BEHAVIOR OF parse_uri,myfunction works good */
foo = parse_uri (start, end - start, &sipUri);
if (foo != 0)
{
LOG(L_ERR,"ERROR: encode2format: parse_uri failed on [%.*s].Code %d \n",uri.len,uri.s,foo);
#ifdef DEBUG
fprintf (stdout, "PARSING uri with parse uri not ok %d\n", foo);
#endif
return foo-10;
}
format->username = sipUri.user;
format->password = sipUri.passwd;
format->ip = sipUri.host;
format->port = sipUri.port;
format->protocol = sipUri.transport_val;
#ifdef DEBUG
fprintf (stdout, "transport=[%.*s] transportval=[%.*s]\n", sipUri.transport.len,sipUri.transport.s,sipUri.transport_val.len,sipUri.transport_val.s);
fprintf(stdout,"First %d,second %d\n",format->first,format->second);
#endif
return 0;
}
int
encode_uri (str uri, char *encoding_prefix, char *public_ip,char separator, str * result)
{
struct uri_format format;
char *pos;
int foo,res;
result->s = NULL;
result->len = 0;
if (uri.len <= 1)
return -1; /* no contact or an invalid one */
if (public_ip == NULL)
{
LOG(L_ERR,"ERROR: encode_uri: Invalid NULL value for public_ip parameter\n");
return -2;
}
#ifdef DEBUG
fprintf (stdout, "Primit cerere de encodare a [%.*s] cu %s-%s\n", uri.len,uri.s, encoding_prefix, public_ip);
#endif
fflush (stdout);
foo = encode2format (uri, &format);
if (foo < 0)
{
LOG(L_ERR,"ERROR: encode_uri: Unable to encode Contact URI [%.*s].Return code %d\n",uri.len,uri.s,foo);
return foo - 20;
}
#ifdef DEBUG
fprintf(stdout,"user=%.*s ip=%.*s port=%.*s protocol=%.*s\n",format.username.len,format.username.s,format.ip.len,format.ip.s,
format.port.len,format.port.s,format.protocol.len,format.protocol.s);
#endif
/* a complete uri would be sip:username@ip:port;transport=protocol goes to
* sip:enc_pref*username*ip*port*protocol@public_ip
*/
foo = 1; /*strlen(separator); */
result->len = format.first + uri.len - format.second + //ar trebui sa sterg 1
strlen (encoding_prefix) + foo +
format.username.len + foo +
format.password.len + foo +
format.ip.len + foo + format.port.len + foo +
format.protocol.len + 1 + strlen (public_ip);
/* adding one comes from @ */
result->s = pkg_malloc (result->len);
pos = result->s;
if (pos == NULL)
{
#ifdef DEBUG
fprintf (stdout, "Unable to alloc result [%d] end=%d\n",result->len, format.second);
#endif
LOG(L_ERR,"ERROR: encode_uri:Unable to alloc memory\n");
return -3;
}
#ifdef DEBUG
fprintf (stdout, "[pass=%d][Allocated %d bytes][first=%d][lengthsec=%d]\nAdding [%d] ->%.*s\n",format.password.len,result->len,format.first,uri.len-format.second,format.first, format.first,uri.s);fflush (stdout);
#endif
res = snprintf(pos,result->len,"%.*s%s%c%.*s%c%.*s%c%.*s%c%.*s%c%.*s@",format.first,uri.s,encoding_prefix,separator,
format.username.len,format.username.s,separator,format.password.len,format.password.s,
separator,format.ip.len,format.ip.s,separator,format.port.len,format.port.s,separator,format.protocol.len,format.protocol.s);
if ((res < 0 )||(res>result->len))
{
LOG(L_ERR,"ERROR: encode_uri: Unable to construct new uri.\n");
if (result->s != NULL) pkg_free(result->s);
return -4;
}
#ifdef DEBUG
fprintf(stdout,"res= %d\npos=%s\n",res,pos);
#endif
pos = pos + res ;/* overwriting the \0 from snprintf */
memcpy (pos, public_ip, strlen (public_ip));
pos = pos + strlen (public_ip);
memcpy (pos, uri.s + format.second, uri.len - format.second);
#ifdef DEBUG
fprintf (stdout, "Adding2 [%d] ->%.*s\n", uri.len - format.second,uri.len - format.second, uri.s + format.second);
fprintf (stdout, "NEW NEW uri is->[%.*s]\n", result->len, result->s);
#endif
/* Because called parse_uri format contains pointers to the inside of msg,must not deallocate */
return 0;
}
int
decode2format (str uri, char separator, struct uri_format *format)
{
char *start, *end, *pos,*lastpos;
str tmp;
enum {EX_PREFIX=0,EX_USER,EX_PASS,EX_IP,EX_PORT,EX_PROT,EX_FINAL} state;
//memset (format, 0, sizeof ((struct uri_format)));
if (uri.s == NULL)
{
LOG(L_ERR,"ERROR: decode2format: Invalid parameter uri.It is NULL\n");
return -1;
}
/* sip:enc_pref*username*password*ip*port*protocol@public_ip */
start = q_memchr (uri.s, ':', uri.len);
if (start == NULL)
{
LOG(L_ERR,"ERROR: decode2format: Invalid SIP uri.Missing :\n");
return -2;
} /* invalid uri */
start = start + 1; /* jumping over sip: ATENTIE LA BUFFER OVERFLOW DACA E DOAR sip: */
format->first = start - uri.s;
/* start */
end = q_memchr(start,'@',uri.len-(start-uri.s));
if (end == NULL)
{
LOG(L_ERR,"ERROR: decode2format: Invalid SIP uri.Missing @\n");
return -3;/* no host address found */
}
#ifdef DEBUG
fprintf (stdout, "Decoding %.*s\n",end-start,start);
#endif
state = EX_PREFIX;
lastpos = start;
for (pos = start;pos<end;pos++)
{
if (*pos == separator)
{
/* we copy between lastpos and pos */
tmp.len = pos - lastpos;
if (tmp.len>0) tmp.s = lastpos;
else tmp.s = NULL;
switch (state)
{
case EX_PREFIX: state = EX_USER;break;
case EX_USER:format->username = tmp;state = EX_PASS;break;
case EX_PASS:format->password = tmp;state = EX_IP;break;
case EX_IP:format->ip = tmp;state = EX_PORT;break;
case EX_PORT:format->port = tmp;state = EX_PROT;break;
default:
{
/* this should not happen, we should find @ not separator */
return -4;
break;
}
}
lastpos = pos+1;
}
else
if (((*pos) == '>')||(*pos == ';'))
{
/* invalid chars inside username part */
return -5;
}
}
/* we must be in state EX_PROT and protocol is between lastpos and end@ */
if (state != EX_PROT) return -6;
format->protocol.len = end - lastpos;
if (format->protocol.len>0) format->protocol.s = lastpos;
else format->protocol.s = NULL;
/* I should check perhaps that after @ there is something */
#ifdef DEBUG
fprintf (stdout, "username=%.*s\n", format->username.len,format->username.s);
fprintf (stdout, "password=%.*s\n", format->password.len,format->password.s);
fprintf (stdout, "ip=%.*s\n", format->ip.len, format->ip.s);
fprintf (stdout, "port=%.*s\n", format->port.len,format->port.s);
fprintf (stdout, "protocol=%.*s\n", format->protocol.len,format->protocol.s);
#endif
/* looking for the end of public ip */
start = end;/*we are now at @ */
for(pos = start;pos<uri.s+uri.len;pos++)
{
if ((*pos == ';')||(*pos == '>'))
{
/* found end */
format->second = pos - uri.s;
return 0;
}
}
/* if we are here we did not find > or ; */
format->second = uri.len;
return 0;
}
int
decode_uri (str uri, char separator, str * result)
{
char *pos;
struct uri_format format;
int foo;
result->s = NULL;
result->len = 0;
if ((uri.len <= 0) || (uri.s == NULL))
{
LOG(L_ERR,"ERROR: decode_uri: Invalid value for uri\n");
return -1;
}
foo = decode2format (uri, separator, &format);
if (foo < 0)
{
LOG(L_ERR,"ERROR: decode_uri: Error decoding Contact uri .Error code %d\n",foo);
return foo - 20;
}
/* sanity check */
if (format.ip.len <= 0)
{
LOG(L_ERR,"ERROR: decode_uri: Unable to decode host address \n");
return -2;/* should I quit or ignore ? */
}
if ((format.password.len > 0) && (format.username.len <= 0))
{
LOG(L_ERR,"ERROR: decode_uri: Password decoded but no username available\n");
return -3;
}
/* a complete uri would be sip:username:password@ip:port;transport=protocol goes to
* sip:enc_pref#username#password#ip#port#protocol@public_ip
*/
result->len = format.first + (uri.len - format.second); /* not NULL terminated */
if (format.username.len > 0) result->len += format.username.len + 1; //: or @
if (format.password.len > 0) result->len += format.password.len + 1; //@
/* if (format.ip.len > 0) */ result->len += format.ip.len;
if (format.port.len > 0) result->len += 1 + format.port.len; //:
if (format.protocol.len > 0) result->len += 1 + 10 + format.protocol.len; //;transport=
#ifdef DEBUG
fprintf (stdout, "Result size is %d.Original Uri size is %d\n",result->len, uri.len);
#endif
/* adding one comes from * */
result->s = pkg_malloc (result->len);
if (result->s == NULL)
{
LOG(L_ERR,"ERROR: decode_contact: Unable to allocate memory\n");
return -4;
}
pos = result->s;
#ifdef DEBUG
fprintf (stdout, "Adding [%d] ->%.*s\n", format.first, format.first,uri.s);fflush (stdout);
#endif
memcpy (pos, uri.s, format.first); /* till sip: */
pos = pos + format.first;
if (format.username.len > 0)
{
memcpy (pos, format.username.s, format.username.len);
pos = pos + format.username.len;
if (format.password.len > 0)
memcpy (pos, ":", 1);
else
memcpy (pos, "@", 1);
pos = pos + 1;
}
if (format.password.len > 0)
{
memcpy (pos, format.password.s, format.password.len);
pos = pos + format.password.len;
memcpy (pos, "@", 1);
pos = pos + 1;
}
/* if (format.ip.len > 0) */
memcpy (pos, format.ip.s, format.ip.len);
pos = pos + format.ip.len;
if (format.port.len > 0)
{
memcpy (pos, ":", 1);
pos = pos + 1;
memcpy (pos, format.port.s, format.port.len);
pos = pos + format.port.len;
}
if (format.protocol.len > 0)
{
memcpy (pos, ";transport=", 11);
pos = pos + 11;
memcpy (pos, format.protocol.s, format.protocol.len);
pos = pos + format.protocol.len;
}
#ifdef DEBUG
fprintf (stdout, "Adding2 [%d] ->%.*s\n", uri.len - format.second,uri.len - format.second, uri.s + format.second);fflush (stdout);
#endif
memcpy (pos, uri.s + format.second, uri.len - format.second); /* till end: */
#ifdef DEBUG
fprintf (stdout, "New decoded uri is->[%.*s]\n", result->len,result->s);
#endif
return 0;
}
|