Added some caching capabilities to sendfile.
[ashd.git] / src / sendfile.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 <string.h>
21 #include <stdio.h>
22 #include <unistd.h>
23 #include <fcntl.h>
24 #include <errno.h>
25 #include <sys/stat.h>
26 #include <stdint.h>
27 #include <time.h>
28
29 #ifdef HAVE_CONFIG_H
30 #include <config.h>
31 #endif
32 #include <utils.h>
33 #include <log.h>
34 #include <resp.h>
35
36 static void passdata(int in, int out)
37 {
38     int ret, len, off;
39     char *buf;
40     
41     buf = smalloc(65536);
42     while(1) {
43         len = read(in, buf, 65536);
44         if(len < 0) {
45             flog(LOG_ERR, "sendfile: could not read input: %s", strerror(errno));
46             break;
47         }
48         if(len == 0)
49             break;
50         for(off = 0; off < len; off += ret) {
51             ret = write(out, buf + off, len - off);
52             if(ret < 0) {
53                 flog(LOG_ERR, "sendfile: could not write output: %s", strerror(errno));
54                 break;
55             }
56         }
57     }
58     free(buf);
59 }
60
61 static int strrcmp(char *str, char *end)
62 {
63     return(strcmp(str + strlen(str) - strlen(end), end));
64 }
65
66 static char *getmimetype(char *file, struct stat *sb)
67 {
68     /* Rewrite with libmagic. */
69     if(!strrcmp(file, ".html"))
70         return("text/html");
71     if(!strrcmp(file, ".xhtml"))
72         return("application/xhtml+xml");
73     if(!strrcmp(file, ".txt"))
74         return("text/plain");
75     if(!strrcmp(file, ".py"))
76         return("text/plain");
77     if(!strrcmp(file, ".c"))
78         return("text/plain");
79     return("application/octet-stream");
80 }
81
82 static void checkcache(char *file, struct stat *sb)
83 {
84     char *hdr;
85     
86     if((hdr = getenv("REQ_IF_MODIFIED_SINCE")) != NULL) {
87         if(parsehttpdate(hdr) < sb->st_mtime)
88             return;
89         printf("HTTP/1.1 304 Not Modified\r\n");
90         printf("Date: %s\r\n", fmthttpdate(time(NULL)));
91         printf("Content-Length: 0\r\n");
92         printf("\r\n");
93         exit(0);
94     }
95 }
96
97 int main(int argc, char **argv)
98 {
99     char *file;
100     struct stat sb;
101     int fd;
102     
103     if(argc < 4) {
104         flog(LOG_ERR, "usage: sendfile METHOD URL REST");
105         exit(1);
106     }
107     if((file = getenv("REQ_X_ASH_FILE")) == NULL) {
108         flog(LOG_ERR, "sendfile: needs to be called with the X-Ash-File header");
109         exit(1);
110     }
111     if(*argv[3]) {
112         simpleerror(1, 404, "Not Found", "The requested URL has no corresponding resource.");
113         exit(0);
114     }
115     if(stat(file, &sb) || ((fd = open(file, O_RDONLY)) < 0)) {
116         flog(LOG_ERR, "sendfile: could not stat input file %s: %s", file, strerror(errno));
117         simpleerror(1, 500, "Internal Error", "The server could not access its own data.");
118         exit(1);
119     }
120     
121     checkcache(file, &sb);
122     
123     printf("HTTP/1.1 200 OK\r\n");
124     printf("Content-Type: %s\r\n", getmimetype(file, &sb));
125     printf("Content-Length: %ji\r\n", (intmax_t)sb.st_size);
126     printf("Last-Modified: %s\r\n", fmthttpdate(sb.st_mtime));
127     printf("Date: %s\r\n", fmthttpdate(time(NULL)));
128     printf("\r\n");
129     fflush(stdout);
130     if(strcasecmp(argv[1], "head"))
131         passdata(fd, 1);
132     return(0);
133 }