dirl/quark.c

568 lines
14 KiB
C
Raw Normal View History

2009-08-15 18:56:11 +00:00
/* See LICENSE file for license details. */
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
2011-06-26 09:57:34 +00:00
#include <grp.h>
2009-08-15 18:56:11 +00:00
#include <netdb.h>
#include <pwd.h>
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2011-06-26 09:57:34 +00:00
#include <time.h>
#include <unistd.h>
#include <netinet/in.h>
2009-08-15 18:56:11 +00:00
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/wait.h>
2014-07-28 11:33:58 +00:00
#include "arg.h"
char *argv0;
2009-08-15 18:56:11 +00:00
#define LENGTH(x) (sizeof x / sizeof x[0])
#define MAXBUFLEN 1024
2011-06-26 09:57:34 +00:00
#define MIN(x,y) ((x) < (y) ? (x) : (y))
2009-08-15 18:56:11 +00:00
enum {
GET = 4,
HEAD = 5,
};
2009-08-15 18:56:11 +00:00
typedef struct {
const char *extension;
const char *mimetype;
} MimeType;
2011-02-16 20:29:55 +00:00
typedef struct {
int type;
int fd;
} Request;
2009-08-15 18:56:11 +00:00
static const char HttpOk[] = "200 OK";
static const char HttpMoved[] = "301 Moved Permanently";
static const char HttpNotModified[] = "304 Not Modified";
2009-08-15 18:56:11 +00:00
static const char HttpUnauthorized[] = "401 Unauthorized";
static const char HttpNotFound[] = "404 Not Found";
static const char texthtml[] = "text/html";
enum {
HEADER,
CONTENTLEN,
LOCATION,
CONTENTTYPE,
MODIFIED
};
static const char *resentry[] = {
[HEADER] = "HTTP/1.1 %s\r\nConnection: close\r\nDate: %s\r\nServer: quark-"VERSION"\r\n",
[CONTENTLEN] = "Content-Length: %lu\r\n",
[LOCATION] = "Location: %s%s\r\n",
[CONTENTTYPE] = "Content-Type: %s\r\n",
[MODIFIED] = "Last-Modified: %s\r\n"
};
static ssize_t writetext(const char *buf);
static ssize_t writedata(const char *buf, size_t buflen);
static void atomiclog(int fd, const char *errstr, va_list ap);
static void logmsg(const char *errstr, ...);
static void logerrmsg(const char *errstr, ...);
static void die(const char *errstr, ...);
static int putresentry(int type, ...);
2009-08-15 18:56:11 +00:00
static void response(void);
2010-03-28 01:09:14 +00:00
static void responsecgi(void);
2009-08-15 18:56:11 +00:00
static void responsedir(void);
static void responsedirdata(DIR *d);
static void responsefile(void);
static void responsefiledata(int fd, off_t size);
static int getreqentry(char *name, char *target, size_t targetlen, char *breakchars);
2009-08-15 18:56:11 +00:00
static int request(void);
static void serve(int fd);
static void sighandler(int sig);
static char *tstamp(void);
#include "config.h"
static char location[256];
static int running = 1;
static char host[NI_MAXHOST];
static char reqbuf[MAXBUFLEN+1];
static char resbuf[MAXBUFLEN+1];
static char reqhost[256];
static char reqmod[256];
2011-02-16 20:29:55 +00:00
static int fd;
static Request req;
2009-08-15 18:56:11 +00:00
ssize_t
writedata(const char *buf, size_t buf_len) {
ssize_t r, offset;
2009-08-15 18:56:11 +00:00
for(offset = 0; offset < buf_len; offset += r) {
2011-02-16 20:29:55 +00:00
if((r = write(req.fd, buf + offset, buf_len - offset)) == -1) {
logerrmsg("client %s closed connection\n", host);
return 1;
2009-08-15 18:56:11 +00:00
}
}
return 0;
2009-08-15 18:56:11 +00:00
}
ssize_t
writetext(const char *buf) {
return writedata(buf, strlen(buf));
}
void
atomiclog(int fd, const char *errstr, va_list ap) {
static char buf[512];
int n;
/*
assemble the message in buf and write it in one pass
to avoid interleaved concurrent writes on a shared fd.
*/
n = snprintf(buf, sizeof buf, "%s: ", tstamp());
n += vsnprintf(buf + n, sizeof buf - n, errstr, ap);
if (n >= sizeof buf)
n = sizeof buf - 1;
write(fd, buf, n);
}
2009-08-15 18:56:11 +00:00
void
logmsg(const char *errstr, ...) {
va_list ap;
va_start(ap, errstr);
atomiclog(STDOUT_FILENO, errstr, ap);
2009-08-15 18:56:11 +00:00
va_end(ap);
}
void
logerrmsg(const char *errstr, ...) {
va_list ap;
va_start(ap, errstr);
atomiclog(STDERR_FILENO, errstr, ap);
2009-08-15 18:56:11 +00:00
va_end(ap);
}
void
die(const char *errstr, ...) {
va_list ap;
va_start(ap, errstr);
atomiclog(STDERR_FILENO, errstr, ap);
2009-08-15 18:56:11 +00:00
va_end(ap);
exit(EXIT_FAILURE);
}
int
putresentry(int type, ...) {
va_list ap;
2009-08-15 18:56:11 +00:00
va_start(ap, type);
if(vsnprintf(resbuf, MAXBUFLEN, resentry[type], ap) >= MAXBUFLEN) {
logerrmsg("vsnprintf failed, buffer size exceeded");
2009-08-15 18:56:11 +00:00
return -1;
}
va_end(ap);
return writetext(resbuf);
2009-08-15 18:56:11 +00:00
}
void
responsefiledata(int fd, off_t size) {
2011-06-26 09:57:34 +00:00
char buf[BUFSIZ];
ssize_t n;
2011-06-26 09:57:34 +00:00
for(; (n = read(fd, buf, MIN(size, sizeof buf))) > 0; size -= n)
if(write(req.fd, buf, n) != n)
logerrmsg("error writing to client %s at %ls: %s\n", host, n, strerror(errno));
2011-06-26 09:57:34 +00:00
if(n == -1)
logerrmsg("error reading from file: %s\n", strerror(errno));
2009-08-15 18:56:11 +00:00
}
void
responsefile(void) {
const char *mimetype = "unknown";
char *p;
char mod[25];
int i, ffd, r;
2009-08-15 18:56:11 +00:00
struct stat st;
time_t t;
2009-08-15 18:56:11 +00:00
if((r = stat(reqbuf, &st)) == -1 || (ffd = open(reqbuf, O_RDONLY)) == -1) {
/* file not found */
logerrmsg("%s requests unknown file %s\n", host, reqbuf);
if(putresentry(HEADER, HttpNotFound, tstamp())
|| putresentry(CONTENTTYPE, texthtml))
return;
2011-02-16 20:29:55 +00:00
if(req.type == GET)
writetext("\r\n<html><body>404 Not Found</body></html>\r\n");
2009-08-15 18:56:11 +00:00
}
else {
/* check if modified */
t = st.st_mtim.tv_sec;
memcpy(mod, asctime(gmtime(&t)), 24);
mod[24] = 0;
if(!strcmp(reqmod, mod) && !putresentry(HEADER, HttpNotModified, tstamp())) {
/* not modified, we're done here*/
} else {
/* determine mime-type */
if((p = strrchr(reqbuf, '.'))) {
p++;
for(i = 0; i < LENGTH(servermimes); i++)
if(!strcmp(servermimes[i].extension, p)) {
mimetype = servermimes[i].mimetype;
break;
}
}
/* serve file */
if(putresentry(HEADER, HttpOk, tstamp())
|| putresentry(MODIFIED, mod)
|| putresentry(CONTENTLEN, st.st_size)
|| putresentry(CONTENTTYPE, mimetype))
return;
if(req.type == GET && !writetext("\r\n"))
responsefiledata(ffd, st.st_size);
2009-08-15 18:56:11 +00:00
}
close(ffd);
}
}
void
responsedirdata(DIR *d) {
struct dirent *e;
if(putresentry(HEADER, HttpOk, tstamp())
|| putresentry(CONTENTTYPE, texthtml))
2009-08-15 18:56:11 +00:00
return;
2011-02-16 20:29:55 +00:00
if(req.type == GET) {
if(writetext("\r\n<html><body><a href='..'>..</a><br>\r\n"))
2009-08-15 18:56:11 +00:00
return;
while((e = readdir(d))) {
if(e->d_name[0] == '.') /* ignore hidden files, ., .. */
continue;
if(snprintf(resbuf, MAXBUFLEN, "<a href='%s%s'>%s</a><br>\r\n",
reqbuf, e->d_name, e->d_name) >= MAXBUFLEN)
{
logerrmsg("snprintf failed, buffer sizeof exceeded");
return;
}
if(writetext(resbuf))
return;
2009-08-15 18:56:11 +00:00
}
writetext("</body></html>\r\n");
2009-08-15 18:56:11 +00:00
}
}
void
responsedir(void) {
ssize_t len = strlen(reqbuf);
DIR *d;
if((reqbuf[len - 1] != '/') && (len + 1 < MAXBUFLEN)) {
2009-08-15 18:56:11 +00:00
/* add directory terminator if necessary */
reqbuf[len++] = '/';
reqbuf[len] = 0;
logmsg("redirecting %s to %s%s\n", host, location, reqbuf);
if(putresentry(HEADER, HttpMoved, tstamp())
|| putresentry(LOCATION, location, reqbuf)
|| putresentry(CONTENTTYPE, texthtml))
return;
2011-02-16 20:29:55 +00:00
if(req.type == GET)
writetext("\r\n<html><body>301 Moved Permanently</a></body></html>\r\n");
2009-08-15 18:56:11 +00:00
return;
}
if(len + strlen(docindex) + 1 < MAXBUFLEN)
2009-08-15 18:56:11 +00:00
memcpy(reqbuf + len, docindex, strlen(docindex) + 1);
if(access(reqbuf, R_OK) == -1) { /* directory mode */
reqbuf[len] = 0; /* cut off docindex again */
if((d = opendir(reqbuf))) {
responsedirdata(d);
closedir(d);
}
else
logerrmsg("client %s requests %s but opendir failed: %s\n", host, reqbuf, strerror(errno));
2009-08-15 18:56:11 +00:00
}
else
responsefile(); /* docindex */
2010-03-28 01:09:14 +00:00
}
void
responsecgi(void) {
FILE *cgi;
int r;
2009-08-15 18:56:11 +00:00
2011-02-16 20:29:55 +00:00
if(req.type == GET)
setenv("REQUEST_METHOD", "GET", 1);
2011-02-16 20:29:55 +00:00
else if(req.type == HEAD)
setenv("REQUEST_METHOD", "HEAD", 1);
else
return;
if(*reqhost)
setenv("SERVER_NAME", reqhost, 1);
2010-03-28 01:09:14 +00:00
setenv("SCRIPT_NAME", cgi_script, 1);
setenv("REQUEST_URI", reqbuf, 1);
logmsg("CGI SERVER_NAME=%s SCRIPT_NAME=%s REQUEST_URI=%s\n", reqhost, cgi_script, reqbuf);
if(chdir(cgi_dir) == -1)
logerrmsg("chdir to cgi directory %s failed: %s\n", cgi_dir, strerror(errno));
2010-03-28 01:09:14 +00:00
if((cgi = popen(cgi_script, "r"))) {
if(putresentry(HEADER, HttpOk, tstamp()))
2010-03-28 01:09:14 +00:00
return;
while((r = fread(resbuf, 1, MAXBUFLEN, cgi)) > 0) {
if(writedata(resbuf, r)) {
2010-03-28 01:09:14 +00:00
pclose(cgi);
return;
}
}
pclose(cgi);
}
else {
logerrmsg("%s requests %s, but cannot run cgi script %s\n", host, cgi_script, reqbuf);
if(putresentry(HEADER, HttpNotFound, tstamp())
|| putresentry(CONTENTTYPE, texthtml))
return;
2011-02-16 20:29:55 +00:00
if(req.type == GET)
writetext("\r\n<html><body>404 Not Found</body></html>\r\n");
2010-03-28 01:09:14 +00:00
}
2009-08-15 18:56:11 +00:00
}
void
response(void) {
char *p;
struct stat st;
for(p = reqbuf; *p; p++)
if(*p == '\\' || (*p == '/' && *(p + 1) == '.')) { /* don't serve bogus or hidden files */
logerrmsg("%s requests bogus or hidden file %s\n", host, reqbuf);
if(putresentry(HEADER, HttpUnauthorized, tstamp())
|| putresentry(CONTENTTYPE, texthtml))
;
else
return;
2011-02-16 20:29:55 +00:00
if(req.type == GET)
writetext("\r\n<html><body>401 Unauthorized</body></html>\r\n");
2009-08-15 18:56:11 +00:00
return;
}
logmsg("%s requests: %s\n", host, reqbuf);
2010-03-28 01:09:14 +00:00
if(cgi_mode)
responsecgi();
else {
if(stat(reqbuf, &st) != -1 && S_ISDIR(st.st_mode))
2010-03-28 01:09:14 +00:00
responsedir();
else
responsefile();
}
2009-08-15 18:56:11 +00:00
}
int
getreqentry(char *name, char *target, size_t targetlen, char *breakchars) {
char *p, *res;
if((res = strstr(reqbuf, name))) {
for(res = res + strlen(name); *res && (*res == ' ' || *res == '\t'); ++res);
if(!*res)
return 1;
for(p = res; *p && !strchr(breakchars, *p); ++p);
if(!*p)
return 1;
if((size_t)(p - res) >= targetlen)
return 1;
memcpy(target, res, p - res);
target[p - res] = 0;
return 0;
}
return -1;
}
2009-08-15 18:56:11 +00:00
int
request(void) {
char *p, *res;
2009-08-15 19:01:53 +00:00
int r;
2010-03-28 01:09:14 +00:00
size_t offset = 0;
2009-08-15 18:56:11 +00:00
/* read request into reqbuf */
for( ; r > 0 && offset < MAXBUFLEN && (!strstr(reqbuf, "\r\n") || !strstr(reqbuf, "\n")); ) {
2011-02-16 20:29:55 +00:00
if((r = read(req.fd, reqbuf + offset, MAXBUFLEN - offset)) == -1) {
logerrmsg("read: %s\n", strerror(errno));
2010-03-28 01:09:14 +00:00
return -1;
}
offset += r;
reqbuf[offset] = 0; /* MAXBUFLEN byte of reqbuf is emergency 0 terminator */
}
/* extract host and mod */
if (getreqentry("Host:", reqhost, LENGTH(reqhost), " \t\r\n") != 0)
goto invalid_request;
if (getreqentry("If-Modified-Since:", reqmod, LENGTH(reqmod), "\r\n") == 1)
goto invalid_request;
/* extract method */
2010-03-28 01:09:14 +00:00
for(p = reqbuf; *p && *p != '\r' && *p != '\n'; p++);
2009-08-15 18:56:11 +00:00
if(*p == '\r' || *p == '\n') {
*p = 0;
2009-08-15 21:59:41 +00:00
/* check command */
if(!strncmp(reqbuf, "GET ", 4) && reqbuf[4] == '/')
2011-02-16 20:29:55 +00:00
req.type = GET;
else if(!strncmp(reqbuf, "HEAD ", 5) && reqbuf[5] == '/')
2011-02-16 20:29:55 +00:00
req.type = HEAD;
else
2009-08-15 21:59:41 +00:00
goto invalid_request;
} else {
2009-08-15 21:59:41 +00:00
goto invalid_request;
}
2009-08-15 18:56:11 +00:00
/* determine path */
2011-02-16 20:29:55 +00:00
for(res = reqbuf + req.type; *res && *(res + 1) == '/'; res++); /* strip '/' */
if(!*res)
2010-03-28 01:09:14 +00:00
goto invalid_request;
for(p = res; *p && *p != ' ' && *p != '\t'; p++);
if(!*p)
2010-03-28 01:09:14 +00:00
goto invalid_request;
2009-08-15 18:56:11 +00:00
*p = 0;
memmove(reqbuf, res, (p - res) + 1);
return 0;
2009-08-15 21:59:41 +00:00
invalid_request:
logerrmsg("%s performs invalid request %s\n", host, reqbuf);
2009-08-15 21:59:41 +00:00
return -1;
2009-08-15 18:56:11 +00:00
}
void
serve(int fd) {
int result;
socklen_t salen;
struct sockaddr sa;
while(running) {
salen = sizeof sa;
2011-02-16 20:29:55 +00:00
if((req.fd = accept(fd, &sa, &salen)) == -1) {
2009-08-15 21:11:26 +00:00
/* el cheapo socket release */
logerrmsg("cannot accept: %s, sleep a second...\n", strerror(errno));
sleep(1);
2009-08-15 21:11:26 +00:00
continue;
}
result = fork();
if(result == 0) {
2009-08-15 18:56:11 +00:00
close(fd);
host[0] = 0;
getnameinfo(&sa, salen, host, sizeof host, NULL, 0, NI_NOFQDN);
2009-08-15 18:56:11 +00:00
result = request();
2011-02-16 20:29:55 +00:00
shutdown(req.fd, SHUT_RD);
2009-08-15 18:56:11 +00:00
if(result == 0)
response();
2011-02-16 20:29:55 +00:00
shutdown(req.fd, SHUT_WR);
close(req.fd);
2009-08-15 18:56:11 +00:00
exit(EXIT_SUCCESS);
} else if (result == -1)
logerrmsg("fork failed: %s\n", strerror(errno));
2011-02-16 20:29:55 +00:00
close(req.fd);
2009-08-15 18:56:11 +00:00
}
logmsg("shutting down\n");
2009-08-15 18:56:11 +00:00
}
void
sighandler(int sig) {
if (sig == SIGCHLD) {
while(0 < waitpid(-1, NULL, WNOHANG));
} else {
logerrmsg("received signal: %s, closing down\n", strsignal(sig));
2009-08-15 18:56:11 +00:00
close(fd);
running = 0;
}
}
char *
tstamp(void) {
static char res[25];
time_t t = time(NULL);
memcpy(res, asctime(gmtime(&t)), 24);
res[24] = 0;
return res;
}
int
main(int argc, char *argv[]) {
struct addrinfo hints, *ai;
struct passwd *upwd;
struct group *gpwd;
2009-08-15 18:56:11 +00:00
int i;
ARGBEGIN {
case 'v':
die("quark-"VERSION"\n");
default:
die("usage: %s [-v]\n", argv0);
} ARGEND;
2009-08-15 18:56:11 +00:00
/* sanity checks */
if(user)
if(!(upwd = getpwnam(user)))
die("error: invalid user %s\n", user);
if(group)
if(!(gpwd = getgrnam(group)))
die("error: invalid group %s\n", group);
2009-08-15 18:56:11 +00:00
signal(SIGCHLD, sighandler);
signal(SIGHUP, sighandler);
signal(SIGINT, sighandler);
signal(SIGQUIT, sighandler);
signal(SIGABRT, sighandler);
signal(SIGTERM, sighandler);
2009-08-15 18:56:11 +00:00
/* init */
setbuf(stdout, NULL); /* unbuffered stdout */
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = AI_PASSIVE;
if((i = getaddrinfo(servername, serverport, &hints, &ai)))
die("error: getaddrinfo: %s\n", gai_strerror(i));
if((fd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol)) == -1) {
freeaddrinfo(ai);
die("error: socket: %s\n", strerror(errno));
}
if(bind(fd, ai->ai_addr, ai->ai_addrlen) == -1) {
close(fd);
freeaddrinfo(ai);
die("error: bind: %s\n", strerror(errno));
}
if(listen(fd, SOMAXCONN) == -1) {
close(fd);
freeaddrinfo(ai);
die("error: listen: %s\n", strerror(errno));
}
if(!strcmp(serverport, "80"))
i = snprintf(location, sizeof location, "http://%s", servername);
else
i = snprintf(location, sizeof location, "http://%s:%s", servername, serverport);
if(i >= sizeof location) {
close(fd);
freeaddrinfo(ai);
die("error: location too long\n");
}
if(chdir(docroot) == -1)
die("error: chdir %s: %s\n", docroot, strerror(errno));
if(chroot(".") == -1)
die("error: chroot .: %s\n", strerror(errno));
2009-08-15 18:56:11 +00:00
if(gpwd)
if(setgid(gpwd->gr_gid) == -1)
die("error: cannot set group id\n");
if(upwd)
if(setuid(upwd->pw_uid) == -1)
die("error: cannot set user id\n");
2009-08-15 18:56:11 +00:00
if(getuid() == 0)
die("error: won't run with root permissions, choose another user\n");
if(getgid() == 0)
die("error: won't run with root permissions, choose another group\n");
logmsg("listening on %s:%s using %s as root directory\n", servername, serverport, docroot);
2009-08-15 18:56:11 +00:00
serve(fd); /* main loop */
freeaddrinfo(ai);
return 0;
}