cmake: enable extra compiler checks
[project/uclient.git] / uclient-http.c
1 /*
2 * uclient - ustream based protocol client library
3 *
4 * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18 #include <sys/socket.h>
19 #include <stdio.h>
20 #include <ctype.h>
21 #include <unistd.h>
22 #include <stdint.h>
23 #include <string.h>
24 #include <fcntl.h>
25
26 #include <libubox/ustream.h>
27 #include <libubox/ustream-ssl.h>
28 #include <libubox/usock.h>
29 #include <libubox/blobmsg.h>
30
31 #include "uclient.h"
32 #include "uclient-utils.h"
33 #include "uclient-backend.h"
34
35 enum auth_type {
36 AUTH_TYPE_UNKNOWN,
37 AUTH_TYPE_NONE,
38 AUTH_TYPE_BASIC,
39 AUTH_TYPE_DIGEST,
40 };
41
42 enum request_type {
43 REQ_GET,
44 REQ_HEAD,
45 REQ_POST,
46 REQ_PUT,
47 REQ_DELETE,
48 __REQ_MAX
49 };
50
51 enum http_state {
52 HTTP_STATE_INIT,
53 HTTP_STATE_HEADERS_SENT,
54 HTTP_STATE_REQUEST_DONE,
55 HTTP_STATE_RECV_HEADERS,
56 HTTP_STATE_RECV_DATA,
57 HTTP_STATE_ERROR,
58 };
59
60 static const char * const request_types[__REQ_MAX] = {
61 [REQ_GET] = "GET",
62 [REQ_HEAD] = "HEAD",
63 [REQ_POST] = "POST",
64 [REQ_PUT] = "PUT",
65 [REQ_DELETE] = "DELETE",
66 };
67
68 struct uclient_http {
69 struct uclient uc;
70
71 const struct ustream_ssl_ops *ssl_ops;
72 struct ustream_ssl_ctx *ssl_ctx;
73 struct ustream *us;
74
75 struct ustream_fd ufd;
76 struct ustream_ssl ussl;
77
78 struct uloop_timeout disconnect_t;
79 unsigned int seq;
80
81 bool ssl_require_validation;
82 bool ssl;
83 bool eof;
84 bool connection_close;
85 bool disconnect;
86 enum request_type req_type;
87 enum http_state state;
88
89 enum auth_type auth_type;
90 char *auth_str;
91
92 long read_chunked;
93 long content_length;
94
95 int usock_flags;
96
97 uint32_t nc;
98
99 struct blob_buf headers;
100 struct blob_buf meta;
101 };
102
103 enum {
104 PREFIX_HTTP,
105 PREFIX_HTTPS,
106 __PREFIX_MAX,
107 };
108
109 static const char * const uclient_http_prefix[] = {
110 [PREFIX_HTTP] = "http://",
111 [PREFIX_HTTPS] = "https://",
112 [__PREFIX_MAX] = NULL
113 };
114
115 static int uclient_http_connect(struct uclient *cl);
116
117 static int uclient_do_connect(struct uclient_http *uh, const char *port)
118 {
119 socklen_t sl;
120 int fd;
121
122 if (uh->uc.url->port)
123 port = uh->uc.url->port;
124
125 memset(&uh->uc.remote_addr, 0, sizeof(uh->uc.remote_addr));
126
127 fd = usock_inet_timeout(USOCK_TCP | USOCK_NONBLOCK | uh->usock_flags,
128 uh->uc.url->host, port, &uh->uc.remote_addr,
129 uh->uc.timeout_msecs);
130 if (fd < 0)
131 return -1;
132
133 fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK);
134 ustream_fd_init(&uh->ufd, fd);
135
136 sl = sizeof(uh->uc.local_addr);
137 memset(&uh->uc.local_addr, 0, sl);
138 getsockname(fd, &uh->uc.local_addr.sa, &sl);
139
140 return 0;
141 }
142
143 static void uclient_http_disconnect(struct uclient_http *uh)
144 {
145 uloop_timeout_cancel(&uh->disconnect_t);
146 if (!uh->us)
147 return;
148
149 if (uh->ssl)
150 ustream_free(&uh->ussl.stream);
151 ustream_free(&uh->ufd.stream);
152 if(uh->ufd.fd.fd)
153 close(uh->ufd.fd.fd);
154 uh->us = NULL;
155 }
156
157 static void uclient_http_free_url_state(struct uclient *cl)
158 {
159 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
160
161 uh->auth_type = AUTH_TYPE_UNKNOWN;
162 free(uh->auth_str);
163 uh->auth_str = NULL;
164 uclient_http_disconnect(uh);
165 }
166
167 static void uclient_http_error(struct uclient_http *uh, int code)
168 {
169 uh->state = HTTP_STATE_ERROR;
170 uh->us->eof = true;
171 ustream_state_change(uh->us);
172 uclient_backend_set_error(&uh->uc, code);
173 }
174
175 static void uclient_http_request_disconnect(struct uclient *cl)
176 {
177 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
178
179 if (!uh->us)
180 return;
181
182 uh->eof = true;
183 uh->disconnect = true;
184 uloop_timeout_set(&uh->disconnect_t, 1);
185 }
186
187 static void uclient_notify_eof(struct uclient_http *uh)
188 {
189 struct ustream *us = uh->us;
190
191 if (uh->disconnect)
192 return;
193
194 if (!uh->eof) {
195 if (!us->eof && !us->write_error)
196 return;
197
198 if (ustream_pending_data(us, false))
199 return;
200 }
201
202 if ((uh->content_length < 0 && uh->read_chunked >= 0) ||
203 uh->content_length == 0)
204 uh->uc.data_eof = true;
205
206 uclient_backend_set_eof(&uh->uc);
207
208 if (uh->connection_close)
209 uclient_http_request_disconnect(&uh->uc);
210 }
211
212 static void uclient_http_reset_state(struct uclient_http *uh)
213 {
214 uh->seq++;
215 uclient_backend_reset_state(&uh->uc);
216 uh->read_chunked = -1;
217 uh->content_length = -1;
218 uh->eof = false;
219 uh->disconnect = false;
220 uh->connection_close = false;
221 uh->state = HTTP_STATE_INIT;
222
223 if (uh->auth_type == AUTH_TYPE_UNKNOWN && !uh->uc.url->auth)
224 uh->auth_type = AUTH_TYPE_NONE;
225 }
226
227 static void uclient_http_init_request(struct uclient_http *uh)
228 {
229 uh->seq++;
230 uclient_http_reset_state(uh);
231 blob_buf_init(&uh->meta, 0);
232 }
233
234 static enum auth_type
235 uclient_http_update_auth_type(struct uclient_http *uh)
236 {
237 if (!uh->auth_str)
238 return AUTH_TYPE_NONE;
239
240 if (!strncasecmp(uh->auth_str, "basic", 5))
241 return AUTH_TYPE_BASIC;
242
243 if (!strncasecmp(uh->auth_str, "digest", 6))
244 return AUTH_TYPE_DIGEST;
245
246 return AUTH_TYPE_NONE;
247 }
248
249 static void uclient_http_process_headers(struct uclient_http *uh)
250 {
251 enum {
252 HTTP_HDR_TRANSFER_ENCODING,
253 HTTP_HDR_CONNECTION,
254 HTTP_HDR_CONTENT_LENGTH,
255 HTTP_HDR_AUTH,
256 __HTTP_HDR_MAX,
257 };
258 static const struct blobmsg_policy hdr_policy[__HTTP_HDR_MAX] = {
259 #define hdr(_name) { .name = _name, .type = BLOBMSG_TYPE_STRING }
260 [HTTP_HDR_TRANSFER_ENCODING] = hdr("transfer-encoding"),
261 [HTTP_HDR_CONNECTION] = hdr("connection"),
262 [HTTP_HDR_CONTENT_LENGTH] = hdr("content-length"),
263 [HTTP_HDR_AUTH] = hdr("www-authenticate"),
264 #undef hdr
265 };
266 struct blob_attr *tb[__HTTP_HDR_MAX];
267 struct blob_attr *cur;
268
269 blobmsg_parse(hdr_policy, __HTTP_HDR_MAX, tb, blob_data(uh->meta.head), blob_len(uh->meta.head));
270
271 cur = tb[HTTP_HDR_TRANSFER_ENCODING];
272 if (cur && strstr(blobmsg_data(cur), "chunked"))
273 uh->read_chunked = 0;
274
275 cur = tb[HTTP_HDR_CONNECTION];
276 if (cur && strstr(blobmsg_data(cur), "close"))
277 uh->connection_close = true;
278
279 cur = tb[HTTP_HDR_CONTENT_LENGTH];
280 if (cur)
281 uh->content_length = strtoul(blobmsg_data(cur), NULL, 10);
282
283 cur = tb[HTTP_HDR_AUTH];
284 if (cur) {
285 free(uh->auth_str);
286 uh->auth_str = strdup(blobmsg_data(cur));
287 }
288
289 uh->auth_type = uclient_http_update_auth_type(uh);
290 }
291
292 static bool uclient_request_supports_body(enum request_type req_type)
293 {
294 switch (req_type) {
295 case REQ_POST:
296 case REQ_PUT:
297 case REQ_DELETE:
298 return true;
299 default:
300 return false;
301 }
302 }
303
304 static int
305 uclient_http_add_auth_basic(struct uclient_http *uh)
306 {
307 struct uclient_url *url = uh->uc.url;
308 int auth_len = strlen(url->auth);
309 char *auth_buf;
310
311 if (auth_len > 512)
312 return -EINVAL;
313
314 auth_buf = alloca(base64_len(auth_len) + 1);
315 if (!auth_buf)
316 return -ENOMEM;
317
318 base64_encode(url->auth, auth_len, auth_buf);
319 ustream_printf(uh->us, "Authorization: Basic %s\r\n", auth_buf);
320
321 return 0;
322 }
323
324 static char *digest_unquote_sep(char **str)
325 {
326 char *cur = *str + 1;
327 char *start = cur;
328 char *out;
329
330 if (**str != '"')
331 return NULL;
332
333 out = cur;
334 while (1) {
335 if (!*cur)
336 return NULL;
337
338 if (*cur == '"') {
339 cur++;
340 break;
341 }
342
343 if (*cur == '\\')
344 cur++;
345
346 *(out++) = *(cur++);
347 }
348
349 if (*cur == ',')
350 cur++;
351
352 *out = 0;
353 *str = cur;
354
355 return start;
356 }
357
358 static char *digest_sep(char **str)
359 {
360 char *cur, *next;
361
362 cur = *str;
363 next = strchr(*str, ',');
364 if (next) {
365 *str = next + 1;
366 *next = 0;
367 } else {
368 *str += strlen(*str);
369 }
370
371 return cur;
372 }
373
374 static bool strmatch(char **str, const char *prefix)
375 {
376 int len = strlen(prefix);
377
378 if (strncmp(*str, prefix, len) != 0 || (*str)[len] != '=')
379 return false;
380
381 *str += len + 1;
382 return true;
383 }
384
385 static void
386 get_cnonce(char *dest)
387 {
388 uint32_t val = 0;
389 FILE *f;
390 size_t n;
391
392 f = fopen("/dev/urandom", "r");
393 if (f) {
394 n = fread(&val, sizeof(val), 1, f);
395 fclose(f);
396 if (n != 1)
397 return;
398 }
399
400 bin_to_hex(dest, &val, sizeof(val));
401 }
402
403 static void add_field(char **buf, int *ofs, int *len, const char *name, const char *val)
404 {
405 int available = *len - *ofs;
406 int required;
407 const char *next;
408 char *cur;
409
410 if (*len && !*buf)
411 return;
412
413 required = strlen(name) + 4 + strlen(val) * 2;
414 if (required > available)
415 *len += required - available + 64;
416
417 *buf = realloc(*buf, *len);
418 if (!*buf)
419 return;
420
421 cur = *buf + *ofs;
422 cur += sprintf(cur, ", %s=\"", name);
423
424 while ((next = strchr(val, '"'))) {
425 if (next > val) {
426 memcpy(cur, val, next - val);
427 cur += next - val;
428 }
429
430 cur += sprintf(cur, "\\\"");
431 val = next + 1;
432 }
433
434 cur += sprintf(cur, "%s\"", val);
435 *ofs = cur - *buf;
436 }
437
438 static int
439 uclient_http_add_auth_digest(struct uclient_http *uh)
440 {
441 struct uclient_url *url = uh->uc.url;
442 const char *realm = NULL, *opaque = NULL;
443 const char *user, *password;
444 char *buf, *next;
445 int len, ofs;
446 int err = 0;
447
448 char cnonce_str[9];
449 char nc_str[9];
450 char ahash[33];
451 char hash[33];
452
453 struct http_digest_data data = {
454 .nc = nc_str,
455 .cnonce = cnonce_str,
456 .auth_hash = ahash,
457 };
458
459 len = strlen(uh->auth_str) + 1;
460 if (len > 512) {
461 err = -EINVAL;
462 goto fail;
463 }
464
465 buf = alloca(len);
466 if (!buf) {
467 err = -ENOMEM;
468 goto fail;
469 }
470
471 strcpy(buf, uh->auth_str);
472
473 /* skip auth type */
474 strsep(&buf, " ");
475
476 next = buf;
477 while (*next) {
478 const char **dest = NULL;
479 const char *tmp;
480
481 while (*next && isspace(*next))
482 next++;
483
484 if (strmatch(&next, "realm"))
485 dest = &realm;
486 else if (strmatch(&next, "qop"))
487 dest = &data.qop;
488 else if (strmatch(&next, "nonce"))
489 dest = &data.nonce;
490 else if (strmatch(&next, "opaque"))
491 dest = &opaque;
492 else if (strmatch(&next, "stale") ||
493 strmatch(&next, "algorithm") ||
494 strmatch(&next, "auth-param")) {
495 digest_sep(&next);
496 continue;
497 } else if (strmatch(&next, "domain") ||
498 strmatch(&next, "qop-options"))
499 dest = &tmp;
500 else {
501 digest_sep(&next);
502 continue;
503 }
504
505 *dest = digest_unquote_sep(&next);
506 }
507
508 if (!realm || !data.qop || !data.nonce) {
509 err = -EINVAL;
510 goto fail;
511 }
512
513 sprintf(nc_str, "%08x", uh->nc++);
514 get_cnonce(cnonce_str);
515
516 data.qop = "auth";
517 data.uri = url->location;
518 data.method = request_types[uh->req_type];
519
520 password = strchr(url->auth, ':');
521 if (password) {
522 char *user_buf;
523
524 len = password - url->auth;
525 if (len > 256) {
526 err = -EINVAL;
527 goto fail;
528 }
529
530 user_buf = alloca(len + 1);
531 if (!user_buf) {
532 err = -ENOMEM;
533 goto fail;
534 }
535
536 strncpy(user_buf, url->auth, len);
537 user_buf[len] = 0;
538 user = user_buf;
539 password++;
540 } else {
541 user = url->auth;
542 password = "";
543 }
544
545 http_digest_calculate_auth_hash(ahash, user, realm, password);
546 http_digest_calculate_response(hash, &data);
547
548 buf = NULL;
549 len = 0;
550 ofs = 0;
551
552 add_field(&buf, &ofs, &len, "username", user);
553 add_field(&buf, &ofs, &len, "realm", realm);
554 add_field(&buf, &ofs, &len, "nonce", data.nonce);
555 add_field(&buf, &ofs, &len, "uri", data.uri);
556 add_field(&buf, &ofs, &len, "cnonce", data.cnonce);
557 add_field(&buf, &ofs, &len, "response", hash);
558 if (opaque)
559 add_field(&buf, &ofs, &len, "opaque", opaque);
560
561 ustream_printf(uh->us, "Authorization: Digest nc=%s, qop=%s%s\r\n", data.nc, data.qop, buf);
562
563 free(buf);
564
565 return 0;
566
567 fail:
568 return err;
569 }
570
571 static int
572 uclient_http_add_auth_header(struct uclient_http *uh)
573 {
574 if (!uh->uc.url->auth)
575 return 0;
576
577 switch (uh->auth_type) {
578 case AUTH_TYPE_UNKNOWN:
579 case AUTH_TYPE_NONE:
580 break;
581 case AUTH_TYPE_BASIC:
582 return uclient_http_add_auth_basic(uh);
583 case AUTH_TYPE_DIGEST:
584 return uclient_http_add_auth_digest(uh);
585 }
586
587 return 0;
588 }
589
590 static int
591 uclient_http_send_headers(struct uclient_http *uh)
592 {
593 struct uclient_url *url = uh->uc.url;
594 struct blob_attr *cur;
595 enum request_type req_type = uh->req_type;
596 bool literal_ipv6;
597 int err;
598 size_t rem;
599
600 if (uh->state >= HTTP_STATE_HEADERS_SENT)
601 return 0;
602
603 if (uh->uc.proxy_url)
604 url = uh->uc.proxy_url;
605
606 literal_ipv6 = strchr(url->host, ':');
607
608 ustream_printf(uh->us,
609 "%s %s HTTP/1.1\r\n"
610 "Host: %s%s%s%s%s\r\n",
611 request_types[req_type], url->location,
612 literal_ipv6 ? "[" : "",
613 url->host,
614 literal_ipv6 ? "]" : "",
615 url->port ? ":" : "",
616 url->port ? url->port : "");
617
618 blobmsg_for_each_attr(cur, uh->headers.head, rem)
619 ustream_printf(uh->us, "%s: %s\r\n", blobmsg_name(cur), (char *) blobmsg_data(cur));
620
621 if (uclient_request_supports_body(uh->req_type))
622 ustream_printf(uh->us, "Transfer-Encoding: chunked\r\n");
623
624 err = uclient_http_add_auth_header(uh);
625 if (err)
626 return err;
627
628 ustream_printf(uh->us, "\r\n");
629
630 uh->state = HTTP_STATE_HEADERS_SENT;
631
632 return 0;
633 }
634
635 static void uclient_http_headers_complete(struct uclient_http *uh)
636 {
637 enum auth_type auth_type = uh->auth_type;
638 int seq = uh->uc.seq;
639
640 uh->state = HTTP_STATE_RECV_DATA;
641 uh->uc.meta = uh->meta.head;
642 uclient_http_process_headers(uh);
643
644 if (auth_type == AUTH_TYPE_UNKNOWN && uh->uc.status_code == 401 &&
645 (uh->req_type == REQ_HEAD || uh->req_type == REQ_GET)) {
646 uclient_http_connect(&uh->uc);
647 uclient_http_send_headers(uh);
648 uh->state = HTTP_STATE_REQUEST_DONE;
649 return;
650 }
651
652 if (uh->uc.cb->header_done)
653 uh->uc.cb->header_done(&uh->uc);
654
655 if (uh->eof || seq != uh->uc.seq)
656 return;
657
658 if (uh->req_type == REQ_HEAD || uh->uc.status_code == 204) {
659 uh->eof = true;
660 uclient_notify_eof(uh);
661 }
662 }
663
664 static void uclient_parse_http_line(struct uclient_http *uh, char *data)
665 {
666 char *name;
667 char *sep;
668
669 if (uh->state == HTTP_STATE_REQUEST_DONE) {
670 char *code;
671
672 if (!strlen(data))
673 return;
674
675 /* HTTP/1.1 */
676 strsep(&data, " ");
677
678 code = strsep(&data, " ");
679 if (!code)
680 goto error;
681
682 uh->uc.status_code = strtoul(code, &sep, 10);
683 if (sep && *sep)
684 goto error;
685
686 uh->state = HTTP_STATE_RECV_HEADERS;
687 return;
688 }
689
690 if (!*data) {
691 uclient_http_headers_complete(uh);
692 return;
693 }
694
695 sep = strchr(data, ':');
696 if (!sep)
697 return;
698
699 *(sep++) = 0;
700
701 for (name = data; *name; name++)
702 *name = tolower(*name);
703
704 name = data;
705 while (isspace(*sep))
706 sep++;
707
708 blobmsg_add_string(&uh->meta, name, sep);
709 return;
710
711 error:
712 uh->uc.status_code = 400;
713 uh->eof = true;
714 uclient_notify_eof(uh);
715 }
716
717 static void __uclient_notify_read(struct uclient_http *uh)
718 {
719 struct uclient *uc = &uh->uc;
720 unsigned int seq = uh->seq;
721 char *data;
722 int len;
723
724 if (uh->state < HTTP_STATE_REQUEST_DONE || uh->state == HTTP_STATE_ERROR)
725 return;
726
727 data = ustream_get_read_buf(uh->us, &len);
728 if (!data || !len)
729 return;
730
731 if (uh->state < HTTP_STATE_RECV_DATA) {
732 char *sep, *next;
733 int cur_len;
734
735 do {
736 sep = strchr(data, '\n');
737 if (!sep)
738 break;
739
740 next = sep + 1;
741 if (sep > data && sep[-1] == '\r')
742 sep--;
743
744 /* Check for multi-line HTTP headers */
745 if (sep > data) {
746 if (!*next)
747 return;
748
749 if (isspace(*next) && *next != '\r' && *next != '\n') {
750 sep[0] = ' ';
751 if (sep + 1 < next)
752 sep[1] = ' ';
753 continue;
754 }
755 }
756
757 *sep = 0;
758 cur_len = next - data;
759 uclient_parse_http_line(uh, data);
760 if (seq != uh->seq)
761 return;
762
763 ustream_consume(uh->us, cur_len);
764 len -= cur_len;
765
766 if (uh->eof)
767 return;
768
769 data = ustream_get_read_buf(uh->us, &len);
770 } while (data && uh->state < HTTP_STATE_RECV_DATA);
771
772 if (!len)
773 return;
774 }
775
776 if (uh->eof)
777 return;
778
779 if (uh->state == HTTP_STATE_RECV_DATA) {
780 /* Now it's uclient user turn to read some data */
781 uloop_timeout_cancel(&uc->connection_timeout);
782
783 if (uc->cb->data_read)
784 uc->cb->data_read(uc);
785 }
786 }
787
788 static void __uclient_notify_write(struct uclient_http *uh)
789 {
790 struct uclient *uc = &uh->uc;
791
792 if (uc->cb->data_sent)
793 uc->cb->data_sent(uc);
794 }
795
796 static void uclient_notify_read(struct ustream *us, int bytes)
797 {
798 struct uclient_http *uh = container_of(us, struct uclient_http, ufd.stream);
799
800 __uclient_notify_read(uh);
801 }
802
803 static void uclient_notify_write(struct ustream *us, int bytes)
804 {
805 struct uclient_http *uh = container_of(us, struct uclient_http, ufd.stream);
806
807 __uclient_notify_write(uh);
808 }
809
810 static void uclient_notify_state(struct ustream *us)
811 {
812 struct uclient_http *uh = container_of(us, struct uclient_http, ufd.stream);
813
814 if (uh->ufd.stream.write_error) {
815 uclient_http_error(uh, UCLIENT_ERROR_CONNECT);
816 return;
817 }
818 uclient_notify_eof(uh);
819 }
820
821 static int uclient_setup_http(struct uclient_http *uh)
822 {
823 struct ustream *us = &uh->ufd.stream;
824 int ret;
825
826 uh->us = us;
827 uh->ssl = false;
828
829 us->string_data = true;
830 us->notify_state = uclient_notify_state;
831 us->notify_read = uclient_notify_read;
832 us->notify_write = uclient_notify_write;
833
834 ret = uclient_do_connect(uh, "80");
835 if (ret)
836 return UCLIENT_ERROR_CONNECT;
837
838 return 0;
839 }
840
841 static void uclient_ssl_notify_read(struct ustream *us, int bytes)
842 {
843 struct uclient_http *uh = container_of(us, struct uclient_http, ussl.stream);
844
845 __uclient_notify_read(uh);
846 }
847
848 static void uclient_ssl_notify_write(struct ustream *us, int bytes)
849 {
850 struct uclient_http *uh = container_of(us, struct uclient_http, ussl.stream);
851
852 __uclient_notify_write(uh);
853 }
854
855 static void uclient_ssl_notify_state(struct ustream *us)
856 {
857 struct uclient_http *uh = container_of(us, struct uclient_http, ussl.stream);
858
859 uclient_notify_eof(uh);
860 }
861
862 static void uclient_ssl_notify_error(struct ustream_ssl *ssl, int error, const char *str)
863 {
864 struct uclient_http *uh = container_of(ssl, struct uclient_http, ussl);
865
866 uclient_http_error(uh, UCLIENT_ERROR_CONNECT);
867 }
868
869 static void uclient_ssl_notify_verify_error(struct ustream_ssl *ssl, int error, const char *str)
870 {
871 struct uclient_http *uh = container_of(ssl, struct uclient_http, ussl);
872
873 if (!uh->ssl_require_validation)
874 return;
875
876 uclient_http_error(uh, UCLIENT_ERROR_SSL_INVALID_CERT);
877 }
878
879 static void uclient_ssl_notify_connected(struct ustream_ssl *ssl)
880 {
881 struct uclient_http *uh = container_of(ssl, struct uclient_http, ussl);
882
883 if (!uh->ssl_require_validation)
884 return;
885
886 if (!uh->ussl.valid_cn)
887 uclient_http_error(uh, UCLIENT_ERROR_SSL_CN_MISMATCH);
888 }
889
890 static int uclient_setup_https(struct uclient_http *uh)
891 {
892 struct ustream *us = &uh->ussl.stream;
893 int ret;
894
895 uh->ssl = true;
896 uh->us = us;
897
898 if (!uh->ssl_ctx)
899 return UCLIENT_ERROR_MISSING_SSL_CONTEXT;
900
901 ret = uclient_do_connect(uh, "443");
902 if (ret)
903 return UCLIENT_ERROR_CONNECT;
904
905 us->string_data = true;
906 us->notify_state = uclient_ssl_notify_state;
907 us->notify_read = uclient_ssl_notify_read;
908 us->notify_write = uclient_ssl_notify_write;
909 uh->ussl.notify_error = uclient_ssl_notify_error;
910 uh->ussl.notify_verify_error = uclient_ssl_notify_verify_error;
911 uh->ussl.notify_connected = uclient_ssl_notify_connected;
912 uh->ussl.server_name = uh->uc.url->host;
913 uh->ssl_ops->init(&uh->ussl, &uh->ufd.stream, uh->ssl_ctx, false);
914 uh->ssl_ops->set_peer_cn(&uh->ussl, uh->uc.url->host);
915
916 return 0;
917 }
918
919 static int uclient_http_connect(struct uclient *cl)
920 {
921 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
922 int ret;
923
924 if (!cl->eof || uh->disconnect || uh->connection_close)
925 uclient_http_disconnect(uh);
926
927 uclient_http_init_request(uh);
928
929 if (uh->us)
930 return 0;
931
932 uh->ssl = cl->url->prefix == PREFIX_HTTPS;
933
934 if (uh->ssl)
935 ret = uclient_setup_https(uh);
936 else
937 ret = uclient_setup_http(uh);
938
939 return ret;
940 }
941
942 static void uclient_http_disconnect_cb(struct uloop_timeout *timeout)
943 {
944 struct uclient_http *uh = container_of(timeout, struct uclient_http, disconnect_t);
945
946 uclient_http_disconnect(uh);
947 }
948
949 static struct uclient *uclient_http_alloc(void)
950 {
951 struct uclient_http *uh;
952
953 uh = calloc_a(sizeof(*uh));
954 if (!uh)
955 return NULL;
956
957 uh->disconnect_t.cb = uclient_http_disconnect_cb;
958 blob_buf_init(&uh->headers, 0);
959
960 return &uh->uc;
961 }
962
963 static void uclient_http_free_ssl_ctx(struct uclient_http *uh)
964 {
965 uh->ssl_ops = NULL;
966 uh->ssl_ctx = NULL;
967 }
968
969 static void uclient_http_free(struct uclient *cl)
970 {
971 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
972
973 uclient_http_free_url_state(cl);
974 uclient_http_free_ssl_ctx(uh);
975 blob_buf_free(&uh->headers);
976 blob_buf_free(&uh->meta);
977 free(uh);
978 }
979
980 int
981 uclient_http_set_request_type(struct uclient *cl, const char *type)
982 {
983 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
984 unsigned int i;
985
986 if (cl->backend != &uclient_backend_http)
987 return -1;
988
989 if (uh->state > HTTP_STATE_INIT)
990 return -1;
991
992 for (i = 0; i < ARRAY_SIZE(request_types); i++) {
993 if (strcmp(request_types[i], type) != 0)
994 continue;
995
996 uh->req_type = i;
997 return 0;
998 }
999
1000 return -1;
1001 }
1002
1003 int
1004 uclient_http_reset_headers(struct uclient *cl)
1005 {
1006 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
1007
1008 blob_buf_init(&uh->headers, 0);
1009
1010 return 0;
1011 }
1012
1013 int
1014 uclient_http_set_header(struct uclient *cl, const char *name, const char *value)
1015 {
1016 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
1017
1018 if (cl->backend != &uclient_backend_http)
1019 return -1;
1020
1021 if (uh->state > HTTP_STATE_INIT)
1022 return -1;
1023
1024 blobmsg_add_string(&uh->headers, name, value);
1025 return 0;
1026 }
1027
1028 static int
1029 uclient_http_send_data(struct uclient *cl, const char *buf, unsigned int len)
1030 {
1031 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
1032 int err;
1033
1034 if (uh->state >= HTTP_STATE_REQUEST_DONE)
1035 return -1;
1036
1037 err = uclient_http_send_headers(uh);
1038 if (err)
1039 return err;
1040
1041 if (len > 0) {
1042 ustream_printf(uh->us, "%X\r\n", len);
1043 ustream_write(uh->us, buf, len, false);
1044 ustream_printf(uh->us, "\r\n");
1045 }
1046
1047 return len;
1048 }
1049
1050 static int
1051 uclient_http_request_done(struct uclient *cl)
1052 {
1053 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
1054 int err;
1055
1056 if (uh->state >= HTTP_STATE_REQUEST_DONE)
1057 return -1;
1058
1059 err = uclient_http_send_headers(uh);
1060 if (err)
1061 return err;
1062
1063 if (uclient_request_supports_body(uh->req_type))
1064 ustream_printf(uh->us, "0\r\n\r\n");
1065 uh->state = HTTP_STATE_REQUEST_DONE;
1066
1067 return 0;
1068 }
1069
1070 static int
1071 uclient_http_read(struct uclient *cl, char *buf, unsigned int len)
1072 {
1073 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
1074 int read_len = 0;
1075 char *data, *data_end;
1076
1077 if (uh->state < HTTP_STATE_RECV_DATA || !uh->us)
1078 return 0;
1079
1080 data = ustream_get_read_buf(uh->us, &read_len);
1081 if (!data || !read_len)
1082 return 0;
1083
1084 data_end = data + read_len;
1085 read_len = 0;
1086
1087 if (uh->read_chunked == 0) {
1088 char *sep;
1089
1090 if (data[0] == '\r' && data[1] == '\n') {
1091 data += 2;
1092 read_len += 2;
1093 }
1094
1095 sep = strstr(data, "\r\n");
1096 if (!sep)
1097 return 0;
1098
1099 *sep = 0;
1100 uh->read_chunked = strtoul(data, NULL, 16);
1101
1102 read_len += sep + 2 - data;
1103 data = sep + 2;
1104
1105 if (!uh->read_chunked) {
1106 uh->eof = true;
1107 uh->uc.data_eof = true;
1108 }
1109 }
1110
1111 unsigned int diff = data_end - data;
1112 if (len > diff)
1113 len = diff;
1114
1115 if (uh->read_chunked >= 0) {
1116 if (len > (unsigned long) uh->read_chunked)
1117 len = uh->read_chunked;
1118
1119 uh->read_chunked -= len;
1120 } else if (uh->content_length >= 0) {
1121 if (len > (unsigned long) uh->content_length)
1122 len = uh->content_length;
1123
1124 uh->content_length -= len;
1125 if (!uh->content_length) {
1126 uh->eof = true;
1127 uh->uc.data_eof = true;
1128 }
1129 }
1130
1131 if (len > 0) {
1132 read_len += len;
1133 memcpy(buf, data, len);
1134 }
1135
1136 if (read_len > 0)
1137 ustream_consume(uh->us, read_len);
1138
1139 uclient_notify_eof(uh);
1140
1141 /* Now that we consumed something and if this isn't EOF, start timer again */
1142 if (!uh->uc.eof && !cl->connection_timeout.pending)
1143 uloop_timeout_set(&cl->connection_timeout, cl->timeout_msecs);
1144
1145 return len;
1146 }
1147
1148 int uclient_http_redirect(struct uclient *cl)
1149 {
1150 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
1151 struct blobmsg_policy location = {
1152 .name = "location",
1153 .type = BLOBMSG_TYPE_STRING,
1154 };
1155 struct uclient_url *url = cl->url;
1156 struct blob_attr *tb;
1157
1158 if (cl->backend != &uclient_backend_http)
1159 return false;
1160
1161 switch (cl->status_code) {
1162 case 301:
1163 case 302:
1164 case 307:
1165 break;
1166 default:
1167 return false;
1168 }
1169
1170 blobmsg_parse(&location, 1, &tb, blob_data(uh->meta.head), blob_len(uh->meta.head));
1171 if (!tb)
1172 return false;
1173
1174 url = uclient_get_url_location(url, blobmsg_data(tb));
1175 if (!url)
1176 return false;
1177
1178 if (cl->proxy_url) {
1179 free(cl->proxy_url);
1180 cl->proxy_url = url;
1181 }
1182 else {
1183 free(cl->url);
1184 cl->url = url;
1185 }
1186
1187 if (uclient_http_connect(cl))
1188 return -1;
1189
1190 uclient_http_request_done(cl);
1191
1192 return true;
1193 }
1194
1195 int uclient_http_set_ssl_ctx(struct uclient *cl, const struct ustream_ssl_ops *ops,
1196 struct ustream_ssl_ctx *ctx, bool require_validation)
1197 {
1198 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
1199
1200 if (cl->backend != &uclient_backend_http)
1201 return -1;
1202
1203 uclient_http_free_url_state(cl);
1204
1205 uclient_http_free_ssl_ctx(uh);
1206 uh->ssl_ops = ops;
1207 uh->ssl_ctx = ctx;
1208 uh->ssl_require_validation = !!ctx && require_validation;
1209
1210 return 0;
1211 }
1212
1213 int uclient_http_set_address_family(struct uclient *cl, int af)
1214 {
1215 struct uclient_http *uh = container_of(cl, struct uclient_http, uc);
1216
1217 if (cl->backend != &uclient_backend_http)
1218 return -1;
1219
1220 switch (af) {
1221 case AF_INET:
1222 uh->usock_flags = USOCK_IPV4ONLY;
1223 break;
1224 case AF_INET6:
1225 uh->usock_flags = USOCK_IPV6ONLY;
1226 break;
1227 default:
1228 uh->usock_flags = 0;
1229 break;
1230 }
1231
1232 return 0;
1233 }
1234
1235 const struct uclient_backend uclient_backend_http = {
1236 .prefix = uclient_http_prefix,
1237
1238 .alloc = uclient_http_alloc,
1239 .free = uclient_http_free,
1240 .connect = uclient_http_connect,
1241 .disconnect = uclient_http_request_disconnect,
1242 .update_url = uclient_http_free_url_state,
1243 .update_proxy_url = uclient_http_free_url_state,
1244
1245 .read = uclient_http_read,
1246 .write = uclient_http_send_data,
1247 .request = uclient_http_request_done,
1248 };