2 ashd - A Sane HTTP Daemon
3 Copyright (C) 2008 Fredrik Tolf <fredrik@dolda2000.com>
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.
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.
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/>.
36 static void passdata(int in, int out)
43 len = read(in, buf, 65536);
45 flog(LOG_ERR, "sendfile: could not read input: %s", strerror(errno));
50 for(off = 0; off < len; off += ret) {
51 ret = write(out, buf + off, len - off);
53 flog(LOG_ERR, "sendfile: could not write output: %s", strerror(errno));
61 static int strrcmp(char *str, char *end)
63 return(strcmp(str + strlen(str) - strlen(end), end));
66 static char *getmimetype(char *file, struct stat *sb)
68 /* Rewrite with libmagic. */
69 if(!strrcmp(file, ".html"))
71 if(!strrcmp(file, ".xhtml"))
72 return("application/xhtml+xml");
73 if(!strrcmp(file, ".txt"))
75 if(!strrcmp(file, ".py"))
77 if(!strrcmp(file, ".c"))
79 return("application/octet-stream");
82 static void checkcache(char *file, struct stat *sb)
86 if((hdr = getenv("REQ_IF_MODIFIED_SINCE")) != NULL) {
87 if(parsehttpdate(hdr) < sb->st_mtime)
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");
97 int main(int argc, char **argv)
104 flog(LOG_ERR, "usage: sendfile METHOD URL REST");
107 if((file = getenv("REQ_X_ASH_FILE")) == NULL) {
108 flog(LOG_ERR, "sendfile: needs to be called with the X-Ash-File header");
112 simpleerror(1, 404, "Not Found", "The requested URL has no corresponding resource.");
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.");
121 checkcache(file, &sb);
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)));
130 if(strcasecmp(argv[1], "head"))