]> arthur.barton.de Git - netatalk.git/blob - etc/cnid_dbd/cnid_metad.c
Merge sf/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
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 static int setlimits(void)
410 {
411     struct rlimit rlim;
412
413     if (getrlimit(RLIMIT_NOFILE, &rlim) != 0) {
414         LOG(log_error, logtype_afpd, "setlimits: %s", strerror(errno));
415         exit(1);
416     }
417     if (rlim.rlim_cur != RLIM_INFINITY && rlim.rlim_cur < 65535) {
418         rlim.rlim_cur = 65535;
419         if (rlim.rlim_max != RLIM_INFINITY && rlim.rlim_max < 65535)
420             rlim.rlim_max = 65535;
421         if (setrlimit(RLIMIT_NOFILE, &rlim) != 0) {
422             LOG(log_error, logtype_afpd, "setlimits: %s", strerror(errno));
423             exit(1);
424         }
425     }
426     return 0;
427 }
428
429 /* ------------------ */
430 int main(int argc, char *argv[])
431 {
432     char  volpath[MAXPATHLEN + 1];
433     int   len, actual_len;
434     pid_t pid;
435     int   status;
436     char  *dbdpn = _PATH_CNID_DBD;
437     char  *host = DEFAULTHOST;
438     char  *port = DEFAULTPORT;
439     int    i;
440     int    cc;
441     uid_t  uid = 0;
442     gid_t  gid = 0;
443     int    err = 0;
444     int    debug = 0;
445     int    ret;
446     char   *loglevel = NULL;
447     char   *logfile  = NULL;
448     sigset_t set;
449     struct volinfo *volinfo;
450
451     set_processname("cnid_metad");
452
453     while (( cc = getopt( argc, argv, "ds:p:h:u:g:l:f:")) != -1 ) {
454         switch (cc) {
455         case 'd':
456             debug = 1;
457             break;
458         case 'h':
459             host = strdup(optarg);
460             break;
461         case 'u':
462             uid = user_to_uid (optarg);
463             if (!uid) {
464                 LOG(log_error, logtype_cnid, "main: bad user %s", optarg);
465                 err++;
466             }
467             break;
468         case 'g':
469             gid =group_to_gid (optarg);
470             if (!gid) {
471                 LOG(log_error, logtype_cnid, "main: bad group %s", optarg);
472                 err++;
473             }
474             break;
475         case 'p':
476             port = strdup(optarg);
477             break;
478         case 's':
479             dbdpn = strdup(optarg);
480             break;
481         case 'l':
482             loglevel = strdup(optarg);
483             break;
484         case 'f':
485             logfile = strdup(optarg);
486             break;
487         default:
488             err++;
489             break;
490         }
491     }
492
493     if (loglevel) {
494         strlcpy(logconfig + 8, loglevel, 13);
495         free(loglevel);
496         strcat(logconfig, " ");
497     }
498     if (logfile) {
499         strlcat(logconfig, logfile, MAXPATHLEN);
500         free(logfile);
501     }
502     setuplog(logconfig);
503
504     if (err) {
505         LOG(log_error, logtype_cnid, "main: bad arguments");
506         daemon_exit(1);
507     }
508
509     (void)setlimits();
510
511     /* Check PID lockfile and become a daemon */
512     switch(server_lock("cnid_metad", _PATH_CNID_METAD_LOCK, debug)) {
513     case -1: /* error */
514         daemon_exit(EXITERR_SYS);
515     case 0: /* child */
516         break;
517     default: /* server */
518         exit(0);
519     }
520
521     if ((srvfd = tsockfd_create(host, port, 10)) < 0)
522         daemon_exit(1);
523
524     /* switch uid/gid */
525     if (uid || gid) {
526         LOG(log_debug, logtype_cnid, "Setting uid/gid to %i/%i", uid, gid);
527         if (gid) {
528             if (SWITCH_TO_GID(gid) < 0) {
529                 LOG(log_info, logtype_cnid, "unable to switch to group %d", gid);
530                 daemon_exit(1);
531             }
532         }
533         if (uid) {
534             if (SWITCH_TO_UID(uid) < 0) {
535                 LOG(log_info, logtype_cnid, "unable to switch to user %d", uid);
536                 daemon_exit(1);
537             }
538         }
539     }
540
541     set_signal();
542
543     sigemptyset(&set);
544     sigprocmask(SIG_SETMASK, NULL, &set);
545     sigdelset(&set, SIGCHLD);
546
547     while (1) {
548         rqstfd = usockfd_check(srvfd, &set);
549         /* Collect zombie processes and log what happened to them */
550         if (sigchild) while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
551             for (i = 0; i < maxvol; i++) {
552                 if (srv[i].pid == pid) {
553                     srv[i].pid = 0;
554                     close(srv[i].control_fd);
555                     break;
556                 }
557             }
558             if (WIFEXITED(status)) {
559                 LOG(log_info, logtype_cnid, "cnid_dbd pid %i exited with exit code %i",
560                     pid, WEXITSTATUS(status));
561             }
562             else if (WIFSIGNALED(status)) {
563                 LOG(log_info, logtype_cnid, "cnid_dbd pid %i exited with signal %i",
564                     pid, WTERMSIG(status));
565             }
566             sigchild = 0;
567         }
568         if (rqstfd <= 0)
569             continue;
570
571         ret = readt(rqstfd, &len, sizeof(int), 1, 4);
572
573         if (!ret) {
574             /* already close */
575             goto loop_end;
576         }
577         else if (ret < 0) {
578             LOG(log_severe, logtype_cnid, "error read: %s", strerror(errno));
579             goto loop_end;
580         }
581         else if (ret != sizeof(int)) {
582             LOG(log_error, logtype_cnid, "short read: got %d", ret);
583             goto loop_end;
584         }
585         /*
586          *  checks for buffer overruns. The client libatalk side does it too
587          *  before handing the dir path over but who trusts clients?
588          */
589         if (!len || len +DBHOMELEN +2 > MAXPATHLEN) {
590             LOG(log_error, logtype_cnid, "wrong len parameter: %d", len);
591             goto loop_end;
592         }
593
594         actual_len = readt(rqstfd, volpath, len, 1, 5);
595         if (actual_len < 0) {
596             LOG(log_severe, logtype_cnid, "Read(2) error : %s", strerror(errno));
597             goto loop_end;
598         }
599         if (actual_len != len) {
600             LOG(log_error, logtype_cnid, "error/short read (dir): %s", strerror(errno));
601             goto loop_end;
602         }
603         volpath[len] = '\0';
604
605         /* Load .volinfo file */
606         if ((volinfo = allocvolinfo(volpath)) == NULL) {
607             LOG(log_severe, logtype_cnid, "allocvolinfo(\"%s\"): %s",
608                 volpath, strerror(errno));
609             goto loop_end;
610         }
611
612         if (set_dbdir(volinfo->v_dbpath) < 0) {
613             goto loop_end;
614         }
615
616         maybe_start_dbd(dbdpn, volinfo);
617
618         (void)closevolinfo(volinfo);
619
620     loop_end:
621         close(rqstfd);
622     }
623 }