]> arthur.barton.de Git - netatalk.git/blob - etc/cnid_dbd/cnid_metad.c
Allow 4096 volumes but use a counter of used volumes to limit array searching
[netatalk.git] / etc / cnid_dbd / cnid_metad.c
1 /*
2  * Copyright (C) Joerg Lenneis 2003
3  * Copyright (C) Frank Lahm 2009, 2010
4  *
5  * All Rights Reserved.  See COPYING.
6  */
7
8 /* 
9    cnid_dbd metadaemon to start up cnid_dbd upon request from afpd.
10    Here is how it works:
11    
12                        via TCP socket
13    1.       afpd          ------->        cnid_metad
14
15                    via UNIX domain socket
16    2.   cnid_metad        ------->         cnid_dbd
17
18                     passes afpd client fd
19    3.   cnid_metad        ------->         cnid_dbd
20
21    Result:
22                        via TCP socket
23    4.       afpd          ------->         cnid_dbd
24
25    cnid_metad and cnid_dbd have been converted to non-blocking IO in 2010.
26  */
27
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif /* HAVE_CONFIG_H */
32
33 #include <unistd.h>
34 #undef __USE_GNU
35
36 #include <stdlib.h>
37 #include <sys/param.h>
38 #include <errno.h>
39 #include <string.h>
40 #include <signal.h>
41 #include <sys/types.h>
42 #include <sys/time.h>
43 #include <sys/wait.h>
44 #include <sys/uio.h>
45 #include <sys/un.h>
46 #define _XPG4_2 1
47 #include <sys/socket.h>
48 #include <stdio.h>
49 #include <time.h>
50
51 #ifndef WEXITSTATUS
52 #define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
53 #endif /* ! WEXITSTATUS */
54 #ifndef WIFEXITED
55 #define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
56 #endif /* ! WIFEXITED */
57 #ifndef WIFSTOPPED
58 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
59 #endif
60
61 #ifndef WIFSIGNALED
62 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status))
63 #endif
64 #ifndef WTERMSIG
65 #define WTERMSIG(status)      ((status) & 0x7f)
66 #endif
67
68 /* functions for username and group */
69 #include <pwd.h>
70 #include <grp.h>
71
72 /* FIXME */
73 #ifdef linux
74 #ifndef USE_SETRESUID
75 #define USE_SETRESUID 1
76 #define SWITCH_TO_GID(gid)  ((setresgid(gid,gid,gid) < 0 || setgid(gid) < 0) ? -1 : 0)
77 #define SWITCH_TO_UID(uid)  ((setresuid(uid,uid,uid) < 0 || setuid(uid) < 0) ? -1 : 0)
78 #endif  /* USE_SETRESUID */
79 #else   /* ! linux */
80 #ifndef USE_SETEUID
81 #define USE_SETEUID 1
82 #define SWITCH_TO_GID(gid)  ((setegid(gid) < 0 || setgid(gid) < 0) ? -1 : 0)
83 #define SWITCH_TO_UID(uid)  ((setuid(uid) < 0 || seteuid(uid) < 0 || setuid(uid) < 0) ? -1 : 0)
84 #endif  /* USE_SETEUID */
85 #endif  /* linux */
86
87 #include <atalk/util.h>
88 #include <atalk/logger.h>
89 #include <atalk/cnid_dbd_private.h>
90 #include <atalk/paths.h>
91 #include <atalk/volinfo.h>
92
93 #include "usockfd.h"
94
95 #define DBHOME        ".AppleDB"
96 #define DBHOMELEN    8
97
98 static int srvfd;
99 static int rqstfd;
100 static volatile sig_atomic_t sigchild = 0;
101 static uint maxvol;
102
103 #define MAXSPAWN   3                   /* Max times respawned in.. */
104 #define TESTTIME   42                  /* this much seconds apfd client tries to  *
105                                         * to reconnect every 5 secondes, catch it */
106 #define MAXVOLS    4096
107 #define DEFAULTHOST  "localhost"
108 #define DEFAULTPORT  "4700"
109
110 struct server {
111     struct volinfo *volinfo;
112     pid_t pid;
113     time_t tm;                    /* When respawned last */
114     int count;                    /* Times respawned in the last TESTTIME secondes */
115     int control_fd;               /* file descriptor to child cnid_dbd process */
116 };
117
118 static struct server srv[MAXVOLS];
119
120 /* Default logging config: log to syslog with level log_note */
121 static char logconfig[MAXPATHLEN + 21 + 1] = "default log_note";
122
123 static void daemon_exit(int i)
124 {
125     server_unlock(_PATH_CNID_METAD_LOCK);
126     exit(i);
127 }
128
129 /* ------------------ */
130 static void sigterm_handler(int sig)
131 {
132     switch( sig ) {
133     case SIGTERM :
134         LOG(log_info, logtype_afpd, "shutting down on signal %d", sig );
135         break;
136     default :
137         LOG(log_error, logtype_afpd, "unexpected signal: %d", sig);
138     }
139     daemon_exit(0);
140 }
141
142 static struct server *test_usockfn(struct volinfo *volinfo)
143 {
144     int i;
145     for (i = 0; i < maxvol; i++) {
146         if ((srv[i].volinfo) && (strcmp(srv[i].volinfo->v_path, volinfo->v_path) == 0)) {
147             return &srv[i];
148         }
149     }
150     return NULL;
151 }
152
153 /* -------------------- */
154 static int maybe_start_dbd(char *dbdpn, struct volinfo *volinfo)
155 {
156     pid_t pid;
157     struct server *up;
158     int sv[2];
159     int i;
160     time_t t;
161     char buf1[8];
162     char buf2[8];
163     char *volpath = volinfo->v_path;
164
165     LOG(log_debug, logtype_cnid, "maybe_start_dbd: Volume: \"%s\"", volpath);
166
167     up = test_usockfn(volinfo);
168     if (up && up->pid) {
169         /* we already have a process, send our fd */
170         if (send_fd(up->control_fd, rqstfd) < 0) {
171             /* FIXME */
172             return -1;
173         }
174         return 0;
175     }
176
177     LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: no cnid_dbd for that volume yet");
178
179     time(&t);
180     if (!up) {
181         /* find an empty slot (i < maxvol) or the first free slot (i == maxvol)*/
182         for (i = 0; i <= maxvol; i++) {
183             if (srv[i].volinfo == NULL && i < MAXVOLS) {
184                 up = &srv[i];
185                 up->volinfo = volinfo;
186                 retainvolinfo(volinfo);
187                 up->tm = t;
188                 up->count = 0;
189                 if (i == maxvol)
190                     maxvol++;
191                 break;
192             }
193         }
194         if (!up) {
195             LOG(log_error, logtype_cnid, "no free slot for cnid_dbd child. Configured maximum: %d. Do you have so many volumes?", MAXVOLS);
196             return -1;
197         }
198     } else {
199         /* we have a slot but no process, check for respawn too fast */
200         if ( (t < (up->tm + TESTTIME)) /* We're in the respawn time window */
201              &&
202              (up->count > MAXSPAWN) ) { /* ...and already tried to fork too often */
203             LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: respawn too fast just exiting");
204             return -1; /* just exit, dont sleep, because we might have work to do for another client  */
205         }
206         if ( t >= (up->tm + TESTTIME) ) { /* out of respawn too fast windows reset the count */
207             LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: respawn window ended");
208             up->tm = t;
209             up->count = 0;
210         }
211         up->count++;
212         LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: respawn count now is: %u", up->count);
213         if (up->count > MAXSPAWN) {
214             /* We spawned too fast. From now until the first time we tried + TESTTIME seconds
215                we will just return -1 above */
216             LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: reached MAXSPAWN threshhold");
217         }
218     }
219
220     /* 
221        Create socketpair for comm between parent and child.
222        We use it to pass fds from connecting afpd processes to our
223        cnid_dbd child via fd passing.
224     */
225     if (socketpair(PF_UNIX, SOCK_STREAM, 0, sv) < 0) {
226         LOG(log_error, logtype_cnid, "error in socketpair: %s", strerror(errno));
227         return -1;
228     }
229
230     if ((pid = fork()) < 0) {
231         LOG(log_error, logtype_cnid, "error in fork: %s", strerror(errno));
232         return -1;
233     }
234     if (pid == 0) {
235         int ret;
236         /*
237          *  Child. Close descriptors and start the daemon. If it fails
238          *  just log it. The client process will fail connecting
239          *  afterwards anyway.
240          */
241
242         close(srvfd);
243         close(sv[0]);
244
245         for (i = 0; i < MAXVOLS; i++) {
246             if (srv[i].pid && up != &srv[i]) {
247                 close(srv[i].control_fd);
248             }
249         }
250
251         sprintf(buf1, "%i", sv[1]);
252         sprintf(buf2, "%i", rqstfd);
253
254         if (up->count == MAXSPAWN) {
255             /* there's a pb with the db inform child
256              * it will run recover, delete the db whatever
257              */
258             LOG(log_error, logtype_cnid, "try with -d %s", up->volinfo->v_path);
259             ret = execlp(dbdpn, dbdpn, "-d", volpath, buf1, buf2, logconfig, NULL);
260         }
261         else {
262             ret = execlp(dbdpn, dbdpn, volpath, buf1, buf2, logconfig, NULL);
263         }
264         /* Yikes! We're still here, so exec failed... */
265         LOG(log_error, logtype_cnid, "Fatal error in exec: %s", strerror(errno));
266         daemon_exit(0);
267     }
268     /*
269      *  Parent.
270      */
271     up->pid = pid;
272     close(sv[1]);
273     up->control_fd = sv[0];
274     return 0;
275 }
276
277 /* ------------------ */
278 static int set_dbdir(char *dbdir)
279 {
280     int len;
281     struct stat st;
282
283     len = strlen(dbdir);
284
285     if (stat(dbdir, &st) < 0 && mkdir(dbdir, 0755) < 0) {
286         LOG(log_error, logtype_cnid, "set_dbdir: mkdir failed for %s", dbdir);
287         return -1;
288     }
289
290     if (dbdir[len - 1] != '/') {
291         strcat(dbdir, "/");
292         len++;
293     }
294     strcpy(dbdir + len, DBHOME);
295     if (stat(dbdir, &st) < 0 && mkdir(dbdir, 0755 ) < 0) {
296         LOG(log_error, logtype_cnid, "set_dbdir: mkdir failed for %s", dbdir);
297         return -1;
298     }
299     return 0;
300 }
301
302 /* ------------------ */
303 static uid_t user_to_uid (char *username)
304 {
305     struct passwd *this_passwd;
306
307     /* check for anything */
308     if ( !username || strlen ( username ) < 1 ) return 0;
309
310     /* grab the /etc/passwd record relating to username */
311     this_passwd = getpwnam ( username );
312
313     /* return false if there is no structure returned */
314     if (this_passwd == NULL) return 0;
315
316     /* return proper uid */
317     return this_passwd->pw_uid;
318
319 }
320
321 /* ------------------ */
322 static gid_t group_to_gid ( char *group)
323 {
324     struct group *this_group;
325
326     /* check for anything */
327     if ( !group || strlen ( group ) < 1 ) return 0;
328
329     /* grab the /etc/groups record relating to group */
330     this_group = getgrnam ( group );
331
332     /* return false if there is no structure returned */
333     if (this_group == NULL) return 0;
334
335     /* return proper gid */
336     return this_group->gr_gid;
337
338 }
339
340 /* ------------------ */
341 static void catch_child(int sig _U_) 
342 {
343     sigchild = 1;
344 }
345
346 /* ----------------------- */
347 static void set_signal(void)
348 {
349     struct sigaction sv;
350     sigset_t set;
351
352     memset(&sv, 0, sizeof(sv));
353
354     /* Catch SIGCHLD */
355     sv.sa_handler = catch_child;
356     sv.sa_flags = SA_NOCLDSTOP;
357     sigemptyset(&sv.sa_mask);
358     if (sigaction(SIGCHLD, &sv, NULL) < 0) {
359         LOG(log_error, logtype_cnid, "cnid_metad: sigaction: %s", strerror(errno));
360         daemon_exit(EXITERR_SYS);
361     }
362
363     /* Catch SIGTERM */
364     sv.sa_handler = sigterm_handler;
365     sigfillset(&sv.sa_mask );
366     if (sigaction(SIGTERM, &sv, NULL ) < 0 ) {
367         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
368         daemon_exit(EXITERR_SYS);
369     }
370
371     /* Ignore the rest */
372     sv.sa_handler = SIG_IGN;
373     sigemptyset(&sv.sa_mask );
374     if (sigaction(SIGALRM, &sv, NULL ) < 0 ) {
375         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
376         daemon_exit(EXITERR_SYS);
377     }
378     sv.sa_handler = SIG_IGN;
379     sigemptyset(&sv.sa_mask );
380     if (sigaction(SIGHUP, &sv, NULL ) < 0 ) {
381         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
382         daemon_exit(EXITERR_SYS);
383     }
384     sv.sa_handler = SIG_IGN;
385     sigemptyset(&sv.sa_mask );
386     if (sigaction(SIGUSR1, &sv, NULL ) < 0 ) {
387         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
388         daemon_exit(EXITERR_SYS);
389     }
390     sv.sa_handler = SIG_IGN;
391     sigemptyset(&sv.sa_mask );
392     if (sigaction(SIGUSR2, &sv, NULL ) < 0 ) {
393         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
394         daemon_exit(EXITERR_SYS);
395     }
396     sv.sa_handler = SIG_IGN;
397     sigemptyset(&sv.sa_mask );
398     if (sigaction(SIGPIPE, &sv, NULL ) < 0 ) {
399         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
400         daemon_exit(EXITERR_SYS);
401     }
402
403     /* block everywhere but in pselect */
404     sigemptyset(&set);
405     sigaddset(&set, SIGCHLD);
406     sigprocmask(SIG_BLOCK, &set, NULL);
407 }
408
409 /* ------------------ */
410 int main(int argc, char *argv[])
411 {
412     char  volpath[MAXPATHLEN + 1];
413     int   len, actual_len;
414     pid_t pid;
415     int   status;
416     char  *dbdpn = _PATH_CNID_DBD;
417     char  *host = DEFAULTHOST;
418     char  *port = DEFAULTPORT;
419     int    i;
420     int    cc;
421     uid_t  uid = 0;
422     gid_t  gid = 0;
423     int    err = 0;
424     int    debug = 0;
425     int    ret;
426     char   *loglevel = NULL;
427     char   *logfile  = NULL;
428     sigset_t set;
429     struct volinfo *volinfo;
430
431     set_processname("cnid_metad");
432
433     while (( cc = getopt( argc, argv, "ds:p:h:u:g:l:f:")) != -1 ) {
434         switch (cc) {
435         case 'd':
436             debug = 1;
437             break;
438         case 'h':
439             host = strdup(optarg);
440             break;
441         case 'u':
442             uid = user_to_uid (optarg);
443             if (!uid) {
444                 LOG(log_error, logtype_cnid, "main: bad user %s", optarg);
445                 err++;
446             }
447             break;
448         case 'g':
449             gid =group_to_gid (optarg);
450             if (!gid) {
451                 LOG(log_error, logtype_cnid, "main: bad group %s", optarg);
452                 err++;
453             }
454             break;
455         case 'p':
456             port = strdup(optarg);
457             break;
458         case 's':
459             dbdpn = strdup(optarg);
460             break;
461         case 'l':
462             loglevel = strdup(optarg);
463             break;
464         case 'f':
465             logfile = strdup(optarg);
466             break;
467         default:
468             err++;
469             break;
470         }
471     }
472
473     if (loglevel) {
474         strlcpy(logconfig + 8, loglevel, 13);
475         free(loglevel);
476         strcat(logconfig, " ");
477     }
478     if (logfile) {
479         strlcat(logconfig, logfile, MAXPATHLEN);
480         free(logfile);
481     }
482     setuplog(logconfig);
483
484     if (err) {
485         LOG(log_error, logtype_cnid, "main: bad arguments");
486         daemon_exit(1);
487     }
488
489     /* Check PID lockfile and become a daemon */
490     switch(server_lock("cnid_metad", _PATH_CNID_METAD_LOCK, debug)) {
491     case -1: /* error */
492         daemon_exit(EXITERR_SYS);
493     case 0: /* child */
494         break;
495     default: /* server */
496         exit(0);
497     }
498
499     if ((srvfd = tsockfd_create(host, port, 10)) < 0)
500         daemon_exit(1);
501
502     /* switch uid/gid */
503     if (uid || gid) {
504         LOG(log_debug, logtype_cnid, "Setting uid/gid to %i/%i", uid, gid);
505         if (gid) {
506             if (SWITCH_TO_GID(gid) < 0) {
507                 LOG(log_info, logtype_cnid, "unable to switch to group %d", gid);
508                 daemon_exit(1);
509             }
510         }
511         if (uid) {
512             if (SWITCH_TO_UID(uid) < 0) {
513                 LOG(log_info, logtype_cnid, "unable to switch to user %d", uid);
514                 daemon_exit(1);
515             }
516         }
517     }
518
519     set_signal();
520
521     sigemptyset(&set);
522     sigprocmask(SIG_SETMASK, NULL, &set);
523     sigdelset(&set, SIGCHLD);
524
525     while (1) {
526         rqstfd = usockfd_check(srvfd, &set);
527         /* Collect zombie processes and log what happened to them */
528         if (sigchild) while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
529             for (i = 0; i < maxvol; i++) {
530                 if (srv[i].pid == pid) {
531                     srv[i].pid = 0;
532                     close(srv[i].control_fd);
533                     break;
534                 }
535             }
536             if (WIFEXITED(status)) {
537                 LOG(log_info, logtype_cnid, "cnid_dbd pid %i exited with exit code %i",
538                     pid, WEXITSTATUS(status));
539             }
540             else if (WIFSIGNALED(status)) {
541                 LOG(log_info, logtype_cnid, "cnid_dbd pid %i exited with signal %i",
542                     pid, WTERMSIG(status));
543             }
544             sigchild = 0;
545         }
546         if (rqstfd <= 0)
547             continue;
548
549         ret = readt(rqstfd, &len, sizeof(int), 1, 4);
550
551         if (!ret) {
552             /* already close */
553             goto loop_end;
554         }
555         else if (ret < 0) {
556             LOG(log_severe, logtype_cnid, "error read: %s", strerror(errno));
557             goto loop_end;
558         }
559         else if (ret != sizeof(int)) {
560             LOG(log_error, logtype_cnid, "short read: got %d", ret);
561             goto loop_end;
562         }
563         /*
564          *  checks for buffer overruns. The client libatalk side does it too
565          *  before handing the dir path over but who trusts clients?
566          */
567         if (!len || len +DBHOMELEN +2 > MAXPATHLEN) {
568             LOG(log_error, logtype_cnid, "wrong len parameter: %d", len);
569             goto loop_end;
570         }
571
572         actual_len = readt(rqstfd, volpath, len, 1, 5);
573         if (actual_len < 0) {
574             LOG(log_severe, logtype_cnid, "Read(2) error : %s", strerror(errno));
575             goto loop_end;
576         }
577         if (actual_len != len) {
578             LOG(log_error, logtype_cnid, "error/short read (dir): %s", strerror(errno));
579             goto loop_end;
580         }
581         volpath[len] = '\0';
582
583         /* Load .volinfo file */
584         if ((volinfo = allocvolinfo(volpath)) == NULL) {
585             LOG(log_severe, logtype_cnid, "allocvolinfo(\"%s\"): %s",
586                 volpath, strerror(errno));
587             goto loop_end;
588         }
589
590         if (set_dbdir(volinfo->v_dbpath) < 0) {
591             goto loop_end;
592         }
593
594         maybe_start_dbd(dbdpn, volinfo);
595
596         (void)closevolinfo(volinfo);
597
598     loop_end:
599         close(rqstfd);
600     }
601 }