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
|
/**
* Copyright (C) 2014 Daniel-Constantin Mierla (asipto.com)
*
* This file is part of Kamailio, a free SIP server.
*
* This file 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
*
*
* This file 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 <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <fcntl.h>
#include <ev.h>
#include "../../sr_module.h"
#include "../../dprint.h"
#include "../../ut.h"
#include "../../lib/kcore/faked_msg.h"
#include "evapi_dispatch.h"
static int _evapi_notify_sockets[2];
static int _evapi_netstring_format = 1;
#define EVAPI_IPADDR_SIZE 64
typedef struct _evapi_client {
int connected;
int sock;
unsigned short af;
unsigned short src_port;
char src_addr[EVAPI_IPADDR_SIZE];
} evapi_client_t;
typedef struct _evapi_env {
int eset;
int conidx;
str msg;
} evapi_env_t;
#define EVAPI_MAX_CLIENTS 8
static evapi_client_t _evapi_clients[EVAPI_MAX_CLIENTS];
typedef struct _evapi_evroutes {
int con_new;
int con_closed;
int msg_received;
} evapi_evroutes_t;
static evapi_evroutes_t _evapi_rts;
/**
*
*/
void evapi_env_reset(evapi_env_t *evenv)
{
if(evenv==0)
return;
memset(evenv, 0, sizeof(evapi_env_t));
evenv->conidx = -1;
}
/**
*
*/
void evapi_init_environment(int dformat)
{
memset(&_evapi_rts, 0, sizeof(evapi_evroutes_t));
_evapi_rts.con_new = route_get(&event_rt, "evapi:connection-new");
if (_evapi_rts.con_new < 0 || event_rt.rlist[_evapi_rts.con_new] == NULL)
_evapi_rts.con_new = -1;
_evapi_rts.con_closed = route_get(&event_rt, "evapi:connection-closed");
if (_evapi_rts.con_closed < 0 || event_rt.rlist[_evapi_rts.con_closed] == NULL)
_evapi_rts.con_closed = -1;
_evapi_rts.msg_received = route_get(&event_rt, "evapi:message-received");
if (_evapi_rts.msg_received < 0 || event_rt.rlist[_evapi_rts.msg_received] == NULL)
_evapi_rts.msg_received = -1;
_evapi_netstring_format = dformat;
}
/**
*
*/
int evapi_run_cfg_route(evapi_env_t *evenv, int rt)
{
int backup_rt;
struct run_act_ctx ctx;
sip_msg_t *fmsg;
sip_msg_t tmsg;
if(evenv==0 || evenv->eset==0) {
LM_ERR("evapi env not set\n");
return -1;
}
if(rt<0)
return 0;
fmsg = faked_msg_next();
memcpy(&tmsg, fmsg, sizeof(sip_msg_t));
fmsg = &tmsg;
evapi_set_msg_env(fmsg, evenv);
backup_rt = get_route_type();
set_route_type(EVENT_ROUTE);
init_run_actions_ctx(&ctx);
run_top_route(event_rt.rlist[rt], fmsg, 0);
set_route_type(backup_rt);
evapi_set_msg_env(fmsg, NULL);
return 0;
}
/**
*
*/
int evapi_close_connection(int cidx)
{
if(cidx<0 || cidx>=EVAPI_MAX_CLIENTS)
return -1;
if(_evapi_clients[cidx].connected==1
&& _evapi_clients[cidx].sock > 0) {
close(_evapi_clients[cidx].sock);
_evapi_clients[cidx].connected = 0;
_evapi_clients[cidx].sock = 0;
return 0;
}
return -2;
}
/**
*
*/
int evapi_cfg_close(sip_msg_t *msg)
{
evapi_env_t *evenv;
if(msg==NULL)
return -1;
evenv = (evapi_env_t*)msg->date;
if(evenv==NULL || evenv->conidx<0 || evenv->conidx>=EVAPI_MAX_CLIENTS)
return -1;
return evapi_close_connection(evenv->conidx);
}
/**
*
*/
int evapi_init_notify_sockets(void)
{
if (socketpair(PF_UNIX, SOCK_STREAM, 0, _evapi_notify_sockets) < 0) {
LM_ERR("opening notify stream socket pair\n");
return -1;
}
LM_DBG("inter-process event notification sockets initialized\n");
return 0;
}
/**
*
*/
void evapi_close_notify_sockets_child(void)
{
LM_DBG("closing the notification socket used by children\n");
close(_evapi_notify_sockets[1]);
}
/**
*
*/
void evapi_close_notify_sockets_parent(void)
{
LM_DBG("closing the notification socket used by parent\n");
close(_evapi_notify_sockets[0]);
}
/**
*
*/
int evapi_dispatch_notify(char *obuf, int olen)
{
int i;
int n;
int wlen;
n = 0;
for(i=0; i<EVAPI_MAX_CLIENTS; i++) {
if(_evapi_clients[i].connected==1 && _evapi_clients[i].sock>0) {
wlen = write(_evapi_clients[i].sock, obuf, olen);
if(wlen!=olen) {
LM_DBG("failed to write all packet (%d out of %d) on socket %d index [%d]\n",
wlen, olen, _evapi_clients[i].sock, i);
}
n++;
}
}
return n;
}
/**
*
*/
void evapi_recv_client(struct ev_loop *loop, struct ev_io *watcher, int revents)
{
#define CLIENT_BUFFER_SIZE 4096
char rbuffer[CLIENT_BUFFER_SIZE];
ssize_t rlen;
int i, k;
evapi_env_t evenv;
str frame;
if(EV_ERROR & revents) {
perror("received invalid event\n");
return;
}
/* read message from client */
rlen = recv(watcher->fd, rbuffer, CLIENT_BUFFER_SIZE-1, 0);
if(rlen < 0) {
LM_ERR("cannot read the client message\n");
return;
}
for(i=0; i<EVAPI_MAX_CLIENTS; i++) {
if(_evapi_clients[i].connected==1 && _evapi_clients[i].sock==watcher->fd) {
break;
}
}
if(i==EVAPI_MAX_CLIENTS) {
LM_ERR("cannot lookup client socket %d\n", watcher->fd);
return;
}
evapi_env_reset(&evenv);
if(rlen == 0) {
/* client is gone */
evenv.eset = 1;
evenv.conidx = i;
evapi_run_cfg_route(&evenv, _evapi_rts.con_closed);
_evapi_clients[i].connected = 0;
_evapi_clients[i].sock = 0;
ev_io_stop(loop, watcher);
free(watcher);
LM_INFO("client closing connection - pos [%d] addr [%s:%d]\n",
i, _evapi_clients[i].src_addr, _evapi_clients[i].src_port);
return;
}
rbuffer[rlen] = '\0';
LM_NOTICE("{%d} [%s:%d] - received [%.*s]\n",
i, _evapi_clients[i].src_addr, _evapi_clients[i].src_port,
(int)rlen, rbuffer);
evenv.conidx = i;
evenv.eset = 1;
if(_evapi_netstring_format) {
/* netstring decapsulation */
k = 0;
while(k<rlen) {
frame.len = 0;
while(k<rlen) {
if(rbuffer[k]==' ' || rbuffer[k]=='\t'
|| rbuffer[k]=='\r' || rbuffer[k]=='\n')
k++;
else break;
}
if(k==rlen) return;
while(k<rlen) {
if(rbuffer[k]>='0' && rbuffer[k]<='9') {
frame.len = frame.len*10 + rbuffer[k] - '0';
} else {
if(rbuffer[k]==':')
break;
/* invalid character - discard the rest */
return;
}
k++;
}
if(k==rlen || frame.len<=0) return;
if(frame.len + k>=rlen) return;
k++;
frame.s = rbuffer + k;
if(frame.s[frame.len]!=',') return;
frame.s[frame.len] = '\0';
k += frame.len ;
evenv.msg.s = frame.s;
evenv.msg.len = frame.len;
evapi_run_cfg_route(&evenv, _evapi_rts.msg_received);
k++;
}
} else {
evenv.msg.s = rbuffer;
evenv.msg.len = rlen;
evapi_run_cfg_route(&evenv, _evapi_rts.msg_received);
}
}
/**
*
*/
void evapi_accept_client(struct ev_loop *loop, struct ev_io *watcher, int revents)
{
struct sockaddr caddr;
socklen_t clen = sizeof(caddr);
int csock;
struct ev_io *evapi_client;
int i;
evapi_env_t evenv;
evapi_client = (struct ev_io*) malloc (sizeof(struct ev_io));
if(evapi_client==NULL) {
perror("no more memory\n");
return;
}
if(EV_ERROR & revents) {
perror("received invalid event\n");
return;
}
/* accept new client connection */
csock = accept(watcher->fd, (struct sockaddr *)&caddr, &clen);
if (csock < 0) {
LM_ERR("cannot accept the client\n");
return;
}
for(i=0; i<EVAPI_MAX_CLIENTS; i++) {
if(_evapi_clients[i].connected==0) {
if (caddr.sa_family == AF_INET) {
_evapi_clients[i].src_port = ntohs(((struct sockaddr_in*)&caddr)->sin_port);
if(inet_ntop(AF_INET, &((struct sockaddr_in*)&caddr)->sin_addr,
_evapi_clients[i].src_addr,
EVAPI_IPADDR_SIZE)==NULL) {
LM_ERR("cannot convert ipv4 address\n");
close(csock);
return;
}
} else {
_evapi_clients[i].src_port = ntohs(((struct sockaddr_in6*)&caddr)->sin6_port);
if(inet_ntop(AF_INET6, &((struct sockaddr_in6*)&caddr)->sin6_addr,
_evapi_clients[i].src_addr,
EVAPI_IPADDR_SIZE)==NULL) {
LM_ERR("cannot convert ipv6 address\n");
close(csock);
return;
}
}
_evapi_clients[i].connected = 1;
_evapi_clients[i].sock = csock;
_evapi_clients[i].af = caddr.sa_family;
break;
}
}
if(i==EVAPI_MAX_CLIENTS) {
LM_ERR("too many clients\n");
close(csock);
return;
}
LM_DBG("new connection - pos[%d] from: [%s:%d]\n", i,
_evapi_clients[i].src_addr, _evapi_clients[i].src_port);
evapi_env_reset(&evenv);
evenv.conidx = i;
evenv.eset = 1;
evapi_run_cfg_route(&evenv, _evapi_rts.con_new);
if(_evapi_clients[i].connected == 0)
return;
/* start watcher to read messages from whatchers */
ev_io_init(evapi_client, evapi_recv_client, csock, EV_READ);
ev_io_start(loop, evapi_client);
}
/**
*
*/
void evapi_recv_notify(struct ev_loop *loop, struct ev_io *watcher, int revents)
{
str *sbuf;
int rlen;
if(EV_ERROR & revents) {
perror("received invalid event\n");
return;
}
/* read message from client */
rlen = read(watcher->fd, &sbuf, sizeof(str*));
if(rlen != sizeof(str*)) {
LM_ERR("cannot read the sip worker message\n");
return;
}
LM_DBG("received [%p] [%.*s] (%d)\n", sbuf, sbuf->len, sbuf->s, sbuf->len);
evapi_dispatch_notify(sbuf->s, sbuf->len);
shm_free(sbuf);
}
/**
*
*/
int evapi_run_dispatcher(char *laddr, int lport)
{
int evapi_srv_sock;
struct sockaddr_in evapi_srv_addr;
struct ev_loop *loop;
struct hostent *h = NULL;
struct ev_io io_server;
struct ev_io io_notify;
LM_DBG("starting dispatcher processing\n");
memset(_evapi_clients, 0, sizeof(evapi_client_t) * EVAPI_MAX_CLIENTS);
loop = ev_default_loop(0);
if(loop==NULL) {
LM_ERR("cannot get libev loop\n");
return -1;
}
h = gethostbyname(laddr);
if (h == NULL || (h->h_addrtype != AF_INET && h->h_addrtype != AF_INET6)) {
LM_ERR("cannot resolve local server address [%s]\n", laddr);
return -1;
}
if(h->h_addrtype == AF_INET) {
evapi_srv_sock = socket(PF_INET, SOCK_STREAM, 0);
} else {
evapi_srv_sock = socket(PF_INET6, SOCK_STREAM, 0);
}
if( evapi_srv_sock < 0 )
{
LM_ERR("cannot create server socket (family %d)\n", h->h_addrtype);
return -1;
}
/* set non-blocking flag */
fcntl(evapi_srv_sock, F_SETFL, fcntl(evapi_srv_sock, F_GETFL) | O_NONBLOCK);
bzero(&evapi_srv_addr, sizeof(evapi_srv_addr));
evapi_srv_addr.sin_family = h->h_addrtype;
evapi_srv_addr.sin_port = htons((short)lport);
evapi_srv_addr.sin_addr = *(struct in_addr*)h->h_addr;
if (bind(evapi_srv_sock, (struct sockaddr*)&evapi_srv_addr,
sizeof(evapi_srv_addr)) < 0) {
LM_ERR("cannot bind to local address and port [%s:%d]\n", laddr, lport);
close(evapi_srv_sock);
return -1;
}
if (listen(evapi_srv_sock, 4) < 0) {
LM_ERR("listen error\n");
close(evapi_srv_sock);
return -1;
}
ev_io_init(&io_server, evapi_accept_client, evapi_srv_sock, EV_READ);
ev_io_start(loop, &io_server);
ev_io_init(&io_notify, evapi_recv_notify, _evapi_notify_sockets[0], EV_READ);
ev_io_start(loop, &io_notify);
while(1) {
ev_loop (loop, 0);
}
return 0;
}
/**
*
*/
int evapi_run_worker(int prank)
{
LM_DBG("started worker process: %d\n", prank);
while(1) {
sleep(3);
}
}
/**
*
*/
int evapi_relay(str *evdata)
{
#define EVAPI_RELAY_FORMAT "%d:%.*s,"
int len;
int sbsize;
str *sbuf;
LM_DBG("relaying event data [%.*s]\n",
evdata->len, evdata->s);
sbsize = evdata->len;
sbuf = (str*)shm_malloc(sizeof(str) + ((sbsize+32) * sizeof(char)));
if(sbuf==NULL) {
LM_ERR("no more shared memory\n");
return -1;
}
sbuf->s = (char*)sbuf + sizeof(str);
if(_evapi_netstring_format) {
/* netstring encapsulation */
sbuf->len = snprintf(sbuf->s, sbsize+32,
EVAPI_RELAY_FORMAT,
sbsize, evdata->len, evdata->s);
} else {
sbuf->len = snprintf(sbuf->s, sbsize+32,
"%.*s",
evdata->len, evdata->s);
}
if(sbuf->len<=0 || sbuf->len>sbsize+32) {
shm_free(sbuf);
LM_ERR("cannot serialize event\n");
return -1;
}
len = write(_evapi_notify_sockets[1], &sbuf, sizeof(str*));
if(len<=0) {
LM_ERR("failed to pass the pointer to evapi dispatcher\n");
return -1;
}
LM_DBG("sent [%p] [%.*s] (%d)\n", sbuf, sbuf->len, sbuf->s, sbuf->len);
return 0;
}
#if 0
/**
*
*/
int evapi_relay(str *event, str *data)
{
#define EVAPI_RELAY_FORMAT "%d:{\n \"event\":\"%.*s\",\n \"data\":%.*s\n},"
int len;
int sbsize;
str *sbuf;
LM_DBG("relaying event [%.*s] data [%.*s]\n",
event->len, event->s, data->len, data->s);
sbsize = sizeof(EVAPI_RELAY_FORMAT) + event->len + data->len - 13;
sbuf = (str*)shm_malloc(sizeof(str) + ((sbsize+32) * sizeof(char)));
if(sbuf==NULL) {
LM_ERR("no more shared memory\n");
return -1;
}
sbuf->s = (char*)sbuf + sizeof(str);
sbuf->len = snprintf(sbuf->s, sbsize+32,
EVAPI_RELAY_FORMAT,
sbsize, event->len, event->s, data->len, data->s);
if(sbuf->len<=0 || sbuf->len>sbsize+32) {
shm_free(sbuf);
LM_ERR("cannot serialize event\n");
return -1;
}
len = write(_evapi_notify_sockets[1], &sbuf, sizeof(str*));
if(len<=0) {
LM_ERR("failed to pass the pointer to evapi dispatcher\n");
return -1;
}
LM_DBG("sent [%p] [%.*s] (%d)\n", sbuf, sbuf->len, sbuf->s, sbuf->len);
return 0;
}
#endif
/**
*
*/
int pv_parse_evapi_name(pv_spec_t *sp, str *in)
{
if(sp==NULL || in==NULL || in->len<=0)
return -1;
switch(in->len)
{
case 3:
if(strncmp(in->s, "msg", 3)==0)
sp->pvp.pvn.u.isname.name.n = 1;
else goto error;
break;
case 6:
if(strncmp(in->s, "conidx", 6)==0)
sp->pvp.pvn.u.isname.name.n = 0;
else goto error;
break;
case 7:
if(strncmp(in->s, "srcaddr", 7)==0)
sp->pvp.pvn.u.isname.name.n = 2;
else if(strncmp(in->s, "srcport", 7)==0)
sp->pvp.pvn.u.isname.name.n = 3;
else goto error;
break;
default:
goto error;
}
sp->pvp.pvn.type = PV_NAME_INTSTR;
sp->pvp.pvn.u.isname.type = 0;
return 0;
error:
LM_ERR("unknown PV msrp name %.*s\n", in->len, in->s);
return -1;
}
/**
*
*/
int pv_get_evapi(sip_msg_t *msg, pv_param_t *param, pv_value_t *res)
{
evapi_env_t *evenv;
if(param==NULL || res==NULL)
return -1;
evenv = (evapi_env_t*)msg->date;
if(evenv==NULL || evenv->conidx<0 || evenv->conidx>=EVAPI_MAX_CLIENTS)
return pv_get_null(msg, param, res);
if(_evapi_clients[evenv->conidx].connected==0
&& _evapi_clients[evenv->conidx].sock <= 0)
return pv_get_null(msg, param, res);
switch(param->pvn.u.isname.name.n)
{
case 0:
return pv_get_sintval(msg, param, res, evenv->conidx);
case 1:
if(evenv->msg.s==NULL)
return pv_get_null(msg, param, res);
return pv_get_strval(msg, param, res, &evenv->msg);
case 2:
return pv_get_strzval(msg, param, res,
_evapi_clients[evenv->conidx].src_addr);
case 3:
return pv_get_sintval(msg, param, res,
_evapi_clients[evenv->conidx].src_port);
default:
return pv_get_null(msg, param, res);
}
return 0;
}
/**
*
*/
int pv_set_evapi(sip_msg_t *msg, pv_param_t *param, int op,
pv_value_t *val)
{
return 0;
}
|