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 <arpa/inet.h>
45 unsigned int len, hash;
55 double level, last, etime, wtime;
56 typedbuf(struct waiting) brim;
66 double size, rate, retain, warnrate;
70 static struct bucket *sbuckets[1 << SBUCKETS];
71 static struct bucket **buckets = sbuckets;
72 static int hashlen = SBUCKETS, nbuckets = 0;
73 static typedbuf(struct btime) timeheap;
74 static int child, reload;
76 static const struct config defcfg = {
77 .size = 100, .rate = 10, .warnrate = 60,
78 .retain = 10, .brimsize = 10,
80 static struct config cf;
82 static double rtime(void)
85 static struct timespec or;
88 clock_gettime(CLOCK_MONOTONIC, &ts);
93 return((ts.tv_sec - or.tv_sec) + ((ts.tv_nsec - or.tv_nsec) / 1000000000.0));
96 static struct source reqsource(struct hthead *req)
104 ret = (struct source){};
105 if((sa = getheader(req, "X-Ash-Address")) != NULL) {
106 if(inet_pton(AF_INET, sa, &a4) == 1) {
108 memcpy(ret.data, &a4, ret.len = sizeof(a4));
109 } else if(inet_pton(AF_INET6, sa, &a6) == 1) {
111 memcpy(ret.data, &a6, ret.len = sizeof(a6));
114 for(i = 0, ret.hash = ret.type; i < ret.len; i++)
115 ret.hash = (ret.hash * 31) + ret.data[i];
119 static int srccmp(const struct source *a, const struct source *b)
123 if((c = a->len - b->len) != 0)
125 if((c = a->type - b->type) != 0)
127 return(memcmp(a->data, b->data, a->len));
130 static const char *formatsrc(const struct source *src)
132 static char buf[128];
138 memcpy(&a4, src->data, sizeof(a4));
139 if(!inet_ntop(AF_INET, &a4, buf, sizeof(buf)))
140 return("<invalid ipv4>");
143 memcpy(&a6, src->data, sizeof(a6));
144 if(!inet_ntop(AF_INET6, &a6, buf, sizeof(buf)))
145 return("<invalid ipv6>");
148 return("<invalid source record>");
152 static void rehash(int nlen)
154 unsigned int i, o, n, m, pl, nl;
155 struct bucket **new, **old;
158 if(nlen <= SBUCKETS) {
162 new = szmalloc(sizeof(*new) * (1 << nlen));
167 pl = 1 << hashlen; nl = 1 << nlen; m = nl - 1;
168 for(i = 0; i < pl; i++) {
171 for(o = old[i]->id.hash & m, n = 0; n < nl; o = (o + 1) & m, n++) {
184 static struct bucket *hashget(const struct source *src)
186 unsigned int i, n, N, m;
189 m = (N = (1 << hashlen)) - 1;
190 for(i = src->hash & m, n = 0; n < N; i = (i + 1) & m, n++) {
192 if(bk && !srccmp(&bk->id, src))
195 for(i = src->hash & m; buckets[i]; i = (i + 1) & m);
196 buckets[i] = bk = szmalloc(sizeof(*bk));
197 memcpy(&bk->id, src, sizeof(*src));
198 bk->last = bk->etime = now;
201 if(++nbuckets > (1 << (hashlen - 1)))
206 static void hashdel(struct bucket *bk)
208 unsigned int i, o, p, n, N, m;
211 m = (N = (1 << hashlen)) - 1;
212 for(i = bk->id.hash & m, n = 0; n < N; i = (i + 1) & m, n++) {
213 assert((sb = buckets[i]) != NULL);
214 if(!srccmp(&sb->id, &bk->id))
219 for(o = (i + 1) & m; buckets[o] != NULL; o = (o + 1) & m) {
221 p = (sb->id.hash - i) & m;
222 if((p == 0) || (p > ((o - i) & m))) {
228 if(--nbuckets <= (1 << (hashlen - 3)))
232 static void thraise(struct btime bt, int n)
238 if(timeheap.b[p].tm <= bt.tm)
240 (timeheap.b[n] = timeheap.b[p]).bk->thpos = n;
243 (timeheap.b[n] = bt).bk->thpos = n;
246 static void thlower(struct btime bt, int n)
251 c2 = (c1 = (n << 1) + 1) + 1;
254 c = ((c2 < timeheap.d) && (timeheap.b[c2].tm < timeheap.b[c1].tm)) ? c2 : c1;
255 if(timeheap.b[c].tm > bt.tm)
257 (timeheap.b[n] = timeheap.b[c]).bk->thpos = n;
260 (timeheap.b[n] = bt).bk->thpos = n;
263 static void thadjust(struct btime bt, int n)
265 if((n > 0) && (timeheap.b[(n - 1) >> 1].tm > bt.tm))
271 static void freebucket(struct bucket *bk)
277 if((n = bk->thpos) >= 0) {
278 r = timeheap.b[--timeheap.d];
282 for(i = 0; i < bk->brim.d; i++) {
283 freehthead(bk->brim.b[i].req);
284 close(bk->brim.b[i].fd);
290 static void updbtime(struct bucket *bk)
294 tm = (bk->level == 0) ? (bk->etime + cf.retain) : (bk->last + (bk->level / cf.rate) + cf.retain);
295 if((bk->blocked > 0) && ((tm2 = bk->wtime + cf.warnrate) > tm))
298 if((bk->brim.d > 0) && ((tm2 = bk->last + ((bk->level - cf.size) / cf.rate)) < tm))
300 if((bk->blocked > 0) && ((tm2 = bk->wtime + cf.warnrate) < tm))
304 sizebuf(timeheap, ++timeheap.d);
305 thraise((struct btime){bk, tm}, timeheap.d - 1);
307 thadjust((struct btime){bk, tm}, bk->thpos);
311 static void tickbucket(struct bucket *bk)
315 delta = now - bk->last;
318 if((bk->level -= delta * cf.rate) < 0) {
320 bk->etime = now + (bk->level / cf.rate);
323 while((bk->brim.d > 0) && (bk->level < cf.size)) {
324 if(sendreq(child, bk->brim.b[0].req, bk->brim.b[0].fd)) {
325 flog(LOG_ERR, "ratequeue: could not pass request to child: %s", strerror(errno));
328 freehthead(bk->brim.b[0].req);
329 close(bk->brim.b[0].fd);
333 if((bk->blocked > 0) && (now - bk->wtime >= cf.warnrate)) {
334 flog(LOG_NOTICE, "ratequeue: blocked %i requests from %s", bk->blocked, formatsrc(&bk->id));
340 static void checkbtime(struct bucket *bk)
343 if((bk->level == 0) && (now >= bk->etime + cf.retain) && (bk->blocked <= 0)) {
350 static void serve(struct hthead *req, int fd)
356 src = reqsource(req);
359 if(bk->level < cf.size) {
361 if(sendreq(child, req, fd)) {
362 flog(LOG_ERR, "ratequeue: could not pass request to child: %s", strerror(errno));
367 } else if(bk->brim.d < cf.brimsize) {
368 bufadd(bk->brim, ((struct waiting){.req = req, .fd = fd}));
370 if(bk->blocked < 0) {
371 flog(LOG_NOTICE, "ratequeue: blocking requests from %s", formatsrc(&bk->id));
375 simpleerror(fd, 429, "Too many requests", "Your client is being throttled for issuing too frequent requests.");
383 static int parseint(const char *str, int *dst)
388 buf = strtol(str, &p, 0);
395 static int parsefloat(const char *str, double *dst)
400 buf = strtod(str, &p);
407 static int readconf(char *path, struct config *buf)
413 if((fp = fopen(path, "r")) == NULL) {
414 flog(LOG_ERR, "ratequeue: %s: %s", path, strerror(errno));
418 s = mkcfparser(fp, path);
422 if(!strcmp(s->argv[0], "eof")) {
424 } else if(!strcmp(s->argv[0], "size")) {
425 if((s->argc < 2) || parsefloat(s->argv[1], &buf->size)) {
426 flog(LOG_ERR, "%s:%i: missing or invalid `size' argument");
429 } else if(!strcmp(s->argv[0], "rate")) {
430 if((s->argc < 2) || parsefloat(s->argv[1], &buf->rate)) {
431 flog(LOG_ERR, "%s:%i: missing or invalid `rate' argument");
434 } else if(!strcmp(s->argv[0], "brim")) {
435 if((s->argc < 2) || parseint(s->argv[1], &buf->brimsize)) {
436 flog(LOG_ERR, "%s:%i: missing or invalid `brim' argument");
440 flog(LOG_WARNING, "%s:%i: unknown directive `%s'", s->file, s->lno, s->argv[0]);
450 static void huphandler(int sig)
455 static void usage(FILE *out)
457 fprintf(out, "usage: ratequeue [-h] [-s BUCKET-SIZE] [-r RATE] [-b BRIM-SIZE] PROGRAM [ARGS...]\n");
460 int main(int argc, char **argv)
472 while((c = getopt(argc, argv, "+hc:s:r:b:")) >= 0) {
481 parsefloat(optarg, &cf.size);
484 parsefloat(optarg, &cf.rate);
487 parseint(optarg, &cf.brimsize);
491 if(argc - optind < 1) {
496 if(readconf(cfname, &cfbuf))
500 if((child = stdmkchild(argv + optind, NULL, NULL)) < 0) {
501 flog(LOG_ERR, "ratequeue: could not fork child: %s", strerror(errno));
504 sigaction(SIGHUP, &(struct sigaction){.sa_handler = huphandler}, NULL);
508 if(!readconf(cfname, &cfbuf))
514 pfd = (struct pollfd){.fd = 0, .events = POLLIN};
515 timeout = (timeheap.d > 0) ? timeheap.b[0].tm : -1;
516 if((rv = poll(&pfd, 1, (timeout < 0) ? -1 : (int)((timeout + 0.1 - now) * 1000))) < 0) {
518 flog(LOG_ERR, "ratequeue: error in poll: %s", strerror(errno));
523 if((fd = recvreq(0, &req)) < 0) {
527 flog(LOG_ERR, "recvreq: %s", strerror(errno));
532 while((timeheap.d > 0) && ((now = rtime()) >= timeheap.b[0].tm))
533 checkbtime(timeheap.b[0].bk);