85d4625ed694802147008a1e3c74e5ce095298eb
[project/uhttpd.git] / client.c
1 /*
2 * uhttpd - Tiny single-threaded httpd
3 *
4 * Copyright (C) 2010-2013 Jo-Philipp Wich <xm@subsignal.org>
5 * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
6 *
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
19
20 #include <libubox/blobmsg.h>
21 #include <ctype.h>
22
23 #include "uhttpd.h"
24 #include "tls.h"
25
26 static LIST_HEAD(clients);
27 static bool client_done = false;
28
29 int n_clients = 0;
30 struct config conf = {};
31
32 const char * const http_versions[] = {
33 [UH_HTTP_VER_0_9] = "HTTP/0.9",
34 [UH_HTTP_VER_1_0] = "HTTP/1.0",
35 [UH_HTTP_VER_1_1] = "HTTP/1.1",
36 };
37
38 const char * const http_methods[] = {
39 [UH_HTTP_MSG_GET] = "GET",
40 [UH_HTTP_MSG_POST] = "POST",
41 [UH_HTTP_MSG_HEAD] = "HEAD",
42 [UH_HTTP_MSG_OPTIONS] = "OPTIONS",
43 };
44
45 void uh_http_header(struct client *cl, int code, const char *summary)
46 {
47 struct http_request *r = &cl->request;
48 const char *enc = "Transfer-Encoding: chunked\r\n";
49 const char *conn;
50
51 cl->http_code = code;
52
53 if (!cl->request.respond_chunked)
54 enc = "";
55
56 if (r->connection_close)
57 conn = "Connection: close";
58 else
59 conn = "Connection: Keep-Alive";
60
61 ustream_printf(cl->us, "%s %03i %s\r\n%s\r\n%s",
62 http_versions[cl->request.version],
63 code, summary, conn, enc);
64
65 if (!r->connection_close)
66 ustream_printf(cl->us, "Keep-Alive: timeout=%d\r\n", conf.http_keepalive);
67 }
68
69 static void uh_connection_close(struct client *cl)
70 {
71 cl->state = CLIENT_STATE_CLOSE;
72 cl->us->eof = true;
73 ustream_state_change(cl->us);
74 }
75
76 static void uh_dispatch_done(struct client *cl)
77 {
78 if (cl->dispatch.free)
79 cl->dispatch.free(cl);
80 if (cl->dispatch.req_free)
81 cl->dispatch.req_free(cl);
82 }
83
84 static void client_timeout(struct uloop_timeout *timeout)
85 {
86 struct client *cl = container_of(timeout, struct client, timeout);
87
88 cl->state = CLIENT_STATE_CLOSE;
89 uh_connection_close(cl);
90 }
91
92 static void uh_set_client_timeout(struct client *cl, int timeout)
93 {
94 cl->timeout.cb = client_timeout;
95 uloop_timeout_set(&cl->timeout, timeout * 1000);
96 }
97
98 static void uh_keepalive_poll_cb(struct uloop_timeout *timeout)
99 {
100 struct client *cl = container_of(timeout, struct client, timeout);
101 int sec = cl->requests > 0 ? conf.http_keepalive : conf.network_timeout;
102
103 uh_set_client_timeout(cl, sec);
104 cl->us->notify_read(cl->us, 0);
105 }
106
107 static void uh_poll_connection(struct client *cl)
108 {
109 cl->timeout.cb = uh_keepalive_poll_cb;
110 uloop_timeout_set(&cl->timeout, 1);
111 }
112
113 void uh_request_done(struct client *cl)
114 {
115 uh_chunk_eof(cl);
116 uh_dispatch_done(cl);
117 memset(&cl->dispatch, 0, sizeof(cl->dispatch));
118
119 if (!conf.http_keepalive || cl->request.connection_close)
120 return uh_connection_close(cl);
121
122 cl->state = CLIENT_STATE_INIT;
123 cl->requests++;
124 uh_poll_connection(cl);
125 }
126
127 void __printf(4, 5)
128 uh_client_error(struct client *cl, int code, const char *summary, const char *fmt, ...)
129 {
130 va_list arg;
131
132 uh_http_header(cl, code, summary);
133 ustream_printf(cl->us, "Content-Type: text/html\r\n\r\n");
134
135 uh_chunk_printf(cl, "<h1>%s</h1>", summary);
136
137 if (fmt) {
138 va_start(arg, fmt);
139 uh_chunk_vprintf(cl, fmt, arg);
140 va_end(arg);
141 }
142
143 uh_request_done(cl);
144 }
145
146 static void uh_header_error(struct client *cl, int code, const char *summary)
147 {
148 uh_client_error(cl, code, summary, NULL);
149 uh_connection_close(cl);
150 }
151
152 static int find_idx(const char * const *list, int max, const char *str)
153 {
154 int i;
155
156 for (i = 0; i < max; i++)
157 if (!strcmp(list[i], str))
158 return i;
159
160 return -1;
161 }
162
163 static int client_parse_request(struct client *cl, char *data)
164 {
165 struct http_request *req = &cl->request;
166 char *type, *path, *version;
167 int h_method, h_version;
168
169 type = strtok(data, " ");
170 path = strtok(NULL, " ");
171 version = strtok(NULL, " ");
172 if (!type || !path || !version)
173 return CLIENT_STATE_DONE;
174
175 blobmsg_add_string(&cl->hdr, "URL", path);
176
177 memset(&cl->request, 0, sizeof(cl->request));
178 h_method = find_idx(http_methods, ARRAY_SIZE(http_methods), type);
179 h_version = find_idx(http_versions, ARRAY_SIZE(http_versions), version);
180 if (h_method < 0 || h_version < 0) {
181 req->version = UH_HTTP_VER_1_0;
182 return CLIENT_STATE_DONE;
183 }
184
185 req->method = h_method;
186 req->version = h_version;
187 if (req->version < UH_HTTP_VER_1_1 || req->method == UH_HTTP_MSG_POST ||
188 !conf.http_keepalive)
189 req->connection_close = true;
190
191 req->respond_chunked = uh_use_chunked(cl);
192
193 return CLIENT_STATE_HEADER;
194 }
195
196 static bool client_init_cb(struct client *cl, char *buf, int len)
197 {
198 char *newline;
199
200 newline = strstr(buf, "\r\n");
201 if (!newline)
202 return false;
203
204 if (newline == buf) {
205 ustream_consume(cl->us, 2);
206 return true;
207 }
208
209 *newline = 0;
210 blob_buf_init(&cl->hdr, 0);
211 cl->state = client_parse_request(cl, buf);
212 ustream_consume(cl->us, newline + 2 - buf);
213 if (cl->state == CLIENT_STATE_DONE)
214 uh_header_error(cl, 400, "Bad Request");
215
216 return true;
217 }
218
219 static bool rfc1918_filter_check(struct client *cl)
220 {
221 if (!conf.rfc1918_filter)
222 return true;
223
224 if (!uh_addr_rfc1918(&cl->peer_addr) || uh_addr_rfc1918(&cl->srv_addr))
225 return true;
226
227 uh_client_error(cl, 403, "Forbidden",
228 "Rejected request from RFC1918 IP "
229 "to public server address");
230 return false;
231 }
232
233 static void client_header_complete(struct client *cl)
234 {
235 struct http_request *r = &cl->request;
236
237 if (!rfc1918_filter_check(cl))
238 return;
239
240 if (r->expect_cont)
241 ustream_printf(cl->us, "HTTP/1.1 100 Continue\r\n\r\n");
242
243 switch(r->ua) {
244 case UH_UA_MSIE_OLD:
245 if (r->method != UH_HTTP_MSG_POST)
246 break;
247
248 /* fall through */
249 case UH_UA_SAFARI:
250 r->connection_close = true;
251 break;
252 default:
253 break;
254 }
255
256 uh_handle_request(cl);
257 }
258
259 static void client_parse_header(struct client *cl, char *data)
260 {
261 struct http_request *r = &cl->request;
262 char *err;
263 char *name;
264 char *val;
265
266 if (!*data) {
267 uloop_timeout_cancel(&cl->timeout);
268 cl->state = CLIENT_STATE_DATA;
269 client_header_complete(cl);
270 return;
271 }
272
273 val = uh_split_header(data);
274 if (!val) {
275 cl->state = CLIENT_STATE_DONE;
276 return;
277 }
278
279 for (name = data; *name; name++)
280 if (isupper(*name))
281 *name = tolower(*name);
282
283 if (!strcmp(data, "expect")) {
284 if (!strcasecmp(val, "100-continue"))
285 r->expect_cont = true;
286 else {
287 uh_header_error(cl, 412, "Precondition Failed");
288 return;
289 }
290 } else if (!strcmp(data, "content-length")) {
291 r->content_length = strtoul(val, &err, 0);
292 if (err && *err) {
293 uh_header_error(cl, 400, "Bad Request");
294 return;
295 }
296 } else if (!strcmp(data, "transfer-encoding")) {
297 if (!strcmp(val, "chunked"))
298 r->transfer_chunked = true;
299 } else if (!strcmp(data, "connection")) {
300 if (!strcasecmp(val, "close"))
301 r->connection_close = true;
302 } else if (!strcmp(data, "user-agent")) {
303 char *str;
304
305 if (strstr(val, "Opera"))
306 r->ua = UH_UA_OPERA;
307 else if ((str = strstr(val, "MSIE ")) != NULL) {
308 r->ua = UH_UA_MSIE_NEW;
309 if (str[5] && str[6] == '.') {
310 switch (str[5]) {
311 case '6':
312 if (strstr(str, "SV1"))
313 break;
314 /* fall through */
315 case '5':
316 case '4':
317 r->ua = UH_UA_MSIE_OLD;
318 break;
319 }
320 }
321 }
322 else if (strstr(val, "Chrome/"))
323 r->ua = UH_UA_CHROME;
324 else if (strstr(val, "Safari/") && strstr(val, "Mac OS X"))
325 r->ua = UH_UA_SAFARI;
326 else if (strstr(val, "Gecko/"))
327 r->ua = UH_UA_GECKO;
328 else if (strstr(val, "Konqueror"))
329 r->ua = UH_UA_KONQUEROR;
330 }
331
332
333 blobmsg_add_string(&cl->hdr, data, val);
334
335 cl->state = CLIENT_STATE_HEADER;
336 }
337
338 void client_poll_post_data(struct client *cl)
339 {
340 struct dispatch *d = &cl->dispatch;
341 struct http_request *r = &cl->request;
342 char *buf;
343 int len;
344
345 if (cl->state == CLIENT_STATE_DONE)
346 return;
347
348 while (1) {
349 char *sep;
350 int offset = 0;
351 int cur_len;
352
353 buf = ustream_get_read_buf(cl->us, &len);
354 if (!buf || !len)
355 break;
356
357 if (!d->data_send)
358 return;
359
360 cur_len = min(r->content_length, len);
361 if (cur_len) {
362 if (d->data_blocked)
363 break;
364
365 if (d->data_send)
366 cur_len = d->data_send(cl, buf, cur_len);
367
368 r->content_length -= cur_len;
369 ustream_consume(cl->us, cur_len);
370 continue;
371 }
372
373 if (!r->transfer_chunked)
374 break;
375
376 if (r->transfer_chunked > 1)
377 offset = 2;
378
379 sep = strstr(buf + offset, "\r\n");
380 if (!sep)
381 break;
382
383 *sep = 0;
384
385 r->content_length = strtoul(buf + offset, &sep, 16);
386 r->transfer_chunked++;
387 ustream_consume(cl->us, sep + 2 - buf);
388
389 /* invalid chunk length */
390 if (sep && *sep) {
391 r->content_length = 0;
392 r->transfer_chunked = 0;
393 break;
394 }
395
396 /* empty chunk == eof */
397 if (!r->content_length) {
398 r->transfer_chunked = false;
399 break;
400 }
401 }
402
403 buf = ustream_get_read_buf(cl->us, &len);
404 if (!r->content_length && !r->transfer_chunked &&
405 cl->state != CLIENT_STATE_DONE) {
406 if (cl->dispatch.data_done)
407 cl->dispatch.data_done(cl);
408
409 cl->state = CLIENT_STATE_DONE;
410 }
411 }
412
413 static bool client_data_cb(struct client *cl, char *buf, int len)
414 {
415 client_poll_post_data(cl);
416 return false;
417 }
418
419 static bool client_header_cb(struct client *cl, char *buf, int len)
420 {
421 char *newline;
422 int line_len;
423
424 newline = strstr(buf, "\r\n");
425 if (!newline)
426 return false;
427
428 *newline = 0;
429 client_parse_header(cl, buf);
430 line_len = newline + 2 - buf;
431 ustream_consume(cl->us, line_len);
432 if (cl->state == CLIENT_STATE_DATA)
433 return client_data_cb(cl, newline + 2, len - line_len);
434
435 return true;
436 }
437
438 typedef bool (*read_cb_t)(struct client *cl, char *buf, int len);
439 static read_cb_t read_cbs[] = {
440 [CLIENT_STATE_INIT] = client_init_cb,
441 [CLIENT_STATE_HEADER] = client_header_cb,
442 [CLIENT_STATE_DATA] = client_data_cb,
443 };
444
445 void uh_client_read_cb(struct client *cl)
446 {
447 struct ustream *us = cl->us;
448 char *str;
449 int len;
450
451 client_done = false;
452 do {
453 str = ustream_get_read_buf(us, &len);
454 if (!str || !len)
455 break;
456
457 if (cl->state >= array_size(read_cbs) || !read_cbs[cl->state])
458 break;
459
460 if (!read_cbs[cl->state](cl, str, len)) {
461 if (len == us->r.buffer_len &&
462 cl->state != CLIENT_STATE_DATA)
463 uh_header_error(cl, 413, "Request Entity Too Large");
464 break;
465 }
466 } while (!client_done);
467 }
468
469 static void client_close(struct client *cl)
470 {
471 if (cl->refcount) {
472 cl->state = CLIENT_STATE_CLEANUP;
473 return;
474 }
475
476 client_done = true;
477 n_clients--;
478 uh_dispatch_done(cl);
479 uloop_timeout_cancel(&cl->timeout);
480 if (cl->tls)
481 uh_tls_client_detach(cl);
482 ustream_free(&cl->sfd.stream);
483 close(cl->sfd.fd.fd);
484 list_del(&cl->list);
485 blob_buf_free(&cl->hdr);
486 free(cl);
487
488 uh_unblock_listeners();
489 }
490
491 void uh_client_notify_state(struct client *cl)
492 {
493 struct ustream *s = cl->us;
494
495 if (!s->write_error && cl->state != CLIENT_STATE_CLEANUP) {
496 if (cl->state == CLIENT_STATE_DATA)
497 return;
498
499 if (!s->eof || s->w.data_bytes)
500 return;
501 }
502
503 return client_close(cl);
504 }
505
506 static void client_ustream_read_cb(struct ustream *s, int bytes)
507 {
508 struct client *cl = container_of(s, struct client, sfd.stream);
509
510 uh_client_read_cb(cl);
511 }
512
513 static void client_ustream_write_cb(struct ustream *s, int bytes)
514 {
515 struct client *cl = container_of(s, struct client, sfd.stream);
516
517 if (cl->dispatch.write_cb)
518 cl->dispatch.write_cb(cl);
519 }
520
521 static void client_notify_state(struct ustream *s)
522 {
523 struct client *cl = container_of(s, struct client, sfd.stream);
524
525 uh_client_notify_state(cl);
526 }
527
528 static void set_addr(struct uh_addr *addr, void *src)
529 {
530 struct sockaddr_in *sin = src;
531 struct sockaddr_in6 *sin6 = src;
532
533 addr->family = sin->sin_family;
534 if (addr->family == AF_INET) {
535 addr->port = ntohs(sin->sin_port);
536 memcpy(&addr->in, &sin->sin_addr, sizeof(addr->in));
537 } else {
538 addr->port = ntohs(sin6->sin6_port);
539 memcpy(&addr->in6, &sin6->sin6_addr, sizeof(addr->in6));
540 }
541 }
542
543 bool uh_accept_client(int fd, bool tls)
544 {
545 static struct client *next_client;
546 struct client *cl;
547 unsigned int sl;
548 int sfd;
549 static int client_id = 0;
550 struct sockaddr_in6 addr;
551
552 if (!next_client)
553 next_client = calloc(1, sizeof(*next_client));
554
555 cl = next_client;
556
557 sl = sizeof(addr);
558 sfd = accept(fd, (struct sockaddr *) &addr, &sl);
559 if (sfd < 0)
560 return false;
561
562 set_addr(&cl->peer_addr, &addr);
563 sl = sizeof(addr);
564 getsockname(sfd, (struct sockaddr *) &addr, &sl);
565 set_addr(&cl->srv_addr, &addr);
566
567 cl->us = &cl->sfd.stream;
568 if (tls) {
569 uh_tls_client_attach(cl);
570 } else {
571 cl->us->notify_read = client_ustream_read_cb;
572 cl->us->notify_write = client_ustream_write_cb;
573 cl->us->notify_state = client_notify_state;
574 }
575
576 cl->us->string_data = true;
577 ustream_fd_init(&cl->sfd, sfd);
578
579 uh_poll_connection(cl);
580 list_add_tail(&cl->list, &clients);
581
582 next_client = NULL;
583 n_clients++;
584 cl->id = client_id++;
585 cl->tls = tls;
586
587 return true;
588 }
589
590 void uh_close_fds(void)
591 {
592 struct client *cl;
593
594 uloop_done();
595 uh_close_listen_fds();
596 list_for_each_entry(cl, &clients, list) {
597 close(cl->sfd.fd.fd);
598 if (cl->dispatch.close_fds)
599 cl->dispatch.close_fds(cl);
600 }
601 }