]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/main.c
Don't realloc connection handling array.
[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     /* Log SIGBUS/SIGSEGV SBT */
262     fault_setup(NULL);
263
264     /* Default log setup: log to syslog */
265     setuplog("default log_note");
266
267     afp_options_init(&default_options);
268     if (!afp_options_parse(ac, av, &default_options))
269         exit(EXITERR_CONF);
270
271     /* Save the user's current umask for use with CNID (and maybe some 
272      * other things, too). */
273     default_options.save_mask = umask( default_options.umask );
274
275     switch(server_lock("afpd", default_options.pidfile,
276                        default_options.flags & OPTION_DEBUG)) {
277     case -1: /* error */
278         exit(EXITERR_SYS);
279     case 0: /* child */
280         break;
281     default: /* server */
282         exit(0);
283     }
284     atexit(afp_exit);
285
286     /* install child handler for asp and dsi. we do this before afp_goaway
287      * as afp_goaway references stuff from here. 
288      * XXX: this should really be setup after the initial connections. */
289     if (!(server_children = server_child_alloc(default_options.connections,
290                             CHILD_NFORKS))) {
291         LOG(log_error, logtype_afpd, "main: server_child alloc: %s", strerror(errno) );
292         exit(EXITERR_SYS);
293     }
294
295     memset(&sv, 0, sizeof(sv));    
296     /* linux at least up to 2.4.22 send a SIGXFZ for vfat fs,
297        even if the file is open with O_LARGEFILE ! */
298 #ifdef SIGXFSZ
299     sv.sa_handler = SIG_IGN;
300     sigemptyset( &sv.sa_mask );
301     if (sigaction(SIGXFSZ, &sv, NULL ) < 0 ) {
302         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
303         exit(EXITERR_SYS);
304     }
305 #endif
306     
307     sv.sa_handler = afp_goaway; /* handler for all sigs */
308
309     sigemptyset( &sv.sa_mask );
310     sigaddset(&sv.sa_mask, SIGALRM);
311     sigaddset(&sv.sa_mask, SIGHUP);
312     sigaddset(&sv.sa_mask, SIGTERM);
313     sigaddset(&sv.sa_mask, SIGUSR1);
314     sigaddset(&sv.sa_mask, SIGQUIT);    
315     sv.sa_flags = SA_RESTART;
316     if ( sigaction( SIGCHLD, &sv, NULL ) < 0 ) {
317         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
318         exit(EXITERR_SYS);
319     }
320
321     sigemptyset( &sv.sa_mask );
322     sigaddset(&sv.sa_mask, SIGALRM);
323     sigaddset(&sv.sa_mask, SIGTERM);
324     sigaddset(&sv.sa_mask, SIGHUP);
325     sigaddset(&sv.sa_mask, SIGCHLD);
326     sigaddset(&sv.sa_mask, SIGQUIT);
327     sv.sa_flags = SA_RESTART;
328     if ( sigaction( SIGUSR1, &sv, NULL ) < 0 ) {
329         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
330         exit(EXITERR_SYS);
331     }
332
333     sigemptyset( &sv.sa_mask );
334     sigaddset(&sv.sa_mask, SIGALRM);
335     sigaddset(&sv.sa_mask, SIGTERM);
336     sigaddset(&sv.sa_mask, SIGUSR1);
337     sigaddset(&sv.sa_mask, SIGCHLD);
338     sigaddset(&sv.sa_mask, SIGQUIT);
339     sv.sa_flags = SA_RESTART;
340     if ( sigaction( SIGHUP, &sv, NULL ) < 0 ) {
341         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
342         exit(EXITERR_SYS);
343     }
344
345
346     sigemptyset( &sv.sa_mask );
347     sigaddset(&sv.sa_mask, SIGALRM);
348     sigaddset(&sv.sa_mask, SIGHUP);
349     sigaddset(&sv.sa_mask, SIGUSR1);
350     sigaddset(&sv.sa_mask, SIGCHLD);
351     sigaddset(&sv.sa_mask, SIGQUIT);
352     sv.sa_flags = SA_RESTART;
353     if ( sigaction( SIGTERM, &sv, NULL ) < 0 ) {
354         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
355         exit(EXITERR_SYS);
356     }
357
358     sigemptyset( &sv.sa_mask );
359     sigaddset(&sv.sa_mask, SIGALRM);
360     sigaddset(&sv.sa_mask, SIGHUP);
361     sigaddset(&sv.sa_mask, SIGUSR1);
362     sigaddset(&sv.sa_mask, SIGCHLD);
363     sigaddset(&sv.sa_mask, SIGTERM);
364     sv.sa_flags = SA_RESTART;
365     if (sigaction(SIGQUIT, &sv, NULL ) < 0 ) {
366         LOG(log_error, logtype_afpd, "main: sigaction: %s", strerror(errno) );
367         exit(EXITERR_SYS);
368     }
369
370     /* afpd.conf: not in config file: lockfile, connections, configfile
371      *            preference: command-line provides defaults.
372      *                        config file over-writes defaults.
373      *
374      * we also need to make sure that killing afpd during startup
375      * won't leave any lingering registered names around.
376      */
377
378     sigemptyset(&sigs);
379     sigaddset(&sigs, SIGALRM);
380     sigaddset(&sigs, SIGHUP);
381     sigaddset(&sigs, SIGUSR1);
382 #if 0
383     /* don't block SIGTERM */
384     sigaddset(&sigs, SIGTERM);
385 #endif
386     sigaddset(&sigs, SIGCHLD);
387
388     pthread_sigmask(SIG_BLOCK, &sigs, NULL);
389     if (!(configs = configinit(&default_options))) {
390         LOG(log_error, logtype_afpd, "main: no servers configured");
391         exit(EXITERR_CONF);
392     }
393     pthread_sigmask(SIG_UNBLOCK, &sigs, NULL);
394
395     /* Register CNID  */
396     cnid_init();
397
398     /* watch atp, dsi sockets and ipc parent/child file descriptor. */
399
400     if (default_options.flags & OPTION_KEEPSESSIONS) {
401         LOG(log_note, logtype_afpd, "Activating continous service");
402         disasociated_ipc_fd = ipc_server_uds(_PATH_AFP_IPC);
403     }
404
405     fd_set_listening_sockets();
406
407     /* set limits */
408     (void)setlimits();
409
410     afp_child_t *child;
411     int fd[2];  /* we only use one, but server_child_add expects [2] */
412     pid_t pid;
413     int saveerrno;
414
415     /* wait for an appleshare connection. parent remains in the loop
416      * while the children get handled by afp_over_{asp,dsi}.  this is
417      * currently vulnerable to a denial-of-service attack if a
418      * connection is made without an actual login attempt being made
419      * afterwards. establishing timeouts for logins is a possible 
420      * solution. */
421     while (1) {
422         LOG(log_maxdebug, logtype_afpd, "main: polling %i fds", fdset_used);
423         pthread_sigmask(SIG_UNBLOCK, &sigs, NULL);
424         ret = poll(fdset, fdset_used, -1);
425         pthread_sigmask(SIG_BLOCK, &sigs, NULL);
426         saveerrno = errno;
427
428         if (gotsigchld) {
429             gotsigchld = 0;
430             child_handler();
431             continue;
432         }
433
434         if (reloadconfig) {
435             nologin++;
436             auth_unload();
437             fd_reset_listening_sockets();
438
439             LOG(log_info, logtype_afpd, "re-reading configuration file");
440             for (config = configs; config; config = config->next)
441                 if (config->server_cleanup)
442                     config->server_cleanup(config);
443
444             /* configfree close atp socket used for DDP tickle, there's an issue
445              * with atp tid. */
446             configfree(configs, NULL);
447             if (!(configs = configinit(&default_options))) {
448                 LOG(log_error, logtype_afpd, "config re-read: no servers configured");
449                 exit(EXITERR_CONF);
450             }
451
452             fd_set_listening_sockets();
453
454             nologin = 0;
455             reloadconfig = 0;
456             errno = saveerrno;
457             continue;
458         }
459
460         if (ret == 0)
461             continue;
462         
463         if (ret < 0) {
464             if (errno == EINTR)
465                 continue;
466             LOG(log_error, logtype_afpd, "main: can't wait for input: %s", strerror(errno));
467             break;
468         }
469
470         for (int i = 0; i < fdset_used; i++) {
471             if (fdset[i].revents & (POLLIN | POLLERR | POLLHUP)) {
472                 switch (polldata[i].fdtype) {
473
474                 case LISTEN_FD:
475                     config = (AFPConfig *)polldata[i].data;
476                     /* config->server_start is afp_config.c:dsi_start() for DSI */
477                     if (child = config->server_start(config, configs, server_children)) {
478                         /* Add IPC fd to select fd set */
479                         fdset_add_fd(default_options.connections + AFP_LISTENERS + FDSET_SAFETY,
480                                      &fdset,
481                                      &polldata,
482                                      &fdset_used,
483                                      &fdset_size,
484                                      child->ipc_fds[0],
485                                      IPC_FD,
486                                      child);
487                     }
488                     break;
489
490                 case IPC_FD:
491                     child = (afp_child_t *)polldata[i].data;
492                     LOG(log_debug, logtype_afpd, "main: IPC request from child[%u]", child->pid);
493
494                     if (ipc_server_read(server_children, child->ipc_fds[0]) != 0) {
495                         fdset_del_fd(&fdset, &polldata, &fdset_used, &fdset_size, child->ipc_fds[0]);
496                         close(child->ipc_fds[0]);
497                         child->ipc_fds[0] = -1;
498                         if ((default_options.flags & OPTION_KEEPSESSIONS) && child->disasociated) {
499                             LOG(log_note, logtype_afpd, "main: removing reattached child[%u]", child->pid);
500                             server_child_remove(server_children, CHILD_DSIFORK, child->pid);
501                         }
502                     }
503                     break;
504
505                 case DISASOCIATED_IPC_FD:
506                     LOG(log_debug, logtype_afpd, "main: IPC reconnect request");
507                     if ((fd[0] = accept(disasociated_ipc_fd, NULL, NULL)) == -1) {
508                         LOG(log_error, logtype_afpd, "main: accept: %s", strerror(errno));
509                         break;
510                     }
511                     if (readt(fd[0], &pid, sizeof(pid_t), 0, 1) != sizeof(pid_t)) {
512                         LOG(log_error, logtype_afpd, "main: readt: %s", strerror(errno));
513                         close(fd[0]);
514                         break;
515                     }
516                     LOG(log_note, logtype_afpd, "main: IPC reconnect from pid [%u]", pid);
517                     if ((child = server_child_add(server_children, CHILD_DSIFORK, pid, fd)) == NULL) {
518                         LOG(log_error, logtype_afpd, "main: server_child_add");
519                         close(fd[0]);
520                         break;
521                     }
522                     child->disasociated = 1;
523                     fdset_add_fd(default_options.connections + AFP_LISTENERS + FDSET_SAFETY,
524                                  &fdset,
525                                  &polldata,
526                                  &fdset_used,
527                                  &fdset_size,
528                                  fd[0],
529                                  IPC_FD,
530                                  child);
531                     break;
532
533                 default:
534                     LOG(log_debug, logtype_afpd, "main: IPC request for unknown type");
535                     break;
536                 } /* switch */
537             }  /* if */
538         } /* for (i)*/
539     } /* while (1) */
540
541     return 0;
542 }