Added CSS "support" 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, ".css"))
76         return("text/css");
77     if(!strrcmp(file, ".py"))
78         return("text/plain");
79     if(!strrcmp(file, ".c"))
80         return("text/plain");
81     return("application/octet-stream");
82 }
83
84 static void checkcache(char *file, struct stat *sb)
85 {
86     char *hdr;
87     
88     if((hdr = getenv("REQ_IF_MODIFIED_SINCE")) != NULL) {
89         if(parsehttpdate(hdr) < sb->st_mtime)
90             return;
91         printf("HTTP/1.1 304 Not Modified\r\n");
92         printf("Date: %s\r\n", fmthttpdate(time(NULL)));
93         printf("Content-Length: 0\r\n");
94         printf("\r\n");
95         exit(0);
96     }
97 }
98
99 int main(int argc, char **argv)
100 {
101     char *file;
102     struct stat sb;
103     int fd;
104     
105     if(argc < 4) {
106         flog(LOG_ERR, "usage: sendfile METHOD URL REST");
107         exit(1);
108     }
109     if((file = getenv("REQ_X_ASH_FILE")) == NULL) {
110         flog(LOG_ERR, "sendfile: needs to be called with the X-Ash-File header");
111         exit(1);
112     }
113     if(*argv[3]) {
114         simpleerror(1, 404, "Not Found", "The requested URL has no corresponding resource.");
115         exit(0);
116     }
117     if(stat(file, &sb) || ((fd = open(file, O_RDONLY)) < 0)) {
118         flog(LOG_ERR, "sendfile: could not stat input file %s: %s", file, strerror(errno));
119         simpleerror(1, 500, "Internal Error", "The server could not access its own data.");
120         exit(1);
121     }
122     
123     checkcache(file, &sb);
124     
125     printf("HTTP/1.1 200 OK\r\n");
126     printf("Content-Type: %s\r\n", getmimetype(file, &sb));
127     printf("Content-Length: %ji\r\n", (intmax_t)sb.st_size);
128     printf("Last-Modified: %s\r\n", fmthttpdate(sb.st_mtime));
129     printf("Date: %s\r\n", fmthttpdate(time(NULL)));
130     printf("\r\n");
131     fflush(stdout);
132     if(strcasecmp(argv[1], "head"))
133         passdata(fd, 1);
134     return(0);
135 }