5aa25743964af97bb4d462af00ed405f05115ce3
[ashd.git] / src / accesslog.c
1 /*
2     ashd - A Sane HTTP Daemon
3     Copyright (C) 2008  Fredrik Tolf <fredrik@dolda2000.com>
4
5     This program is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <unistd.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <sys/poll.h>
25 #include <time.h>
26 #include <sys/time.h>
27 #include <signal.h>
28 #include <fcntl.h>
29 #include <sys/stat.h>
30
31 #ifdef HAVE_CONFIG_H
32 #include <config.h>
33 #endif
34 #include <utils.h>
35 #include <log.h>
36 #include <req.h>
37 #include <proc.h>
38
39 #define DEFFORMAT "%{%Y-%m-%d %H:%M:%S}t %m %u %A \"%G\""
40
41 static int ch;
42 static char *outname = NULL;
43 static FILE *out;
44 static int flush = 1, locklog = 1;
45 static char *format;
46 static struct timeval now;
47 static volatile int reopen = 0;
48
49 static void qputs(char *s, FILE *o)
50 {
51     for(; *s; s++) {
52         if(*s == '\"') {
53             fputs("\\\"", o);
54         } else if(*s == '\\') {
55             fputs("\\\\", o);
56         } else if(*s == '\n') {
57             fputs("\\n", o);
58         } else if(*s == '\t') {
59             fputs("\\t", o);
60         } else if((*s < 32) || (*s >= 128)) {
61             fprintf(o, "\\x%02x", *s);
62         } else {
63             fputc(*s, o);
64         }
65     }
66 }
67
68 static void logitem(struct hthead *req, char o, char *d)
69 {
70     char *h, *p;
71     char buf[1024];
72     
73     switch(o) {
74     case '%':
75         putc('%', out);
76         break;
77     case 'h':
78         if((h = getheader(req, d)) == NULL) {
79             putc('-', out);
80         } else {
81             qputs(h, out);
82         }
83         break;
84     case 'u':
85         qputs(req->url, out);
86         break;
87     case 'U':
88         strcpy(buf, req->url);
89         if((p = strchr(buf, '?')) != NULL)
90             *p = 0;
91         qputs(buf, out);
92         break;
93     case 'm':
94         qputs(req->method, out);
95         break;
96     case 'r':
97         qputs(req->rest, out);
98         break;
99     case 'v':
100         qputs(req->ver, out);
101         break;
102     case 't':
103         if(!*d)
104             d = "%a, %d %b %Y %H:%M:%S %z";
105         strftime(buf, sizeof(buf), d, localtime(&now.tv_sec));
106         qputs(buf, out);
107         break;
108     case 'T':
109         if(!*d)
110             d = "%a, %d %b %Y %H:%M:%S %z";
111         strftime(buf, sizeof(buf), d, gmtime(&now.tv_sec));
112         qputs(buf, out);
113         break;
114     case 's':
115         fprintf(out, "%06i", (int)now.tv_usec);
116         break;
117     case 'A':
118         logitem(req, 'h', "X-Ash-Address");
119         break;
120     case 'H':
121         logitem(req, 'h', "Host");
122         break;
123     case 'R':
124         logitem(req, 'h', "Referer");
125         break;
126     case 'G':
127         logitem(req, 'h', "User-Agent");
128         break;
129     }
130 }
131
132 static void logreq(struct hthead *req)
133 {
134     char *p, *p2;
135     char d[strlen(format)];
136     char o;
137     
138     p = format;
139     while(*p) {
140         if(*p == '%') {
141             p++;
142             if(*p == '{') {
143                 p++;
144                 if((p2 = strchr(p, '}')) == NULL)
145                     continue;
146                 memcpy(d, p, p2 - p);
147                 d[p2 - p] = 0;
148                 p = p2 + 1;
149             } else {
150                 d[0] = 0;
151             }
152             o = *p++;
153             if(o == 0)
154                 break;
155             logitem(req, o, d);
156         } else {
157             fputc(*p++, out);
158         }
159     }
160     fputc('\n', out);
161     if(flush)
162         fflush(out);
163 }
164
165 static void serve(struct hthead *req, int fd)
166 {
167     gettimeofday(&now, NULL);
168     if(sendreq(ch, req, fd)) {
169         flog(LOG_ERR, "accesslog: could not pass request to child: %s", strerror(errno));
170         exit(1);
171     }
172     logreq(req);
173 }
174
175 static void sighandler(int sig)
176 {
177     if(sig == SIGHUP)
178         reopen = 1;
179 }
180
181 static int lockfile(FILE *file)
182 {
183     struct flock ld;
184     
185     memset(&ld, 0, sizeof(ld));
186     ld.l_type = F_WRLCK;
187     ld.l_whence = SEEK_SET;
188     ld.l_start = 0;
189     ld.l_len = 0;
190     return(fcntl(fileno(file), F_SETLK, &ld));
191 }
192
193 static void fetchpid(char *filename)
194 {
195     int fd, ret;
196     struct flock ld;
197     
198     if((fd = open(filename, O_WRONLY)) < 0) {
199         fprintf(stderr, "accesslog: %s: %s\n", filename, strerror(errno));
200         exit(1);
201     }
202     memset(&ld, 0, sizeof(ld));
203     ld.l_type = F_WRLCK;
204     ld.l_whence = SEEK_SET;
205     ld.l_start = 0;
206     ld.l_len = 0;
207     ret = fcntl(fd, F_GETLK, &ld);
208     close(fd);
209     if(ret) {
210         fprintf(stderr, "accesslog: %s: %s\n", filename, strerror(errno));
211         exit(1);
212     }
213     if(ld.l_type == F_UNLCK) {
214         fprintf(stderr, "accesslog: %s: not locked\n", filename);
215         exit(1);
216     }
217     printf("%i\n", (int)ld.l_pid);
218 }
219
220 static void reopenlog(void)
221 {
222     FILE *new;
223     struct stat olds, news;
224     
225     if(outname == NULL) {
226         flog(LOG_WARNING, "accesslog: received SIGHUP but logging to stdout, so ignoring");
227         return;
228     }
229     if(locklog) {
230         if(fstat(fileno(out), &olds)) {
231             flog(LOG_ERR, "accesslog: could not stat current logfile(?!): %s", strerror(errno));
232             return;
233         }
234         if(!stat(outname, &news)) {
235             if((olds.st_dev == news.st_dev) && (olds.st_ino == news.st_ino)) {
236                 /*
237                  * This needs to be ignored, because if the same logfile
238                  * is opened and then closed, the lock is lost. To quote
239                  * the Linux fcntl(2) manpage: "This is bad." No kidding.
240                  *
241                  * Technically, there is a race condition here when the
242                  * file has been stat'ed but not yet opened, where the old
243                  * log file, having been previously renamed, changes name
244                  * back to the name accesslog knows and is thus reopened
245                  * regardlessly, but I think that might fit under the
246                  * idiom "pathological case". It should, at least, not be
247                  * a security problem.
248                  */
249                 flog(LOG_INFO, "accesslog: received SIGHUP, but logfile has not changed, so ignoring");
250                 return;
251             }
252         }
253     }
254     if((new = fopen(outname, "a")) == NULL) {
255         flog(LOG_WARNING, "accesslog: could not reopen log file `%s' on SIGHUP: %s", outname, strerror(errno));
256         return;
257     }
258     if(locklog) {
259         if(lockfile(new)) {
260             if((errno == EAGAIN) || (errno == EACCES)) {
261                 flog(LOG_ERR, "accesslog: logfile is already locked; reverting to current log", strerror(errno));
262                 fclose(new);
263                 return;
264             } else {
265                 flog(LOG_WARNING, "accesslog: could not lock logfile, so no lock will be held: %s", strerror(errno));
266             }
267         }
268     }
269     fclose(out);
270     out = new;
271 }
272
273 static void usage(FILE *out)
274 {
275     fprintf(out, "usage: accesslog [-hFaL] [-f FORMAT] [-p PIDFILE] OUTFILE CHILD [ARGS...]\n");
276     fprintf(out, "       accesslog -P LOGFILE\n");
277 }
278
279 int main(int argc, char **argv)
280 {
281     int c, ret;
282     struct hthead *req;
283     int fd;
284     struct pollfd pfd[2];
285     char *pidfile;
286     FILE *pidout;
287     
288     pidfile = NULL;
289     while((c = getopt(argc, argv, "+hFaLf:p:P:")) >= 0) {
290         switch(c) {
291         case 'h':
292             usage(stdout);
293             exit(0);
294         case 'F':
295             flush = 0;
296             break;
297         case 'L':
298             locklog = 0;
299             break;
300         case 'f':
301             format = optarg;
302             break;
303         case 'P':
304             fetchpid(optarg);
305             exit(0);
306         case 'p':
307             pidfile = optarg;
308             break;
309         case 'a':
310             format = "%A - - [%{%d/%b/%Y:%H:%M:%S %z}t] \"%m %u %v\" - - \"%R\" \"%G\"";
311             break;
312         default:
313             usage(stderr);
314             exit(1);
315         }
316     }
317     if(argc - optind < 2) {
318         usage(stderr);
319         exit(1);
320     }
321     if(format == NULL)
322         format = DEFFORMAT;
323     if(!strcmp(argv[optind], "-"))
324         outname = NULL;
325     else
326         outname = argv[optind];
327     if(outname == NULL) {
328         out = stdout;
329     } else {
330         if((out = fopen(argv[optind], "a")) == NULL) {
331             flog(LOG_ERR, "accesslog: could not open %s for logging: %s", argv[optind], strerror(errno));
332             exit(1);
333         }
334     }
335     if(locklog) {
336         if(lockfile(out)) {
337             if((errno == EAGAIN) || (errno == EACCES)) {
338                 flog(LOG_ERR, "accesslog: logfile is already locked", strerror(errno));
339                 exit(1);
340             } else {
341                 flog(LOG_WARNING, "accesslog: could not lock logfile: %s", strerror(errno));
342             }
343         }
344     }
345     if((ch = stdmkchild(argv + optind + 1, NULL, NULL)) < 0) {
346         flog(LOG_ERR, "accesslog: could not fork child: %s", strerror(errno));
347         exit(1);
348     }
349     signal(SIGHUP, sighandler);
350     if(pidfile) {
351         if(!strcmp(pidfile, "-")) {
352             if(!outname) {
353                 flog(LOG_ERR, "accesslog: cannot derive PID file name without an output file");
354                 exit(1);
355             }
356             pidfile = sprintf2("%s.pid", outname);
357         }
358         if((pidout = fopen(pidfile, "w")) == NULL) {
359             flog(LOG_ERR, "accesslog: could not open PID file %s for writing: %s", pidfile);
360             exit(1);
361         }
362         fprintf(pidout, "%i\n", (int)getpid());
363         fclose(pidout);
364     }
365     while(1) {
366         if(reopen) {
367             reopenlog();
368             reopen = 0;
369         }
370         memset(pfd, 0, sizeof(pfd));
371         pfd[0].fd = 0;
372         pfd[0].events = POLLIN;
373         pfd[1].fd = ch;
374         pfd[1].events = POLLHUP;
375         if((ret = poll(pfd, 2, -1)) < 0) {
376             if(errno != EINTR) {
377                 flog(LOG_ERR, "accesslog: error in poll: %s", strerror(errno));
378                 exit(1);
379             }
380         }
381         if(pfd[0].revents) {
382             if((fd = recvreq(0, &req)) < 0) {
383                 if(errno == 0)
384                     break;
385                 flog(LOG_ERR, "accesslog: error in recvreq: %s", strerror(errno));
386                 exit(1);
387             }
388             serve(req, fd);
389             freehthead(req);
390             close(fd);
391         }
392         if(pfd[1].revents & POLLHUP)
393             break;
394     }
395     if(pidfile != NULL)
396         unlink(pidfile);
397     return(0);
398 }