]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/main.c
Implement proper daemonisation for afpd and cnid_metad, fix for NetAFP #10163.
[netatalk.git] / etc / afpd / main.c
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif /* HAVE_CONFIG_H */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <signal.h>
14
15 #include <sys/param.h>
16 #include <sys/uio.h>
17 #include <atalk/logger.h>
18 #include <sys/time.h>
19 #include <sys/socket.h>
20 #include <sys/poll.h>
21 #include <errno.h>
22 #include <sys/wait.h>
23 #include <sys/resource.h>
24
25 #include <atalk/adouble.h>
26
27 #include <netatalk/at.h>
28 #include <atalk/compat.h>
29 #include <atalk/dsi.h>
30 #include <atalk/atp.h>
31 #include <atalk/asp.h>
32 #include <atalk/afp.h>
33 #include <atalk/paths.h>
34 #include <atalk/util.h>
35 #include <atalk/server_child.h>
36 #include <atalk/server_ipc.h>
37 #include <atalk/globals.h>
38
39 #include "afp_config.h"
40 #include "status.h"
41 #include "fork.h"
42 #include "uam_auth.h"
43 #include "afp_zeroconf.h"
44
45 #ifdef TRU64
46 #include <sys/security.h>
47 #include <prot.h>
48 #include <sia.h>
49
50 static int argc = 0;
51 static char **argv = NULL;
52 #endif /* TRU64 */
53
54 #define AFP_LISTENERS 32
55 #define FDSET_SAFETY  5
56
57 unsigned char   nologin = 0;
58 struct afp_options default_options;
59 static AFPConfig *configs;
60 static server_child *server_children;
61 static sig_atomic_t reloadconfig = 0;
62 static sig_atomic_t gotsigchld = 0;
63
64 /* Two pointers to dynamic allocated arrays which store pollfds and associated data */
65 static struct pollfd *fdset;
66 static struct polldata *polldata;
67 static int fdset_size;          /* current allocated size */
68 static int fdset_used;          /* number of used elements */
69 static int disasociated_ipc_fd; /* disasociated sessions uses this fd for IPC */
70
71 #ifdef TRU64
72 void afp_get_cmdline( int *ac, char ***av)
73 {
74     *ac = argc;
75     *av = argv;
76 }
77 #endif /* TRU64 */
78
79 /* This is registered with atexit() */
80 static void afp_exit(void)
81 {
82     if (parent_or_child == 0)
83         /* Only do this in the parent */
84         server_unlock(default_options.pidfile);
85 }
86
87
88 /* ------------------
89    initialize fd set we are waiting for.
90 */
91 static void fd_set_listening_sockets(void)
92 {
93     AFPConfig   *config;
94
95     for (config = configs; config; config = config->next) {
96         if (config->fd < 0) /* for proxies */
97             continue;
98         fdset_add_fd(default_options.connections + AFP_LISTENERS + FDSET_SAFETY,
99                      &fdset,
100                      &polldata,
101                      &fdset_used,
102                      &fdset_size,
103                      config->fd,
104                      LISTEN_FD,
105                      config);
106     }
107
108     if (default_options.flags & OPTION_KEEPSESSIONS)
109         fdset_add_fd(default_options.connections + AFP_LISTENERS + FDSET_SAFETY,
110                      &fdset,
111                      &polldata,
112                      &fdset_used,
113                      &fdset_size,
114                      disasociated_ipc_fd,
115                      DISASOCIATED_IPC_FD,
116                      NULL);
117 }
118  
119 static void fd_reset_listening_sockets(void)
120 {
121     AFPConfig   *config;
122
123     for (config = configs; config; config = config->next) {
124         if (config->fd < 0) /* for proxies */
125             continue;
126         fdset_del_fd(&fdset, &polldata, &fdset_used, &fdset_size, config->fd);
127     }
128
129     if (default_options.flags & OPTION_KEEPSESSIONS)
130         fdset_del_fd(&fdset, &polldata, &fdset_used, &fdset_size, disasociated_ipc_fd);
131 }
132
133 /* ------------------ */
134 static void afp_goaway(int sig)
135 {
136         AFPConfig *config;
137
138 #ifndef NO_DDP
139     asp_kill(sig);
140 #endif /* ! NO_DDP */
141
142     switch( sig ) {
143
144     case SIGTERM:
145     case SIGQUIT:
146         switch (sig) {
147         case SIGTERM:
148             LOG(log_note, logtype_afpd, "AFP Server shutting down on SIGTERM");
149             break;
150         case SIGQUIT:
151             if (default_options.flags & OPTION_KEEPSESSIONS) {
152                 LOG(log_note, logtype_afpd, "AFP Server shutting down on SIGQUIT, NOT disconnecting clients");
153             } else {
154                 LOG(log_note, logtype_afpd, "AFP Server shutting down on SIGQUIT");
155                 sig = SIGTERM;
156             }
157             break;
158         }
159         if (server_children)
160             server_child_kill(server_children, CHILD_DSIFORK, sig);
161
162         for (config = configs; config; config = config->next)
163             if (config->server_cleanup)
164                 config->server_cleanup(config);
165         server_unlock(default_options.pidfile);
166         exit(0);
167         break;
168
169     case SIGUSR1 :
170         nologin++;
171         auth_unload();
172         LOG(log_info, logtype_afpd, "disallowing logins");        
173
174         if (server_children)
175             server_child_kill(server_children, CHILD_DSIFORK, sig);
176         break;
177
178     case SIGHUP :
179         /* w/ a configuration file, we can force a re-read if we want */
180         reloadconfig = 1;
181         break;
182
183     case SIGCHLD:
184         /* w/ a configuration file, we can force a re-read if we want */
185         gotsigchld = 1;
186         break;
187
188     default :
189         LOG(log_error, logtype_afpd, "afp_goaway: bad signal" );
190     }
191     return;
192 }
193
194 static void child_handler(void)
195 {
196     int fd;
197     int status, i;
198     pid_t pid;
199   
200 #ifndef WAIT_ANY
201 #define WAIT_ANY (-1)
202 #endif /* ! WAIT_ANY */
203
204     while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) > 0) {
205         for (i = 0; i < server_children->nforks; i++) {
206             if ((fd = server_child_remove(server_children, i, pid)) != -1) {
207                 fdset_del_fd(&fdset, &polldata, &fdset_used, &fdset_size, fd);        
208                 break;
209             }
210         }
211
212         if (WIFEXITED(status)) {
213             if (WEXITSTATUS(status))
214                 LOG(log_info, logtype_afpd, "child[%d]: exited %d", pid, WEXITSTATUS(status));
215             else
216                 LOG(log_info, logtype_afpd, "child[%d]: done", pid);
217         } else {
218             if (WIFSIGNALED(status))
219                 LOG(log_info, logtype_afpd, "child[%d]: killed by signal %d", pid, WTERMSIG(status));
220             else
221                 LOG(log_info, logtype_afpd, "child[%d]: died", pid);
222         }
223     }
224 }
225
226 static int setlimits(void)
227 {
228     struct rlimit rlim;
229
230     if (getrlimit(RLIMIT_NOFILE, &rlim) != 0) {
231         LOG(log_error, logtype_afpd, "setlimits: %s", strerror(errno));
232         exit(1);
233     }
234     if (rlim.rlim_cur != RLIM_INFINITY && rlim.rlim_cur < 65535) {
235         rlim.rlim_cur = 65535;
236         if (rlim.rlim_max != RLIM_INFINITY && rlim.rlim_max < 65535)
237             rlim.rlim_max = 65535;
238         if (setrlimit(RLIMIT_NOFILE, &rlim) != 0) {
239             LOG(log_error, logtype_afpd, "setlimits: %s", strerror(errno));
240             exit(1);
241         }
242     }
243     return 0;
244 }
245
246 int main(int ac, char **av)
247 {
248     AFPConfig           *config;
249     fd_set              rfds;
250     void                *ipc;
251     struct sigaction    sv;
252     sigset_t            sigs;
253     int                 ret;
254
255 #ifdef TRU64
256     argc = ac;
257     argv = av;
258     set_auth_parameters( ac, av );
259 #endif /* TRU64 */
260
261     /* Parse argv args and initialize default options */
262     afp_options_init(&default_options);
263     if (!afp_options_parse(ac, av, &default_options))
264         exit(EXITERR_CONF);
265
266     if (!(default_options.flags & OPTION_DEBUG) && (daemonize(0, 0) != 0))
267         exit(EXITERR_SYS);
268
269     switch(check_lockfile("afpd", default_options.pidfile)) {
270     case 0:
271         break;
272     default:
273         exit(EXITERR_SYS);
274     }
275
276     /* Log SIGBUS/SIGSEGV SBT */
277     fault_setup(NULL);
278
279     /* Default log setup: log to syslog */
280     set_processname("afpd");
281     setuplog("default log_note");
282
283     /* Save the user's current umask */
284     default_options.save_mask = umask( default_options.umask );
285
286     atexit(afp_exit);
287
288     /* install child handler for asp and dsi. we do this before afp_goaway
289      * as afp_goaway references stuff from here. 
290      * XXX: this should really be setup after the initial connections. */
291     if (!(server_children = server_child_alloc(default_options.connections,
292                             CHILD_NFORKS))) {
293         LOG(log_error, logtype_afpd, "main: server_child alloc: %s", strerror(errno) );
294         exit(EXITERR_SYS);
295     }
296
297     memset(&sv, 0, sizeof(sv));    
298     /* linux at least up to 2.4.22 send a SIGXFZ for vfat fs,
299        even if the file is open with O_LARGEFILE ! */
300 #ifdef SIGXFSZ
301     sv.sa_handler = SIG_IGN;
302     sigemptyset( &sv.sa_mask );
303     if (sigaction(SIGXFSZ, &sv, NULL ) < 0 ) {
304         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
305         exit(EXITERR_SYS);
306     }
307 #endif
308     
309     sv.sa_handler = afp_goaway; /* handler for all sigs */
310
311     sigemptyset( &sv.sa_mask );
312     sigaddset(&sv.sa_mask, SIGALRM);
313     sigaddset(&sv.sa_mask, SIGHUP);
314     sigaddset(&sv.sa_mask, SIGTERM);
315     sigaddset(&sv.sa_mask, SIGUSR1);
316     sigaddset(&sv.sa_mask, SIGQUIT);    
317     sv.sa_flags = SA_RESTART;
318     if ( sigaction( SIGCHLD, &sv, NULL ) < 0 ) {
319         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
320         exit(EXITERR_SYS);
321     }
322
323     sigemptyset( &sv.sa_mask );
324     sigaddset(&sv.sa_mask, SIGALRM);
325     sigaddset(&sv.sa_mask, SIGTERM);
326     sigaddset(&sv.sa_mask, SIGHUP);
327     sigaddset(&sv.sa_mask, SIGCHLD);
328     sigaddset(&sv.sa_mask, SIGQUIT);
329     sv.sa_flags = SA_RESTART;
330     if ( sigaction( SIGUSR1, &sv, NULL ) < 0 ) {
331         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
332         exit(EXITERR_SYS);
333     }
334
335     sigemptyset( &sv.sa_mask );
336     sigaddset(&sv.sa_mask, SIGALRM);
337     sigaddset(&sv.sa_mask, SIGTERM);
338     sigaddset(&sv.sa_mask, SIGUSR1);
339     sigaddset(&sv.sa_mask, SIGCHLD);
340     sigaddset(&sv.sa_mask, SIGQUIT);
341     sv.sa_flags = SA_RESTART;
342     if ( sigaction( SIGHUP, &sv, NULL ) < 0 ) {
343         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
344         exit(EXITERR_SYS);
345     }
346
347
348     sigemptyset( &sv.sa_mask );
349     sigaddset(&sv.sa_mask, SIGALRM);
350     sigaddset(&sv.sa_mask, SIGHUP);
351     sigaddset(&sv.sa_mask, SIGUSR1);
352     sigaddset(&sv.sa_mask, SIGCHLD);
353     sigaddset(&sv.sa_mask, SIGQUIT);
354     sv.sa_flags = SA_RESTART;
355     if ( sigaction( SIGTERM, &sv, NULL ) < 0 ) {
356         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
357         exit(EXITERR_SYS);
358     }
359
360     sigemptyset( &sv.sa_mask );
361     sigaddset(&sv.sa_mask, SIGALRM);
362     sigaddset(&sv.sa_mask, SIGHUP);
363     sigaddset(&sv.sa_mask, SIGUSR1);
364     sigaddset(&sv.sa_mask, SIGCHLD);
365     sigaddset(&sv.sa_mask, SIGTERM);
366     sv.sa_flags = SA_RESTART;
367     if (sigaction(SIGQUIT, &sv, NULL ) < 0 ) {
368         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
369         exit(EXITERR_SYS);
370     }
371
372     /* afpd.conf: not in config file: lockfile, connections, configfile
373      *            preference: command-line provides defaults.
374      *                        config file over-writes defaults.
375      *
376      * we also need to make sure that killing afpd during startup
377      * won't leave any lingering registered names around.
378      */
379
380     sigemptyset(&sigs);
381     sigaddset(&sigs, SIGALRM);
382     sigaddset(&sigs, SIGHUP);
383     sigaddset(&sigs, SIGUSR1);
384 #if 0
385     /* don't block SIGTERM */
386     sigaddset(&sigs, SIGTERM);
387 #endif
388     sigaddset(&sigs, SIGCHLD);
389
390     pthread_sigmask(SIG_BLOCK, &sigs, NULL);
391     if (!(configs = configinit(&default_options))) {
392         LOG(log_error, logtype_afpd, "main: no servers configured");
393         exit(EXITERR_CONF);
394     }
395     pthread_sigmask(SIG_UNBLOCK, &sigs, NULL);
396
397     /* Register CNID  */
398     cnid_init();
399
400     /* watch atp, dsi sockets and ipc parent/child file descriptor. */
401
402     if (default_options.flags & OPTION_KEEPSESSIONS) {
403         LOG(log_note, logtype_afpd, "Activating continous service");
404         disasociated_ipc_fd = ipc_server_uds(_PATH_AFP_IPC);
405     }
406
407     fd_set_listening_sockets();
408
409     /* set limits */
410     (void)setlimits();
411
412     afp_child_t *child;
413     int fd[2];  /* we only use one, but server_child_add expects [2] */
414     pid_t pid;
415     int saveerrno;
416
417     /* wait for an appleshare connection. parent remains in the loop
418      * while the children get handled by afp_over_{asp,dsi}.  this is
419      * currently vulnerable to a denial-of-service attack if a
420      * connection is made without an actual login attempt being made
421      * afterwards. establishing timeouts for logins is a possible 
422      * solution. */
423     while (1) {
424         LOG(log_maxdebug, logtype_afpd, "main: polling %i fds", fdset_used);
425         pthread_sigmask(SIG_UNBLOCK, &sigs, NULL);
426         ret = poll(fdset, fdset_used, -1);
427         pthread_sigmask(SIG_BLOCK, &sigs, NULL);
428         saveerrno = errno;
429
430         if (gotsigchld) {
431             gotsigchld = 0;
432             child_handler();
433             continue;
434         }
435
436         if (reloadconfig) {
437             nologin++;
438             auth_unload();
439             fd_reset_listening_sockets();
440
441             LOG(log_info, logtype_afpd, "re-reading configuration file");
442             for (config = configs; config; config = config->next)
443                 if (config->server_cleanup)
444                     config->server_cleanup(config);
445
446             /* configfree close atp socket used for DDP tickle, there's an issue
447              * with atp tid. */
448             configfree(configs, NULL);
449             if (!(configs = configinit(&default_options))) {
450                 LOG(log_error, logtype_afpd, "config re-read: no servers configured");
451                 exit(EXITERR_CONF);
452             }
453
454             fd_set_listening_sockets();
455
456             nologin = 0;
457             reloadconfig = 0;
458             errno = saveerrno;
459             continue;
460         }
461
462         if (ret == 0)
463             continue;
464         
465         if (ret < 0) {
466             if (errno == EINTR)
467                 continue;
468             LOG(log_error, logtype_afpd, "main: can't wait for input: %s", strerror(errno));
469             break;
470         }
471
472         for (int i = 0; i < fdset_used; i++) {
473             if (fdset[i].revents & (POLLIN | POLLERR | POLLHUP)) {
474                 switch (polldata[i].fdtype) {
475
476                 case LISTEN_FD:
477                     config = (AFPConfig *)polldata[i].data;
478                     /* config->server_start is afp_config.c:dsi_start() for DSI */
479                     if (child = config->server_start(config, configs, server_children)) {
480                         /* Add IPC fd to select fd set */
481                         fdset_add_fd(default_options.connections + AFP_LISTENERS + FDSET_SAFETY,
482                                      &fdset,
483                                      &polldata,
484                                      &fdset_used,
485                                      &fdset_size,
486                                      child->ipc_fds[0],
487                                      IPC_FD,
488                                      child);
489                     }
490                     break;
491
492                 case IPC_FD:
493                     child = (afp_child_t *)polldata[i].data;
494                     LOG(log_debug, logtype_afpd, "main: IPC request from child[%u]", child->pid);
495
496                     if (ipc_server_read(server_children, child->ipc_fds[0]) != 0) {
497                         fdset_del_fd(&fdset, &polldata, &fdset_used, &fdset_size, child->ipc_fds[0]);
498                         close(child->ipc_fds[0]);
499                         child->ipc_fds[0] = -1;
500                         if ((default_options.flags & OPTION_KEEPSESSIONS) && child->disasociated) {
501                             LOG(log_note, logtype_afpd, "main: removing reattached child[%u]", child->pid);
502                             server_child_remove(server_children, CHILD_DSIFORK, child->pid);
503                         }
504                     }
505                     break;
506
507                 case DISASOCIATED_IPC_FD:
508                     LOG(log_debug, logtype_afpd, "main: IPC reconnect request");
509                     if ((fd[0] = accept(disasociated_ipc_fd, NULL, NULL)) == -1) {
510                         LOG(log_error, logtype_afpd, "main: accept: %s", strerror(errno));
511                         break;
512                     }
513                     if (readt(fd[0], &pid, sizeof(pid_t), 0, 1) != sizeof(pid_t)) {
514                         LOG(log_error, logtype_afpd, "main: readt: %s", strerror(errno));
515                         close(fd[0]);
516                         break;
517                     }
518                     LOG(log_note, logtype_afpd, "main: IPC reconnect from pid [%u]", pid);
519                     if ((child = server_child_add(server_children, CHILD_DSIFORK, pid, fd)) == NULL) {
520                         LOG(log_error, logtype_afpd, "main: server_child_add");
521                         close(fd[0]);
522                         break;
523                     }
524                     child->disasociated = 1;
525                     fdset_add_fd(default_options.connections + AFP_LISTENERS + FDSET_SAFETY,
526                                  &fdset,
527                                  &polldata,
528                                  &fdset_used,
529                                  &fdset_size,
530                                  fd[0],
531                                  IPC_FD,
532                                  child);
533                     break;
534
535                 default:
536                     LOG(log_debug, logtype_afpd, "main: IPC request for unknown type");
537                     break;
538                 } /* switch */
539             }  /* if */
540         } /* for (i)*/
541     } /* while (1) */
542
543     return 0;
544 }