LCOV - code coverage report
Current view: top level - src/server - main.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 0 358 0.0 %
Date: 2015-11-30 Functions: 0 14 0.0 %

          Line data    Source code
       1             : #include "../burp.h"
       2             : #include "../asfd.h"
       3             : #include "../async.h"
       4             : #include "../cntr.h"
       5             : #include "../conf.h"
       6             : #include "../conffile.h"
       7             : #include "../fsops.h"
       8             : #include "../handy.h"
       9             : #include "../iobuf.h"
      10             : #include "../lock.h"
      11             : #include "../log.h"
      12             : #include "auth.h"
      13             : #include "ca.h"
      14             : #include "child.h"
      15             : #include "main.h"
      16             : #include "monitor/status_server.h"
      17             : 
      18             : // FIX THIS: Should be able to configure multiple addresses and ports.
      19             : #define LISTEN_SOCKETS  32
      20             : 
      21             : static int hupreload=0;
      22             : static int hupreload_logged=0;
      23             : static int gentleshutdown=0;
      24             : static int gentleshutdown_logged=0;
      25             : 
      26             : // These will also be used as the exit codes of the program and are therefore
      27             : // unsigned integers.
      28             : // Remember to update the man page if you update these.
      29             : enum serret
      30             : {
      31             :         SERVER_OK=0,
      32             :         SERVER_ERROR=1
      33             : };
      34             : 
      35           0 : static void huphandler(int sig)
      36             : {
      37           0 :         hupreload=1;
      38             :         // Be careful about not logging inside a signal handler.
      39           0 :         hupreload_logged=0;
      40           0 : }
      41             : 
      42           0 : static void usr2handler(int sig)
      43             : {
      44           0 :         gentleshutdown=1;
      45             :         // Be careful about not logging inside a signal handler.
      46           0 :         gentleshutdown_logged=0;
      47           0 : }
      48             : 
      49           0 : static void init_fds(int *fds)
      50             : {
      51           0 :         for(int i=0; i<LISTEN_SOCKETS; i++) fds[i]=-1;
      52           0 : }
      53             : 
      54           0 : static void close_fds(int *fds)
      55             : {
      56           0 :         for(int i=0; i<LISTEN_SOCKETS; i++) close_fd(&(fds[i]));
      57           0 : }
      58             : 
      59             : // Remove any exiting child pids from our list.
      60           0 : static void chld_check_for_exiting(struct async *mainas)
      61             : {
      62             :         pid_t p;
      63             :         int status;
      64             :         struct asfd *asfd;
      65             : 
      66           0 :         while((p=waitpid(-1, &status, WNOHANG))>0)
      67             :         {
      68             :                 // Logging a message here appeared to occasionally lock burp up
      69             :                 // on a Ubuntu server that I used to use.
      70           0 :                 for(asfd=mainas->asfd; asfd; asfd=asfd->next)
      71             :                 {
      72           0 :                         if(p!=asfd->pid) continue;
      73           0 :                         mainas->asfd_remove(mainas, asfd);
      74           0 :                         asfd_free(&asfd);
      75           0 :                         break;
      76             :                 }
      77             :         }
      78           0 : }
      79             : 
      80           0 : static int init_listen_socket(const char *address, const char *port, int *fds)
      81             : {
      82             :         int i;
      83             :         int gai_ret;
      84             :         struct addrinfo hints;
      85           0 :         struct addrinfo *rp=NULL;
      86           0 :         struct addrinfo *info=NULL;
      87             : 
      88           0 :         close_fds(fds);
      89             : 
      90           0 :         memset(&hints, 0, sizeof(struct addrinfo));
      91           0 :         hints.ai_family=AF_UNSPEC;
      92           0 :         hints.ai_socktype=SOCK_STREAM;
      93           0 :         hints.ai_protocol=IPPROTO_TCP;
      94           0 :         hints.ai_flags=AI_NUMERICHOST;
      95           0 :         hints.ai_flags|=AI_PASSIVE;
      96             : 
      97           0 :         if((gai_ret=getaddrinfo(address, port, &hints, &info)))
      98             :         {
      99             :                 logp("unable to getaddrinfo on port %s: %s\n",
     100           0 :                         port, gai_strerror(gai_ret));
     101           0 :                 return -1;
     102             :         }
     103             : 
     104           0 :         i=0;
     105           0 :         for(rp=info; rp && i<LISTEN_SOCKETS; rp=rp->ai_next)
     106             :         {
     107           0 :                 fds[i]=socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
     108           0 :                 if(fds[i]<0)
     109             :                 {
     110             :                         logp("unable to create socket on port %s: %s\n",
     111           0 :                                 port, strerror(errno));
     112           0 :                         continue;
     113             :                 }
     114             : #ifdef HAVE_IPV6
     115           0 :                 if(rp->ai_family==AF_INET6)
     116             :                 {
     117             :                         // Attempt to say that it should not listen on IPv6
     118             :                         // only.
     119           0 :                         int optval=0;
     120           0 :                         setsockopt(fds[i], IPPROTO_IPV6, IPV6_V6ONLY,
     121           0 :                                 &optval, sizeof(optval));
     122             :                 }
     123             : #endif
     124           0 :                 reuseaddr(fds[i]);
     125           0 :                 if(bind(fds[i], rp->ai_addr, rp->ai_addrlen))
     126             :                 {
     127             :                         logp("unable to bind socket on port %s: %s\n",
     128           0 :                                 port, strerror(errno));
     129           0 :                         close(fds[i]);
     130           0 :                         fds[i]=-1;
     131           0 :                         continue;
     132             :                 }
     133             : 
     134             :                 // Say that we are happy to accept connections.
     135           0 :                 if(listen(fds[i], 5)<0)
     136             :                 {
     137           0 :                         close_fd(&(fds[i]));
     138           0 :                         logp("could not listen on main socket %d\n", port);
     139           0 :                         return -1;
     140             :                 }
     141             : 
     142             : #ifdef HAVE_WIN32
     143             :                 {
     144             :                         u_long ioctlArg=0;
     145             :                         ioctlsocket(fds[i], FIONBIO, &ioctlArg);
     146             :                 }
     147             : #endif
     148           0 :                 i++;
     149             :         }
     150             : 
     151           0 :         freeaddrinfo(info);
     152             : 
     153           0 :         if(!i)
     154             :         {
     155           0 :                 logp("could not listen on address: %s\n", address);
     156             : #ifdef HAVE_IPV6
     157           0 :                 if(strchr(address, ':'))
     158           0 :                         logp("maybe check whether your OS has IPv6 enabled.\n");
     159             : #endif
     160           0 :                 return -1;
     161             :         }
     162             : 
     163           0 :         return 0;
     164             : }
     165             : 
     166           0 : int setup_signals(int oldmax_children, int max_children,
     167             :         int oldmax_status_children, int max_status_children)
     168             : {
     169             :         // Ignore SIGPIPE - we are careful with read and write return values.
     170           0 :         signal(SIGPIPE, SIG_IGN);
     171             : 
     172           0 :         setup_signal(SIGHUP, huphandler);
     173           0 :         setup_signal(SIGUSR2, usr2handler);
     174             : 
     175           0 :         return 0;
     176             : }
     177             : 
     178           0 : static int run_child(int *cfd, SSL_CTX *ctx, struct sockaddr_storage *addr,
     179             :         int status_wfd, int status_rfd, const char *conffile, int forking)
     180             : {
     181           0 :         int ret=-1;
     182           0 :         int ca_ret=0;
     183           0 :         SSL *ssl=NULL;
     184           0 :         BIO *sbio=NULL;
     185           0 :         struct conf **confs=NULL;
     186           0 :         struct conf **cconfs=NULL;
     187           0 :         struct cntr *cntr=NULL;
     188           0 :         struct async *as=NULL;
     189           0 :         const char *cname=NULL;
     190             : 
     191           0 :         if(!(confs=confs_alloc())
     192           0 :           || !(cconfs=confs_alloc()))
     193           0 :                 goto end;
     194             : 
     195           0 :         set_peer_env_vars(addr);
     196             : 
     197             :         // Reload global config, in case things have changed. This means that
     198             :         // the server does not need to be restarted for most conf changes.
     199           0 :         confs_init(confs);
     200           0 :         confs_init(cconfs);
     201           0 :         if(conf_load_global_only(conffile, confs)) goto end;
     202             : 
     203             :         // Hack to keep forking turned off if it was specified as off on the
     204             :         // command line.
     205           0 :         if(!forking) set_int(confs[OPT_FORK], 0);
     206             : 
     207           0 :         if(!(sbio=BIO_new_socket(*cfd, BIO_NOCLOSE))
     208           0 :           || !(ssl=SSL_new(ctx)))
     209             :         {
     210           0 :                 logp("There was a problem joining ssl to the socket\n");
     211           0 :                 goto end;
     212             :         }
     213           0 :         SSL_set_bio(ssl, sbio, sbio);
     214             : 
     215             :         /* Do not try to check peer certificate straight away.
     216             :            Clients can send a certificate signing request when they have
     217             :            no certificate. */
     218             :         SSL_set_verify(ssl, SSL_VERIFY_PEER
     219           0 :                 /* | SSL_VERIFY_FAIL_IF_NO_PEER_CERT */, 0);
     220             : 
     221           0 :         if(SSL_accept(ssl)<=0)
     222             :         {
     223           0 :                 logp_ssl_err("SSL_accept\n");
     224           0 :                 goto end;
     225             :         }
     226           0 :         if(!(as=async_alloc())
     227           0 :           || as->init(as, 0)
     228           0 :           || !setup_asfd(as, "main socket",
     229           0 :                 cfd, ssl, ASFD_STREAM_STANDARD, ASFD_FD_CHILD_MAIN, -1, confs))
     230           0 :                         goto end;
     231             : 
     232           0 :         if(authorise_server(as->asfd, confs, cconfs)
     233           0 :           || !(cname=get_string(cconfs[OPT_CNAME])) || !*cname)
     234             :         {
     235             :                 // Add an annoying delay in case they are tempted to
     236             :                 // try repeatedly.
     237           0 :                 log_and_send(as->asfd, "unable to authorise on server");
     238           0 :                 sleep(1);
     239           0 :                 goto end;
     240             :         }
     241             : 
     242             :         // Set up counters. Have to wait until here to get cname.
     243           0 :         if(!(cntr=cntr_alloc())
     244           0 :           || cntr_init(cntr, cname))
     245           0 :                 goto end;
     246           0 :         set_cntr(confs[OPT_CNTR], cntr);
     247           0 :         set_cntr(cconfs[OPT_CNTR], cntr);
     248             : 
     249             :         /* At this point, the client might want to get a new certificate
     250             :            signed. Clients on 1.3.2 or newer can do this. */
     251           0 :         if((ca_ret=ca_server_maybe_sign_client_cert(as->asfd, confs, cconfs))<0)
     252             :         {
     253             :                 logp("Error signing client certificate request for %s\n",
     254           0 :                         cname);
     255           0 :                 goto end;
     256             :         }
     257           0 :         else if(ca_ret>0)
     258             :         {
     259             :                 // Certificate signed and sent back.
     260             :                 // Everything is OK, but we will close this instance
     261             :                 // so that the client can start again with a new
     262             :                 // connection and its new certificates.
     263             :                 logp("Signed and returned client certificate request for %s\n",
     264           0 :                         cname);
     265           0 :                 ret=0;
     266           0 :                 goto end;
     267             :         }
     268             : 
     269             :         /* Now it is time to check the certificate. */
     270           0 :         if(ssl_check_cert(ssl, confs, cconfs))
     271             :         {
     272           0 :                 log_and_send(as->asfd, "check cert failed on server");
     273           0 :                 goto end;
     274             :         }
     275             : 
     276           0 :         if(status_rfd>=0 && !setup_asfd(as, "status server parent socket",
     277             :                 &status_rfd, NULL,
     278           0 :                 ASFD_STREAM_STANDARD, ASFD_FD_CHILD_PIPE_READ, -1, cconfs))
     279           0 :                         goto end;
     280             : 
     281           0 :         ret=child(as, status_wfd, confs, cconfs);
     282             : end:
     283           0 :         *cfd=-1;
     284           0 :         if(as && asfd_flush_asio(as->asfd))
     285           0 :                 ret=-1;
     286           0 :         async_asfd_free_all(&as); // This closes cfd for us.
     287           0 :         logp("exit child\n");
     288           0 :         if(cntr) cntr_free(&cntr);
     289           0 :         if(confs)
     290             :         {
     291           0 :                 set_cntr(confs[OPT_CNTR], NULL);
     292           0 :                 confs_free(&confs);
     293             :         }
     294           0 :         if(cconfs)
     295             :         {
     296           0 :                 set_cntr(cconfs[OPT_CNTR], NULL);
     297           0 :                 confs_free(&cconfs);
     298             :         }
     299           0 :         return ret;
     300             : }
     301             : 
     302           0 : static int chld_check_counts(struct conf **confs, struct asfd *asfd)
     303             : {
     304           0 :         int c_count=0;
     305           0 :         int sc_count=0;
     306             :         struct asfd *a;
     307             : 
     308             :         // Need to count status children separately from normal children.
     309           0 :         for(a=asfd->as->asfd; a; a=a->next)
     310             :         {
     311           0 :                 switch(a->fdtype)
     312             :                 {
     313             :                         case ASFD_FD_SERVER_PIPE_READ:
     314           0 :                                 c_count++; break;
     315             :                         case ASFD_FD_SERVER_PIPE_WRITE:
     316           0 :                                 sc_count++; break;
     317             :                         default:
     318           0 :                                 break;
     319             :                 }
     320             :         }
     321             : 
     322           0 :         switch(asfd->fdtype)
     323             :         {
     324             :                 case ASFD_FD_SERVER_LISTEN_MAIN:
     325           0 :                         if(c_count<get_int(confs[OPT_MAX_CHILDREN]))
     326           0 :                                 break;
     327           0 :                         logp("Too many child processes.\n");
     328           0 :                         return -1;
     329             :                 case ASFD_FD_SERVER_LISTEN_STATUS:
     330           0 :                         if(sc_count<get_int(confs[OPT_MAX_STATUS_CHILDREN]))
     331           0 :                                 break;
     332           0 :                         logp("Too many status child processes.\n");
     333           0 :                         return -1;
     334             :                 default:
     335             :                         logp("Unexpected fdtype in %s: %d.\n",
     336           0 :                                 __func__, asfd->fdtype);
     337           0 :                         return -1;
     338             :         }
     339             : 
     340           0 :         return 0;
     341             : }
     342             : 
     343           0 : static int process_incoming_client(struct asfd *asfd, SSL_CTX *ctx,
     344             :         const char *conffile, struct conf **confs)
     345             : {
     346           0 :         int cfd=-1;
     347             :         pid_t childpid;
     348             :         int pipe_rfd[2];
     349             :         int pipe_wfd[2];
     350           0 :         socklen_t client_length=0;
     351             :         struct sockaddr_storage client_name;
     352           0 :         enum asfd_fdtype fdtype=asfd->fdtype;
     353           0 :         int forking=get_int(confs[OPT_FORK]);
     354             : 
     355           0 :         client_length=sizeof(client_name);
     356           0 :         if((cfd=accept(asfd->fd,
     357           0 :                 (struct sockaddr *)&client_name, &client_length))==-1)
     358             :         {
     359             :                 // Look out, accept will get interrupted by SIGCHLDs.
     360           0 :                 if(errno==EINTR) return 0;
     361             :                 logp("accept failed on %s (%d) in %s: %s\n", asfd->desc,
     362           0 :                         asfd->fd, __func__, strerror(errno));
     363           0 :                 return -1;
     364             :         }
     365           0 :         reuseaddr(cfd);
     366           0 :         if(log_peer_address(&client_name))
     367           0 :                 return -1;
     368             : 
     369           0 :         if(!forking)
     370             :                 return run_child(&cfd, ctx,
     371           0 :                         &client_name, -1, -1, conffile, forking);
     372             : 
     373           0 :         if(chld_check_counts(confs, asfd))
     374             :         {
     375           0 :                 logp("Closing new connection.\n");
     376           0 :                 close_fd(&cfd);
     377           0 :                 return 0;
     378             :         }
     379             : 
     380           0 :         if(pipe(pipe_rfd)<0 || pipe(pipe_wfd)<0)
     381             :         {
     382           0 :                 logp("pipe failed: %s", strerror(errno));
     383           0 :                 close_fd(&cfd);
     384           0 :                 return -1;
     385             :         }
     386             : 
     387           0 :         switch((childpid=fork()))
     388             :         {
     389             :                 case -1:
     390           0 :                         logp("fork failed: %s\n", strerror(errno));
     391           0 :                         return -1;
     392             :                 case 0:
     393             :                 {
     394             :                         // Child.
     395             :                         int p;
     396             :                         int ret;
     397             :                         struct sigaction sa;
     398           0 :                         struct async *as=asfd->as;
     399           0 :                         async_asfd_free_all(&as);
     400             : 
     401             :                         // Close unnecessary file descriptors.
     402             :                         // Go up to FD_SETSIZE and hope for the best.
     403             :                         // FIX THIS: Now that async_asfd_free_all() is doing
     404             :                         // everything, double check whether this is needed.
     405           0 :                         for(p=3; p<(int)FD_SETSIZE; p++)
     406             :                         {
     407           0 :                                 if(p!=pipe_rfd[1]
     408           0 :                                   && p!=pipe_wfd[0]
     409           0 :                                   && p!=cfd)
     410           0 :                                         close(p);
     411             :                         }
     412             : 
     413             :                         // Set SIGCHLD back to default, so that I
     414             :                         // can get sensible returns from waitpid.
     415           0 :                         memset(&sa, 0, sizeof(sa));
     416           0 :                         sa.sa_handler=SIG_DFL;
     417           0 :                         sigaction(SIGCHLD, &sa, NULL);
     418             : 
     419           0 :                         close(pipe_rfd[0]); // close read end
     420           0 :                         close(pipe_wfd[1]); // close write end
     421             : 
     422           0 :                         confs_free_content(confs);
     423           0 :                         confs_init(confs);
     424             : 
     425             :                         ret=run_child(&cfd, ctx, &client_name, pipe_rfd[1],
     426             :                           fdtype==ASFD_FD_SERVER_LISTEN_STATUS?pipe_wfd[0]:-1,
     427           0 :                           conffile, forking);
     428             : 
     429           0 :                         close(pipe_rfd[1]);
     430           0 :                         close(pipe_wfd[0]);
     431           0 :                         close_fd(&cfd);
     432           0 :                         exit(ret);
     433             :                 }
     434             :                 default:
     435             :                         // Parent.
     436           0 :                         close(pipe_rfd[1]); // close write end
     437           0 :                         close(pipe_wfd[0]); // close read end
     438           0 :                         close_fd(&cfd);
     439             : 
     440           0 :                         switch(asfd->fdtype)
     441             :                         {
     442             :                                 case ASFD_FD_SERVER_LISTEN_MAIN:
     443           0 :                                         logp("forked child: %d\n", childpid);
     444           0 :                                         if(!setup_asfd(asfd->as,
     445             :                                                 "pipe from child",
     446             :                                                 &pipe_rfd[0], NULL,
     447             :                                                 ASFD_STREAM_STANDARD,
     448             :                                                 ASFD_FD_SERVER_PIPE_READ,
     449             :                                                 childpid,
     450           0 :                                                 confs)) return -1;
     451             :                                         // Do not need to write to normal
     452             :                                         // children.
     453           0 :                                         close(pipe_wfd[1]);
     454           0 :                                         break;
     455             :                                 case ASFD_FD_SERVER_LISTEN_STATUS:
     456             :                                         logp("forked status server child: %d\n",
     457           0 :                                                 childpid);
     458             :                                         // Do not need to read from status
     459             :                                         // children.
     460           0 :                                         close(pipe_rfd[0]);
     461           0 :                                         if(!setup_asfd(asfd->as,
     462             :                                                 "pipe to status child",
     463             :                                                 &pipe_wfd[1], NULL,
     464             :                                                 ASFD_STREAM_STANDARD,
     465             :                                                 ASFD_FD_SERVER_PIPE_WRITE,
     466             :                                                 childpid,
     467           0 :                                                 confs)) return -1;
     468           0 :                                         break;
     469             :                                 default:
     470             :                                         logp("Strange fdtype after fork: %d\n",
     471           0 :                                                 asfd->fdtype);
     472           0 :                                         return -1;
     473             :                         }
     474             : 
     475           0 :                         return 0;
     476             :         }
     477             : }
     478             : 
     479           0 : static int daemonise(void)
     480             : {
     481             :         /* process ID */
     482             :         pid_t pid;
     483             : 
     484             :         /* session ID */
     485             :         pid_t sid;
     486             : 
     487             :         /* fork new child and end parent */
     488           0 :         pid=fork();
     489             : 
     490             :         /* did we fork? */
     491           0 :         if(pid<0)
     492             :         {
     493           0 :                 logp("error forking\n");
     494           0 :                 return -1;
     495             :         }
     496             : 
     497             :         /* parent? */
     498           0 :         if(pid>0)
     499           0 :                 exit(EXIT_SUCCESS);
     500             : 
     501             :         /* now we are in the child process */
     502             : 
     503             :         /* create a session and set the process group ID */
     504           0 :         sid=setsid();
     505           0 :         if(sid<0)
     506             :         {
     507           0 :                 logp("error setting sid\n");
     508           0 :                 return -1;
     509             :         }
     510             : 
     511             :         /* leave and unblock current working dir */
     512           0 :         if(chdir("/")<0)
     513             :         {
     514           0 :                 logp("error changing working dir\n");
     515           0 :                 return -1;
     516             :         }
     517             : 
     518             :         /* close std* */
     519           0 :         close(STDIN_FILENO);
     520           0 :         close(STDOUT_FILENO);
     521           0 :         close(STDERR_FILENO);
     522             : 
     523           0 :         return 0;
     524             : }
     525             : 
     526           0 : static int relock(struct lock *lock)
     527             : {
     528           0 :         int tries=5;
     529           0 :         for(; tries>0; tries--)
     530             :         {
     531           0 :                 lock_get(lock);
     532           0 :                 switch(lock->status)
     533             :                 {
     534           0 :                         case GET_LOCK_GOT: return 0;
     535             :                         case GET_LOCK_NOT_GOT:
     536           0 :                                 sleep(2);
     537           0 :                                 break;
     538             :                         case GET_LOCK_ERROR:
     539             :                         default:
     540           0 :                                 logp("Error when trying to re-get lockfile after forking.\n");
     541           0 :                                 return -1;
     542             :                 }
     543             :         }
     544           0 :         logp("Unable to re-get lockfile after forking.\n");
     545           0 :         return -1;
     546             : }
     547             : 
     548           0 : static int run_server(struct conf **confs, const char *conffile,
     549             :         int *rfds, int *sfds)
     550             : {
     551           0 :         int i=0;
     552           0 :         int ret=-1;
     553           0 :         SSL_CTX *ctx=NULL;
     554           0 :         int found_normal_child=0;
     555           0 :         struct asfd *asfd=NULL;
     556           0 :         struct asfd *scfd=NULL;
     557           0 :         struct async *mainas=NULL;
     558           0 :         const char *port=get_string(confs[OPT_PORT]);
     559           0 :         const char *address=get_string(confs[OPT_ADDRESS]);
     560           0 :         const char *status_port=get_string(confs[OPT_STATUS_PORT]);
     561           0 :         const char *status_address=get_string(confs[OPT_STATUS_ADDRESS]);
     562             : 
     563           0 :         if(!(ctx=ssl_initialise_ctx(confs)))
     564             :         {
     565           0 :                 logp("error initialising ssl ctx\n");
     566           0 :                 goto end;
     567             :         }
     568           0 :         if((ssl_load_dh_params(ctx, confs)))
     569             :         {
     570           0 :                 logp("error loading dh params\n");
     571           0 :                 goto end;
     572             :         }
     573             : 
     574           0 :         if(init_listen_socket(address, port, rfds)
     575           0 :           || init_listen_socket(status_address, status_port, sfds))
     576           0 :                 goto end;
     577             : 
     578           0 :         if(!(mainas=async_alloc())
     579           0 :           || mainas->init(mainas, 0))
     580           0 :                 goto end;
     581             : 
     582           0 :         for(i=0; i<LISTEN_SOCKETS && rfds[i]!=-1; i++)
     583           0 :                 if(!setup_asfd(mainas,
     584             :                   "main server socket", &rfds[i], NULL,
     585           0 :                   ASFD_STREAM_STANDARD, ASFD_FD_SERVER_LISTEN_MAIN, -1, confs))
     586           0 :                         goto end;
     587           0 :         for(i=0; i<LISTEN_SOCKETS && sfds[i]!=-1; i++)
     588           0 :                 if(!setup_asfd(mainas,
     589             :                   "main server status socket", &sfds[i], NULL,
     590           0 :                   ASFD_STREAM_STANDARD, ASFD_FD_SERVER_LISTEN_STATUS, -1, confs))
     591           0 :                         goto end;
     592             : 
     593           0 :         while(!hupreload)
     594             :         {
     595           0 :                 switch(mainas->read_write(mainas))
     596             :                 {
     597             :                         case 0:
     598           0 :                                 for(asfd=mainas->asfd; asfd; asfd=asfd->next)
     599             :                                 {
     600           0 :                                         if(asfd->new_client)
     601             :                                         {
     602             :                                                 // Incoming client.
     603           0 :                                                 asfd->new_client=0;
     604           0 :                                                 if(process_incoming_client(asfd,
     605           0 :                                                         ctx, conffile, confs))
     606           0 :                                                                 goto end;
     607           0 :                                                 if(!get_int(confs[OPT_FORK]))
     608             :                                                 {
     609           0 :                                                         gentleshutdown++;
     610           0 :                                                         ret=1;
     611           0 :                                                         goto end;
     612             :                                                 }
     613           0 :                                                 continue;
     614             :                                         }
     615             :                                 }
     616           0 :                                 break;
     617             :                         default:
     618           0 :                                 int removed=0;
     619             :                                 // Maybe one of the fds had a problem.
     620             :                                 // Find and remove it and carry on if possible.
     621           0 :                                 for(asfd=mainas->asfd; asfd; )
     622             :                                 {
     623             :                                         struct asfd *a;
     624           0 :                                         if(!asfd->want_to_remove)
     625             :                                         {
     626           0 :                                                 asfd=asfd->next;
     627           0 :                                                 continue;
     628             :                                         }
     629           0 :                                         mainas->asfd_remove(mainas, asfd);
     630             :                                         logp("%s: disconnected fd %d\n",
     631           0 :                                                 asfd->desc, asfd->fd);
     632           0 :                                         a=asfd->next;
     633           0 :                                         asfd_free(&asfd);
     634           0 :                                         asfd=a;
     635           0 :                                         removed++;
     636             :                                 }
     637           0 :                                 if(removed) break;
     638             :                                 // If we got here, there was no fd to remove.
     639             :                                 // It is a fatal error.
     640           0 :                                 goto end;
     641             :                 }
     642             : 
     643           0 :                 for(asfd=mainas->asfd; asfd; asfd=asfd->next)
     644             :                 {
     645           0 :                         if(asfd->fdtype!=ASFD_FD_SERVER_PIPE_READ
     646           0 :                           || !asfd->rbuf->buf) continue;
     647             :                         // One of the child processes is giving us information.
     648             :                         // Try to append it to any of the status child pipes.
     649           0 :                         for(scfd=mainas->asfd; scfd; scfd=scfd->next)
     650             :                         {
     651           0 :                                 if(scfd->fdtype!=ASFD_FD_SERVER_PIPE_WRITE)
     652           0 :                                         continue;
     653           0 :                                 switch(scfd->append_all_to_write_buffer(scfd,
     654           0 :                                         asfd->rbuf))
     655             :                                 {
     656             :                                         case APPEND_OK:
     657             :                                         case APPEND_BLOCKED:
     658           0 :                                                 break;
     659             :                                         default:
     660           0 :                                                 goto end;
     661             :                                 }
     662             :                         }
     663             :                         // Free the information, even if we did not manage
     664             :                         // to append it. That should be OK, more will be along
     665             :                         // soon.
     666           0 :                         iobuf_free_content(asfd->rbuf);
     667             :                 }
     668             : 
     669           0 :                 chld_check_for_exiting(mainas);
     670             : 
     671             :                 // Leave if we had a SIGUSR1 and there are no children running.
     672           0 :                 if(gentleshutdown)
     673             :                 {
     674           0 :                         if(!gentleshutdown_logged)
     675             :                         {
     676           0 :                                 logp("got SIGUSR2 gentle reload signal\n");
     677           0 :                                 logp("will shut down once children have exited\n");
     678           0 :                                 gentleshutdown_logged++;
     679             :                         }
     680             : // FIX THIS:
     681             : // found_normal_child=chld_add_fd_to_normal_sets(confs, &fsr, &fse, &mfd);
     682           0 :                         else if(!found_normal_child)
     683             :                         {
     684           0 :                                 logp("all children have exited - shutting down\n");
     685           0 :                                 break;
     686             :                         }
     687             :                 }
     688             :         }
     689             : 
     690           0 :         if(hupreload) logp("got SIGHUP reload signal\n");
     691             : 
     692           0 :         ret=0;
     693             : end:
     694           0 :         async_asfd_free_all(&mainas);
     695           0 :         if(ctx) ssl_destroy_ctx(ctx);
     696           0 :         return ret;
     697             : }
     698             : 
     699           0 : int server(struct conf **confs, const char *conffile,
     700             :         struct lock *lock, int generate_ca_only)
     701             : {
     702           0 :         enum serret ret=SERVER_ERROR;
     703             :         int rfds[LISTEN_SOCKETS]; // Sockets for clients to connect to.
     704             :         int sfds[LISTEN_SOCKETS]; // Status server sockets.
     705             : 
     706             :         //return champ_test(confs);
     707             : 
     708           0 :         init_fds(rfds);
     709           0 :         init_fds(sfds);
     710             : 
     711           0 :         if(ca_server_setup(confs)) goto error;
     712           0 :         if(generate_ca_only)
     713             :         {
     714           0 :                 logp("The '-g' command line option was given. Exiting now.\n");
     715           0 :                 goto end;
     716             :         }
     717             : 
     718           0 :         if(get_int(confs[OPT_FORK]) && get_int(confs[OPT_DAEMON]))
     719             :         {
     720           0 :                 if(daemonise() || relock(lock)) goto error;
     721             :         }
     722             : 
     723           0 :         ssl_load_globals();
     724             : 
     725           0 :         while(!gentleshutdown)
     726             :         {
     727           0 :                 if(run_server(confs, conffile, rfds, sfds))
     728           0 :                         goto error;
     729             : 
     730           0 :                 if(hupreload && !gentleshutdown)
     731             :                 {
     732           0 :                         if(reload(confs, conffile,
     733             :                                 0, // Not first time.
     734           0 :                                 get_int(confs[OPT_MAX_CHILDREN]),
     735           0 :                                 get_int(confs[OPT_MAX_STATUS_CHILDREN])))
     736           0 :                                         goto error;
     737             :                 }
     738           0 :                 hupreload=0;
     739             :         }
     740             : 
     741             : end:
     742           0 :         ret=SERVER_OK;
     743             : error:
     744           0 :         close_fds(rfds);
     745           0 :         close_fds(sfds);
     746             : 
     747             : // FIX THIS: Have an enum for a return value, so that it is more obvious what
     748             : // is happening, like client.c does.
     749           0 :         return ret;
     750             : }

Generated by: LCOV version 1.10