X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=daemon%2Fmain.c;h=551ed5ccbe63a065ac65f479c7616b043a01e360;hb=8af979f318c0e3d1d00a35996f6b5fecb055ac33;hp=6124129db4cd6e7ba7290d3c85096b696aeb71d0;hpb=de1a4f48c1b6bc77c8dd136bfb0fe29af2e6701f;p=doldaconnect.git diff --git a/daemon/main.c b/daemon/main.c index 6124129..551ed5c 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -1,6 +1,6 @@ /* * Dolda Connect - Modular multiuser Direct Connect-style client - * Copyright (C) 2004 Fredrik Tolf (fredrik@dolda2000.com) + * Copyright (C) 2004 Fredrik Tolf * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -304,7 +304,7 @@ pid_t forksess(uid_t user, struct authhandle *auth, void (*ccbfunc)(pid_t, int, close(i); } } - setpgrp(); + setpgid(0, 0); signal(SIGHUP, SIG_IGN); errno = 0; #ifdef HAVE_KEYUTILS @@ -340,12 +340,12 @@ pid_t forksess(uid_t user, struct authhandle *auth, void (*ccbfunc)(pid_t, int, flog(LOG_WARNING, "could not setuid: %s", strerror(errno)); exit(127); } + putenv(sprintf2("HOME=%s", pwent->pw_dir)); + putenv(sprintf2("SHELL=%s", pwent->pw_shell)); + putenv(sprintf2("PATH=%s/bin:/usr/local/bin:/bin:/usr/bin", pwent->pw_dir)); } - putenv(sprintf2("HOME=%s", pwent->pw_dir)); - putenv(sprintf2("SHELL=%s", pwent->pw_shell)); putenv(sprintf2("USER=%s", pwent->pw_name)); putenv(sprintf2("LOGNAME=%s", pwent->pw_name)); - putenv(sprintf2("PATH=%s/bin:/usr/local/bin:/bin:/usr/bin", pwent->pw_dir)); chdir(pwent->pw_dir); return(0); } @@ -385,11 +385,12 @@ int main(int argc, char **argv) struct child *child; double now; + now = ntime(); immsyslog = nofork = 0; syslogfac = LOG_DAEMON; configfile = NULL; pidfile = NULL; - while((c = getopt(argc, argv, "p:C:f:hns")) != -1) + while((c = getopt(argc, argv, "p:C:f:hnsV")) != -1) { switch(c) { @@ -435,11 +436,14 @@ int main(int argc, char **argv) case 's': immsyslog = 1; break; + case 'V': + printf("%s", RELEASEINFO); + exit(0); case 'h': case ':': case '?': default: - printf("usage: doldacond [-hns] [-C configfile] [-p pidfile] [-f facility]\n"); + printf("usage: doldacond [-hnsV] [-C configfile] [-p pidfile] [-f facility]\n"); exit(c != 'h'); } } @@ -460,7 +464,7 @@ int main(int argc, char **argv) preinit(0); if(configfile == NULL) { - if((configfile = findfile("doldacond.conf", "doldacond", NULL, 0)) == NULL) + if((configfile = findfile("doldacond.conf", NULL, 0)) == NULL) { flog(LOG_CRIT, "could not find a configuration file"); exit(1); @@ -494,6 +498,7 @@ int main(int argc, char **argv) fprintf(pfstream, "%i\n", getpid()); fclose(pfstream); } + flog(LOG_INFO, "startup took %f seconds", ntime() - now); running = 1; reinit = 0; while(running)