| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052 |
- /*
- * $Id$
- *
- * 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:
- * [email protected]
- *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- /*
- * History:
- * --------
- * 2002-11-29 created by andrei
- * 2002-12-11 added tcp_send (andrei)
- * 2003-01-20 locking fixes, hashtables (andrei)
- * 2003-02-20 s/lock_t/gen_lock_t/ to avoid a conflict on solaris (andrei)
- * 2003-02-25 Nagle is disabled if -DDISABLE_NAGLE (andrei)
- * 2003-03-29 SO_REUSEADDR before calling bind to allow
- * server restart, Nagle set on the (hopefuly)
- * correct socket (jiri)
- * 2003-03-31 always try to find the corresponding tcp listen socket for
- * a temp. socket and store in in *->bind_address: added
- * find_tcp_si, modified tcpconn_connect (andrei)
- * 2003-04-14 set sockopts to TOS low delay (andrei)
- * 2003-06-30 moved tcp new connect checking & handling to
- * handle_new_connect (andrei)
- * 2003-07-09 tls_close called before closing the tcp connection (andrei)
- * 2003-10-24 converted to the new socket_info lists (andrei)
- * 2003-10-27 tcp port aliases support added (andrei)
- * 2003-11-04 always lock before manipulating refcnt; sendchild
- * does not inc refcnt by itself anymore (andrei)
- * 2003-11-07 different unix sockets are used for fd passing
- * to/from readers/writers (andrei)
- * 2003-11-17 handle_new_connect & tcp_connect will close the
- * new socket if tcpconn_new return 0 (e.g. out of mem) (andrei)
- * 2003-11-28 tcp_blocking_write & tcp_blocking_connect added (andrei)
- * 2004-11-08 dropped find_tcp_si and replaced with find_si (andrei)
- * 2005-06-07 new tcp optimized code, supports epoll (LT), sigio + real time
- * signals, poll & select (andrei)
- * 2005-06-26 *bsd kqueue support (andrei)
- * 2005-07-04 solaris /dev/poll support (andrei)
- * 2005-07-08 tcp_max_connections, tcp_connection_lifetime, don't accept
- * more connections if tcp_max_connections is exceeded (andrei)
- * 2005-10-21 cleanup all the open connections on exit
- * decrement the no. of open connections on timeout too (andrei) * 2006-01-30 queue send_fd request and execute them at the end of the
- * poll loop (#ifdef) (andrei)
- * process all children requests, before attempting to send
- * them new stuff (fixes some deadlocks) (andrei)
- * 2006-02-03 timers are run only once per s (andrei)
- * tcp children fds can be non-blocking; send fds are queued on
- * EAGAIN; lots of bug fixes (andrei)
- * 2006-02-06 better tcp_max_connections checks, tcp_connections_no moved to
- * shm (andrei)
- * 2006-04-12 tcp_send() changed to use struct dest_info (andrei)
- */
- #ifdef USE_TCP
- #ifndef SHM_MEM
- #error "shared memory support needed (add -DSHM_MEM to Makefile.defs)"
- #endif
- #include <sys/time.h>
- #include <sys/types.h>
- #include <sys/select.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <netinet/in_systm.h>
- #include <netinet/ip.h>
- #include <netinet/tcp.h>
- #include <sys/uio.h> /* writev*/
- #include <netdb.h>
- #include <stdlib.h> /*exit() */
- #include <unistd.h>
- #include <errno.h>
- #include <string.h>
- #ifdef HAVE_SELECT
- #include <sys/select.h>
- #endif
- #include <sys/poll.h>
- #include "ip_addr.h"
- #include "pass_fd.h"
- #include "tcp_conn.h"
- #include "globals.h"
- #include "pt.h"
- #include "locking.h"
- #include "mem/mem.h"
- #include "mem/shm_mem.h"
- #include "timer.h"
- #include "sr_module.h"
- #include "tcp_server.h"
- #include "tcp_init.h"
- #include "tsend.h"
- #include "timer_ticks.h"
- #ifdef USE_TLS
- #include "tls/tls_server.h"
- #endif
- #include "tcp_info.h"
- #define local_malloc pkg_malloc
- #define local_free pkg_free
- #define HANDLE_IO_INLINE
- #include "io_wait.h"
- #include <fcntl.h> /* must be included after io_wait.h if SIGIO_RT is used */
- #define TCP_PASS_NEW_CONNECTION_ON_DATA /* don't pass a new connection
- immediately to a child, wait for
- some data on it first */
- #define TCP_LISTEN_BACKLOG 1024
- #define SEND_FD_QUEUE /* queue send fd requests on EAGAIN, instead of sending
- them immediately */
- #define TCP_CHILD_NON_BLOCKING
- #ifdef SEND_FD_QUEUE
- #ifndef TCP_CHILD_NON_BLOCKING
- #define TCP_CHILD_NON_BLOCKING
- #endif
- #define MAX_SEND_FD_QUEUE_SIZE tcp_max_fd_no
- #define SEND_FD_QUEUE_SIZE 128 /* initial size */
- #define MAX_SEND_FD_RETRIES 96 /* FIXME: not used for now */
- #define SEND_FD_QUEUE_TIMEOUT MS_TO_TICKS(2000) /* 2 s */
- #endif
- enum fd_types { F_NONE, F_SOCKINFO /* a tcp_listen fd */,
- F_TCPCONN, F_TCPCHILD, F_PROC };
- struct tcp_child{
- pid_t pid;
- int proc_no; /* ser proc_no, for debugging */
- int unix_sock; /* unix "read child" sock fd */
- int busy;
- int n_reqs; /* number of requests serviced so far */
- };
- int tcp_accept_aliases=0; /* by default don't accept aliases */
- int tcp_connect_timeout=DEFAULT_TCP_CONNECT_TIMEOUT;
- int tcp_send_timeout=DEFAULT_TCP_SEND_TIMEOUT;
- int tcp_con_lifetime=DEFAULT_TCP_CONNECTION_LIFETIME;
- enum poll_types tcp_poll_method=0; /* by default choose the best method */
- int tcp_max_connections=DEFAULT_TCP_MAX_CONNECTIONS;
- int tcp_max_fd_no=0;
- static int* tcp_connections_no=0; /* current open connections */
- /* connection hash table (after ip&port) , includes also aliases */
- struct tcp_conn_alias** tcpconn_aliases_hash=0;
- /* connection hash table (after connection id) */
- struct tcp_connection** tcpconn_id_hash=0;
- gen_lock_t* tcpconn_lock=0;
- static struct tcp_child* tcp_children;
- static int* connection_id=0; /* unique for each connection, used for
- quickly finding the corresponding connection
- for a reply */
- int unix_tcp_sock;
- static int tcp_proto_no=-1; /* tcp protocol number as returned by
- getprotobyname */
- static io_wait_h io_h;
- /* set all socket/fd options: disable nagle, tos lowdelay, non-blocking
- * return -1 on error */
- static int init_sock_opt(int s)
- {
- int flags;
- int optval;
-
- #ifdef DISABLE_NAGLE
- flags=1;
- if ( (tcp_proto_no!=-1) && (setsockopt(s, tcp_proto_no , TCP_NODELAY,
- &flags, sizeof(flags))<0) ){
- LOG(L_WARN, "WARNING: init_sock_opt: could not disable Nagle: %s\n",
- strerror(errno));
- }
- #endif
- /* tos*/
- optval = tos;
- if (setsockopt(s, IPPROTO_IP, IP_TOS, (void*)&optval,sizeof(optval)) ==-1){
- LOG(L_WARN, "WARNING: init_sock_opt: setsockopt tos: %s\n",
- strerror(errno));
- /* continue since this is not critical */
- }
- /* non-blocking */
- flags=fcntl(s, F_GETFL);
- if (flags==-1){
- LOG(L_ERR, "ERROR: init_sock_opt: fnctl failed: (%d) %s\n",
- errno, strerror(errno));
- goto error;
- }
- if (fcntl(s, F_SETFL, flags|O_NONBLOCK)==-1){
- LOG(L_ERR, "ERROR: init_sock_opt: fcntl: set non-blocking failed:"
- " (%d) %s\n", errno, strerror(errno));
- goto error;
- }
- return 0;
- error:
- return -1;
- }
- /* blocking connect on a non-blocking fd; it will timeout after
- * tcp_connect_timeout
- * if BLOCKING_USE_SELECT and HAVE_SELECT are defined it will internally
- * use select() instead of poll (bad if fd > FD_SET_SIZE, poll is preferred)
- */
- static int tcp_blocking_connect(int fd, const struct sockaddr *servaddr,
- socklen_t addrlen)
- {
- int n;
- #if defined(HAVE_SELECT) && defined(BLOCKING_USE_SELECT)
- fd_set sel_set;
- fd_set orig_set;
- struct timeval timeout;
- #else
- struct pollfd pf;
- #endif
- int elapsed;
- int to;
- int ticks;
- int err;
- unsigned int err_len;
- int poll_err;
-
- poll_err=0;
- to=tcp_connect_timeout;
- ticks=get_ticks();
- again:
- n=connect(fd, servaddr, addrlen);
- if (n==-1){
- if (errno==EINTR){
- elapsed=(get_ticks()-ticks)*TIMER_TICK;
- if (elapsed<to) goto again;
- else goto error_timeout;
- }
- if (errno!=EINPROGRESS && errno!=EALREADY){
- LOG(L_ERR, "ERROR: tcp_blocking_connect: (%d) %s\n",
- errno, strerror(errno));
- goto error;
- }
- }else goto end;
-
- /* poll/select loop */
- #if defined(HAVE_SELECT) && defined(BLOCKING_USE_SELECT)
- FD_ZERO(&orig_set);
- FD_SET(fd, &orig_set);
- #else
- pf.fd=fd;
- pf.events=POLLOUT;
- #endif
- while(1){
- elapsed=(get_ticks()-ticks)*TIMER_TICK;
- if (elapsed<to)
- to-=elapsed;
- else
- goto error_timeout;
- #if defined(HAVE_SELECT) && defined(BLOCKING_USE_SELECT)
- sel_set=orig_set;
- timeout.tv_sec=to;
- timeout.tv_usec=0;
- n=select(fd+1, 0, &sel_set, 0, &timeout);
- #else
- n=poll(&pf, 1, to*1000);
- #endif
- if (n<0){
- if (errno==EINTR) continue;
- LOG(L_ERR, "ERROR: tcp_blocking_connect: poll/select failed:"
- " (%d) %s\n", errno, strerror(errno));
- goto error;
- }else if (n==0) /* timeout */ continue;
- #if defined(HAVE_SELECT) && defined(BLOCKING_USE_SELECT)
- if (FD_ISSET(fd, &sel_set))
- #else
- if (pf.revents&(POLLERR|POLLHUP|POLLNVAL)){
- LOG(L_ERR, "ERROR: tcp_blocking_connect: poll error: flags %x\n",
- pf.revents);
- poll_err=1;
- }
- #endif
- {
- err_len=sizeof(err);
- getsockopt(fd, SOL_SOCKET, SO_ERROR, &err, &err_len);
- if ((err==0) && (poll_err==0)) goto end;
- if (err!=EINPROGRESS && err!=EALREADY){
- LOG(L_ERR, "ERROR: tcp_blocking_connect: SO_ERROR (%d) %s\n",
- err, strerror(err));
- goto error;
- }
- }
- }
- error_timeout:
- /* timeout */
- LOG(L_ERR, "ERROR: tcp_blocking_connect: timeout %d s elapsed from %d s\n",
- elapsed, tcp_connect_timeout);
- error:
- return -1;
- end:
- return 0;
- }
- #if 0
- /* blocking write even on non-blocking sockets
- * if TCP_TIMEOUT will return with error */
- static int tcp_blocking_write(struct tcp_connection* c, int fd, char* buf,
- unsigned int len)
- {
- int n;
- fd_set sel_set;
- struct timeval timeout;
- int ticks;
- int initial_len;
-
- initial_len=len;
- again:
-
- n=send(fd, buf, len,
- #ifdef HAVE_MSG_NOSIGNAL
- MSG_NOSIGNAL
- #else
- 0
- #endif
- );
- if (n<0){
- if (errno==EINTR) goto again;
- else if (errno!=EAGAIN && errno!=EWOULDBLOCK){
- LOG(L_ERR, "tcp_blocking_write: failed to send: (%d) %s\n",
- errno, strerror(errno));
- goto error;
- }
- }else if (n<len){
- /* partial write */
- buf+=n;
- len-=n;
- }else{
- /* success: full write */
- goto end;
- }
- while(1){
- FD_ZERO(&sel_set);
- FD_SET(fd, &sel_set);
- timeout.tv_sec=tcp_send_timeout;
- timeout.tv_usec=0;
- ticks=get_ticks();
- n=select(fd+1, 0, &sel_set, 0, &timeout);
- if (n<0){
- if (errno==EINTR) continue; /* signal, ignore */
- LOG(L_ERR, "ERROR: tcp_blocking_write: select failed: "
- " (%d) %s\n", errno, strerror(errno));
- goto error;
- }else if (n==0){
- /* timeout */
- if (get_ticks()-ticks>=tcp_send_timeout){
- LOG(L_ERR, "ERROR: tcp_blocking_write: send timeout (%d)\n",
- tcp_send_timeout);
- goto error;
- }
- continue;
- }
- if (FD_ISSET(fd, &sel_set)){
- /* we can write again */
- goto again;
- }
- }
- error:
- return -1;
- end:
- return initial_len;
- }
- #endif
- struct tcp_connection* tcpconn_new(int sock, union sockaddr_union* su,
- struct socket_info* ba, int type,
- int state)
- {
- struct tcp_connection *c;
-
- c=(struct tcp_connection*)shm_malloc(sizeof(struct tcp_connection));
- if (c==0){
- LOG(L_ERR, "ERROR: tcpconn_new: mem. allocation failure\n");
- goto error;
- }
- memset(c, 0, sizeof(struct tcp_connection)); /* zero init */
- c->s=sock;
- c->fd=-1; /* not initialized */
- if (lock_init(&c->write_lock)==0){
- LOG(L_ERR, "ERROR: tcpconn_new: init lock failed\n");
- goto error;
- }
-
- c->rcv.src_su=*su;
-
- c->refcnt=0;
- su2ip_addr(&c->rcv.src_ip, su);
- c->rcv.src_port=su_getport(su);
- c->rcv.bind_address=ba;
- if (ba){
- c->rcv.dst_ip=ba->address;
- c->rcv.dst_port=ba->port_no;
- }
- print_ip("tcpconn_new: new tcp connection: ", &c->rcv.src_ip, "\n");
- DBG( "tcpconn_new: on port %d, type %d\n", c->rcv.src_port, type);
- init_tcp_req(&c->req);
- c->id=(*connection_id)++;
- c->rcv.proto_reserved1=0; /* this will be filled before receive_message*/
- c->rcv.proto_reserved2=0;
- c->state=state;
- c->extra_data=0;
- #ifdef USE_TLS
- if (type==PROTO_TLS){
- if (tls_tcpconn_init(c, sock)==-1) goto error;
- }else
- #endif /* USE_TLS*/
- {
- c->type=PROTO_TCP;
- c->rcv.proto=PROTO_TCP;
- c->timeout=get_ticks()+tcp_con_lifetime;
- }
- c->flags|=F_CONN_REMOVED;
-
- return c;
-
- error:
- if (c) shm_free(c);
- return 0;
- }
- struct tcp_connection* tcpconn_connect(union sockaddr_union* server, int type)
- {
- int s;
- struct socket_info* si;
- union sockaddr_union my_name;
- socklen_t my_name_len;
- struct tcp_connection* con;
- struct ip_addr ip;
- s=-1;
-
- if (*tcp_connections_no >= tcp_max_connections){
- LOG(L_ERR, "ERROR: tcpconn_connect: maximum number of connections"
- " exceeded (%d/%d)\n",
- *tcp_connections_no, tcp_max_connections);
- goto error;
- }
- s=socket(AF2PF(server->s.sa_family), SOCK_STREAM, 0);
- if (s==-1){
- LOG(L_ERR, "ERROR: tcpconn_connect: socket: (%d) %s\n",
- errno, strerror(errno));
- goto error;
- }
- if (init_sock_opt(s)<0){
- LOG(L_ERR, "ERROR: tcpconn_connect: init_sock_opt failed\n");
- goto error;
- }
- if (tcp_blocking_connect(s, &server->s, sockaddru_len(*server))<0){
- LOG(L_ERR, "ERROR: tcpconn_connect: tcp_blocking_connect failed\n");
- goto error;
- }
- my_name_len=sizeof(my_name);
- if (getsockname(s, &my_name.s, &my_name_len)!=0){
- LOG(L_ERR, "ERROR: tcp_connect: getsockname failed: %s(%d)\n",
- strerror(errno), errno);
- si=0; /* try to go on */
- }
- su2ip_addr(&ip, &my_name);
- #ifdef USE_TLS
- if (type==PROTO_TLS)
- si=find_si(&ip, 0, PROTO_TLS);
- else
- #endif
- si=find_si(&ip, 0, PROTO_TCP);
- if (si==0){
- LOG(L_ERR, "ERROR: tcp_connect: could not find corresponding"
- " listening socket, using default...\n");
- if (server->s.sa_family==AF_INET) si=sendipv4_tcp;
- #ifdef USE_IPV6
- else si=sendipv6_tcp;
- #endif
- }
- con=tcpconn_new(s, server, si, type, S_CONN_CONNECT);
- if (con==0){
- LOG(L_ERR, "ERROR: tcp_connect: tcpconn_new failed, closing the "
- " socket\n");
- goto error;
- }
- return con;
- /*FIXME: set sock idx! */
- error:
- if (s!=-1) close(s); /* close the opened socket */
- return 0;
- }
- struct tcp_connection* tcpconn_add(struct tcp_connection *c)
- {
- unsigned hash;
- if (c){
- TCPCONN_LOCK;
- /* add it at the begining of the list*/
- hash=tcp_id_hash(c->id);
- c->id_hash=hash;
- tcpconn_listadd(tcpconn_id_hash[hash], c, id_next, id_prev);
-
- hash=tcp_addr_hash(&c->rcv.src_ip, c->rcv.src_port);
- /* set the first alias */
- c->con_aliases[0].port=c->rcv.src_port;
- c->con_aliases[0].hash=hash;
- c->con_aliases[0].parent=c;
- tcpconn_listadd(tcpconn_aliases_hash[hash], &c->con_aliases[0],
- next, prev);
- c->aliases++;
- TCPCONN_UNLOCK;
- DBG("tcpconn_add: hashes: %d, %d\n", hash, c->id_hash);
- return c;
- }else{
- LOG(L_CRIT, "tcpconn_add: BUG: null connection pointer\n");
- return 0;
- }
- }
- /* unsafe tcpconn_rm version (nolocks) */
- void _tcpconn_rm(struct tcp_connection* c)
- {
- int r;
- tcpconn_listrm(tcpconn_id_hash[c->id_hash], c, id_next, id_prev);
- /* remove all the aliases */
- for (r=0; r<c->aliases; r++)
- tcpconn_listrm(tcpconn_aliases_hash[c->con_aliases[r].hash],
- &c->con_aliases[r], next, prev);
- lock_destroy(&c->write_lock);
- #ifdef USE_TLS
- if (c->type==PROTO_TLS) tls_tcpconn_clean(c);
- #endif
- shm_free(c);
- }
- void tcpconn_rm(struct tcp_connection* c)
- {
- int r;
- TCPCONN_LOCK;
- tcpconn_listrm(tcpconn_id_hash[c->id_hash], c, id_next, id_prev);
- /* remove all the aliases */
- for (r=0; r<c->aliases; r++)
- tcpconn_listrm(tcpconn_aliases_hash[c->con_aliases[r].hash],
- &c->con_aliases[r], next, prev);
- TCPCONN_UNLOCK;
- lock_destroy(&c->write_lock);
- #ifdef USE_TLS
- if ((c->type==PROTO_TLS)&&(c->extra_data)) tls_tcpconn_clean(c);
- #endif
- shm_free(c);
- }
- /* finds a connection, if id=0 uses the ip addr & port (host byte order)
- * WARNING: unprotected (locks) use tcpconn_get unless you really
- * know what you are doing */
- struct tcp_connection* _tcpconn_find(int id, struct ip_addr* ip, int port)
- {
- struct tcp_connection *c;
- struct tcp_conn_alias* a;
- unsigned hash;
-
- #ifdef EXTRA_DEBUG
- DBG("tcpconn_find: %d port %d\n",id, port);
- if (ip) print_ip("tcpconn_find: ip ", ip, "\n");
- #endif
- if (id){
- hash=tcp_id_hash(id);
- for (c=tcpconn_id_hash[hash]; c; c=c->id_next){
- #ifdef EXTRA_DEBUG
- DBG("c=%p, c->id=%d, port=%d\n",c, c->id, c->rcv.src_port);
- print_ip("ip=", &c->rcv.src_ip, "\n");
- #endif
- if ((id==c->id)&&(c->state!=S_CONN_BAD)) return c;
- }
- }else if (ip){
- hash=tcp_addr_hash(ip, port);
- for (a=tcpconn_aliases_hash[hash]; a; a=a->next){
- #ifdef EXTRA_DEBUG
- DBG("a=%p, c=%p, c->id=%d, alias port= %d port=%d\n", a, a->parent,
- a->parent->id, a->port, a->parent->rcv.src_port);
- print_ip("ip=",&a->parent->rcv.src_ip,"\n");
- #endif
- if ( (a->parent->state!=S_CONN_BAD) && (port==a->port) &&
- (ip_addr_cmp(ip, &a->parent->rcv.src_ip)) )
- return a->parent;
- }
- }
- return 0;
- }
- /* _tcpconn_find with locks and timeout */
- struct tcp_connection* tcpconn_get(int id, struct ip_addr* ip, int port,
- int timeout)
- {
- struct tcp_connection* c;
- TCPCONN_LOCK;
- c=_tcpconn_find(id, ip, port);
- if (c){
- c->refcnt++;
- c->timeout=get_ticks()+timeout;
- }
- TCPCONN_UNLOCK;
- return c;
- }
- /* add port as an alias for the "id" connection
- * returns 0 on success,-1 on failure */
- int tcpconn_add_alias(int id, int port, int proto)
- {
- struct tcp_connection* c;
- unsigned hash;
- struct tcp_conn_alias* a;
-
- a=0;
- /* fix the port */
- port=port?port:((proto==PROTO_TLS)?SIPS_PORT:SIP_PORT);
- TCPCONN_LOCK;
- /* check if alias already exists */
- c=_tcpconn_find(id, 0, 0);
- if (c){
- hash=tcp_addr_hash(&c->rcv.src_ip, port);
- /* search the aliases for an already existing one */
- for (a=tcpconn_aliases_hash[hash]; a; a=a->next){
- if ( (a->parent->state!=S_CONN_BAD) && (port==a->port) &&
- (ip_addr_cmp(&c->rcv.src_ip, &a->parent->rcv.src_ip)) ){
- /* found */
- if (a->parent!=c) goto error_sec;
- else goto ok;
- }
- }
- if (c->aliases>=TCP_CON_MAX_ALIASES) goto error_aliases;
- c->con_aliases[c->aliases].parent=c;
- c->con_aliases[c->aliases].port=port;
- c->con_aliases[c->aliases].hash=hash;
- tcpconn_listadd(tcpconn_aliases_hash[hash],
- &c->con_aliases[c->aliases], next, prev);
- c->aliases++;
- }else goto error_not_found;
- ok:
- TCPCONN_UNLOCK;
- #ifdef EXTRA_DEBUG
- if (a) DBG("tcpconn_add_alias: alias already present\n");
- else DBG("tcpconn_add_alias: alias port %d for hash %d, id %d\n",
- port, hash, c->id);
- #endif
- return 0;
- error_aliases:
- TCPCONN_UNLOCK;
- LOG(L_ERR, "ERROR: tcpconn_add_alias: too many aliases for connection %p"
- " (%d)\n", c, c->id);
- return -1;
- error_not_found:
- TCPCONN_UNLOCK;
- LOG(L_ERR, "ERROR: tcpconn_add_alias: no connection found for id %d\n",id);
- return -1;
- error_sec:
- TCPCONN_UNLOCK;
- LOG(L_ERR, "ERROR: tcpconn_add_alias: possible port hijack attempt\n");
- LOG(L_ERR, "ERROR: tcpconn_add_alias: alias already present and points"
- " to another connection (%d : %d and %d : %d)\n",
- a->parent->id, port, c->id, port);
- return -1;
- }
- void tcpconn_ref(struct tcp_connection* c)
- {
- TCPCONN_LOCK;
- c->refcnt++; /* FIXME: atomic_dec */
- TCPCONN_UNLOCK;
- }
- void tcpconn_put(struct tcp_connection* c)
- {
- TCPCONN_LOCK;
- c->refcnt--; /* FIXME: atomic_dec */
- TCPCONN_UNLOCK;
- }
- /* finds a tcpconn & sends on it
- * uses the dst members to, proto (TCP|TLS) and id
- * returns: number of bytes written (>=0) on success
- * <0 on error */
- int tcp_send(struct dest_info* dst, char* buf, unsigned len)
- {
- struct tcp_connection *c;
- struct tcp_connection *tmp;
- struct ip_addr ip;
- int port;
- int fd;
- long response[2];
- int n;
-
- port=su_getport(&dst->to);
- if (port){
- su2ip_addr(&ip, &dst->to);
- c=tcpconn_get(dst->id, &ip, port, tcp_con_lifetime);
- }else if (dst->id){
- c=tcpconn_get(dst->id, 0, 0, tcp_con_lifetime);
- }else{
- LOG(L_CRIT, "BUG: tcp_send called with null id & to\n");
- return -1;
- }
-
- if (dst->id){
- if (c==0) {
- if (port){
- /* try again w/o id */
- c=tcpconn_get(0, &ip, port, tcp_con_lifetime);
- goto no_id;
- }else{
- LOG(L_ERR, "ERROR: tcp_send: id %d not found, dropping\n",
- dst->id);
- return -1;
- }
- }else goto get_fd;
- }
- no_id:
- if (c==0){
- DBG("tcp_send: no open tcp connection found, opening new one\n");
- /* create tcp connection */
- if ((c=tcpconn_connect(&dst->to, dst->proto))==0){
- LOG(L_ERR, "ERROR: tcp_send: connect failed\n");
- return -1;
- }
- c->refcnt++; /* safe to do it w/o locking, it's not yet
- available to the rest of the world */
- fd=c->s;
-
- /* send the new tcpconn to "tcp main" */
- response[0]=(long)c;
- response[1]=CONN_NEW;
- n=send_fd(unix_tcp_sock, response, sizeof(response), c->s);
- if (n<=0){
- LOG(L_ERR, "BUG: tcp_send: failed send_fd: %s (%d)\n",
- strerror(errno), errno);
- n=-1;
- goto end;
- }
- goto send_it;
- }
- get_fd:
- /* todo: see if this is not the same process holding
- * c and if so send directly on c->fd */
- DBG("tcp_send: tcp connection found (%p), acquiring fd\n", c);
- /* get the fd */
- response[0]=(long)c;
- response[1]=CONN_GET_FD;
- n=send_all(unix_tcp_sock, response, sizeof(response));
- if (n<=0){
- LOG(L_ERR, "BUG: tcp_send: failed to get fd(write):%s (%d)\n",
- strerror(errno), errno);
- n=-1;
- goto release_c;
- }
- DBG("tcp_send, c= %p, n=%d\n", c, n);
- tmp=c;
- n=receive_fd(unix_tcp_sock, &c, sizeof(c), &fd, MSG_WAITALL);
- if (n<=0){
- LOG(L_ERR, "BUG: tcp_send: failed to get fd(receive_fd):"
- " %s (%d)\n", strerror(errno), errno);
- n=-1;
- goto release_c;
- }
- if (c!=tmp){
- LOG(L_CRIT, "BUG: tcp_send: get_fd: got different connection:"
- " %p (id= %d, refcnt=%d state=%d != "
- " %p (id= %d, refcnt=%d state=%d (n=%d)\n",
- c, c->id, c->refcnt, c->state,
- tmp, tmp->id, tmp->refcnt, tmp->state, n
- );
- n=-1; /* fail */
- goto end;
- }
- DBG("tcp_send: after receive_fd: c= %p n=%d fd=%d\n",c, n, fd);
-
-
-
- send_it:
- DBG("tcp_send: sending...\n");
- lock_get(&c->write_lock);
- #ifdef USE_TLS
- if (c->type==PROTO_TLS)
- n=tls_blocking_write(c, fd, buf, len);
- else
- #endif
- /* n=tcp_blocking_write(c, fd, buf, len); */
- n=tsend_stream(fd, buf, len, tcp_send_timeout*1000);
- lock_release(&c->write_lock);
- DBG("tcp_send: after write: c= %p n=%d fd=%d\n",c, n, fd);
- DBG("tcp_send: buf=\n%.*s\n", (int)len, buf);
- if (n<0){
- LOG(L_ERR, "ERROR: tcp_send: failed to send\n");
- /* error on the connection , mark it as bad and set 0 timeout */
- c->state=S_CONN_BAD;
- c->timeout=0;
- /* tell "main" it should drop this (optional it will t/o anyway?)*/
- response[0]=(long)c;
- response[1]=CONN_ERROR;
- if (send_all(unix_tcp_sock, response, sizeof(response))<=0){
- LOG(L_ERR, "BUG: tcp_send: error return failed (write):%s (%d)\n",
- strerror(errno), errno);
- tcpconn_put(c); /* deref. it manually */
- n=-1;
- }
- /* CONN_ERROR will auto-dec refcnt => we must not call tcpconn_put
- * if it succeeds */
- close(fd);
- return n; /* error return, no tcpconn_put */
- }
- end:
- close(fd);
- release_c:
- tcpconn_put(c); /* release c (lock; dec refcnt; unlock) */
- return n;
- }
- int tcp_init(struct socket_info* sock_info)
- {
- union sockaddr_union* addr;
- int optval;
- #ifdef DISABLE_NAGLE
- int flag;
- struct protoent* pe;
- if (tcp_proto_no==-1){ /* if not already set */
- pe=getprotobyname("tcp");
- if (pe==0){
- LOG(L_ERR, "ERROR: tcp_init: could not get TCP protocol number\n");
- tcp_proto_no=-1;
- }else{
- tcp_proto_no=pe->p_proto;
- }
- }
- #endif
-
- addr=&sock_info->su;
- /* sock_info->proto=PROTO_TCP; */
- if (init_su(addr, &sock_info->address, sock_info->port_no)<0){
- LOG(L_ERR, "ERROR: tcp_init: could no init sockaddr_union\n");
- goto error;
- }
- sock_info->socket=socket(AF2PF(addr->s.sa_family), SOCK_STREAM, 0);
- if (sock_info->socket==-1){
- LOG(L_ERR, "ERROR: tcp_init: socket: %s\n", strerror(errno));
- goto error;
- }
- #ifdef DISABLE_NAGLE
- flag=1;
- if ( (tcp_proto_no!=-1) &&
- (setsockopt(sock_info->socket, tcp_proto_no , TCP_NODELAY,
- &flag, sizeof(flag))<0) ){
- LOG(L_ERR, "ERROR: tcp_init: could not disable Nagle: %s\n",
- strerror(errno));
- }
- #endif
- #if !defined(TCP_DONT_REUSEADDR)
- /* Stevens, "Network Programming", Section 7.5, "Generic Socket
- * Options": "...server started,..a child continues..on existing
- * connection..listening server is restarted...call to bind fails
- * ... ALL TCP servers should specify the SO_REUSEADDRE option
- * to allow the server to be restarted in this situation
- *
- * Indeed, without this option, the server can't restart.
- * -jiri
- */
- optval=1;
- if (setsockopt(sock_info->socket, SOL_SOCKET, SO_REUSEADDR,
- (void*)&optval, sizeof(optval))==-1) {
- LOG(L_ERR, "ERROR: tcp_init: setsockopt %s\n",
- strerror(errno));
- goto error;
- }
- #endif
- /* tos */
- optval = tos;
- if (setsockopt(sock_info->socket, IPPROTO_IP, IP_TOS, (void*)&optval,
- sizeof(optval)) ==-1){
- LOG(L_WARN, "WARNING: tcp_init: setsockopt tos: %s\n", strerror(errno));
- /* continue since this is not critical */
- }
- if (bind(sock_info->socket, &addr->s, sockaddru_len(*addr))==-1){
- LOG(L_ERR, "ERROR: tcp_init: bind(%x, %p, %d) on %s:%d : %s\n",
- sock_info->socket, &addr->s,
- (unsigned)sockaddru_len(*addr),
- sock_info->address_str.s,
- sock_info->port_no,
- strerror(errno));
- goto error;
- }
- if (listen(sock_info->socket, TCP_LISTEN_BACKLOG)==-1){
- LOG(L_ERR, "ERROR: tcp_init: listen(%x, %p, %d) on %s: %s\n",
- sock_info->socket, &addr->s,
- (unsigned)sockaddru_len(*addr),
- sock_info->address_str.s,
- strerror(errno));
- goto error;
- }
-
- return 0;
- error:
- if (sock_info->socket!=-1){
- close(sock_info->socket);
- sock_info->socket=-1;
- }
- return -1;
- }
- /* used internally by tcp_main_loop() */
- static void tcpconn_destroy(struct tcp_connection* tcpconn)
- {
- int fd;
- TCPCONN_LOCK; /*avoid races w/ tcp_send*/
- tcpconn->refcnt--;
- if (tcpconn->refcnt==0){
- DBG("tcpconn_destroy: destroying connection %p, flags %04x\n",
- tcpconn, tcpconn->flags);
- fd=tcpconn->s;
- #ifdef USE_TLS
- /*FIXME: lock ->writelock ? */
- if (tcpconn->type==PROTO_TLS)
- tls_close(tcpconn, fd);
- #endif
- _tcpconn_rm(tcpconn);
- close(fd);
- (*tcp_connections_no)--;
- }else{
- /* force timeout */
- tcpconn->timeout=0;
- tcpconn->state=S_CONN_BAD;
- DBG("tcpconn_destroy: delaying (%p, flags %04x) ...\n",
- tcpconn, tcpconn->flags);
-
- }
- TCPCONN_UNLOCK;
- }
- #ifdef SEND_FD_QUEUE
- struct send_fd_info{
- struct tcp_connection* tcp_conn;
- ticks_t expire;
- int unix_sock;
- unsigned int retries; /* debugging */
- };
- struct tcp_send_fd_q{
- struct send_fd_info* data; /* buffer */
- struct send_fd_info* crt; /* pointer inside the buffer */
- struct send_fd_info* end; /* points after the last valid position */
- };
- static struct tcp_send_fd_q send2child_q;
- static int send_fd_queue_init(struct tcp_send_fd_q *q, unsigned int size)
- {
- q->data=pkg_malloc(size*sizeof(struct send_fd_info));
- if (q->data==0){
- LOG(L_ERR, "ERROR: send_fd_queue_init: out of memory\n");
- return -1;
- }
- q->crt=&q->data[0];
- q->end=&q->data[size];
- return 0;
- }
- static void send_fd_queue_destroy(struct tcp_send_fd_q *q)
- {
- if (q->data){
- pkg_free(q->data);
- q->data=0;
- q->crt=q->end=0;
- }
- }
- static int init_send_fd_queues()
- {
- if (send_fd_queue_init(&send2child_q, SEND_FD_QUEUE_SIZE)!=0)
- goto error;
- return 0;
- error:
- LOG(L_ERR, "ERROR: init_send_fd_queues: init failed\n");
- return -1;
- }
- static void destroy_send_fd_queues()
- {
- send_fd_queue_destroy(&send2child_q);
- }
- inline static int send_fd_queue_add( struct tcp_send_fd_q* q,
- int unix_sock,
- struct tcp_connection *t)
- {
- struct send_fd_info* tmp;
- unsigned long new_size;
-
- if (q->crt>=q->end){
- new_size=q->end-&q->data[0];
- if (new_size< MAX_SEND_FD_QUEUE_SIZE/2){
- new_size*=2;
- }else new_size=MAX_SEND_FD_QUEUE_SIZE;
- if (q->crt>=&q->data[new_size]){
- LOG(L_ERR, "ERROR: send_fd_queue_add: queue full: %ld/%ld\n",
- (long)(q->crt-&q->data[0]-1), new_size);
- goto error;
- }
- LOG(L_CRIT, "INFO: send_fd_queue: queue full: %ld, extending to %ld\n",
- (long)(q->end-&q->data[0]), new_size);
- tmp=pkg_realloc(q->data, new_size*sizeof(struct send_fd_info));
- if (tmp==0){
- LOG(L_ERR, "ERROR: send_fd_queue_add: out of memory\n");
- goto error;
- }
- q->crt=(q->crt-&q->data[0])+tmp;
- q->data=tmp;
- q->end=&q->data[new_size];
- }
- q->crt->tcp_conn=t;
- q->crt->unix_sock=unix_sock;
- q->crt->expire=get_ticks_raw()+SEND_FD_QUEUE_TIMEOUT;
- q->crt->retries=0;
- q->crt++;
- return 0;
- error:
- return -1;
- }
- inline static void send_fd_queue_run(struct tcp_send_fd_q* q)
- {
- struct send_fd_info* p;
- struct send_fd_info* t;
-
- for (p=t=&q->data[0]; p<q->crt; p++){
- if (send_fd(p->unix_sock, &(p->tcp_conn),
- sizeof(struct tcp_connection*), p->tcp_conn->s)<=0){
- if ( ((errno==EAGAIN)||(errno==EWOULDBLOCK)) &&
- ((s_ticks_t)(p->expire-get_ticks_raw())>0)){
- /* leave in queue for a future try */
- *t=*p;
- t->retries++;
- t++;
- }else{
- LOG(L_ERR, "ERROR: run_send_fd_queue: send_fd failed"
- " on socket %d , queue entry %ld, retries %d,"
- " connection %p, tcp socket %d, errno=%d (%s) \n",
- p->unix_sock, (long)(p-&q->data[0]), p->retries,
- p->tcp_conn, p->tcp_conn->s, errno,
- strerror(errno));
- tcpconn_destroy(p->tcp_conn);
- }
- }
- }
- q->crt=t;
- }
- #else
- #define send_fd_queue_run(q)
- #endif
- /* handles io from a tcp child process
- * params: tcp_c - pointer in the tcp_children array, to the entry for
- * which an io event was detected
- * fd_i - fd index in the fd_array (usefull for optimizing
- * io_watch_deletes)
- * returns: handle_* return convention: -1 on error, 0 on EAGAIN (no more
- * io events queued), >0 on success. success/error refer only to
- * the reads from the fd.
- */
- inline static int handle_tcp_child(struct tcp_child* tcp_c, int fd_i)
- {
- struct tcp_connection* tcpconn;
- long response[2];
- int cmd;
- int bytes;
-
- if (tcp_c->unix_sock<=0){
- /* (we can't have a fd==0, 0 is never closed )*/
- LOG(L_CRIT, "BUG: handle_tcp_child: fd %d for %d "
- "(pid %d, ser no %d)\n", tcp_c->unix_sock,
- (int)(tcp_c-&tcp_children[0]), tcp_c->pid, tcp_c->proc_no);
- goto error;
- }
- /* read until sizeof(response)
- * (this is a SOCK_STREAM so read is not atomic) */
- bytes=recv_all(tcp_c->unix_sock, response, sizeof(response), MSG_DONTWAIT);
- if (bytes<(int)sizeof(response)){
- if (bytes==0){
- /* EOF -> bad, child has died */
- DBG("DBG: handle_tcp_child: dead tcp child %d (pid %d, no %d)"
- " (shutting down?)\n", (int)(tcp_c-&tcp_children[0]),
- tcp_c->pid, tcp_c->proc_no );
- /* don't listen on it any more */
- io_watch_del(&io_h, tcp_c->unix_sock, fd_i, 0);
- goto error; /* eof. so no more io here, it's ok to return error */
- }else if (bytes<0){
- /* EAGAIN is ok if we try to empty the buffer
- * e.g.: SIGIO_RT overflow mode or EPOLL ET */
- if ((errno!=EAGAIN) && (errno!=EWOULDBLOCK)){
- LOG(L_CRIT, "ERROR: handle_tcp_child: read from tcp child %ld "
- " (pid %d, no %d) %s [%d]\n",
- (long)(tcp_c-&tcp_children[0]), tcp_c->pid,
- tcp_c->proc_no, strerror(errno), errno );
- }else{
- bytes=0;
- }
- /* try to ignore ? */
- goto end;
- }else{
- /* should never happen */
- LOG(L_CRIT, "BUG: handle_tcp_child: too few bytes received (%d)\n",
- bytes );
- bytes=0; /* something was read so there is no error; otoh if
- receive_fd returned less then requested => the receive
- buffer is empty => no more io queued on this fd */
- goto end;
- }
- }
-
- DBG("handle_tcp_child: reader response= %lx, %ld from %d \n",
- response[0], response[1], (int)(tcp_c-&tcp_children[0]));
- cmd=response[1];
- tcpconn=(struct tcp_connection*)response[0];
- if (tcpconn==0){
- /* should never happen */
- LOG(L_CRIT, "BUG: handle_tcp_child: null tcpconn pointer received"
- " from tcp child %d (pid %d): %lx, %lx\n",
- (int)(tcp_c-&tcp_children[0]), tcp_c->pid,
- response[0], response[1]) ;
- goto end;
- }
- switch(cmd){
- case CONN_RELEASE:
- tcp_c->busy--;
- if (tcpconn->state==S_CONN_BAD){
- tcpconn_destroy(tcpconn);
- break;
- }
- /* update the timeout*/
- tcpconn->timeout=get_ticks()+tcp_con_lifetime;
- tcpconn_put(tcpconn);
- /* must be after the de-ref*/
- io_watch_add(&io_h, tcpconn->s, F_TCPCONN, tcpconn);
- tcpconn->flags&=~F_CONN_REMOVED;
- DBG("handle_tcp_child: CONN_RELEASE %p refcnt= %d\n",
- tcpconn, tcpconn->refcnt);
- break;
- case CONN_ERROR:
- case CONN_DESTROY:
- case CONN_EOF:
- /* WARNING: this will auto-dec. refcnt! */
- tcp_c->busy--;
- /* main doesn't listen on it => we don't have to delete it
- if (tcpconn->s!=-1)
- io_watch_del(&io_h, tcpconn->s, -1, IO_FD_CLOSING);
- */
- tcpconn_destroy(tcpconn); /* closes also the fd */
- break;
- default:
- LOG(L_CRIT, "BUG: handle_tcp_child: unknown cmd %d"
- " from tcp reader %d\n",
- cmd, (int)(tcp_c-&tcp_children[0]));
- }
- end:
- return bytes;
- error:
- return -1;
- }
- /* handles io from a "generic" ser process (get fd or new_fd from a tcp_send)
- *
- * params: p - pointer in the ser processes array (pt[]), to the entry for
- * which an io event was detected
- * fd_i - fd index in the fd_array (usefull for optimizing
- * io_watch_deletes)
- * returns: handle_* return convention:
- * -1 on error reading from the fd,
- * 0 on EAGAIN or when no more io events are queued
- * (receive buffer empty),
- * >0 on successfull reads from the fd (the receive buffer might
- * be non-empty).
- */
- inline static int handle_ser_child(struct process_table* p, int fd_i)
- {
- struct tcp_connection* tcpconn;
- long response[2];
- int cmd;
- int bytes;
- int ret;
- int fd;
-
- ret=-1;
- if (p->unix_sock<=0){
- /* (we can't have a fd==0, 0 is never closed )*/
- LOG(L_CRIT, "BUG: handle_ser_child: fd %d for %d "
- "(pid %d)\n", p->unix_sock, (int)(p-&pt[0]), p->pid);
- goto error;
- }
-
- /* get all bytes and the fd (if transmitted)
- * (this is a SOCK_STREAM so read is not atomic) */
- bytes=receive_fd(p->unix_sock, response, sizeof(response), &fd,
- MSG_DONTWAIT);
- if (bytes<(int)sizeof(response)){
- /* too few bytes read */
- if (bytes==0){
- /* EOF -> bad, child has died */
- DBG("DBG: handle_ser_child: dead child %d, pid %d"
- " (shutting down?)\n", (int)(p-&pt[0]), p->pid);
- /* don't listen on it any more */
- io_watch_del(&io_h, p->unix_sock, fd_i, 0);
- goto error; /* child dead => no further io events from it */
- }else if (bytes<0){
- /* EAGAIN is ok if we try to empty the buffer
- * e.g: SIGIO_RT overflow mode or EPOLL ET */
- if ((errno!=EAGAIN) && (errno!=EWOULDBLOCK)){
- LOG(L_CRIT, "ERROR: handle_ser_child: read from child %d "
- "(pid %d): %s [%d]\n", (int)(p-&pt[0]), p->pid,
- strerror(errno), errno);
- ret=-1;
- }else{
- ret=0;
- }
- /* try to ignore ? */
- goto end;
- }else{
- /* should never happen */
- LOG(L_CRIT, "BUG: handle_ser_child: too few bytes received (%d)\n",
- bytes );
- ret=0; /* something was read so there is no error; otoh if
- receive_fd returned less then requested => the receive
- buffer is empty => no more io queued on this fd */
- goto end;
- }
- }
- ret=1; /* something was received, there might be more queued */
- DBG("handle_ser_child: read response= %lx, %ld, fd %d from %d (%d)\n",
- response[0], response[1], fd, (int)(p-&pt[0]), p->pid);
- cmd=response[1];
- tcpconn=(struct tcp_connection*)response[0];
- if (tcpconn==0){
- LOG(L_CRIT, "BUG: handle_ser_child: null tcpconn pointer received"
- " from child %d (pid %d): %lx, %lx\n",
- (int)(p-&pt[0]), p->pid, response[0], response[1]) ;
- goto end;
- }
- switch(cmd){
- case CONN_ERROR:
- if (!(tcpconn->flags & F_CONN_REMOVED) && (tcpconn->s!=-1)){
- io_watch_del(&io_h, tcpconn->s, -1, IO_FD_CLOSING);
- tcpconn->flags|=F_CONN_REMOVED;
- }
- tcpconn_destroy(tcpconn); /* will close also the fd */
- break;
- case CONN_GET_FD:
- /* send the requested FD */
- /* WARNING: take care of setting refcnt properly to
- * avoid race condition */
- if (send_fd(p->unix_sock, &tcpconn, sizeof(tcpconn),
- tcpconn->s)<=0){
- LOG(L_ERR, "ERROR: handle_ser_child: send_fd failed\n");
- }
- break;
- case CONN_NEW:
- /* update the fd in the requested tcpconn*/
- /* WARNING: take care of setting refcnt properly to
- * avoid race condition */
- if (fd==-1){
- LOG(L_CRIT, "BUG: handle_ser_child: CONN_NEW:"
- " no fd received\n");
- break;
- }
- (*tcp_connections_no)++;
- tcpconn->s=fd;
- /* add tcpconn to the list*/
- tcpconn_add(tcpconn);
- /* update the timeout*/
- tcpconn->timeout=get_ticks()+tcp_con_lifetime;
- io_watch_add(&io_h, tcpconn->s, F_TCPCONN, tcpconn);
- tcpconn->flags&=~F_CONN_REMOVED;
- break;
- default:
- LOG(L_CRIT, "BUG: handle_ser_child: unknown cmd %d\n", cmd);
- }
- end:
- return ret;
- error:
- return -1;
- }
- /* sends a tcpconn + fd to a choosen child */
- inline static int send2child(struct tcp_connection* tcpconn)
- {
- int i;
- int min_busy;
- int idx;
- static int crt=0; /* current child */
- int last;
-
- min_busy=tcp_children[0].busy;
- idx=0;
- last=crt+tcp_children_no;
- for (; crt<last; crt++){
- i=crt%tcp_children_no;
- if (!tcp_children[i].busy){
- idx=i;
- min_busy=0;
- break;
- }else if (min_busy>tcp_children[i].busy){
- min_busy=tcp_children[i].busy;
- idx=i;
- }
- }
- crt=idx+1; /* next time we start with crt%tcp_children_no */
-
- tcp_children[idx].busy++;
- tcp_children[idx].n_reqs++;
- if (min_busy){
- DBG("WARNING: send2child: no free tcp receiver, "
- " connection passed to the least busy one (%d)\n",
- min_busy);
- }
- DBG("send2child: to tcp child %d %d(%d), %p\n", idx,
- tcp_children[idx].proc_no,
- tcp_children[idx].pid, tcpconn);
- /* first make sure this child doesn't have pending request for
- * tcp_main (to avoid a possible deadlock: e.g. child wants to
- * send a release command, but the master fills its socket buffer
- * with new connection commands => deadlock) */
- /* answer tcp_send requests first */
- while(handle_ser_child(&pt[tcp_children[idx].proc_no], -1)>0);
- /* process tcp readers requests */
- while(handle_tcp_child(&tcp_children[idx], -1)>0);
-
- #ifdef SEND_FD_QUEUE
- /* if queue full, try to queue the io */
- if (send_fd(tcp_children[idx].unix_sock, &tcpconn, sizeof(tcpconn),
- tcpconn->s)<=0){
- if ((errno==EAGAIN)||(errno==EWOULDBLOCK)){
- /* FIXME: remove after debugging */
- LOG(L_CRIT, "INFO: tcp child %d, socket %d: queue full,"
- " %d requests queued (total handled %d)\n",
- idx, tcp_children[idx].unix_sock, min_busy,
- tcp_children[idx].n_reqs-1);
- if (send_fd_queue_add(&send2child_q, tcp_children[idx].unix_sock,
- tcpconn)!=0){
- LOG(L_ERR, "ERROR: send2child: queue send op. failed\n");
- return -1;
- }
- }else{
- LOG(L_ERR, "ERROR: send2child: send_fd failed\n");
- return -1;
- }
- }
- #else
- if (send_fd(tcp_children[idx].unix_sock, &tcpconn, sizeof(tcpconn),
- tcpconn->s)<=0){
- LOG(L_ERR, "ERROR: send2child: send_fd failed\n");
- return -1;
- }
- #endif
-
- return 0;
- }
- /* handles a new connection, called internally by tcp_main_loop/handle_io.
- * params: si - pointer to one of the tcp socket_info structures on which
- * an io event was detected (connection attempt)
- * returns: handle_* return convention: -1 on error, 0 on EAGAIN (no more
- * io events queued), >0 on success. success/error refer only to
- * the accept.
- */
- static inline int handle_new_connect(struct socket_info* si)
- {
- union sockaddr_union su;
- struct tcp_connection* tcpconn;
- socklen_t su_len;
- int new_sock;
-
- /* got a connection on r */
- su_len=sizeof(su);
- new_sock=accept(si->socket, &(su.s), &su_len);
- if (new_sock==-1){
- if ((errno==EAGAIN)||(errno==EWOULDBLOCK))
- return 0;
- LOG(L_ERR, "WARNING: handle_new_connect: error while accepting"
- " connection(%d): %s\n", errno, strerror(errno));
- return -1;
- }
- if (*tcp_connections_no>=tcp_max_connections){
- LOG(L_ERR, "ERROR: maximum number of connections exceeded: %d/%d\n",
- *tcp_connections_no, tcp_max_connections);
- close(new_sock);
- return 1; /* success, because the accept was succesfull */
- }
- if (init_sock_opt(new_sock)<0){
- LOG(L_ERR, "ERROR: handle_new_connect: init_sock_opt failed\n");
- close(new_sock);
- return 1; /* success, because the accept was succesfull */
- }
- (*tcp_connections_no)++;
-
- /* add socket to list */
- tcpconn=tcpconn_new(new_sock, &su, si, si->proto, S_CONN_ACCEPT);
- if (tcpconn){
- #ifdef TCP_PASS_NEW_CONNECTION_ON_DATA
- io_watch_add(&io_h, tcpconn->s, F_TCPCONN, tcpconn);
- tcpconn->flags&=~F_CONN_REMOVED;
- tcpconn_add(tcpconn);
- #else
- tcpconn->refcnt++; /* safe, not yet available to the
- outside world */
- tcpconn_add(tcpconn);
- DBG("handle_new_connect: new connection: %p %d flags: %04x\n",
- tcpconn, tcpconn->s, tcpconn->flags);
- /* pass it to a child */
- if(send2child(tcpconn)<0){
- LOG(L_ERR,"ERROR: handle_new_connect: no children "
- "available\n");
- tcpconn_destroy(tcpconn);
- }
- #endif
- }else{ /*tcpconn==0 */
- LOG(L_ERR, "ERROR: handle_new_connect: tcpconn_new failed, "
- "closing socket\n");
- close(new_sock);
- (*tcp_connections_no)--;
- }
- return 1; /* accept() was succesfull */
- }
- /* handles an io event on one of the watched tcp connections
- *
- * params: tcpconn - pointer to the tcp_connection for which we have an io ev.
- * fd_i - index in the fd_array table (needed for delete)
- * returns: handle_* return convention, but on success it always returns 0
- * (because it's one-shot, after a succesfull execution the fd is
- * removed from tcp_main's watch fd list and passed to a child =>
- * tcp_main is not interested in further io events that might be
- * queued for this fd)
- */
- inline static int handle_tcpconn_ev(struct tcp_connection* tcpconn, int fd_i)
- {
- /* is refcnt!=0 really necessary?
- * No, in fact it's a bug: I can have the following situation: a send only
- * tcp connection used by n processes simultaneously => refcnt = n. In
- * the same time I can have a read event and this situation is perfectly
- * valid. -- andrei
- */
- #if 0
- if ((tcpconn->refcnt!=0)){
- /* FIXME: might be valid for sigio_rt iff fd flags are not cleared
- * (there is a short window in which it could generate a sig
- * that would be catched by tcp_main) */
- LOG(L_CRIT, "BUG: handle_tcpconn_ev: io event on referenced"
- " tcpconn (%p), refcnt=%d, fd=%d\n",
- tcpconn, tcpconn->refcnt, tcpconn->s);
- return -1;
- }
- #endif
- /* pass it to child, so remove it from the io watch list */
- DBG("handle_tcpconn_ev: data available on %p %d\n", tcpconn, tcpconn->s);
- if (io_watch_del(&io_h, tcpconn->s, fd_i, 0)==-1) goto error;
- tcpconn->flags|=F_CONN_REMOVED;
- tcpconn_ref(tcpconn); /* refcnt ++ */
- if (send2child(tcpconn)<0){
- LOG(L_ERR,"ERROR: handle_tcpconn_ev: no children available\n");
- tcpconn_destroy(tcpconn);
- #if 0
- TCPCONN_LOCK;
- tcpconn->refcnt--;
- if (tcpconn->refcnt==0){
- fd=tcpconn->s;
- _tcpconn_rm(tcpconn);
- close(fd);
- }else tcpconn->timeout=0; /* force expire*/
- TCPCONN_UNLOCK;
- #endif
- }
- return 0; /* we are not interested in possibly queued io events,
- the fd was either passed to a child, or closed */
- error:
- return -1;
- }
- /* generic handle io routine, it will call the appropiate
- * handle_xxx() based on the fd_map type
- *
- * params: fm - pointer to a fd hash entry
- * idx - index in the fd_array (or -1 if not known)
- * return: -1 on error
- * 0 on EAGAIN or when by some other way it is known that no more
- * io events are queued on the fd (the receive buffer is empty).
- * Usefull to detect when there are no more io events queued for
- * sigio_rt, epoll_et, kqueue.
- * >0 on successfull read from the fd (when there might be more io
- * queued -- the receive buffer might still be non-empty)
- */
- inline static int handle_io(struct fd_map* fm, int idx)
- {
- int ret;
-
- switch(fm->type){
- case F_SOCKINFO:
- ret=handle_new_connect((struct socket_info*)fm->data);
- break;
- case F_TCPCONN:
- ret=handle_tcpconn_ev((struct tcp_connection*)fm->data, idx);
- break;
- case F_TCPCHILD:
- ret=handle_tcp_child((struct tcp_child*)fm->data, idx);
- break;
- case F_PROC:
- ret=handle_ser_child((struct process_table*)fm->data, idx);
- break;
- case F_NONE:
- LOG(L_CRIT, "BUG: handle_io: empty fd map\n");
- goto error;
- default:
- LOG(L_CRIT, "BUG: handle_io: uknown fd type %d\n", fm->type);
- goto error;
- }
- return ret;
- error:
- return -1;
- }
- /* very inefficient for now - FIXME
- * keep in sync with tcpconn_destroy, the "delete" part should be
- * the same except for io_watch_del..*/
- static inline void tcpconn_timeout(int force)
- {
- static int prev_ticks=0;
- struct tcp_connection *c, *next;
- unsigned int ticks;
- unsigned h;
- int fd;
-
-
- ticks=get_ticks();
- if ((ticks==prev_ticks) && !force) return;
- prev_ticks=ticks;
- TCPCONN_LOCK; /* fixme: we can lock only on delete IMO */
- for(h=0; h<TCP_ID_HASH_SIZE; h++){
- c=tcpconn_id_hash[h];
- while(c){
- next=c->id_next;
- if (force ||((c->refcnt==0) && ((int)(ticks-c->timeout)>=0))){
- if (!force)
- DBG("tcpconn_timeout: timeout for hash=%d - %p"
- " (%d > %d)\n", h, c, ticks, c->timeout);
- fd=c->s;
- #ifdef USE_TLS
- if (c->type==PROTO_TLS)
- tls_close(c, fd);
- #endif
- _tcpconn_rm(c);
- if ((fd>0)&&(c->refcnt==0)) {
- if (!(c->flags & F_CONN_REMOVED)){
- io_watch_del(&io_h, fd, -1, IO_FD_CLOSING);
- c->flags|=F_CONN_REMOVED;
- }
- close(fd);
- }
- (*tcp_connections_no)--;
- }
- c=next;
- }
- }
- TCPCONN_UNLOCK;
- }
- /* tcp main loop */
- void tcp_main_loop()
- {
- struct socket_info* si;
- int r;
-
- /* init send fd queues (here because we want mem. alloc only in the tcp
- * process */
- #ifdef SEND_FD_QUEUE
- if (init_send_fd_queues()<0){
- LOG(L_CRIT, "ERROR: init_tcp: could not init send fd queues\n");
- goto error;
- }
- #endif
- /* init io_wait (here because we want the memory allocated only in
- * the tcp_main process) */
-
- /* FIXME: TODO: make tcp_max_fd_no a config param */
- if (init_io_wait(&io_h, tcp_max_fd_no, tcp_poll_method)<0)
- goto error;
- /* init: start watching all the fds*/
-
- /* add all the sockets we listens on for connections */
- for (si=tcp_listen; si; si=si->next){
- if ((si->proto==PROTO_TCP) &&(si->socket!=-1)){
- if (io_watch_add(&io_h, si->socket, F_SOCKINFO, si)<0){
- LOG(L_CRIT, "ERROR: tcp_main_loop: init: failed to add "
- "listen socket to the fd list\n");
- goto error;
- }
- }else{
- LOG(L_CRIT, "BUG: tcp_main_loop: non tcp address in tcp_listen\n");
- }
- }
- #ifdef USE_TLS
- if (!tls_disable){
- for (si=tls_listen; si; si=si->next){
- if ((si->proto==PROTO_TLS) && (si->socket!=-1)){
- if (io_watch_add(&io_h, si->socket, F_SOCKINFO, si)<0){
- LOG(L_CRIT, "ERROR: tcp_main_loop: init: failed to add "
- "tls listen socket to the fd list\n");
- goto error;
- }
- }else{
- LOG(L_CRIT, "BUG: tcp_main_loop: non tls address"
- " in tls_listen\n");
- }
- }
- }
- #endif
- /* add all the unix sockets used for communcation with other ser processes
- * (get fd, new connection a.s.o) */
- for (r=1; r<process_no; r++){
- if (pt[r].unix_sock>0) /* we can't have 0, we never close it!*/
- if (io_watch_add(&io_h, pt[r].unix_sock, F_PROC, &pt[r])<0){
- LOG(L_CRIT, "ERROR: tcp_main_loop: init: failed to add "
- "process %d unix socket to the fd list\n", r);
- goto error;
- }
- }
- /* add all the unix sokets used for communication with the tcp childs */
- for (r=0; r<tcp_children_no; r++){
- if (tcp_children[r].unix_sock>0)/*we can't have 0, we never close it!*/
- if (io_watch_add(&io_h, tcp_children[r].unix_sock, F_TCPCHILD,
- &tcp_children[r]) <0){
- LOG(L_CRIT, "ERROR: tcp_main_loop: init: failed to add "
- "tcp child %d unix socket to the fd list\n", r);
- goto error;
- }
- }
-
- /* main loop */
- switch(io_h.poll_method){
- case POLL_POLL:
- while(1){
- /* wait and process IO */
- io_wait_loop_poll(&io_h, TCP_MAIN_SELECT_TIMEOUT, 0);
- send_fd_queue_run(&send2child_q); /* then new io */
- /* remove old connections */
- tcpconn_timeout(0);
- }
- break;
- #ifdef HAVE_SELECT
- case POLL_SELECT:
- while(1){
- io_wait_loop_select(&io_h, TCP_MAIN_SELECT_TIMEOUT, 0);
- send_fd_queue_run(&send2child_q); /* then new io */
- tcpconn_timeout(0);
- }
- break;
- #endif
- #ifdef HAVE_SIGIO_RT
- case POLL_SIGIO_RT:
- while(1){
- io_wait_loop_sigio_rt(&io_h, TCP_MAIN_SELECT_TIMEOUT);
- send_fd_queue_run(&send2child_q); /* then new io */
- tcpconn_timeout(0);
- }
- break;
- #endif
- #ifdef HAVE_EPOLL
- case POLL_EPOLL_LT:
- while(1){
- io_wait_loop_epoll(&io_h, TCP_MAIN_SELECT_TIMEOUT, 0);
- send_fd_queue_run(&send2child_q); /* then new io */
- tcpconn_timeout(0);
- }
- break;
- case POLL_EPOLL_ET:
- while(1){
- io_wait_loop_epoll(&io_h, TCP_MAIN_SELECT_TIMEOUT, 1);
- send_fd_queue_run(&send2child_q); /* then new io */
- tcpconn_timeout(0);
- }
- break;
- #endif
- #ifdef HAVE_KQUEUE
- case POLL_KQUEUE:
- while(1){
- io_wait_loop_kqueue(&io_h, TCP_MAIN_SELECT_TIMEOUT, 0);
- send_fd_queue_run(&send2child_q); /* then new io */
- tcpconn_timeout(0);
- }
- break;
- #endif
- #ifdef HAVE_DEVPOLL
- case POLL_DEVPOLL:
- while(1){
- io_wait_loop_devpoll(&io_h, TCP_MAIN_SELECT_TIMEOUT, 0);
- send_fd_queue_run(&send2child_q); /* then new io */
- tcpconn_timeout(0);
- }
- break;
- #endif
- default:
- LOG(L_CRIT, "BUG: tcp_main_loop: no support for poll method "
- " %s (%d)\n",
- poll_method_name(io_h.poll_method), io_h.poll_method);
- goto error;
- }
- error:
- #ifdef SEND_FD_QUEUE
- destroy_send_fd_queues();
- #endif
- destroy_io_wait(&io_h);
- LOG(L_CRIT, "ERROR: tcp_main_loop: exiting...");
- exit(-1);
- }
- /* cleanup before exit */
- void destroy_tcp()
- {
- if (tcpconn_id_hash){
- tcpconn_timeout(1); /* force close/expire for all active tcpconns*/
- shm_free(tcpconn_id_hash);
- tcpconn_id_hash=0;
- }
- if (tcp_connections_no){
- shm_free(tcp_connections_no);
- tcp_connections_no=0;
- }
- if (connection_id){
- shm_free(connection_id);
- connection_id=0;
- }
- if (tcpconn_aliases_hash){
- shm_free(tcpconn_aliases_hash);
- tcpconn_aliases_hash=0;
- }
- if (tcpconn_lock){
- lock_destroy(tcpconn_lock);
- lock_dealloc((void*)tcpconn_lock);
- tcpconn_lock=0;
- }
- if (tcp_children){
- pkg_free(tcp_children);
- tcp_children=0;
- }
- }
- int init_tcp()
- {
- char* poll_err;
-
- /* init lock */
- tcpconn_lock=lock_alloc();
- if (tcpconn_lock==0){
- LOG(L_CRIT, "ERROR: init_tcp: could not alloc lock\n");
- goto error;
- }
- if (lock_init(tcpconn_lock)==0){
- LOG(L_CRIT, "ERROR: init_tcp: could not init lock\n");
- lock_dealloc((void*)tcpconn_lock);
- tcpconn_lock=0;
- goto error;
- }
- /* init globals */
- tcp_connections_no=shm_malloc(sizeof(int));
- if (tcp_connections_no==0){
- LOG(L_CRIT, "ERROR: init_tcp: could not alloc globals\n");
- goto error;
- }
- *tcp_connections_no=0;
- connection_id=shm_malloc(sizeof(int));
- if (connection_id==0){
- LOG(L_CRIT, "ERROR: init_tcp: could not alloc globals\n");
- goto error;
- }
- *connection_id=1;
- /* alloc hashtables*/
- tcpconn_aliases_hash=(struct tcp_conn_alias**)
- shm_malloc(TCP_ALIAS_HASH_SIZE* sizeof(struct tcp_conn_alias*));
- if (tcpconn_aliases_hash==0){
- LOG(L_CRIT, "ERROR: init_tcp: could not alloc address hashtable\n");
- goto error;
- }
- tcpconn_id_hash=(struct tcp_connection**)shm_malloc(TCP_ID_HASH_SIZE*
- sizeof(struct tcp_connection*));
- if (tcpconn_id_hash==0){
- LOG(L_CRIT, "ERROR: init_tcp: could not alloc id hashtable\n");
- goto error;
- }
- /* init hashtables*/
- memset((void*)tcpconn_aliases_hash, 0,
- TCP_ALIAS_HASH_SIZE * sizeof(struct tcp_conn_alias*));
- memset((void*)tcpconn_id_hash, 0,
- TCP_ID_HASH_SIZE * sizeof(struct tcp_connection*));
-
- /* fix config variables */
- /* they can have only positive values due the config parser so we can
- * ignore most of them */
- poll_err=check_poll_method(tcp_poll_method);
-
- /* set an appropiate poll method */
- if (poll_err || (tcp_poll_method==0)){
- tcp_poll_method=choose_poll_method();
- if (poll_err){
- LOG(L_ERR, "ERROR: init_tcp: %s, using %s instead\n",
- poll_err, poll_method_name(tcp_poll_method));
- }else{
- LOG(L_INFO, "init_tcp: using %s as the io watch method"
- " (auto detected)\n", poll_method_name(tcp_poll_method));
- }
- }else{
- LOG(L_INFO, "init_tcp: using %s io watch method (config)\n",
- poll_method_name(tcp_poll_method));
- }
-
- return 0;
- error:
- /* clean-up */
- destroy_tcp();
- return -1;
- }
- /* returns -1 on error */
- static int set_non_blocking(int s)
- {
- int flags;
- /* non-blocking */
- flags=fcntl(s, F_GETFL);
- if (flags==-1){
- LOG(L_ERR, "ERROR: set_non_blocking: fnctl failed: (%d) %s\n",
- errno, strerror(errno));
- goto error;
- }
- if (fcntl(s, F_SETFL, flags|O_NONBLOCK)==-1){
- LOG(L_ERR, "ERROR: set_non_blocking: fcntl: set non-blocking failed:"
- " (%d) %s\n", errno, strerror(errno));
- goto error;
- }
- return 0;
- error:
- return -1;
- }
- /* starts the tcp processes */
- int tcp_init_children()
- {
- int r;
- int sockfd[2];
- int reader_fd[2]; /* for comm. with the tcp children read */
- pid_t pid;
- struct socket_info *si;
-
- /* estimate max fd. no:
- * 1 tcp send unix socket/all_proc,
- * + 1 udp sock/udp proc + 1 tcp_child sock/tcp child*
- * + no_listen_tcp */
- for(r=0, si=tcp_listen; si; si=si->next, r++);
- #ifdef USE_TLS
- if (! tls_disable)
- for (si=tls_listen; si; si=si->next, r++);
- #endif
-
- tcp_max_fd_no=process_count*2 +r-1 /* timer */ +3; /* stdin/out/err*/
- /* max connections can be temporarily exceeded with process_count
- * - tcp_main (tcpconn_connect called simultaneously in all all the
- * processes) */
- tcp_max_fd_no+=tcp_max_connections+process_count-1 /* tcp main */;
-
- /* alloc the children array */
- tcp_children=pkg_malloc(sizeof(struct tcp_child)*tcp_children_no);
- if (tcp_children==0){
- LOG(L_ERR, "ERROR: tcp_init_children: out of memory\n");
- goto error;
- }
- /* create the tcp sock_info structures */
- /* copy the sockets --moved to main_loop*/
-
- /* fork children & create the socket pairs*/
- for(r=0; r<tcp_children_no; r++){
- if (socketpair(AF_UNIX, SOCK_STREAM, 0, sockfd)<0){
- LOG(L_ERR, "ERROR: tcp_main: socketpair failed: %s\n",
- strerror(errno));
- goto error;
- }
- if (socketpair(AF_UNIX, SOCK_STREAM, 0, reader_fd)<0){
- LOG(L_ERR, "ERROR: tcp_main: socketpair failed: %s\n",
- strerror(errno));
- goto error;
- }
- #ifdef TCP_CHILD_NON_BLOCKING
- if ((set_non_blocking(reader_fd[0])<0) ||
- (set_non_blocking(reader_fd[1])<0)){
- LOG(L_ERR, "ERROR: tcp_main: failed to set non blocking"
- "on child sockets\n");
- /* continue, it's not critical (it will go slower under
- * very high connection rates) */
- }
- #endif
-
- process_no++;
- child_rank++;
- pid=fork();
- if (pid<0){
- LOG(L_ERR, "ERROR: tcp_main: fork failed: %s\n",
- strerror(errno));
- goto error;
- }else if (pid>0){
- /* parent */
- close(sockfd[1]);
- close(reader_fd[1]);
- tcp_children[r].pid=pid;
- tcp_children[r].proc_no=process_no;
- tcp_children[r].busy=0;
- tcp_children[r].n_reqs=0;
- tcp_children[r].unix_sock=reader_fd[0];
- pt[process_no].pid=pid;
- pt[process_no].unix_sock=sockfd[0];
- pt[process_no].idx=r;
- strncpy(pt[process_no].desc, "tcp receiver", MAX_PT_DESC);
- }else{
- /* child */
- close(sockfd[0]);
- unix_tcp_sock=sockfd[1];
- bind_address=0; /* force a SEGFAULT if someone uses a non-init.
- bind address on tcp */
- /* record pid twice to avoid the child using it, before
- * parent gets a chance to set it*/
- pt[process_no].pid=getpid();
- if (init_child(child_rank) < 0) {
- LOG(L_ERR, "init_children failed\n");
- goto error;
- }
- tcp_receive_loop(reader_fd[1]);
- }
- }
- return 0;
- error:
- return -1;
- }
- void tcp_get_info(struct tcp_gen_info *ti)
- {
- ti->tcp_readers=tcp_children_no;
- ti->tcp_max_connections=tcp_max_connections;
- ti->tcp_connections_no=*tcp_connections_no;
- }
- #endif
|