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
|
/*
* $Id$
*
* Copyright (C) 2006 iptelorg GmbH
*
* 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:
* --------
* 2006-02-08 created by andrei
* 2007-01-18 use PROC_RPC rank when forking (andrei)
*/
#include "../../sr_module.h"
#include "../../ut.h"
#include "../../dprint.h"
#include "../../pt.h"
#include "../../cfg/cfg_struct.h"
#include "ctrl_socks.h"
#include "io_listener.h"
#include <sys/types.h>
#include <sys/socket.h> /* socketpair */
#include <unistd.h> /* close, fork, getpid */
#include <stdio.h> /* snprintf */
#include <string.h> /* strerror */
#include <errno.h>
MODULE_VERSION
#include "ctl_defaults.h"
#include "binrpc_run.h"
#ifdef USE_FIFO
#include "fifo_server.h"
#endif
static int mod_init(void);
static int mod_child(int rank);
static void mod_destroy(void);
static cmd_export_t cmds[]={
{0,0,0,0,0}
};
static int usock_mode=0600; /* permissions, default rw-------*/
static int usock_uid=-1; /* username and group for the unix sockets*/
static int usock_gid=-1;
/* if set try to automatically convert values to the requested type in
rpc->scan (default: not set) */
extern int autoconvert;
extern int binrpc_max_body_size;
extern int binrpc_struct_max_body_size;
static int add_binrpc_socket(modparam_t type, void * val);
#ifdef USE_FIFO
static int add_fifo_socket(modparam_t type, void * val);
#endif
static int fix_user(modparam_t type, void * val);
static int fix_group(modparam_t type, void * val);
static void ctrl_listen_ls_rpc(rpc_t* rpc, void* ctx);
void io_listen_who_rpc(rpc_t* rpc, void* ctx);
void io_listen_conn_rpc(rpc_t* rpc, void* ctx);
static char* io_listen_who_doc[]={ "list open connections", 0 };
static char* io_listen_conn_doc[]={ "returns number of open connections", 0 };
static char* ctl_listen_ls_doc[]={ "list ctl listen sockets", 0 };
static rpc_export_t ctl_rpc[]={
{"ctl.who", io_listen_who_rpc, (const char**)io_listen_who_doc, 0},
{"ctl.connections", io_listen_conn_rpc,(const char**)io_listen_conn_doc,0},
{"ctl.listen", ctrl_listen_ls_rpc,(const char**)ctl_listen_ls_doc, 0},
{ 0, 0, 0, 0}
};
static param_export_t params[]={
#ifdef USE_FIFO
{"fifo", PARAM_STRING|PARAM_USE_FUNC, (void*) add_fifo_socket },
#endif
{"binrpc", PARAM_STRING|PARAM_USE_FUNC, (void*) add_binrpc_socket},
{"mode", PARAM_INT, &usock_mode },
{"user", PARAM_STRING|PARAM_USE_FUNC, fix_user },
{"group", PARAM_STRING|PARAM_USE_FUNC, fix_group },
{"autoconversion", PARAM_INT, &autoconvert },
{"binrpc_max_body_size", PARAM_INT, &binrpc_max_body_size },
{"binrpc_struct_max_body_size", PARAM_INT, &binrpc_struct_max_body_size },
{0,0,0}
}; /* no params */
struct module_exports exports= {
"ctl",
cmds,
ctl_rpc, /* RPC methods */
params,
mod_init, /* module initialization function */
0, /* response function */
mod_destroy, /* destroy function */
0, /* on_cancel function */
mod_child, /* per-child init function */
};
static struct id_list* listen_lst=0; /* binrpc sockets name list */
static struct ctrl_socket* ctrl_sock_lst=0;
static int fd_no=0; /* number of fd used */
static int add_binrpc_socket(modparam_t type, void * val)
{
char *s;
struct id_list* id;
if ((type & PARAM_STRING)==0){
LOG(L_CRIT, "BUG: ctl: add_binrpc_socket: bad parameter type %d\n",
type);
goto error;
}
s=(char*)val;
id=parse_listen_id(s, strlen(s), UDP_SOCK); /* default udp proto */
if (id==0){
LOG(L_ERR, "ERROR: ctl: bad listen socket: \"%s\"\n", s);
goto error;
}
id->data_proto=P_BINRPC;
id->next=listen_lst;
listen_lst=id;
return 0;
error:
return -1;
}
#ifdef USE_FIFO
static int add_fifo_socket(modparam_t type, void * val)
{
char *s;
struct id_list* id;
if ((type & PARAM_STRING)==0){
LOG(L_CRIT, "BUG: ctl: add_fifo: bad parameter type %d\n",
type);
goto error;
}
s=(char*)val;
id=parse_listen_id(s, strlen(s), FIFO_SOCK); /* default udp proto */
if (id==0){
LOG(L_ERR, "ERROR: ctl: bad fifo: \"%s\"\n", s);
goto error;
}
id->data_proto=P_FIFO;
id->next=listen_lst;
listen_lst=id;
return 0;
error:
return -1;
}
#endif
static int fix_user(modparam_t type, void * val)
{
char* s;
if ((type & PARAM_STRING)==0){
LOG(L_CRIT, "BUG: ctl: fix_user: bad parameter type %d\n",
type);
goto error;
}
s=(char*)val;
if (user2uid(&usock_uid, 0, s)<0){
LOG(L_ERR, "ERROR: ctl: bad user name/uid number %s\n", s);
goto error;
}
return 0;
error:
return -1;
}
static int fix_group(modparam_t type, void * val)
{
char* s;
if ((type & PARAM_STRING)==0){
LOG(L_CRIT, "BUG: ctl: fix_group: bad parameter type %d\n",
type);
goto error;
}
s=(char*)val;
if (group2gid(&usock_gid, s)<0){
LOG(L_ERR, "ERROR: ctl: bad group name/gid number %s\n", s);
goto error;
}
return 0;
error:
return -1;
}
static int mod_init(void)
{
struct id_list* l;
binrpc_callbacks_init();
if(binrpc_max_body_size<=0)
binrpc_max_body_size = 4;
if(binrpc_struct_max_body_size<=0)
binrpc_struct_max_body_size = 1;
binrpc_max_body_size *= 1024;
binrpc_struct_max_body_size *= 1024;
if (listen_lst==0) {
add_binrpc_socket(PARAM_STRING, DEFAULT_CTL_SOCKET);
}
DBG("listening on:\n");
for (l=listen_lst; l; l=l->next){
fd_no++;
switch(l->proto){
case UNIXD_SOCK:
DBG(" [%s:unix dgram] %s\n",
payload_proto_name(l->data_proto), l->name);
break;
case UNIXS_SOCK:
DBG(" [%s:unix stream] %s\n",
payload_proto_name(l->data_proto), l->name);
break;
case UDP_SOCK:
DBG(" [%s:udp] %s:%d\n",
payload_proto_name(l->data_proto), l->name,
l->port?l->port:DEFAULT_CTL_PORT);
break;
case TCP_SOCK:
DBG(" [%s:tcp] %s:%d\n",
payload_proto_name(l->data_proto), l->name,
l->port?l->port:DEFAULT_CTL_PORT);
break;
#ifdef USE_FIFO
case FIFO_SOCK:
DBG(" [%s:fifo] %s\n",
payload_proto_name(l->data_proto), l->name);
fd_no++; /* fifos use 2 fds */
break;
#endif
default:
LOG(L_CRIT, "BUG: ctrl: listen protocol %d not supported\n",
l->proto);
goto error;
}
}
/* open socket now, before suid */
if (init_ctrl_sockets(&ctrl_sock_lst, listen_lst, DEFAULT_CTL_PORT,
usock_mode, usock_uid, usock_gid)<0){
LOG(L_ERR, "ERROR: ctl: mod_init: init ctrl. sockets failed\n");
goto error;
}
if (ctrl_sock_lst){
/* we will fork */
register_procs(1); /* we will be creating an extra process */
register_fds(fd_no);
/* The child process will keep updating its local configuration */
cfg_register_child(1);
}
#ifdef USE_FIFO
fifo_rpc_init();
#endif
return 0;
error:
return -1;
}
static int mod_child(int rank)
{
int pid;
struct ctrl_socket* cs;
static int rpc_handler=0;
/* do nothing from PROC_INIT, is the same as PROC_MAIN */
if (rank==PROC_INIT)
return 0;
/* we want to fork(), but only from one process */
if ((rank == PROC_MAIN ) && (ctrl_sock_lst)){ /* FIXME: no fork ?? */
DBG("ctl: mod_child(%d), ctrl_sock_lst=%p\n", rank, ctrl_sock_lst);
/* fork, but make sure we know not to close our own sockets when
* ctl child_init will be called for the new child */
rpc_handler=1;
/* child should start with a correct estimated used fds number*/
register_fds(MAX_IO_READ_CONNECTIONS);
pid=fork_process(PROC_RPC, "ctl handler", 1);
DBG("ctl: mod_child(%d), fork_process=%d, csl=%p\n",
rank, pid, ctrl_sock_lst);
if (pid<0){
goto error;
}
if (pid == 0){ /* child */
is_main=0;
DBG("ctl: %d io_listen_loop(%d, %p)\n",
rank, fd_no, ctrl_sock_lst);
io_listen_loop(fd_no, ctrl_sock_lst);
}else{ /* parent */
/* not used in parent */
register_fds(-MAX_IO_READ_CONNECTIONS);
rpc_handler=0;
}
}
if (rank!=PROC_RPC || !rpc_handler){
/* close all the opened fds, we don't need them here */
for (cs=ctrl_sock_lst; cs; cs=cs->next){
close(cs->fd);
cs->fd=-1;
if (cs->write_fd!=-1){
close(cs->write_fd);
cs->write_fd=-1;
}
}
if (rank!=PROC_MAIN){ /* we need the lists in main for on_exit cleanup,
see mod_destroy */
/* free memory, we don't need the lists anymore */
free_ctrl_socket_list(ctrl_sock_lst);
ctrl_sock_lst=0;
free_id_list(listen_lst);
listen_lst=0;
}
}
return 0;
error:
return -1;
}
static void mod_destroy(void)
{
struct ctrl_socket* cs;
/* close all the opened fds & unlink the files */
for (cs=ctrl_sock_lst; cs; cs=cs->next){
switch(cs->transport){
case UNIXS_SOCK:
case UNIXD_SOCK:
close(cs->fd);
cs->fd=-1;
if (cs->write_fd!=-1){
close(cs->write_fd);
cs->write_fd=-1;
}
if (cs->name){
if (unlink(cs->name)<0){
LOG(L_ERR, "ERROR: ctl: could not delete unix"
" socket %s: %s (%d)\n",
cs->name, strerror(errno), errno);
}
}
break;
#ifdef USE_FIFO
case FIFO_SOCK:
destroy_fifo(cs->fd, cs->write_fd, cs->name);
break;
#endif
default:
close(cs->fd);
cs->fd=-1;
if (cs->write_fd!=-1){
close(cs->write_fd);
cs->write_fd=-1;
}
}
}
if (listen_lst){
free_id_list(listen_lst);
listen_lst=0;
}
if (ctrl_sock_lst){
free_ctrl_socket_list(ctrl_sock_lst);
ctrl_sock_lst=0;
}
}
static void ctrl_listen_ls_rpc(rpc_t* rpc, void* ctx)
{
struct ctrl_socket* cs;
for (cs=ctrl_sock_lst; cs; cs=cs->next){
rpc->add(ctx, "ssss", payload_proto_name(cs->p_proto),
socket_proto_name(cs->transport),
cs->name, (cs->port)?int2str(cs->port, 0):"");
}
}
|