chiark / gitweb /
memcmp: Introduce and use consttime_memeq
[secnet.git] / secnet.c
1 #include "secnet.h"
2 #include <stdio.h>
3 #include <assert.h>
4 #include <limits.h>
5 #include <string.h>
6 #include <getopt.h>
7 #include <errno.h>
8 #include <unistd.h>
9 #include <sys/socket.h>
10 #include <arpa/inet.h>
11 #include <pwd.h>
12 #include <grp.h>
13
14 #include "util.h"
15 #include "conffile.h"
16 #include "process.h"
17
18 #if __APPLE__
19 /* apple's poll() does not work on char devs */
20 # define USE_SELECT 1
21 #endif
22
23 /* XXX should be from autoconf */
24 static const char *configfile="/etc/secnet/secnet.conf";
25 static const char *sites_key="sites";
26 bool_t just_check_config=False;
27 static char *userid=NULL;
28 static uid_t uid=0;
29 static gid_t gid;
30 bool_t background=True;
31 static char *pidfile=NULL;
32 bool_t require_root_privileges=False;
33 cstring_t require_root_privileges_explanation=NULL;
34
35 static pid_t secnet_pid;
36
37 /* Structures dealing with poll() call */
38 struct poll_interest {
39     beforepoll_fn *before;
40     afterpoll_fn *after;
41     void *state;
42     int32_t max_nfds;
43     int32_t nfds;
44     cstring_t desc;
45     struct poll_interest *next;
46 };
47 static struct poll_interest *reg=NULL;
48 static int32_t total_nfds=10;
49
50 static bool_t finished=False;
51
52 /* Parse the command line options */
53 static void parse_options(int argc, char **argv)
54 {
55     int c;
56
57     while (True) {
58         int option_index = 0;
59         static struct option long_options[] = {
60             {"verbose", 0, 0, 'v'},
61             {"nowarnings", 0, 0, 'w'},
62             {"help", 0, 0, 2},
63             {"version", 0, 0, 1},
64             {"nodetach", 0, 0, 'n'},
65             {"managed", 0, 0, 'm'},
66             {"silent", 0, 0, 'f'},
67             {"quiet", 0, 0, 'f'},
68             {"debug", 0, 0, 'd'},
69             {"config", 1, 0, 'c'},
70             {"just-check-config", 0, 0, 'j'},
71             {"sites-key", 1, 0, 's'},
72             {0,0,0,0}
73         };
74
75         c=getopt_long(argc, argv, "vwdnjc:ft:s:m",
76                       long_options, &option_index);
77         if (c==-1)
78             break;
79
80         switch(c) {
81         case 2:
82             /* Help */
83             printf("Usage: secnet [OPTION]...\n\n"
84                    "  -f, --silent, --quiet   suppress error messages\n"
85                    "  -w, --nowarnings        suppress warnings\n"
86                    "  -v, --verbose           output extra diagnostics\n"
87                    "  -c, --config=filename   specify a configuration file\n"
88                    "  -j, --just-check-config stop after reading "
89                    "configuration file\n"
90                    "  -s, --sites-key=name    configuration key that "
91                    "specifies active sites\n"
92                    "  -n, --nodetach          do not run in background\n"
93                    "  -m, --managed           running under a supervisor\n"
94                    "  -d, --debug             output debug messages\n"
95                    "      --help              display this help and exit\n"
96                    "      --version           output version information "
97                    "and exit\n"
98                 );
99             exit(0);
100             break;
101       
102         case 1:
103             /* Version */
104             printf("%s\n",version);
105             exit(0);
106             break;
107
108         case 'v':
109             message_level|=M_INFO|M_NOTICE|M_WARNING|M_ERR|M_SECURITY|
110                 M_FATAL;
111             break;
112
113         case 'w':
114             message_level&=(~M_WARNING);
115             break;
116
117         case 'd':
118             message_level|=M_DEBUG_CONFIG|M_DEBUG_PHASE|M_DEBUG;
119             break;
120
121         case 'f':
122             message_level=M_FATAL;
123             break;
124
125         case 'n':
126             background=False;
127             break;
128
129         case 'm':
130             secnet_is_daemon=True;
131             break;
132
133         case 'c':
134             if (optarg)
135                 configfile=safe_strdup(optarg,"config_filename");
136             else
137                 fatal("secnet: no config filename specified");
138             break;
139
140         case 'j':
141             just_check_config=True;
142             break;
143
144         case 's':
145             if (optarg)
146                 sites_key=safe_strdup(optarg,"sites-key");
147             else
148                 fatal("secnet: no sites key specified");
149             break;
150
151         case '?':
152             exit(1);
153             break;
154
155         default:
156             Message(M_ERR,"secnet: Unknown getopt code %c\n",c);
157         }
158     }
159
160     if (argc-optind != 0) {
161         Message(M_ERR,"secnet: You gave extra command line parameters, "
162                 "which were ignored.\n");
163     }
164 }
165
166 static void setup(dict_t *config)
167 {
168     list_t *l;
169     item_t *site;
170     dict_t *system;
171     struct passwd *pw;
172     struct cloc loc;
173     int i;
174
175     l=dict_lookup(config,"system");
176
177     if (!l || list_elem(l,0)->type!=t_dict) {
178         fatal("configuration does not include a \"system\" dictionary");
179     }
180     system=list_elem(l,0)->data.dict;
181     loc=list_elem(l,0)->loc;
182
183     /* Arrange systemwide log facility */
184     l=dict_lookup(system,"log");
185     if (!l) {
186         fatal("configuration does not include a system/log facility");
187     }
188     system_log=init_log(l);
189
190     /* Who are we supposed to run as? */
191     userid=dict_read_string(system,"userid",False,"system",loc);
192     if (userid) {
193         if (!(pw=getpwnam(userid)))
194             fatal("userid \"%s\" not found",userid);
195         uid=pw->pw_uid;
196         gid=pw->pw_gid;
197     }
198
199     /* Pidfile name */
200     pidfile=dict_read_string(system,"pidfile",False,"system",loc);
201
202     /* Check whether we need root privileges */
203     if (require_root_privileges && uid!=0) {
204         fatal("the configured feature \"%s\" requires "
205               "that secnet retain root privileges while running.",
206               require_root_privileges_explanation);
207     }
208
209     /* Go along site list, starting sites */
210     l=dict_lookup(config,sites_key);
211     if (!l) {
212         Message(M_WARNING,"secnet: configuration key \"%s\" is missing; no "
213                 "remote sites are defined\n",sites_key);
214     } else {
215         i=0;
216         while ((site=list_elem(l, i++))) {
217             struct site_if *s;
218             if (site->type!=t_closure) {
219                 cfgfatal(site->loc,"system","non-closure in site list");
220             }
221             if (site->data.closure->type!=CL_SITE) {
222                 cfgfatal(site->loc,"system","non-site closure in site list");
223             }
224             s=site->data.closure->interface;
225             s->control(s->st,True);
226         }
227     }
228 }
229
230 void register_for_poll(void *st, beforepoll_fn *before,
231                        afterpoll_fn *after, int32_t max_nfds, cstring_t desc)
232 {
233     struct poll_interest *i;
234
235     i=safe_malloc(sizeof(*i),"register_for_poll");
236     i->before=before;
237     i->after=after;
238     i->state=st;
239     i->max_nfds=max_nfds;
240     i->nfds=0;
241     i->desc=desc;
242     assert(total_nfds < INT_MAX - max_nfds);
243     total_nfds+=max_nfds;
244     i->next=reg;
245     reg=i;
246     return;
247 }
248
249 static void system_phase_hook(void *sst, uint32_t newphase)
250 {
251     if (newphase==PHASE_SHUTDOWN && pidfile) {
252         /* Try to unlink the pidfile; don't care if it fails */
253         unlink(pidfile);
254     }
255 }
256
257 #if USE_SELECT
258 static int fakepoll(struct pollfd *fds, int nfds, int timeout) {
259     fd_set infds[1], outfds[1];
260     int maxfd = -1, i, rc;
261     struct timeval tvtimeout;
262     FD_ZERO(infds);
263     FD_ZERO(outfds);
264     for(i = 0; i < nfds; ++i) {
265         if(fds[i].events & POLLIN)
266             FD_SET(fds[i].fd, infds);
267         if(fds[i].events & POLLOUT)
268             FD_SET(fds[i].fd, outfds);
269         if(fds[i].fd > maxfd)
270             maxfd = fds[i].fd;
271     }
272     if(timeout != -1) {
273         tvtimeout.tv_sec = timeout / 1000;
274         tvtimeout.tv_usec = 1000 * (timeout % 1000);
275     }
276     rc = select(maxfd + 1, infds, outfds, NULL, 
277                 timeout == -1 ? NULL : &tvtimeout);
278     if(rc >= 0) {
279         for(i = 0; i < nfds; ++i) {
280             int revents = 0;
281             if(FD_ISSET(fds[i].fd, infds))
282                 revents |= POLLIN;
283             if(FD_ISSET(fds[i].fd, outfds))
284                 revents |= POLLOUT;
285             fds[i].revents = revents;
286         }
287     }
288     return rc;
289 }
290 #endif
291
292 struct timeval tv_now_global;
293 uint64_t now_global;
294
295 static void run(void)
296 {
297     struct poll_interest *i;
298     int rv, nfds, remain, idx;
299     int timeout;
300     struct pollfd *fds;
301
302     fds=safe_malloc(sizeof(*fds)*total_nfds, "run");
303
304     Message(M_NOTICE,"%s [%d]: starting\n",version,secnet_pid);
305
306     do {
307         if (gettimeofday(&tv_now_global, NULL)!=0) {
308             fatal_perror("main loop: gettimeofday");
309         }
310         now_global=((uint64_t)tv_now_global.tv_sec*(uint64_t)1000)+
311                    ((uint64_t)tv_now_global.tv_usec/(uint64_t)1000);
312         idx=0;
313         for (i=reg; i; i=i->next) {
314             int check;
315             for (check=0; check<i->nfds; check++) {
316                 if(fds[idx+check].revents & POLLNVAL) {
317                     fatal("run: poll (%s#%d) set POLLNVAL", i->desc, check);
318                 }
319             }
320             i->after(i->state, fds+idx, i->nfds);
321             idx+=i->nfds;
322         }
323         remain=total_nfds;
324         idx=0;
325         timeout=-1;
326         for (i=reg; i; i=i->next) {
327             nfds=remain;
328             rv=i->before(i->state, fds+idx, &nfds, &timeout);
329             if (rv!=0) {
330                 /* XXX we need to handle this properly: increase the
331                    nfds available */
332                 fatal("run: beforepoll_fn (%s) returns %d",i->desc,rv);
333             }
334             if (timeout<-1) {
335                 fatal("run: beforepoll_fn (%s) set timeout to %d",timeout);
336             }
337             idx+=nfds;
338             remain-=nfds;
339             i->nfds=nfds;
340         }
341         do {
342             if (finished) break;
343 #if USE_SELECT
344             rv=fakepoll(fds, idx, timeout);
345 #else
346             rv=poll(fds, idx, timeout);
347 #endif
348             if (rv<0) {
349                 if (errno!=EINTR) {
350                     fatal_perror("run: poll");
351                 }
352             }
353         } while (rv<0);
354     } while (!finished);
355     free(fds);
356 }
357
358 /* Surrender privileges, if necessary */
359 static void droppriv(void)
360 {
361     if (userid) {
362         if (setgid(gid)!=0)
363             fatal_perror("can't set gid to %ld",(long)gid);
364         if (initgroups(userid, gid) < 0)
365             fatal_perror("initgroups"); 
366         if (setuid(uid)!=0) {
367             fatal_perror("can't set uid to \"%s\"",userid);
368         }
369         assert(getuid() == uid);
370         assert(geteuid() == uid);
371         assert(getgid() == gid);
372         assert(getegid() == gid);
373     }
374 }
375
376 /* Become a daemon, if necessary */
377 static void become_daemon(void)
378 {
379     FILE *pf=NULL;
380     pid_t p;
381     int errfds[2];
382
383     add_hook(PHASE_SHUTDOWN,system_phase_hook,NULL);
384
385     /* We only want to become a daemon if we are not one
386      already */
387     if (background && !secnet_is_daemon) {
388         p=fork();
389         if (p>0) {
390             /* Parent process - just exit */
391             _exit(0);
392         } else if (p==0) {
393             /* Child process - all done, just carry on */
394             secnet_is_daemon=True;
395             if (setsid() < 0)
396                 fatal_perror("setsid");
397         } else {
398             /* Error */
399             fatal_perror("cannot fork");
400             exit(1);
401         }
402     }
403     if (secnet_is_daemon) {
404         /* stderr etc are redirected to the system/log facility */
405         if (pipe(errfds)!=0) {
406             fatal_perror("can't create pipe for stderr");
407         }
408         if (dup2(errfds[1],0) < 0
409             || dup2(errfds[1],1) < 0
410             || dup2(errfds[1],2) < 0)
411             fatal_perror("can't dup2 pipe");
412         if (close(errfds[1]) < 0)
413             fatal_perror("can't close redundant pipe endpoint");
414         log_from_fd(errfds[0],"stderr",system_log);
415     }
416     secnet_pid=getpid();
417     
418     /* Now we can write the pidfile */
419     if (pidfile) {
420         pf=fopen(pidfile,"w");
421         if (!pf) {
422             fatal_perror("cannot open pidfile \"%s\"",pidfile);
423         }
424         if (fprintf(pf,"%ld\n",(long)secnet_pid) < 0
425             || fclose(pf) < 0)
426             fatal_perror("cannot write to pidfile \"%s\"",pidfile);
427     }
428 }
429
430 static signal_notify_fn finish,ignore_hup;
431 static void finish(void *st, int signum)
432 {
433     finished=True;
434     Message(M_NOTICE,"%s [%d]: received %s\n",version,secnet_pid,(string_t)st);
435 }
436 static void ignore_hup(void *st, int signum)
437 {
438     Message(M_INFO,"%s [%d]: received SIGHUP\n",version,secnet_pid);
439     return;
440 }
441
442 int main(int argc, char **argv)
443 {
444     dict_t *config;
445
446     enter_phase(PHASE_GETOPTS);
447     parse_options(argc,argv);
448
449     enter_phase(PHASE_READCONFIG);
450     config=read_conffile(configfile);
451
452     enter_phase(PHASE_SETUP);
453     setup(config);
454
455     if (just_check_config) {
456         Message(M_INFO,"configuration file check complete\n");
457         exit(0);
458     }
459
460     enter_phase(PHASE_DAEMONIZE);
461     become_daemon();
462     
463     enter_phase(PHASE_GETRESOURCES);
464     /* Appropriate phase hooks will have been run */
465     
466     enter_phase(PHASE_DROPPRIV);
467     droppriv();
468
469     start_signal_handling();
470     request_signal_notification(SIGTERM,finish,safe_strdup("SIGTERM","run"));
471     if (!background) request_signal_notification(SIGINT,finish,
472                                                  safe_strdup("SIGINT","run"));
473     request_signal_notification(SIGHUP,ignore_hup,NULL);
474     enter_phase(PHASE_RUN);
475     run();
476
477     enter_phase(PHASE_SHUTDOWN);
478     Message(M_NOTICE,"%s [%d]: finished\n",version,secnet_pid);
479
480     return 0;
481 }