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