]> arthur.barton.de Git - netatalk.git/blob - etc/cnid_dbd/cnid_metad.c
Merge master
[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 #include <atalk/compat.h>
93
94 #include "usockfd.h"
95
96 #define DBHOME        ".AppleDB"
97 #define DBHOMELEN    8
98
99 static int srvfd;
100 static int rqstfd;
101 static volatile sig_atomic_t sigchild = 0;
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    512
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 < MAXVOLS; 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 */
182         for (i = 0; i < MAXVOLS; i++) {
183             if (srv[i].volinfo == NULL) {
184                 up = &srv[i];
185                 up->volinfo = volinfo;
186                 retainvolinfo(volinfo);
187                 up->tm = t;
188                 up->count = 0;
189                 break;
190             }
191         }
192         if (!up) {
193             LOG(log_error, logtype_cnid, "no free slot for cnid_dbd child. Configured maximum: %d. Do you have so many volumes?", MAXVOLS);
194             return -1;
195         }
196     } else {
197         /* we have a slot but no process, check for respawn too fast */
198         if ( (t < (up->tm + TESTTIME)) /* We're in the respawn time window */
199              &&
200              (up->count > MAXSPAWN) ) { /* ...and already tried to fork too often */
201             LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: respawn too fast just exiting");
202             return -1; /* just exit, dont sleep, because we might have work to do for another client  */
203         }
204         if ( t >= (up->tm + TESTTIME) ) { /* out of respawn too fast windows reset the count */
205             LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: respawn window ended");
206             up->tm = t;
207             up->count = 0;
208         }
209         up->count++;
210         LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: respawn count now is: %u", up->count);
211         if (up->count > MAXSPAWN) {
212             /* We spawned too fast. From now until the first time we tried + TESTTIME seconds
213                we will just return -1 above */
214             LOG(log_maxdebug, logtype_cnid, "maybe_start_dbd: reached MAXSPAWN threshhold");
215         }
216     }
217
218     /* 
219        Create socketpair for comm between parent and child.
220        We use it to pass fds from connecting afpd processes to our
221        cnid_dbd child via fd passing.
222     */
223     if (socketpair(PF_UNIX, SOCK_STREAM, 0, sv) < 0) {
224         LOG(log_error, logtype_cnid, "error in socketpair: %s", strerror(errno));
225         return -1;
226     }
227
228     if ((pid = fork()) < 0) {
229         LOG(log_error, logtype_cnid, "error in fork: %s", strerror(errno));
230         return -1;
231     }
232     if (pid == 0) {
233         int ret;
234         /*
235          *  Child. Close descriptors and start the daemon. If it fails
236          *  just log it. The client process will fail connecting
237          *  afterwards anyway.
238          */
239
240         close(srvfd);
241         close(sv[0]);
242
243         for (i = 0; i < MAXVOLS; i++) {
244             if (srv[i].pid && up != &srv[i]) {
245                 close(srv[i].control_fd);
246             }
247         }
248
249         sprintf(buf1, "%i", sv[1]);
250         sprintf(buf2, "%i", rqstfd);
251
252         if (up->count == MAXSPAWN) {
253             /* there's a pb with the db inform child
254              * it will run recover, delete the db whatever
255              */
256             LOG(log_error, logtype_cnid, "try with -d %s", up->volinfo->v_path);
257             ret = execlp(dbdpn, dbdpn, "-d", volpath, buf1, buf2, logconfig, NULL);
258         }
259         else {
260             ret = execlp(dbdpn, dbdpn, volpath, buf1, buf2, logconfig, NULL);
261         }
262         /* Yikes! We're still here, so exec failed... */
263         LOG(log_error, logtype_cnid, "Fatal error in exec: %s", strerror(errno));
264         daemon_exit(0);
265     }
266     /*
267      *  Parent.
268      */
269     up->pid = pid;
270     close(sv[1]);
271     up->control_fd = sv[0];
272     return 0;
273 }
274
275 /* ------------------ */
276 static int set_dbdir(char *dbdir)
277 {
278     int len;
279     struct stat st;
280
281     len = strlen(dbdir);
282
283     if (stat(dbdir, &st) < 0 && mkdir(dbdir, 0755) < 0) {
284         LOG(log_error, logtype_cnid, "set_dbdir: mkdir failed for %s", dbdir);
285         return -1;
286     }
287
288     if (dbdir[len - 1] != '/') {
289         strcat(dbdir, "/");
290         len++;
291     }
292     strcpy(dbdir + len, DBHOME);
293     if (stat(dbdir, &st) < 0 && mkdir(dbdir, 0755 ) < 0) {
294         LOG(log_error, logtype_cnid, "set_dbdir: mkdir failed for %s", dbdir);
295         return -1;
296     }
297     return 0;
298 }
299
300 /* ------------------ */
301 static uid_t user_to_uid (char *username)
302 {
303     struct passwd *this_passwd;
304
305     /* check for anything */
306     if ( !username || strlen ( username ) < 1 ) return 0;
307
308     /* grab the /etc/passwd record relating to username */
309     this_passwd = getpwnam ( username );
310
311     /* return false if there is no structure returned */
312     if (this_passwd == NULL) return 0;
313
314     /* return proper uid */
315     return this_passwd->pw_uid;
316
317 }
318
319 /* ------------------ */
320 static gid_t group_to_gid ( char *group)
321 {
322     struct group *this_group;
323
324     /* check for anything */
325     if ( !group || strlen ( group ) < 1 ) return 0;
326
327     /* grab the /etc/groups record relating to group */
328     this_group = getgrnam ( group );
329
330     /* return false if there is no structure returned */
331     if (this_group == NULL) return 0;
332
333     /* return proper gid */
334     return this_group->gr_gid;
335
336 }
337
338 /* ------------------ */
339 static void catch_child(int sig _U_) 
340 {
341     sigchild = 1;
342 }
343
344 /* ----------------------- */
345 static void set_signal(void)
346 {
347     struct sigaction sv;
348     sigset_t set;
349
350     memset(&sv, 0, sizeof(sv));
351
352     /* Catch SIGCHLD */
353     sv.sa_handler = catch_child;
354     sv.sa_flags = SA_NOCLDSTOP;
355     sigemptyset(&sv.sa_mask);
356     if (sigaction(SIGCHLD, &sv, NULL) < 0) {
357         LOG(log_error, logtype_cnid, "cnid_metad: sigaction: %s", strerror(errno));
358         daemon_exit(EXITERR_SYS);
359     }
360
361     /* Catch SIGTERM */
362     sv.sa_handler = sigterm_handler;
363     sigfillset(&sv.sa_mask );
364     if (sigaction(SIGTERM, &sv, NULL ) < 0 ) {
365         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
366         daemon_exit(EXITERR_SYS);
367     }
368
369     /* Ignore the rest */
370     sv.sa_handler = SIG_IGN;
371     sigemptyset(&sv.sa_mask );
372     if (sigaction(SIGALRM, &sv, NULL ) < 0 ) {
373         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
374         daemon_exit(EXITERR_SYS);
375     }
376     sv.sa_handler = SIG_IGN;
377     sigemptyset(&sv.sa_mask );
378     if (sigaction(SIGHUP, &sv, NULL ) < 0 ) {
379         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
380         daemon_exit(EXITERR_SYS);
381     }
382     sv.sa_handler = SIG_IGN;
383     sigemptyset(&sv.sa_mask );
384     if (sigaction(SIGUSR1, &sv, NULL ) < 0 ) {
385         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
386         daemon_exit(EXITERR_SYS);
387     }
388     sv.sa_handler = SIG_IGN;
389     sigemptyset(&sv.sa_mask );
390     if (sigaction(SIGUSR2, &sv, NULL ) < 0 ) {
391         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
392         daemon_exit(EXITERR_SYS);
393     }
394     sv.sa_handler = SIG_IGN;
395     sigemptyset(&sv.sa_mask );
396     if (sigaction(SIGPIPE, &sv, NULL ) < 0 ) {
397         LOG(log_error, logtype_afpd, "sigaction: %s", strerror(errno) );
398         daemon_exit(EXITERR_SYS);
399     }
400
401     /* block everywhere but in pselect */
402     sigemptyset(&set);
403     sigaddset(&set, SIGCHLD);
404     sigprocmask(SIG_BLOCK, &set, NULL);
405 }
406
407 /* ------------------ */
408 int main(int argc, char *argv[])
409 {
410     char  volpath[MAXPATHLEN + 1];
411     int   len, actual_len;
412     pid_t pid;
413     int   status;
414     char  *dbdpn = _PATH_CNID_DBD;
415     char  *host = DEFAULTHOST;
416     char  *port = DEFAULTPORT;
417     int    i;
418     int    cc;
419     uid_t  uid = 0;
420     gid_t  gid = 0;
421     int    err = 0;
422     int    debug = 0;
423     int    ret;
424     char   *loglevel = NULL;
425     char   *logfile  = NULL;
426     sigset_t set;
427     struct volinfo *volinfo;
428
429     set_processname("cnid_metad");
430
431     while (( cc = getopt( argc, argv, "ds:p:h:u:g:l:f:")) != -1 ) {
432         switch (cc) {
433         case 'd':
434             debug = 1;
435             break;
436         case 'h':
437             host = strdup(optarg);
438             break;
439         case 'u':
440             uid = user_to_uid (optarg);
441             if (!uid) {
442                 LOG(log_error, logtype_cnid, "main: bad user %s", optarg);
443                 err++;
444             }
445             break;
446         case 'g':
447             gid =group_to_gid (optarg);
448             if (!gid) {
449                 LOG(log_error, logtype_cnid, "main: bad group %s", optarg);
450                 err++;
451             }
452             break;
453         case 'p':
454             port = strdup(optarg);
455             break;
456         case 's':
457             dbdpn = strdup(optarg);
458             break;
459         case 'l':
460             loglevel = strdup(optarg);
461             break;
462         case 'f':
463             logfile = strdup(optarg);
464             break;
465         default:
466             err++;
467             break;
468         }
469     }
470
471     if (loglevel) {
472         strlcpy(logconfig + 8, loglevel, 13);
473         free(loglevel);
474         strcat(logconfig, " ");
475     }
476     if (logfile) {
477         strlcat(logconfig, logfile, MAXPATHLEN);
478         free(logfile);
479     }
480     setuplog(logconfig);
481
482     if (err) {
483         LOG(log_error, logtype_cnid, "main: bad arguments");
484         daemon_exit(1);
485     }
486
487     /* Check PID lockfile and become a daemon */
488     switch(server_lock("cnid_metad", _PATH_CNID_METAD_LOCK, debug)) {
489     case -1: /* error */
490         daemon_exit(EXITERR_SYS);
491     case 0: /* child */
492         break;
493     default: /* server */
494         exit(0);
495     }
496
497     if ((srvfd = tsockfd_create(host, port, 10)) < 0)
498         daemon_exit(1);
499
500     /* switch uid/gid */
501     if (uid || gid) {
502         LOG(log_debug, logtype_cnid, "Setting uid/gid to %i/%i", uid, gid);
503         if (gid) {
504             if (SWITCH_TO_GID(gid) < 0) {
505                 LOG(log_info, logtype_cnid, "unable to switch to group %d", gid);
506                 daemon_exit(1);
507             }
508         }
509         if (uid) {
510             if (SWITCH_TO_UID(uid) < 0) {
511                 LOG(log_info, logtype_cnid, "unable to switch to user %d", uid);
512                 daemon_exit(1);
513             }
514         }
515     }
516
517     set_signal();
518
519     sigemptyset(&set);
520     sigprocmask(SIG_SETMASK, NULL, &set);
521     sigdelset(&set, SIGCHLD);
522
523     while (1) {
524         rqstfd = usockfd_check(srvfd, &set);
525         /* Collect zombie processes and log what happened to them */
526         if (sigchild) while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
527             for (i = 0; i < MAXVOLS; i++) {
528                 if (srv[i].pid == pid) {
529                     srv[i].pid = 0;
530                     close(srv[i].control_fd);
531                     break;
532                 }
533             }
534             if (WIFEXITED(status)) {
535                 LOG(log_info, logtype_cnid, "cnid_dbd pid %i exited with exit code %i",
536                     pid, WEXITSTATUS(status));
537             }
538             else if (WIFSIGNALED(status)) {
539                 LOG(log_info, logtype_cnid, "cnid_dbd pid %i exited with signal %i",
540                     pid, WTERMSIG(status));
541             }
542             sigchild = 0;
543         }
544         if (rqstfd <= 0)
545             continue;
546
547         ret = readt(rqstfd, &len, sizeof(int), 1, 4);
548
549         if (!ret) {
550             /* already close */
551             goto loop_end;
552         }
553         else if (ret < 0) {
554             LOG(log_severe, logtype_cnid, "error read: %s", strerror(errno));
555             goto loop_end;
556         }
557         else if (ret != sizeof(int)) {
558             LOG(log_error, logtype_cnid, "short read: got %d", ret);
559             goto loop_end;
560         }
561         /*
562          *  checks for buffer overruns. The client libatalk side does it too
563          *  before handing the dir path over but who trusts clients?
564          */
565         if (!len || len +DBHOMELEN +2 > MAXPATHLEN) {
566             LOG(log_error, logtype_cnid, "wrong len parameter: %d", len);
567             goto loop_end;
568         }
569
570         actual_len = readt(rqstfd, volpath, len, 1, 5);
571         if (actual_len < 0) {
572             LOG(log_severe, logtype_cnid, "Read(2) error : %s", strerror(errno));
573             goto loop_end;
574         }
575         if (actual_len != len) {
576             LOG(log_error, logtype_cnid, "error/short read (dir): %s", strerror(errno));
577             goto loop_end;
578         }
579         volpath[len] = '\0';
580
581         /* Load .volinfo file */
582         if ((volinfo = allocvolinfo(volpath)) == NULL) {
583             LOG(log_severe, logtype_cnid, "allocvolinfo(\"%s\"): %s",
584                 volpath, strerror(errno));
585             goto loop_end;
586         }
587
588         if (set_dbdir(volinfo->v_dbpath) < 0) {
589             goto loop_end;
590         }
591
592         maybe_start_dbd(dbdpn, volinfo);
593
594         (void)closevolinfo(volinfo);
595
596     loop_end:
597         close(rqstfd);
598     }
599 }