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