X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=daemon.c;h=c855daa19e194ee5d6e432f89771b907bd909340;hp=7f4aa6f528ef20b49f6dcd5234798db072436b6c;hb=6b2414cd3ea3437ffb39d25ddc60eeecf3194ebc;hpb=8ea8abb73199b32fdd7afdf8825afa42ed8de244 diff --git a/daemon.c b/daemon.c index 7f4aa6f5..c855daa1 100644 --- a/daemon.c +++ b/daemon.c @@ -105,7 +105,7 @@ void daemon_set_logfile(char *logfile_name) } /** - * Supress log messages with severity lower than the given loglevel. + * Suppress log messages with severity lower than the given loglevel. * * \param loglevel The smallest level that should be logged. */ @@ -169,7 +169,6 @@ void daemonize(void) goto err; if (chdir("/") < 0) goto err; - umask(0); null = open("/dev/null", O_RDONLY); if (null < 0) goto err; @@ -272,7 +271,11 @@ void drop_privileges_or_die(const char *username, const char *groupname) exit(EXIT_FAILURE); } PARA_INFO_LOG("dropping root privileges\n"); - setuid(p->pw_uid); + if (setuid(p->pw_uid) < 0) { + PARA_EMERG_LOG("failed to set effective user ID (%s)", + strerror(errno)); + exit(EXIT_FAILURE); + } PARA_DEBUG_LOG("uid: %d, euid: %d\n", (int)getuid(), (int)geteuid()); } @@ -286,7 +289,7 @@ void drop_privileges_or_die(const char *username, const char *groupname) * set_or_get equal to \p UPTIME_GET return the uptime. * \return Zero if called with \a set_or_get equal to \p UPTIME_SET, the number - * of seconds ellapsed since the last reset otherwise. + * of seconds elapsed since the last reset otherwise. * * \sa time(2), difftime(3). */ @@ -330,7 +333,7 @@ __printf_2_3 void para_log(int ll, const char* fmt,...) FILE *fp; struct tm *tm; time_t t1; - char *color, str[MAXLINE] = ""; + char *color; ll = PARA_MIN(ll, NUM_LOGLEVELS - 1); ll = PARA_MAX(ll, LL_DEBUG); @@ -341,11 +344,11 @@ __printf_2_3 void para_log(int ll, const char* fmt,...) color = daemon_test_flag(DF_COLOR_LOG)? me->log_colors[ll] : NULL; if (color) fprintf(fp, "%s", color); - if (daemon_test_flag(DF_LOG_TIME)) { - /* date and time */ + if (daemon_test_flag(DF_LOG_TIME)) { /* print date and time */ + char str[100]; time(&t1); tm = localtime(&t1); - strftime(str, MAXLINE, "%b %d %H:%M:%S", tm); + strftime(str, sizeof(str), "%b %d %H:%M:%S", tm); fprintf(fp, "%s ", str); } if (daemon_test_flag(DF_LOG_HOSTNAME)) {