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/>.
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
47 unsigned int len, hash;
57 double level, last, etime, wtime;
58 typedbuf(struct waiting) brim;
68 double size, rate, retain, warnrate;
72 static struct bucket *sbuckets[1 << SBUCKETS];
73 static struct bucket **buckets = sbuckets;
74 static int hashlen = SBUCKETS, nbuckets = 0;
75 static typedbuf(struct btime) timeheap;
76 static int child, reload;
78 static const struct config defcfg = {
79 .size = 100, .rate = 10, .warnrate = 60,
80 .retain = 10, .brimsize = 10,
82 static struct config cf;
84 static double rtime(void)
87 static struct timespec or;
90 clock_gettime(CLOCK_MONOTONIC, &ts);
95 return((ts.tv_sec - or.tv_sec) + ((ts.tv_nsec - or.tv_nsec) / 1000000000.0));
98 static struct source reqsource(struct hthead *req)
106 ret = (struct source){};
107 if((sa = getheader(req, "X-Ash-Address")) != NULL) {
108 if(inet_pton(AF_INET, sa, &a4) == 1) {
110 memcpy(ret.data, &a4, ret.len = sizeof(a4));
111 } else if(inet_pton(AF_INET6, sa, &a6) == 1) {
113 memcpy(ret.data, &a6, ret.len = sizeof(a6));
116 for(i = 0, ret.hash = ret.type; i < ret.len; i++)
117 ret.hash = (ret.hash * 31) + ret.data[i];
121 static int srccmp(const struct source *a, const struct source *b)
125 if((c = a->len - b->len) != 0)
127 if((c = a->type - b->type) != 0)
129 return(memcmp(a->data, b->data, a->len));
132 static const char *formatsrc(const struct source *src)
134 static char buf[128];
140 memcpy(&a4, src->data, sizeof(a4));
141 if(!inet_ntop(AF_INET, &a4, buf, sizeof(buf)))
142 return("<invalid ipv4>");
145 memcpy(&a6, src->data, sizeof(a6));
146 if(!inet_ntop(AF_INET6, &a6, buf, sizeof(buf)))
147 return("<invalid ipv6>");
150 return("<invalid source record>");
154 static void rehash(int nlen)
156 unsigned int i, o, n, m, pl, nl;
157 struct bucket **new, **old;
160 if(nlen <= SBUCKETS) {
164 new = szmalloc(sizeof(*new) * (1 << nlen));
169 pl = 1 << hashlen; nl = 1 << nlen; m = nl - 1;
170 for(i = 0; i < pl; i++) {
173 for(o = old[i]->id.hash & m, n = 0; n < nl; o = (o + 1) & m, n++) {
186 static struct bucket *hashget(const struct source *src)
188 unsigned int i, n, N, m;
191 m = (N = (1 << hashlen)) - 1;
192 for(i = src->hash & m, n = 0; n < N; i = (i + 1) & m, n++) {
194 if(bk && !srccmp(&bk->id, src))
197 for(i = src->hash & m; buckets[i]; i = (i + 1) & m);
198 buckets[i] = bk = szmalloc(sizeof(*bk));
199 memcpy(&bk->id, src, sizeof(*src));
200 bk->last = bk->etime = now;
203 if(++nbuckets > (1 << (hashlen - 1)))
208 static void hashdel(struct bucket *bk)
210 unsigned int i, o, p, n, N, m;
213 m = (N = (1 << hashlen)) - 1;
214 for(i = bk->id.hash & m, n = 0; n < N; i = (i + 1) & m, n++) {
215 assert((sb = buckets[i]) != NULL);
216 if(!srccmp(&sb->id, &bk->id))
221 for(o = (i + 1) & m; buckets[o] != NULL; o = (o + 1) & m) {
223 p = (sb->id.hash - i) & m;
224 if((p == 0) || (p > ((o - i) & m))) {
230 if(--nbuckets <= (1 << (hashlen - 3)))
234 static void thraise(struct btime bt, int n)
240 if(timeheap.b[p].tm <= bt.tm)
242 (timeheap.b[n] = timeheap.b[p]).bk->thpos = n;
245 (timeheap.b[n] = bt).bk->thpos = n;
248 static void thlower(struct btime bt, int n)
253 c2 = (c1 = (n << 1) + 1) + 1;
256 c = ((c2 < timeheap.d) && (timeheap.b[c2].tm < timeheap.b[c1].tm)) ? c2 : c1;
257 if(timeheap.b[c].tm > bt.tm)
259 (timeheap.b[n] = timeheap.b[c]).bk->thpos = n;
262 (timeheap.b[n] = bt).bk->thpos = n;
265 static void thadjust(struct btime bt, int n)
267 if((n > 0) && (timeheap.b[(n - 1) >> 1].tm > bt.tm))
273 static void freebucket(struct bucket *bk)
279 if((n = bk->thpos) >= 0) {
280 r = timeheap.b[--timeheap.d];
284 for(i = 0; i < bk->brim.d; i++) {
285 freehthead(bk->brim.b[i].req);
286 close(bk->brim.b[i].fd);
292 static void updbtime(struct bucket *bk)
296 tm = (bk->level == 0) ? (bk->etime + cf.retain) : (bk->last + (bk->level / cf.rate) + cf.retain);
297 if((bk->blocked > 0) && ((tm2 = bk->wtime + cf.warnrate) > tm))
300 if((bk->brim.d > 0) && ((tm2 = bk->last + ((bk->level - cf.size) / cf.rate)) < tm))
302 if((bk->blocked > 0) && ((tm2 = bk->wtime + cf.warnrate) < tm))
306 sizebuf(timeheap, ++timeheap.d);
307 thraise((struct btime){bk, tm}, timeheap.d - 1);
309 thadjust((struct btime){bk, tm}, bk->thpos);
313 static void tickbucket(struct bucket *bk)
317 delta = now - bk->last;
320 if((bk->level -= delta * cf.rate) < 0) {
322 bk->etime = now + (bk->level / cf.rate);
325 while((bk->brim.d > 0) && (bk->level < cf.size)) {
326 if(sendreq(child, bk->brim.b[0].req, bk->brim.b[0].fd)) {
327 flog(LOG_ERR, "ratequeue: could not pass request to child: %s", strerror(errno));
330 freehthead(bk->brim.b[0].req);
331 close(bk->brim.b[0].fd);
335 if((bk->blocked > 0) && (now - bk->wtime >= cf.warnrate)) {
336 flog(LOG_NOTICE, "ratequeue: blocked %i requests from %s", bk->blocked, formatsrc(&bk->id));
342 static void checkbtime(struct bucket *bk)
345 if((bk->level == 0) && (now >= bk->etime + cf.retain) && (bk->blocked <= 0)) {
352 static void serve(struct hthead *req, int fd)
358 src = reqsource(req);
361 if(bk->level < cf.size) {
363 if(sendreq(child, req, fd)) {
364 flog(LOG_ERR, "ratequeue: could not pass request to child: %s", strerror(errno));
369 } else if(bk->brim.d < cf.brimsize) {
370 bufadd(bk->brim, ((struct waiting){.req = req, .fd = fd}));
372 if(bk->blocked < 0) {
373 flog(LOG_NOTICE, "ratequeue: blocking requests from %s", formatsrc(&bk->id));
377 simpleerror(fd, 429, "Too many requests", "Your client is being throttled for issuing too frequent requests.");
385 static int parseint(const char *str, int *dst)
390 buf = strtol(str, &p, 0);
397 static int parsefloat(const char *str, double *dst)
402 buf = strtod(str, &p);
409 static int readconf(char *path, struct config *buf)
415 if((fp = fopen(path, "r")) == NULL) {
416 flog(LOG_ERR, "ratequeue: %s: %s", path, strerror(errno));
420 s = mkcfparser(fp, path);
424 if(!strcmp(s->argv[0], "eof")) {
426 } else if(!strcmp(s->argv[0], "size")) {
427 if((s->argc < 2) || parsefloat(s->argv[1], &buf->size)) {
428 flog(LOG_ERR, "%s:%i: missing or invalid `size' argument");
431 } else if(!strcmp(s->argv[0], "rate")) {
432 if((s->argc < 2) || parsefloat(s->argv[1], &buf->rate)) {
433 flog(LOG_ERR, "%s:%i: missing or invalid `rate' argument");
436 } else if(!strcmp(s->argv[0], "brim")) {
437 if((s->argc < 2) || parseint(s->argv[1], &buf->brimsize)) {
438 flog(LOG_ERR, "%s:%i: missing or invalid `brim' argument");
442 flog(LOG_WARNING, "%s:%i: unknown directive `%s'", s->file, s->lno, s->argv[0]);
452 static void huphandler(int sig)
457 static void usage(FILE *out)
459 fprintf(out, "usage: ratequeue [-h] [-s BUCKET-SIZE] [-r RATE] [-b BRIM-SIZE] PROGRAM [ARGS...]\n");
462 int main(int argc, char **argv)
474 while((c = getopt(argc, argv, "+hc:s:r:b:")) >= 0) {
483 parsefloat(optarg, &cf.size);
486 parsefloat(optarg, &cf.rate);
489 parseint(optarg, &cf.brimsize);
493 if(argc - optind < 1) {
498 if(readconf(cfname, &cfbuf))
502 if((child = stdmkchild(argv + optind, NULL, NULL)) < 0) {
503 flog(LOG_ERR, "ratequeue: could not fork child: %s", strerror(errno));
506 sigaction(SIGHUP, &(struct sigaction){.sa_handler = huphandler}, NULL);
510 if(!readconf(cfname, &cfbuf))
516 pfd = (struct pollfd){.fd = 0, .events = POLLIN};
517 timeout = (timeheap.d > 0) ? timeheap.b[0].tm : -1;
518 if((rv = poll(&pfd, 1, (timeout < 0) ? -1 : (int)((timeout + 0.1 - now) * 1000))) < 0) {
520 flog(LOG_ERR, "ratequeue: error in poll: %s", strerror(errno));
525 if((fd = recvreq(0, &req)) < 0) {
529 flog(LOG_ERR, "recvreq: %s", strerror(errno));
534 while((timeheap.d > 0) && ((now = rtime()) >= timeheap.b[0].tm))
535 checkbtime(timeheap.b[0].bk);