X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=etc%2Fcnid_dbd%2Fcnid_metad.c;h=580c36cd3339c9fdc363a25087d8e8b58699e80d;hb=260c314546ffcfdbef47f2c7de82d5310b26df0a;hp=a51d15c4196d911f2f132cc42207cc6f87fddcb2;hpb=4054f4b3c85ecab060dafd46c0d3632cadbb5803;p=netatalk.git diff --git a/etc/cnid_dbd/cnid_metad.c b/etc/cnid_dbd/cnid_metad.c index a51d15c4..580c36cd 100644 --- a/etc/cnid_dbd/cnid_metad.c +++ b/etc/cnid_dbd/cnid_metad.c @@ -40,10 +40,11 @@ #include #include #include +#include #include #include #include -#define _XPG4_2 1 +// #define _XPG4_2 1 #include #include #include @@ -89,6 +90,7 @@ #include #include #include +#include #include "usockfd.h" @@ -98,11 +100,12 @@ static int srvfd; static int rqstfd; static volatile sig_atomic_t sigchild = 0; +static uint maxvol; #define MAXSPAWN 3 /* Max times respawned in.. */ #define TESTTIME 42 /* this much seconds apfd client tries to * * to reconnect every 5 secondes, catch it */ -#define MAXVOLS 512 +#define MAXVOLS 4096 #define DEFAULTHOST "localhost" #define DEFAULTPORT "4700" @@ -141,7 +144,7 @@ static void sigterm_handler(int sig) static struct server *test_usockfn(struct volinfo *volinfo) { int i; - for (i = 0; i < MAXVOLS; i++) { + for (i = 0; i < maxvol; i++) { if ((srv[i].volinfo) && (strcmp(srv[i].volinfo->v_path, volinfo->v_path) == 0)) { return &srv[i]; } @@ -177,14 +180,16 @@ static int maybe_start_dbd(char *dbdpn, struct volinfo *volinfo) time(&t); if (!up) { - /* find an empty slot */ - for (i = 0; i < MAXVOLS; i++) { - if (srv[i].volinfo == NULL) { + /* find an empty slot (i < maxvol) or the first free slot (i == maxvol)*/ + for (i = 0; i <= maxvol; i++) { + if (srv[i].volinfo == NULL && i < MAXVOLS) { up = &srv[i]; up->volinfo = volinfo; retainvolinfo(volinfo); up->tm = t; up->count = 0; + if (i == maxvol) + maxvol++; break; } } @@ -249,13 +254,12 @@ static int maybe_start_dbd(char *dbdpn, struct volinfo *volinfo) sprintf(buf2, "%i", rqstfd); if (up->count == MAXSPAWN) { - /* there's a pb with the db inform child - * it will run recover, delete the db whatever - */ - LOG(log_error, logtype_cnid, "try with -d %s", up->volinfo->v_path); + /* there's a pb with the db inform child, it will delete the db */ + LOG(log_warning, logtype_cnid, + "Multiple attempts to start CNID db daemon for \"%s\" failed, wiping the slate clean...", + up->volinfo->v_path); ret = execlp(dbdpn, dbdpn, "-d", volpath, buf1, buf2, logconfig, NULL); - } - else { + } else { ret = execlp(dbdpn, dbdpn, volpath, buf1, buf2, logconfig, NULL); } /* Yikes! We're still here, so exec failed... */ @@ -403,6 +407,26 @@ static void set_signal(void) sigprocmask(SIG_BLOCK, &set, NULL); } +static int setlimits(void) +{ + struct rlimit rlim; + + if (getrlimit(RLIMIT_NOFILE, &rlim) != 0) { + LOG(log_error, logtype_afpd, "setlimits: %s", strerror(errno)); + exit(1); + } + if (rlim.rlim_cur != RLIM_INFINITY && rlim.rlim_cur < 65535) { + rlim.rlim_cur = 65535; + if (rlim.rlim_max != RLIM_INFINITY && rlim.rlim_max < 65535) + rlim.rlim_max = 65535; + if (setrlimit(RLIMIT_NOFILE, &rlim) != 0) { + LOG(log_error, logtype_afpd, "setlimits: %s", strerror(errno)); + exit(1); + } + } + return 0; +} + /* ------------------ */ int main(int argc, char *argv[]) { @@ -420,15 +444,17 @@ int main(int argc, char *argv[]) int err = 0; int debug = 0; int ret; - char *loglevel = NULL; - char *logfile = NULL; sigset_t set; struct volinfo *volinfo; set_processname("cnid_metad"); - while (( cc = getopt( argc, argv, "ds:p:h:u:g:l:f:")) != -1 ) { + while (( cc = getopt( argc, argv, "vVds:p:h:u:g:l:f:")) != -1 ) { switch (cc) { + case 'v': + case 'V': + printf("cnid_metad (Netatalk %s)\n", VERSION); + return -1; case 'd': debug = 1; break; @@ -455,43 +481,31 @@ int main(int argc, char *argv[]) case 's': dbdpn = strdup(optarg); break; - case 'l': - loglevel = strdup(optarg); - break; - case 'f': - logfile = strdup(optarg); - break; default: err++; break; } } - if (loglevel) { - strlcpy(logconfig + 8, loglevel, 13); - free(loglevel); - strcat(logconfig, " "); - } - if (logfile) { - strlcat(logconfig, logfile, MAXPATHLEN); - free(logfile); - } - setuplog(logconfig); + /* Check for PID lockfile */ + if (check_lockfile("cnid_metad", _PATH_CNID_METAD_LOCK)) + return -1; + + if (!debug && daemonize(0, 0) != 0) + exit(EXITERR_SYS); + + /* Create PID lockfile */ + if (create_lockfile("cnid_metad", _PATH_CNID_METAD_LOCK)) + return -1; + + setuplog("default:note", NULL); if (err) { LOG(log_error, logtype_cnid, "main: bad arguments"); daemon_exit(1); } - /* Check PID lockfile and become a daemon */ - switch(server_lock("cnid_metad", _PATH_CNID_METAD_LOCK, debug)) { - case -1: /* error */ - daemon_exit(EXITERR_SYS); - case 0: /* child */ - break; - default: /* server */ - exit(0); - } + (void)setlimits(); if ((srvfd = tsockfd_create(host, port, 10)) < 0) daemon_exit(1); @@ -523,7 +537,7 @@ int main(int argc, char *argv[]) rqstfd = usockfd_check(srvfd, &set); /* Collect zombie processes and log what happened to them */ if (sigchild) while ((pid = waitpid(-1, &status, WNOHANG)) > 0) { - for (i = 0; i < MAXVOLS; i++) { + for (i = 0; i < maxvol; i++) { if (srv[i].pid == pid) { srv[i].pid = 0; close(srv[i].control_fd);