X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Faccesslog.c;h=06bdd986f252fe2c39a65c54dcab3a644dae1369;hb=af222eef990d14148d4c83134de439be6eeef84a;hp=13e60ff03a0076248be997e3f0338cd4a79328c1;hpb=9701afc5058b7817b6a290817b138b483d506318;p=ashd.git diff --git a/src/accesslog.c b/src/accesslog.c index 13e60ff..06bdd98 100644 --- a/src/accesslog.c +++ b/src/accesslog.c @@ -24,6 +24,7 @@ #include #include #include +#include #ifdef HAVE_CONFIG_H #include @@ -36,10 +37,12 @@ #define DEFFORMAT "%{%Y-%m-%d %H:%M:%S}t %m %u %A \"%G\"" static int ch; +static char *outname = NULL; static FILE *out; static int flush = 1; static char *format; -static time_t now; +static struct timeval now; +static volatile int reopen = 0; static void qputs(char *s, FILE *o) { @@ -64,7 +67,6 @@ static void logitem(struct hthead *req, char o, char *d) { char *h, *p; char buf[1024]; - struct timeval tv; switch(o) { case '%': @@ -98,18 +100,17 @@ static void logitem(struct hthead *req, char o, char *d) case 't': if(!*d) d = "%a, %d %b %Y %H:%M:%S %z"; - strftime(buf, sizeof(buf), d, localtime(&now)); + strftime(buf, sizeof(buf), d, localtime(&now.tv_sec)); qputs(buf, out); break; case 'T': if(!*d) d = "%a, %d %b %Y %H:%M:%S %z"; - strftime(buf, sizeof(buf), d, gmtime(&now)); + strftime(buf, sizeof(buf), d, gmtime(&now.tv_sec)); qputs(buf, out); break; case 's': - gettimeofday(&tv, NULL); - fprintf(out, "%06i", (int)tv.tv_usec); + fprintf(out, "%06i", (int)now.tv_usec); break; case 'A': logitem(req, 'h', "X-Ash-Address"); @@ -161,7 +162,7 @@ static void logreq(struct hthead *req) static void serve(struct hthead *req, int fd) { - now = time(NULL); + gettimeofday(&now, NULL); if(sendreq(ch, req, fd)) { flog(LOG_ERR, "accesslog: could not pass request to child: %s", strerror(errno)); exit(1); @@ -169,6 +170,28 @@ static void serve(struct hthead *req, int fd) logreq(req); } +static void sighandler(int sig) +{ + if(sig == SIGHUP) + reopen = 1; +} + +static void reopenlog(void) +{ + FILE *new; + + if(outname == NULL) { + flog(LOG_WARNING, "accesslog: received SIGHUP but logging to stdout, so ignoring"); + return; + } + if((new = fopen(outname, "a")) == NULL) { + flog(LOG_WARNING, "accesslog: could not reopen log file `%s' on SIGHUP: %s", outname, strerror(errno)); + return; + } + fclose(out); + out = new; +} + static void usage(FILE *out) { fprintf(out, "usage: accesslog [-hFa] [-f FORMAT] OUTFILE CHILD [ARGS...]\n"); @@ -207,7 +230,11 @@ int main(int argc, char **argv) } if(format == NULL) format = DEFFORMAT; - if(!strcmp(argv[optind], "-")) { + if(!strcmp(argv[optind], "-")) + outname = NULL; + else + outname = argv[optind]; + if(outname == NULL) { out = stdout; } else { if((out = fopen(argv[optind], "a")) == NULL) { @@ -219,7 +246,12 @@ int main(int argc, char **argv) flog(LOG_ERR, "accesslog: could fork child: %s", strerror(errno)); exit(1); } + signal(SIGHUP, sighandler); while(1) { + if(reopen) { + reopenlog(); + reopen = 0; + } memset(pfd, 0, sizeof(pfd)); pfd[0].fd = 0; pfd[0].events = POLLIN;