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/>.
25 #include <sys/socket.h>
39 struct user *next, *prev;
44 static int ignore = 0;
45 static char *mgroup = NULL;
46 static char *dirname = NULL;
47 static char **childspec;
48 static uid_t minuid = 0;
49 static int usesyslog = 0;
50 static struct user *users = NULL;
52 static void login(struct passwd *pwd)
58 if(initgroups(pwd->pw_name, pwd->pw_gid)) {
59 flog(LOG_ERR, "could not init group list for %s: %s", pwd->pw_name, strerror(errno));
62 if(setgid(pwd->pw_gid)) {
63 flog(LOG_ERR, "could not switch group for %s: %s", pwd->pw_name, strerror(errno));
66 if(setuid(pwd->pw_uid)) {
67 flog(LOG_ERR, "could not switch user to %s: %s", pwd->pw_name, strerror(errno));
71 if(getuid() != pwd->pw_uid)
74 if(chdir(pwd->pw_dir)) {
75 flog(LOG_ERR, "could not change to home directory for %s: %s", pwd->pw_name, strerror(errno));
79 putenv("ASHD_USESYSLOG=1");
81 unsetenv("ASHD_USESYSLOG");
82 putenv(sprintf2("HOME=%s", pwd->pw_dir));
83 putenv(sprintf2("SHELL=%s", pwd->pw_shell));
84 putenv(sprintf2("USER=%s", pwd->pw_name));
85 putenv(sprintf2("LOGNAME", pwd->pw_name));
86 /* There's whole load of other stuff one could want to do here --
87 * getting Kerberos credentials, running PAM session modules, and
88 * who knows what. I'll add them along as I find them useful. */
89 if(((fd = open(".ashd/output", O_WRONLY | O_APPEND)) >= 0) ||
90 ((fd = open("/dev/null", O_WRONLY)) >= 0)) {
94 if(((fd = open(".ashd/error", O_WRONLY | O_APPEND)) >= 0) ||
95 ((fd = open("/dev/null", O_WRONLY)) >= 0)) {
101 static void execchild(struct passwd *pwd)
104 execl(".ashd/handler", ".ashd/handler", NULL);
105 if(dirname != NULL) {
106 if(access(dirname, X_OK | R_OK))
109 execvp(childspec[0], childspec);
112 static int forkchild(char *usrnm)
118 /* XXX: There should be a way for the child to report errors (like
119 * 404 when htpub doesn't exist), but for now I don't bother with
120 * that. I might return to it at some later time. */
121 if(socketpair(PF_UNIX, SOCK_SEQPACKET, 0, fd))
123 if((pwd = getpwnam(usrnm)) == NULL) {
124 flog(LOG_ERR, "already discovered user `%s' has disappeared", usrnm);
127 if((pid = fork()) < 0)
138 fcntl(fd[1], F_SETFD, FD_CLOEXEC);
142 static void serve2(struct user *usr, struct hthead *req, int fd)
145 usr->fd = forkchild(usr->name);
146 if(sendreq(usr->fd, req, fd)) {
147 if((errno == EPIPE) || (errno == ECONNRESET)) {
148 /* Assume that the child has crashed and restart it. */
150 usr->fd = forkchild(usr->name);
151 if(!sendreq(usr->fd, req, fd))
154 flog(LOG_ERR, "could not pass on request to user `%s': %s", usr->name, strerror(errno));
157 simpleerror(fd, 500, "User Error", "The request handler for that user keeps crashing.");
161 static void initnew(struct hthead *req, int fd, char *usrnm)
168 pwd = getpwnam(usrnm);
170 simpleerror(fd, 404, "Not Found", "No such resource could be found.");
173 if(pwd->pw_uid < minuid) {
174 simpleerror(fd, 404, "Not Found", "No such resource could be found.");
178 if((grp = getgrnam(mgroup)) == NULL) {
179 flog(LOG_ERR, "unknown group %s specified to userplex", mgroup);
180 simpleerror(fd, 500, "Configuration Error", "The server has been erroneously configured.");
184 if(grp->gr_gid == pwd->pw_gid) {
187 for(i = 0; grp->gr_mem[i] != NULL; i++) {
188 if(!strcmp(grp->gr_mem[i], usrnm)) {
195 simpleerror(fd, 404, "Not Found", "No such resource could be found.");
200 usr->name = sstrdup(usrnm);
207 serve2(usr, req, fd);
210 static void serve(struct hthead *req, int fd)
215 if((p = strchr(req->rest, '/')) == NULL) {
217 stdredir(req, fd, 301, sprintf3("%s/", req->url));
219 simpleerror(fd, 404, "Not Found", "No such resource could be found.");
223 usrnm = sstrdup(req->rest);
225 for(usr = users; usr != NULL; usr = usr->next) {
226 if(!strcmp(usr->name, usrnm)) {
227 serve2(usr, req, fd);
231 initnew(req, fd, usrnm);
237 static void sighandler(int sig)
241 static void usage(FILE *out)
243 fprintf(out, "usage: userplex [-hIs] [-g GROUP] [-m MIN-UID] [-d PUB-DIR] [PROGRAM ARGS...]\n");
246 int main(int argc, char **argv)
251 struct charvbuf csbuf;
253 while((c = getopt(argc, argv, "+hIsg:m:d:")) >= 0) {
262 if((minuid = atoi(optarg)) < 1) {
263 fprintf(stderr, "userplex: argument to -m must be greater than 0\n");
282 childspec = argv + optind;
287 bufadd(csbuf, "dirplex");
288 bufadd(csbuf, dirname);
292 signal(SIGCHLD, SIG_IGN);
293 signal(SIGPIPE, sighandler);
295 if((fd = recvreq(0, &req)) < 0) {
297 flog(LOG_ERR, "recvreq: %s", strerror(errno));