-
Notifications
You must be signed in to change notification settings - Fork 0
/
httpclient.c
382 lines (327 loc) · 8.96 KB
/
httpclient.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
/*
* Copyright (C) 2002 John Todd Larason <[email protected]>
*
* This program 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.
*
* This program 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.
*/
#include "httpclient.h"
#include <ctype.h>
#include <stdio.h>
#include <string.h>
struct hc_headers
{
char * tag;
char * value;
struct hc_headers * next;
};
struct hc
{
struct nc * nc;
char * hostname;
short port;
char * localpart;
char * status;
struct hc_headers * req_headers;
struct hc_headers * rsp_headers;
};
static void hc_h_free(struct hc_headers * hh)
{
free(hh->tag);
free(hh->value);
free(hh);
}
static struct hc_headers * hc_h_make(const char * tag, const char * value)
{
struct hc_headers * h;
h = malloc(sizeof *h);
if (!h)
goto error;
memset(h, 0, sizeof *h);
h->tag = strdup(tag);
if (!h->tag)
goto error;
h->value = strdup(value);
if (!h->value)
goto error;
return h;
error:
if (h)
hc_h_free(h);
return NULL;
}
void hc_free(struct hc * hc)
{
struct hc_headers * n;
if (hc) {
free(hc->hostname);
free(hc->localpart);
free(hc->status);
while (hc->req_headers) {
n = hc->req_headers->next;
hc_h_free(hc->req_headers);
hc->req_headers = n;
}
while (hc->rsp_headers) {
n = hc->rsp_headers->next;
hc_h_free(hc->rsp_headers);
hc->rsp_headers = n;
}
if (hc->nc)
nc_close(hc->nc);
free(hc);
}
}
int hc_add_req_header(struct hc * hc, const char * tag, const char * value)
{
struct hc_headers * h;
h = hc_h_make(tag, value);
if (!h)
goto error;
h->next = hc->req_headers;
hc->req_headers = h;
return 0;
error:
return -1;
}
struct hc * hc_start_request(char * url)
{
struct hc * hc;
char * e;
hc = malloc(sizeof *hc);
memset(hc, 0, sizeof *hc);
if (strncmp(url, "http://", 7) != 0) {
goto error;
}
url += 7;
e = strchr(url, '/');
if (!e) {
hc->hostname = strdup(url);
hc->localpart = strdup("/");
} else {
hc->hostname = malloc(e - url + 1);
if (!hc->hostname) goto error;
memcpy(hc->hostname, url, e - url);
hc->hostname[e-url] = '\0';
hc->localpart = strdup(e);
if (!hc->localpart) goto error;
}
if (hc_add_req_header(hc, "Host", hc->hostname) < 0)
goto error;
e = strchr(hc->hostname, ':');
if (e) {
*e = '\0';
hc->port = (short)strtoul(e+1, NULL, 10);
} else {
hc->port = 80;
}
hc->nc = nc_open(hc->hostname, hc->port);
if (!hc->nc)
goto error;
return hc;
error:
if (hc)
hc_free(hc);
return NULL;
}
int hc_send_request(struct hc * hc)
{
char buffer[1024];
size_t l;
struct hc_headers * h;
l = strlen(hc->localpart) + strlen("GET HTTP/1.1\r\n");
for (h = hc->req_headers; h; h = h->next)
l += strlen(h->tag) + strlen(h->value) + 4;
l += 3;
if (l > sizeof buffer) {
fprintf(stderr, "ERROR: hc_send_request: buffer too small; need %lu\n",
(unsigned long)l);
return -1;
}
l = sprintf(buffer, "GET %s HTTP/1.1\r\n", hc->localpart);
for (h = hc->req_headers; h; h = h->next)
l += sprintf(buffer+l, "%s: %s\r\n", h->tag, h->value);
l += sprintf(buffer+l, "\r\n");
nc_write(hc->nc, buffer, l);
if (nc_read_line(hc->nc, buffer, sizeof buffer) <= 0) {
perror("ERROR: hc_send_request nc_read_line");
return -1;
}
hc->status = strdup(buffer);
while (nc_read_line(hc->nc, buffer, sizeof buffer) > 0) {
char * e;
e = strchr(buffer, ':');
if (e) {
*e = '\0';
e++;
while (isspace(*e))
e++;
h = hc_h_make(buffer, e);
h->next = hc->rsp_headers;
hc->rsp_headers = h;
} else {
fprintf(stderr, "ERROR: hc_send_request got invalid header line :%s:\n", buffer);
}
}
return 0;
}
int hc_post_request(struct hc * hc,
int (*callback)(unsigned char *, size_t, void *),
void * v)
{
char buffer[1024];
size_t l;
struct hc_headers * h;
l = strlen(hc->localpart) + strlen("POST HTTP/1.0\r\n");
for (h = hc->req_headers; h; h = h->next)
l += strlen(h->tag) + strlen(h->value) + 4;
l += 3;
if (l > sizeof buffer) {
fprintf(stderr, "ERROR: hc_post_request: buffer too small; need %lu\n",
(unsigned long)l);
return -1;
}
l = sprintf(buffer, "POST %s HTTP/1.0\r\n", hc->localpart);
for (h = hc->req_headers; h; h = h->next)
l += sprintf(buffer+l, "%s: %s\r\n", h->tag, h->value);
l += sprintf(buffer+l, "\r\n");
nc_write(hc->nc, buffer, l);
while ((l = callback(buffer, sizeof buffer, v)) != 0) {
int r;
r = nc_write(hc->nc, buffer, l);
// fprintf(stderr, "%d\n", r);
}
if (nc_read_line(hc->nc, buffer, sizeof buffer) <= 0) {
perror("ERROR: hc_post_request nc_read_line");
return -1;
}
hc->status = strdup(buffer);
while (nc_read_line(hc->nc, buffer, sizeof buffer) > 0) {
char * e;
e = strchr(buffer, ':');
if (e) {
*e = '\0';
e++;
while (isspace(*e))
e++;
h = hc_h_make(buffer, e);
h->next = hc->rsp_headers;
hc->rsp_headers = h;
} else {
fprintf(stderr, "ERROR: hc_post_request got invalid header line :%s:\n", buffer);
}
}
return 0;
}
int hc_get_status(struct hc * hc)
{
return strtoul(hc->status + 9, NULL, 10);
}
char * hc_lookup_rsp_header(struct hc * hc, const char * tag)
{
struct hc_headers * h;
for (h = hc->rsp_headers; h; h = h->next)
if (strcasecmp(tag, h->tag) == 0)
return h->value;
return NULL;
}
extern int hc_read_pieces(struct hc * hc,
void (*callback)(unsigned char *, size_t, void *),
void * v)
{
char * te;
int chunked = 0;
int done = 0;
char * buf;
size_t len, len_read;
te = hc_lookup_rsp_header(hc, "Transfer-Encoding");
if (te && strcmp(te, "chunked") == 0) {
chunked = 1;
}
while (!done) {
if (chunked) {
char lenstr[32];
nc_read_line(hc->nc, lenstr, sizeof lenstr);
len = strtoul(lenstr, NULL, 16);
} else {
len = 4096;
}
if (len) {
buf = malloc(len+1);
len_read = nc_read(hc->nc, buf, len);
if (len_read < len)
done = 1;
buf[len_read] = '\0';
callback(buf, len_read, v);
} else {
done = 1;
}
if (chunked) {
char linebuf[80];
/* if done, then any non-blank lines read here are
supposed to be treated as HTTP header lines, but since
we didn't say we could accept trailers, the server's
only allowed to send them if it's happy with us
discarding them. (2616 3.7b). The Replay doesn't use
trailers anyway */
while (nc_read_line(hc->nc, linebuf, sizeof linebuf) > 0)
;
}
}
return 0;
}
struct chunk
{
char * buf;
size_t len;
struct chunk * next;
};
struct read_all_data
{
struct chunk * start;
struct chunk * end;
size_t total;
};
static void read_all_callback(unsigned char * buf, size_t len, void * vd)
{
struct read_all_data * data = vd;
struct chunk * chunk;
chunk = malloc(sizeof *chunk);
chunk->buf = buf;
chunk->len = len;
chunk->next = NULL;
if (data->end) {
data->end->next = chunk;
data->end = chunk;
} else {
data->start = data->end = chunk;
}
data->total += len;
}
unsigned char * hc_read_all(struct hc * hc)
{
struct read_all_data data;
struct chunk * chunk, * next;
size_t cur;
unsigned char * r;
data.start = data.end = NULL;
data.total = 0;
hc_read_pieces(hc, read_all_callback, &data);
r = malloc(data.total + 1);
cur = 0;
for (chunk = data.start; chunk; chunk = next) {
memcpy(r+cur, chunk->buf, chunk->len);
cur += chunk->len;
free(chunk->buf);
next = chunk->next;
free(chunk);
}
r[data.total] = '\0';
return r;
}