forked from versat/cntlm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http.c
710 lines (605 loc) · 15.2 KB
/
http.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
/*
* HTTP handling routines and related socket stuff for CNTLM
*
* CNTLM is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* CNTLM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
* St, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2007 David Kubicek
*
*/
#include <sys/types.h>
#include <sys/select.h>
#include <sys/time.h>
#include <ctype.h>
#include <string.h>
#include <strings.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <assert.h>
#include <syslog.h>
#include "utils.h"
#include "socket.h"
#include "ntlm.h"
#include "http.h"
#define BLOCK 2048
extern int debug;
/*
* True if src is a header. This is just a basic check
* for the colon delimiter. Might eventually become more
* sophisticated. :)
*/
int is_http_header(const char *src) {
return strcspn(src, ":") != strlen(src);
}
/*
* Extract the header name from the source.
*/
char *get_http_header_name(const char *src) {
int i;
i = strcspn(src, ":");
if (i != (int)strlen(src))
return substr(src, 0, i);
else
return NULL;
}
/*
* Extract the header value from the source.
*/
char *get_http_header_value(const char *src) {
const char *sub;
if ((sub = strchr(src, ':'))) {
sub++;
while (*sub == ' ')
sub++;
return strdup(sub);
} else
return NULL;
}
/*
* Receive HTTP request/response from the given socket. Fill in pre-allocated
* rr_data_t structure.
* Returns: 1 if OK, 0 in case of socket EOF or other error
*/
int headers_recv(int fd, rr_data_t data) {
int i;
int bsize;
int len;
int is_http = 0;
char *buf;
char *tok;
char *s3 = NULL;
char *orig = NULL;
char *ccode = NULL;
char *host = NULL;
bsize = BUFSIZE;
buf = zmalloc(bsize);
i = so_recvln(fd, &buf, &bsize);
if (i <= 0)
goto bailout;
if (debug)
printf("HEAD: %s", buf);
/*
* Are we reading HTTP request (from client) or response (from server)?
*/
trimr(buf);
orig = strdup(buf);
len = strlen(buf);
tok = strtok_r(buf, " ", &s3);
if (tok && ((is_http = !strncasecmp(tok, "HTTP/", 5)) || !strncasecmp(tok, "ICY", 3))) {
data->req = 0;
data->empty = 0;
data->http = strdup(tok);
data->msg = NULL;
/*
* Let's find out the numeric version of the HTTP version: 09, 10, 11.
* Set to -1 if header is misformatted.
*/
if (is_http && (tok = strchr(data->http, '/')) && strlen(tok) >= 4 && isdigit((u_char)tok[1]) && isdigit((u_char)tok[3])) {
data->http_version = (tok[1] - 0x30) * 10 + (tok[3] - 0x30);
} else {
data->http_version = -1;
}
tok = strtok_r(NULL, " ", &s3);
if (tok) {
ccode = strdup(tok);
tok += strlen(ccode);
while (tok < buf+len && *tok++ == ' ');
if (strlen(tok))
data->msg = strdup(tok);
}
if (!data->msg)
data->msg = strdup("");
if (!ccode || strlen(ccode) != 3 || (data->code = atoi(ccode)) == 0) {
i = -2;
goto bailout;
}
} else if (strstr(orig, " HTTP/") && tok) {
data->req = 1;
data->empty = 0;
data->method = NULL;
data->url = NULL;
data->rel_url = NULL;
data->http = NULL;
data->hostname = NULL;
data->method = strdup(tok);
tok = strtok_r(NULL, " ", &s3);
if (tok)
data->url = strdup(tok);
tok = strtok_r(NULL, " ", &s3);
if (tok)
data->http = strdup(tok);
if (!data->url || !data->http) {
i = -3;
goto bailout;
}
/*
* Let's find out the numeric version of the HTTP version: 09, 10, 11.
* Set to -1 if header is misformatted.
*/
if ((tok = strchr(data->http, '/')) && strlen(tok) >= 4 && isdigit((u_char)tok[1]) && isdigit((u_char)tok[3])) {
data->http_version = (tok[1] - 0x30) * 10 + (tok[3] - 0x30);
} else {
data->http_version = -1;
}
if ((tok = strstr(data->url, "://"))) {
tok += 3;
} else {
tok = data->url;
}
s3 = strchr(tok, '/');
if (s3) {
host = substr(tok, 0, s3-tok);
data->rel_url = strdup(s3);
} else {
host = substr(tok, 0, strlen(tok));
data->rel_url = strdup("/");
}
} else {
if (debug)
printf("headers_recv: Unknown header (%s).\n", orig);
i = -4;
goto bailout;
}
/*
* Read in all headers, do not touch any possible HTTP body
*/
do {
i = so_recvln(fd, &buf, &bsize);
trimr(buf);
if (i > 0 && is_http_header(buf)) {
data->headers = hlist_add(data->headers, get_http_header_name(buf), get_http_header_value(buf), HLIST_NOALLOC, HLIST_NOALLOC);
}
} while (strlen(buf) != 0 && i > 0);
if (data->req) {
/*
* Fix requests, make sure the Host: header is present
*/
if (host && strlen(host)) {
if (!hlist_get(data->headers, "Host"))
data->headers = hlist_add(data->headers, "Host", host, HLIST_ALLOC, HLIST_ALLOC);
} else {
if (debug)
printf("headers_recv: no host name (%s)\n", orig);
i = -6;
goto bailout;
}
if (host[0] == '[') {
tok = strchr(host, ']');
*tok = 0;
data->hostname = strdup(host+1);
if (*(tok+1) == ':') {
data->port = atoi(tok+2);
}
} else if ((tok = strchr(host, ':'))) {
*tok = 0;
data->hostname = strdup(host);
data->port = atoi(tok+1);
} else {
data->hostname = strdup(host);
}
if (!data->port) {
if (!strncasecmp(data->url, "https", 5))
data->port = 443;
else
data->port = 80;
}
assert(data != NULL);
assert(data->hostname != NULL);
if (!strlen(data->hostname) || !data->port) {
i = -5;
goto bailout;
}
}
bailout:
if (orig) free(orig);
if (ccode) free(ccode);
if (host) free(host);
free(buf);
if (i <= 0) {
if (debug)
printf("headers_recv: fd %d error %d\n", fd, i);
return 0;
}
return 1;
}
/*
* Send HTTP request/response to the given socket based on what's in "data".
* Returns: 1 if OK, 0 in case of socket error
*/
int headers_send(int fd, rr_data_const_t data) {
hlist_const_t t;
char *buf;
int i;
int len;
/*
* First compute required buffer size (avoid realloc, etc)
*/
if (data->req)
len = 20 + strlen(data->method) + strlen(data->url) + strlen(data->http);
else
len = 20 + strlen(data->http) + strlen(data->msg);
t = data->headers;
while (t) {
len += 20 + strlen(t->key) + strlen(t->value);
t = t->next;
}
/*
* We know how much memory we need now...
*/
const int buf_len = len;
buf = zmalloc(buf_len);
/*
* Prepare the first request/response line
*/
len = 0;
if (data->req)
len = snprintf(buf, buf_len, "%s %s %s\r\n", data->method, data->url, data->http);
else if (!data->skip_http)
len = snprintf(buf, buf_len, "%s %03d %s\r\n", data->http, data->code, data->msg);
/*
* Now add all headers.
*/
t = data->headers;
while (t) {
len += snprintf(buf+len, buf_len - len, "%s: %s\r\n", t->key, t->value);
t = t->next;
}
/*
* Terminate headers
*/
strlcat(buf, "\r\n", buf_len);
/*
* Flush it all down the toilet
*/
if (!so_closed(fd))
i = write_wrapper(fd, buf, len+2);
else
i = -999;
free(buf);
if (i <= 0 || i != len+2) {
if (debug)
printf("headers_send: fd %d warning %d (connection closed)\n", fd, i);
return 0;
}
return 1;
}
/*
* Forward "size" of data from "src" to "dst". If size == -1 then keep
* forwarding until src reaches EOF.
* If dst == -1, data is discarded.
*/
int data_send(int dst, int src, length_t len) {
char *buf;
int i;
int block;
int c = 0;
int j = 1;
if (!len)
return 1;
buf = zmalloc(BLOCK);
do {
block = (len == -1 || len-c > BLOCK ? BLOCK : len-c);
i = read(src, buf, block);
if (i > 0)
c += i;
if (dst >= 0 && debug)
printf("data_send: read %d of %d / %d of %lld (errno = %s)\n", i, block, c, len, i < 0 ? strerror(errno) : "ok");
if (dst >= 0 && so_closed(dst)) {
i = -999;
break;
}
if (dst >= 0 && i > 0) {
j = write_wrapper(dst, buf, i);
if (debug)
printf("data_send: wrote %d of %d\n", j, i);
}
} while (i > 0 && j > 0 && (len == -1 || c < len));
free(buf);
if (i <= 0 || j <= 0) {
if (i == 0 && j > 0 && (len == -1 || c == len))
return 1;
if (debug)
printf("data_send: fds %d:%d warning %d (connection closed)\n", dst, src, i);
return 0;
}
return 1;
}
/*
* Forward chunked HTTP body from "src" descriptor to "dst".
* If dst == -1, data is discarded.
*/
int chunked_data_send(int dst, int src) {
char *buf;
int bsize;
int len;
int i;
int w;
int csize;
char *err = NULL;
bsize = BUFSIZE;
buf = zmalloc(bsize);
/* Take care of all chunks */
do {
i = so_recvln(src, &buf, &bsize);
if (i <= 0) {
if (debug)
printf("chunked_data_send: aborting, read error\n");
free(buf);
return 0;
}
csize = strtol(buf, &err, 16);
if (!isspace((u_char)*err) && *err != ';') {
if (debug)
printf("chunked_data_send: aborting, chunk size format error\n");
free(buf);
return 0;
}
if (dst >= 0)
(void) write_wrapper(dst, buf, strlen(buf));
if (csize)
if (!data_send(dst, src, csize+2)) {
if (debug)
printf("chunked_data_send: aborting, data_send failed\n");
free(buf);
return 0;
}
} while (csize != 0);
/* Take care of possible trailer */
w = len = i = 0;
do {
i = so_recvln(src, &buf, &bsize);
if (dst >= 0 && i > 0) {
len = strlen(buf);
w = write_wrapper(dst, buf, len);
}
} while (w == len && i > 0 && buf[0] != '\r' && buf[0] != '\n');
free(buf);
return 1;
}
/*
* Full-duplex forwarding between proxy and client descriptors.
* Used for bidirectional HTTP CONNECT connection.
*/
int tunnel(int cd, int sd) {
fd_set set;
int from;
int to;
int ret;
int sel;
char *buf;
buf = zmalloc(BUFSIZE);
if (debug)
printf("tunnel: select cli: %d, srv: %d\n", cd, sd);
do {
FD_ZERO(&set);
FD_SET(cd, &set);
FD_SET(sd, &set);
sel = select(FD_SETSIZE, &set, NULL, NULL, NULL);
if (sel > 0) {
if (FD_ISSET(cd, &set)) {
from = cd;
to = sd;
} else {
from = sd;
to = cd;
}
ret = read(from, buf, BUFSIZE);
if (ret > 0) {
(void) write_wrapper(to, buf, ret);
} else {
free(buf);
return (ret == 0);
}
} else if (sel < 0) {
free(buf);
return 0;
}
} while (1);
free(buf);
return 1;
}
/*
* Return 0 if no body, -1 if body until EOF, number if size known
* One of request/response can be NULL
*/
length_t http_has_body(rr_data_const_t request, rr_data_const_t response) {
rr_data_const_t current;
length_t length;
int nobody;
const char *tmp;
/*
* Are we checking a complete req+res conversation or just the
* request body?
*/
current = (!response || response->empty ? request : response);
if (current == NULL) {
syslog(LOG_ERR, "Internal error in function http_has_body(): Both arguments to function seem to be invalid/NULL: request: %p response: %p\n",
(const void *)request, (const void *)response);
return 0;
}
/*
* HTTP body length decisions. There MUST NOT be any body from
* server if the request was HEAD or reply is 1xx, 204 or 304.
* No body can be in GET request if direction is from client.
*/
if (current == response) {
nobody = (HEAD(request) ||
(response->code >= 100 && response->code < 200) ||
response->code == 204 ||
response->code == 304);
} else {
nobody = GET(request) || HEAD(request);
}
/*
* Otherwise consult Content-Length. If present, we forward exactly
* that many bytes.
*
* If not present, but there is Transfer-Encoding or Content-Type
* (or a request to close connection, that is, end of data is signaled
* by remote close), we will forward until EOF.
*
* No C-L, no T-E, no C-T == no body.
*/
tmp = hlist_get(current->headers, "Content-Length");
if (!nobody && tmp == NULL && (hlist_in(current->headers, "Content-Type")
|| hlist_in(current->headers, "Transfer-Encoding")
|| hlist_subcmp(current->headers, "Connection", "close"))) {
// || (response->code == 200)
if (hlist_in(current->headers, "Transfer-Encoding")
&& hlist_subcmp(current->headers, "Transfer-Encoding", "chunked"))
length = 1;
else
length = -1;
} else
length = (tmp == NULL || nobody ? 0 : atoll(tmp));
if (current == request && length == -1)
length = 0;
return length;
}
/*
* Send a HTTP body (if any) between descriptors readfd and writefd
*/
int http_body_send(int writefd, int readfd, rr_data_const_t request, rr_data_const_t response) {
length_t bodylen;
int rc = 1;
rr_data_const_t current;
/*
* Are we checking a complete req+res conversation or just the
* request body?
*/
current = (response->empty ? request : response);
/*
* Ok, so do we expect any body?
*/
bodylen = http_has_body(request, response);
if (bodylen) {
/*
* Check for supported T-E.
*/
if (hlist_subcmp(current->headers, "Transfer-Encoding", "chunked")) {
if (debug)
printf("Chunked body included.\n");
rc = chunked_data_send(writefd, readfd);
if (debug)
printf("%s", rc ? "Chunked body sent.\n" : "Could not chunk send whole body\n");
} else {
if (debug)
printf("Body included. Length: %lld\n", bodylen);
rc = data_send(writefd, readfd, bodylen);
if (debug)
printf("%s", rc ? "Body sent.\n" : "Could not send whole body\n");
}
} else if (debug)
printf("No body.\n");
return rc;
}
/*
* Connection cleanup - C-L or chunked body
* Return 0 if connection closed or EOF, 1 if OK to continue
*/
int http_body_drop(int fd, rr_data_const_t response) {
length_t bodylen;
int rc = 1;
bodylen = http_has_body(NULL, response);
if (bodylen) {
if (hlist_subcmp(response->headers, "Transfer-Encoding", "chunked")) {
if (debug)
printf("Discarding chunked body.\n");
rc = chunked_data_send(-1, fd);
} else {
if (debug)
printf("Discarding %lld bytes.\n", bodylen);
rc = data_send(-1, fd, bodylen);
}
}
return rc;
}
/*
* Parse headers for BASIC auth credentials
*
* Return 1 = creds parsed OK, 0 = no creds, -1 = invalid creds
*/
int http_parse_basic(hlist_const_t headers, const char *header, struct auth_s *tcreds) {
char *tmp = NULL;
char *pos = NULL;
char *buf = NULL;
char *dom = NULL;
size_t i;
if (!hlist_subcmp(headers, header, "basic"))
return 0;
tmp = hlist_get(headers, header);
assert(tmp != NULL);
size_t header_bufsize = strlen(tmp) + 1;
buf = zmalloc(header_bufsize);
i = 5;
while (i < strlen(tmp) && tmp[++i] == ' ');
from_base64(buf, tmp+i);
pos = strchr(buf, ':');
if (pos == NULL) {
compat_memset_s(buf, header_bufsize, 0, strlen(buf)); /* clean memory containing credentials */
free(buf);
return -1;
} else {
*pos = 0;
dom = strchr(buf, '\\');
if (dom == NULL) {
auth_strcpy(tcreds, user, buf);
} else {
*dom = 0;
++dom;
auth_strcpy(tcreds, domain, buf);
auth_strcpy(tcreds, user, dom);
}
if (tcreds->hashntlm2) {
tmp = ntlm2_hash_password(tcreds->user, tcreds->domain, pos+1);
auth_memcpy(tcreds, passntlm2, tmp, 16);
free(tmp);
}
if (tcreds->hashnt) {
tmp = ntlm_hash_nt_password(pos+1);
auth_memcpy(tcreds, passnt, tmp, 21);
free(tmp);
}
if (tcreds->hashlm) {
tmp = ntlm_hash_lm_password(pos+1);
auth_memcpy(tcreds, passlm, tmp, 21);
free(tmp);
}
compat_memset_s(buf, header_bufsize, 0, header_bufsize);
free(buf);
}
return 1;
}