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 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
|
/* $Id$
*
* Copyright (C) 2005-2008 Dan Pascu
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio 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
*
* Kamailio 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
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <time.h>
#include <ctype.h>
#include <errno.h>
#include <assert.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
#include <sys/un.h>
#include "../../sr_module.h"
#include "../../mem/mem.h"
#include "../../dprint.h"
#include "../../str.h"
#include "../../pvar.h"
#include "../../ut.h"
#include "../../script_cb.h"
#include "../../parser/digest/digest.h"
#include "../../parser/parse_from.h"
#include "../dialog/dlg_load.h"
#include "../dialog/dlg_hash.h"
MODULE_VERSION
#define FL_USE_CALL_CONTROL (1<<28) // use call control for a dialog
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
# define INLINE inline
#else
# define INLINE
#endif
#define CANONICAL_URI_AVP_SPEC "$avp(s:can_uri)"
#define SIGNALING_IP_AVP_SPEC "$avp(s:signaling_ip)"
#define SIP_APPLICATION_AVP_SPEC "$avp(s:sip_application)"
// Although `AF_LOCAL' is mandated by POSIX.1g, `AF_UNIX' is portable to
// more systems. `AF_UNIX' was the traditional name stemming from BSD, so
// even most POSIX systems support it. It is also the name of choice in
// the Unix98 specification. So if there's no AF_LOCAL fallback to AF_UNIX
#ifndef AF_LOCAL
# define AF_LOCAL AF_UNIX
#endif
// Solaris does not have the MSG_NOSIGNAL flag for the send(2) syscall
#ifndef MSG_NOSIGNAL
# define MSG_NOSIGNAL 0
#endif
typedef int Bool;
#define True 1
#define False 0
typedef struct AVP_Param {
str spec;
int_str name;
unsigned short type;
} AVP_Param;
typedef struct AVP_List {
pv_spec_p pv;
str name;
struct AVP_List *next;
} AVP_List;
#define RETRY_INTERVAL 10
#define BUFFER_SIZE 8192
typedef struct CallControlSocket {
char *name; // name
int sock; // socket
int timeout; // how many miliseconds to wait for an answer
time_t last_failure; // time of the last failure
char data[BUFFER_SIZE]; // buffer for the answer data
} CallControlSocket;
/* Function prototypes */
static int CallControl(struct sip_msg *msg, char *str1, char *str2);
static int mod_init(void);
static int child_init(int rank);
static void destroy(void);
static int postprocess_request(struct sip_msg *, unsigned int, void *);
int parse_param_init(unsigned int type, void *val);
int parse_param_start(unsigned int type, void *val);
int parse_param_stop(unsigned int type, void *val);
/* Local global variables */
static CallControlSocket callcontrol_socket = {
"/var/run/callcontrol/socket", // name
-1, // sock
500, // timeout in 500 miliseconds if there is no answer
0, // time of the last failure
"" // data
};
static int disable = False;
static int diverter_avp_id = 805;
/* The AVP where the canonical URI is stored (if defined) */
static AVP_Param canonical_uri_avp = {str_init(CANONICAL_URI_AVP_SPEC), {0}, 0};
/* The AVP where the caller signaling IP is stored (if defined) */
static AVP_Param signaling_ip_avp = {str_init(SIGNALING_IP_AVP_SPEC), {0}, 0};
/* The AVP where the SIP application type is stored (if defined) */
static AVP_Param sip_application_avp = {str_init(SIP_APPLICATION_AVP_SPEC), {0}, 0};
struct dlg_binds dlg_api;
static int dialog_flag = -1;
AVP_List *cc_init_avps = NULL, *cc_start_avps = NULL, *cc_stop_avps = NULL;
pv_elem_t *model;
static cmd_export_t commands[] = {
{"call_control", (cmd_function)CallControl, 0, 0, 0, REQUEST_ROUTE },
{0, 0, 0, 0, 0, 0}
};
static param_export_t parameters[] = {
{"init", PARAM_STRING | USE_FUNC_PARAM, parse_param_init},
{"start", PARAM_STRING | USE_FUNC_PARAM, parse_param_start},
{"stop", PARAM_STRING | USE_FUNC_PARAM, parse_param_stop},
{"disable", INT_PARAM, &disable},
{"socket_name", PARAM_STRING, &(callcontrol_socket.name)},
{"socket_timeout", INT_PARAM, &(callcontrol_socket.timeout)},
{"diverter_avp_id", INT_PARAM, &diverter_avp_id},
{"canonical_uri_avp", PARAM_STR, &(canonical_uri_avp.spec)},
{"signaling_ip_avp", PARAM_STR, &(signaling_ip_avp.spec)},
{"sip_application_avp", PARAM_STR, &(sip_application_avp.spec)},
{0, 0, 0}
};
struct module_exports exports = {
"call_control", // module name
DEFAULT_DLFLAGS, // dlopen flags
commands, // exported functions
parameters, // exported parameters
NULL, // exported statistics
NULL, // exported MI functions
NULL, // exported pseudo-variables
NULL, // extra processes
mod_init, // module init function (before fork. kids will inherit)
NULL, // reply processing function
destroy, // destroy function
child_init // child init function
};
typedef enum CallControlAction {
CAInitialize = 1,
CAStart,
CAStop
} CallControlAction;
typedef struct Contact {
str username;
str ip;
str port;
} Contact;
typedef struct DialogID {
unsigned int h_entry;
unsigned int h_id;
} DialogID;
typedef struct CallInfo {
CallControlAction action;
DialogID dialog_id;
str ruri;
str diverter;
str source_ip;
str callid;
str from;
str from_tag;
str sip_application;
} CallInfo;
#define CHECK_COND(cond) \
if ((cond) == 0) { \
LM_ERR("malformed modparam\n"); \
return -1; \
}
#define CHECK_ALLOC(p) \
if (!(p)) { \
LM_ERR("no memory left\n"); \
return -1; \
}
void
destroy_list(AVP_List *list) {
AVP_List *cur, *next;
cur = list;
while (cur) {
next = cur->next;
pkg_free(cur);
cur = next;
}
}
int
parse_param(void *val, AVP_List** avps) {
char *p;
str s, content;
AVP_List *mp = NULL;
//LM_DBG("%.*s\n", content.len, content.s);
content.s = (char*) val;
content.len = strlen(content.s);
p = (char*) pkg_malloc (content.len + 1);
CHECK_ALLOC(p);
p[content.len] = '\0';
memcpy(p, content.s, content.len);
for (;*p != '\0';) {
mp = (AVP_List*) pkg_malloc (sizeof(AVP_List));
CHECK_ALLOC(mp);
mp->next = *avps;
mp->pv = (pv_spec_p) pkg_malloc (sizeof(pv_spec_t));
CHECK_ALLOC(mp->pv);
for (; isspace(*p); p++);
CHECK_COND(*p != '\0');
mp->name.s = p;
for(; isgraph(*p) && *p != '='; p++)
CHECK_COND(*p != '\0');
mp->name.len = p - mp->name.s;
for (; isspace(*p); p++);
CHECK_COND(*p != '\0' && *p == '=');
p++;
//LM_DBG("%.*s\n", mp->name.len, mp->name.s);
for (; isspace(*p); p++);
CHECK_COND(*p != '\0' && *p == '$');
s.s = p;
s.len = strlen(p);
p = pv_parse_spec(&s, mp->pv);
for (; isspace(*p); p++);
*avps = mp;
}
return 0;
}
int
parse_param_init(unsigned int type, void *val) {
if (parse_param(val, &cc_init_avps) == -1)
return E_CFG;
return 0;
}
int
parse_param_start(unsigned int type, void *val) {
if (parse_param(val, &cc_start_avps) == -1)
return E_CFG;
return 0;
}
int
parse_param_stop(unsigned int type, void *val) {
if (parse_param(val, &cc_stop_avps) == -1)
return E_CFG;
return 0;
}
// Functions dealing with strings
//
// returns string with whitespace trimmed from left end
static inline void
ltrim(str *string)
{
while (string->len>0 && isspace((int)*(string->s))) {
string->len--;
string->s++;
}
}
// returns string with whitespace trimmed from right end
static inline void
rtrim(str *string)
{
char *ptr;
ptr = string->s + string->len - 1;
while (string->len>0 && (*ptr==0 || isspace((int)*ptr))) {
string->len--;
ptr--;
}
}
// returns string with whitespace trimmed from both ends
static inline void
trim(str *string)
{
ltrim(string);
rtrim(string);
}
// Message checking and parsing
//
static Bool
has_to_tag(struct sip_msg *msg)
{
str tag;
if (!msg->to) {
if (parse_headers(msg, HDR_TO_F, 0)==-1) {
LOG(L_ERR, "cannot parse 'To' header\n");
return False;
}
if (!msg->to) {
LOG(L_ERR, "missing 'To' header\n");
return False;
}
}
tag = get_to(msg)->tag_value;
if (tag.s==NULL || tag.len==0) {
return False;
}
return True;
}
// Get canonical request URI
static str
get_canonical_request_uri(struct sip_msg* msg)
{
int_str value;
if (!search_first_avp(canonical_uri_avp.type | AVP_VAL_STR,
canonical_uri_avp.name, &value, NULL) ||
value.s.s==NULL || value.s.len==0) {
return *GET_RURI(msg);
}
return value.s;
}
// Get caller signaling IP
static str
get_signaling_ip(struct sip_msg* msg)
{
int_str value;
if (!search_first_avp(signaling_ip_avp.type | AVP_VAL_STR,
signaling_ip_avp.name, &value, NULL) ||
!value.s.s || value.s.len==0) {
value.s.s = ip_addr2a(&msg->rcv.src_ip);
value.s.len = strlen(value.s.s);
}
return value.s;
}
// Get SIP application type
static str
get_sip_application(struct sip_msg* msg)
{
int_str value;
if (!search_first_avp(sip_application_avp.type | AVP_VAL_STR,
sip_application_avp.name, &value, NULL) ||
!value.s.s || value.s.len==0) {
value.s.s = "audio";
value.s.len = strlen(value.s.s);
}
return value.s;
}
static str
get_diverter(struct sip_msg *msg)
{
struct hdr_field *header;
dig_cred_t *credentials;
int_str avpname, avpvalue;
static str diverter;
diverter.s = "None";
diverter.len = 4;
avpname.n = diverter_avp_id;
if (search_first_avp(AVP_VAL_STR, avpname, &avpvalue, NULL)) {
// have a diverted call
diverter = avpvalue.s;
} else {
get_authorized_cred(msg->proxy_auth, &header);
if (header) {
credentials = &((auth_body_t*)(header->parsed))->digest;
} else {
if (parse_headers(msg, HDR_PROXYAUTH_F, 0) == -1) {
LOG(L_ERR, "cannot parse Proxy-Authorization header\n");
return diverter;
}
if (!msg->proxy_auth)
return diverter;
if (parse_credentials(msg->proxy_auth) != 0) {
LOG(L_ERR, "cannot parse credentials\n");
return diverter;
}
credentials = &((auth_body_t*)(msg->proxy_auth->parsed))->digest;
}
if (credentials->username.user.len > 0 &&
credentials->username.domain.len > 0 &&
credentials->realm.len == 0 &&
credentials->nonce.len == 0 &&
credentials->response.len == 0) {
// this is a call diverted from the failure route
// and sent back to proxy with append_pa_hf()
diverter = credentials->username.whole;
}
}
return diverter;
}
static CallInfo*
get_call_info(struct sip_msg *msg, CallControlAction action)
{
static CallInfo call_info;
int headers;
memset(&call_info, 0, sizeof(struct CallInfo));
switch (action) {
case CAInitialize:
headers = HDR_CALLID_F|HDR_FROM_F;
break;
case CAStart:
case CAStop:
headers = HDR_CALLID_F;
break;
default:
// Invalid action. Should never get here.
assert(False);
return NULL;
}
if (parse_headers(msg, headers, 0) == -1) {
LOG(L_ERR, "cannot parse required headers\n");
return NULL;
}
if (headers & HDR_CALLID_F) {
if (msg->callid == NULL) {
LOG(L_ERR, "missing Call-ID header\n");
return NULL;
}
call_info.callid = msg->callid->body;
trim(&call_info.callid);
}
if (headers & HDR_FROM_F) {
struct to_body *from; // yeah. suggestive structure name ;)
if (msg->from == NULL) {
LOG(L_ERR, "missing From header\n");
return NULL;
}
if (!msg->from->parsed && parse_from_header(msg)==-1) {
LOG(L_ERR, "cannot parse From header\n");
return NULL;
}
from = get_from(msg);
if (from->body.s==NULL || from->body.len==0) {
LOG(L_ERR, "missing From\n");
return NULL;
}
if (from->tag_value.s==NULL || from->tag_value.len==0) {
LOG(L_ERR, "missing From tag\n");
return NULL;
}
call_info.from = from->body;
call_info.from_tag = from->tag_value;
}
if (action == CAInitialize) {
call_info.ruri = get_canonical_request_uri(msg);
call_info.diverter = get_diverter(msg);
call_info.source_ip = get_signaling_ip(msg);
call_info.sip_application = get_sip_application(msg);
}
call_info.action = action;
return &call_info;
}
static char*
make_custom_request(struct sip_msg *msg, CallInfo *call)
{
static char request[8192];
int len = 0;
AVP_List *al;
pv_value_t pt;
switch (call->action) {
case CAInitialize:
al = cc_init_avps;
break;
case CAStart:
al = cc_start_avps;
break;
case CAStop:
al = cc_stop_avps;
break;
default:
// should never get here, but keep gcc from complaining
assert(False);
return NULL;
}
for (; al; al = al->next) {
pv_get_spec_value(msg, al->pv, &pt);
if (pt.flags & PV_VAL_INT) {
len += snprintf(request + len, sizeof(request),
"%.*s = %d ", al->name.len, al->name.s,
pt.ri);
} else if (pt.flags & PV_VAL_STR) {
len += snprintf(request + len, sizeof(request),
"%.*s = %.*s ", al->name.len, al->name.s,
pt.rs.len, pt.rs.s);
}
if (len >= sizeof(request)) {
LM_ERR("callcontrol request is longer than %ld bytes\n", (unsigned long)sizeof(request));
return NULL;
}
}
return request;
}
static char*
make_default_request(CallInfo *call)
{
static char request[8192];
int len;
switch (call->action) {
case CAInitialize:
len = snprintf(request, sizeof(request),
"init\r\n"
"ruri: %.*s\r\n"
"diverter: %.*s\r\n"
"sourceip: %.*s\r\n"
"callid: %.*s\r\n"
"from: %.*s\r\n"
"fromtag: %.*s\r\n"
"sip_application: %.*s\r\n"
"\r\n",
call->ruri.len, call->ruri.s,
call->diverter.len, call->diverter.s,
call->source_ip.len, call->source_ip.s,
call->callid.len, call->callid.s,
call->from.len, call->from.s,
call->from_tag.len, call->from_tag.s,
call->sip_application.len, call->sip_application.s);
if (len >= sizeof(request)) {
LOG(L_ERR, "callcontrol request is longer than %ld bytes\n", (unsigned long)sizeof(request));
return NULL;
}
break;
case CAStart:
len = snprintf(request, sizeof(request),
"start\r\n"
"callid: %.*s\r\n"
"dialogid: %d:%d\r\n"
"\r\n",
call->callid.len, call->callid.s,
call->dialog_id.h_entry, call->dialog_id.h_id);
if (len >= sizeof(request)) {
LOG(L_ERR, "callcontrol request is longer than %ld bytes\n", (unsigned long)sizeof(request));
return NULL;
}
break;
case CAStop:
len = snprintf(request, sizeof(request),
"stop\r\n"
"callid: %.*s\r\n"
"\r\n",
call->callid.len, call->callid.s);
if (len >= sizeof(request)) {
LOG(L_ERR, "callcontrol request is longer than %ld bytes\n", (unsigned long)sizeof(request));
return NULL;
}
break;
default:
// should never get here, but keep gcc from complaining
assert(False);
return NULL;
}
return request;
}
// Functions dealing with the external call_control helper
//
static Bool
callcontrol_connect(void)
{
struct sockaddr_un addr;
if (callcontrol_socket.sock >= 0)
return True;
if (callcontrol_socket.last_failure + RETRY_INTERVAL > time(NULL))
return False;
memset(&addr, 0, sizeof(addr));
addr.sun_family = AF_LOCAL;
strncpy(addr.sun_path, callcontrol_socket.name, sizeof(addr.sun_path) - 1);
#ifdef HAVE_SOCKADDR_SA_LEN
addr.sun_len = strlen(addr.sun_path);
#endif
callcontrol_socket.sock = socket(AF_LOCAL, SOCK_STREAM, 0);
if (callcontrol_socket.sock < 0) {
LOG(L_ERR, "can't create socket\n");
callcontrol_socket.last_failure = time(NULL);
return False;
}
if (connect(callcontrol_socket.sock, (struct sockaddr*)&addr, sizeof(addr)) < 0) {
LOG(L_ERR, "failed to connect to %s: %s\n", callcontrol_socket.name, strerror(errno));
close(callcontrol_socket.sock);
callcontrol_socket.sock = -1;
callcontrol_socket.last_failure = time(NULL);
return False;
}
return True;
}
static void
callcontrol_disconnect(void)
{
if (callcontrol_socket.sock < 0)
return;
close(callcontrol_socket.sock);
callcontrol_socket.sock = -1;
callcontrol_socket.last_failure = time(NULL);
}
static char*
send_command(char *command)
{
int cmd_len, bytes, tries, sent, received, count;
struct timeval timeout;
fd_set rset;
if (!callcontrol_connect())
return NULL;
cmd_len = strlen(command);
for (sent=0, tries=0; sent<cmd_len && tries<3; tries++, sent+=bytes) {
do
bytes = send(callcontrol_socket.sock, command+sent, cmd_len-sent, MSG_DONTWAIT|MSG_NOSIGNAL);
while (bytes == -1 && errno == EINTR);
if (bytes == -1) {
switch (errno) {
case ECONNRESET:
case EPIPE:
callcontrol_disconnect();
callcontrol_socket.last_failure = 0; // we want to reconnect immediately
if (callcontrol_connect()) {
sent = bytes = 0;
continue;
} else {
LOG(L_ERR, "connection with callcontrol did die\n");
}
break;
case EACCES:
LOG(L_ERR, "permission denied sending to %s\n", callcontrol_socket.name);
break;
case EWOULDBLOCK:
// this shouldn't happen as we read back all the answer after a request.
// if it would block, it means there is an error.
LOG(L_ERR, "sending command would block!\n");
break;
default:
LOG(L_ERR, "%d: %s\n", errno, strerror(errno));
break;
}
callcontrol_disconnect();
return NULL;
}
}
if (sent < cmd_len) {
LOG(L_ERR, "couldn't send complete command after 3 tries\n");
callcontrol_disconnect();
return NULL;
}
callcontrol_socket.data[0] = 0;
received = 0;
while (True) {
FD_ZERO(&rset);
FD_SET(callcontrol_socket.sock, &rset);
timeout.tv_sec = callcontrol_socket.timeout / 1000;
timeout.tv_usec = (callcontrol_socket.timeout % 1000) * 1000;
do
count = select(callcontrol_socket.sock + 1, &rset, NULL, NULL, &timeout);
while (count == -1 && errno == EINTR);
if (count == -1) {
LOG(L_ERR, "select failed: %d: %s\n", errno, strerror(errno));
callcontrol_disconnect();
return NULL;
} else if (count == 0) {
LOG(L_ERR, "did timeout waiting for an answer\n");
callcontrol_disconnect();
return NULL;
} else {
do
bytes = recv(callcontrol_socket.sock, callcontrol_socket.data+received, BUFFER_SIZE-1-received, 0);
while (bytes == -1 && errno == EINTR);
if (bytes == -1) {
LOG(L_ERR, "failed to read answer: %d: %s\n", errno, strerror(errno));
callcontrol_disconnect();
return NULL;
} else if (bytes == 0) {
LOG(L_ERR, "connection with callcontrol closed\n");
callcontrol_disconnect();
return NULL;
} else {
callcontrol_socket.data[received+bytes] = 0;
if (strstr(callcontrol_socket.data+received, "\r\n")!=NULL) {
break;
}
received += bytes;
}
}
}
return callcontrol_socket.data;
}
// Call control processing
//
// Return codes:
// 2 - No limit
// 1 - Limited
// -1 - No credit
// -2 - Locked
// -5 - Internal error (message parsing, communication, ...)
static int
call_control_initialize(struct sip_msg *msg)
{
CallInfo *call;
char *message, *result = NULL;
call = get_call_info(msg, CAInitialize);
if (!call) {
LOG(L_ERR, "can't retrieve call info\n");
return -5;
}
if (!cc_init_avps)
message = make_default_request(call);
else
message = make_custom_request(msg, call);
if (!message)
return -5;
result = send_command(message);
if (result==NULL) {
return -5;
} else if (strcasecmp(result, "No limit\r\n")==0) {
return 2;
} else if (strcasecmp(result, "Limited\r\n")==0) {
return 1;
} else if (strcasecmp(result, "No credit\r\n")==0) {
return -1;
} else if (strcasecmp(result, "Locked\r\n")==0) {
return -2;
} else {
return -5;
}
}
// Called during a dialog for start and update requests
//
// Return codes:
// 1 - Ok
// -1 - Session not found
// -5 - Internal error (message parsing, communication, ...)
static int
call_control_start(struct sip_msg *msg, struct dlg_cell *dlg)
{
CallInfo *call;
char *message, *result;
call = get_call_info(msg, CAStart);
if (!call) {
LOG(L_ERR, "can't retrieve call info\n");
return -5;
}
call->dialog_id.h_entry = dlg->h_entry;
call->dialog_id.h_id = dlg->h_id;
if (!cc_start_avps)
message = make_default_request(call);
else
message = make_custom_request(msg, call);
if (!message)
return -5;
result = send_command(message);
if (result==NULL) {
return -5;
} else if (strcasecmp(result, "Ok\r\n")==0) {
return 1;
} else if (strcasecmp(result, "Not found\r\n")==0) {
return -1;
} else {
return -5;
}
}
// Called during a dialog ending to stop callcontrol
//
// Return codes:
// 1 - Ok
// -1 - Session not found
// -5 - Internal error (message parsing, communication, ...)
static int
call_control_stop(struct sip_msg *msg, str callid)
{
CallInfo call;
char *message, *result;
call.action = CAStop;
call.callid = callid;
if (!cc_stop_avps)
message = make_default_request(&call);
else
message = make_custom_request(msg, &call);
if (!message)
return -5;
result = send_command(message);
if (result==NULL) {
return -5;
} else if (strcasecmp(result, "Ok\r\n")==0) {
return 1;
} else if (strcasecmp(result, "Not found\r\n")==0) {
return -1;
} else {
return -5;
}
}
// Dialog callbacks and helpers
//
typedef enum {
CCInactive = 0,
CCActive
} CallControlState;
static void
__dialog_replies(struct dlg_cell *dlg, int type, struct dlg_cb_params *_params)
{
struct sip_msg *reply = _params->rpl;
if (reply!=FAKED_REPLY && reply->REPLY_STATUS==200) {
call_control_start(reply, dlg);
}
}
static void
__dialog_ended(struct dlg_cell *dlg, int type, struct dlg_cb_params *_params)
{
if ((int)(long)*_params->param == CCActive) {
struct sip_msg* msg = _params->rpl;
if( !msg || msg == FAKED_REPLY)
msg = _params->req;
call_control_stop(msg, dlg->callid);
*_params->param = CCInactive;
}
}
static void
__dialog_created(struct dlg_cell *dlg, int type, struct dlg_cb_params *_params)
{
struct sip_msg *request = _params->req;
if (request->REQ_METHOD != METHOD_INVITE)
return;
if ((request->msg_flags & FL_USE_CALL_CONTROL) == 0)
return;
if (dlg_api.register_dlgcb(dlg, DLGCB_RESPONSE_FWDED, __dialog_replies, NULL, NULL) != 0)
LOG(L_ERR, "cannot register callback for dialog confirmation\n");
if (dlg_api.register_dlgcb(dlg, DLGCB_TERMINATED | DLGCB_FAILED | DLGCB_EXPIRED | DLGCB_DESTROY, __dialog_ended, (void*)CCActive, NULL) != 0)
LOG(L_ERR, "cannot register callback for dialog termination\n");
// reset the flag to indicate that the dialog for callcontrol was created
request->msg_flags &= ~FL_USE_CALL_CONTROL;
}
static void
__dialog_loaded(struct dlg_cell *dlg, int type, struct dlg_cb_params *_params)
{
if (dlg_api.register_dlgcb(dlg, DLGCB_RESPONSE_FWDED, __dialog_replies, NULL, NULL) != 0)
LOG(L_ERR, "cannot register callback for dialog confirmation\n");
if (dlg_api.register_dlgcb(dlg, DLGCB_TERMINATED | DLGCB_FAILED | DLGCB_EXPIRED | DLGCB_DESTROY, __dialog_ended, (void*)CCActive, NULL) != 0)
LOG(L_ERR, "cannot register callback for dialog termination\n");
}
// Public API
//
// Return codes:
// 2 - No limit
// 1 - Limited
// -1 - No credit
// -2 - Locked
// -3 - No provider
// -5 - Internal error (message parsing, communication, ...)
static int
CallControl(struct sip_msg *msg, char *str1, char *str2)
{
int result;
if (disable)
return 2;
if (msg->first_line.type!=SIP_REQUEST || msg->REQ_METHOD!=METHOD_INVITE || has_to_tag(msg)) {
LOG(L_WARN, "call_control should only be called for the first INVITE\n");
return -5;
}
result = call_control_initialize(msg);
if (result == 1) {
// A call with a time limit that will be traced by callcontrol
msg->msg_flags |= FL_USE_CALL_CONTROL;
setflag(msg, dialog_flag); // have the dialog module trace this dialog
}
return result;
}
// Module management: initialization/destroy/function-parameter-fixing/...
//
static int
mod_init(void)
{
pv_spec_t avp_spec;
int *param;
modparam_t type;
// initialize the canonical_uri_avp structure
if (canonical_uri_avp.spec.s==NULL || canonical_uri_avp.spec.len<=0) {
LOG(L_ERR, "missing/empty canonical_uri_avp parameter. using default.\n");
canonical_uri_avp.spec.s = CANONICAL_URI_AVP_SPEC;
}
if (pv_parse_spec(&(canonical_uri_avp.spec), &avp_spec)==0 || avp_spec.type!=PVT_AVP) {
LOG(L_CRIT, "invalid AVP specification for canonical_uri_avp: `%s'\n", canonical_uri_avp.spec.s);
return -1;
}
if (pv_get_avp_name(0, &(avp_spec.pvp), &(canonical_uri_avp.name), &(canonical_uri_avp.type))!=0) {
LOG(L_CRIT, "invalid AVP specification for canonical_uri_avp: `%s'\n", canonical_uri_avp.spec.s);
return -1;
}
// initialize the signaling_ip_avp structure
if (signaling_ip_avp.spec.s==NULL || signaling_ip_avp.spec.len<=0) {
LOG(L_ERR, "missing/empty signaling_ip_avp parameter. using default.\n");
signaling_ip_avp.spec.s = SIGNALING_IP_AVP_SPEC;
}
if (pv_parse_spec(&(signaling_ip_avp.spec), &avp_spec)==0 || avp_spec.type!=PVT_AVP) {
LOG(L_CRIT, "invalid AVP specification for signaling_ip_avp: `%s'\n", signaling_ip_avp.spec.s);
return -1;
}
if (pv_get_avp_name(0, &(avp_spec.pvp), &(signaling_ip_avp.name), &(signaling_ip_avp.type))!=0) {
LOG(L_CRIT, "invalid AVP specification for signaling_ip_avp: `%s'\n", signaling_ip_avp.spec.s);
return -1;
}
// initialize the sip_application_avp structure
if (sip_application_avp.spec.s==NULL || sip_application_avp.spec.len<=0) {
LOG(L_ERR, "missing/empty sip_application_avp parameter. using default.\n");
sip_application_avp.spec.s = SIP_APPLICATION_AVP_SPEC;
}
if (pv_parse_spec(&(sip_application_avp.spec), &avp_spec)==0 || avp_spec.type!=PVT_AVP) {
LOG(L_CRIT, "invalid AVP specification for sip_application_avp: `%s'\n", sip_application_avp.spec.s);
return -1;
}
if (pv_get_avp_name(0, &(avp_spec.pvp), &(sip_application_avp.name), &(sip_application_avp.type))!=0) {
LOG(L_CRIT, "invalid AVP specification for sip_application_avp: `%s'\n", sip_application_avp.spec.s);
return -1;
}
// bind to the dialog API
if (load_dlg_api(&dlg_api)!=0) {
LOG(L_CRIT, "cannot load the dialog module API\n");
return -1;
}
// load dlg_flag and default_timeout parameters from the dialog module
param = find_param_export(find_module_by_name("dialog"), "dlg_flag", INT_PARAM, &type);
if (!param) {
LOG(L_CRIT, "cannot find dlg_flag parameter in the dialog module\n");
return -1;
}
if (type != INT_PARAM) {
LOG(L_CRIT, "dlg_flag parameter found but with wrong type: %d\n", type);
return -1;
}
dialog_flag = *param;
// register dialog creation callback
if (dlg_api.register_dlgcb(NULL, DLGCB_CREATED, __dialog_created, NULL, NULL) != 0) {
LOG(L_CRIT, "cannot register callback for dialog creation\n");
return -1;
}
// register dialog loading callback
if (dlg_api.register_dlgcb(NULL, DLGCB_LOADED, __dialog_loaded, NULL, NULL) != 0) {
LOG(L_ERR, "cannot register callback for dialogs loaded from the database\n");
}
// register a pre-script callback to automatically enable dialog tracing
if (register_script_cb(postprocess_request, POST_SCRIPT_CB|REQUEST_CB, 0) != 0) {
LOG(L_CRIT, "ERROR:call_control:mod_init: could not register request postprocessing callback\n");
return -1;
}
return 0;
}
static int
child_init(int rank)
{
// initialize the connection to callcontrol if needed
if (!disable)
callcontrol_connect();
return 0;
}
static void
destroy(void) {
if (cc_init_avps)
destroy_list(cc_init_avps);
if (cc_start_avps)
destroy_list(cc_start_avps);
if (cc_stop_avps)
destroy_list(cc_stop_avps);
}
// Postprocess a request after the main script route is done.
//
// After all script processing is done, check if the dialog was actually
// created to take care of call control. If the FL_USE_CALL_CONTROL flag
// is still set, then the dialog creation callback was not called which
// means that there was a failure relaying the message and we have to
// tell the call control application to discard the call, otherwise it
// would remain dangling until it expires.
//
static int
postprocess_request(struct sip_msg *msg, unsigned int flags, void *_param)
{
CallInfo *call;
if ((msg->msg_flags & FL_USE_CALL_CONTROL) == 0)
return 1;
// the FL_USE_CALL_CONTROL flag is still set => the dialog was not created
LOG(L_WARN, "dialog to trace controlled call was not created. discarding callcontrol.");
call = get_call_info(msg, CAStop);
if (!call) {
LOG(L_ERR, "can't retrieve call info\n");
return -1;
}
call_control_stop(msg, call->callid);
return 1;
}
|