varnish-cache/bin/varnishtest/vtest2/src/vtc_http.c
0
/*-
1
 * Copyright (c) 2008-2019 Varnish Software AS
2
 * All rights reserved.
3
 *
4
 * Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
5
 *
6
 * SPDX-License-Identifier: BSD-2-Clause
7
 *
8
 * Redistribution and use in source and binary forms, with or without
9
 * modification, are permitted provided that the following conditions
10
 * are met:
11
 * 1. Redistributions of source code must retain the above copyright
12
 *    notice, this list of conditions and the following disclaimer.
13
 * 2. Redistributions in binary form must reproduce the above copyright
14
 *    notice, this list of conditions and the following disclaimer in the
15
 *    documentation and/or other materials provided with the distribution.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
 * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27
 * SUCH DAMAGE.
28
 */
29
30
#include "config.h"
31
32
#include <sys/socket.h>
33
34
#include <math.h>
35
#include <poll.h>
36
#include <stdio.h>
37
#include <stdlib.h>
38
#include <unistd.h>
39
#include <string.h>
40
41
#include "vtc.h"
42
#include "vtc_http.h"
43
44
#include "vct.h"
45
#include "vfil.h"
46
#include "vnum.h"
47
#include "vrnd.h"
48
#include "vtcp.h"
49
#include "vtim.h"
50
#include "hpack.h"
51
52
extern const struct cmds http_cmds[];
53
54
/* SECTION: client-server client/server
55
 *
56
 * Client and server threads are fake HTTP entities used to test your Varnish
57
 * and VCL. They take any number of arguments, and the one that are not
58
 * recognized, assuming they don't start with '-', are treated as
59
 * specifications, laying out the actions to undertake::
60
 *
61
 *         client cNAME [...]
62
 *         server sNAME [...]
63
 *
64
 * Clients and server are identified by a string that's the first argument,
65
 * clients' names start with 'c' and servers' names start with 's'.
66
 *
67
 * As the client and server commands share a good deal of arguments and
68
 * specification actions, they are grouped in this single section, specific
69
 * items will be explicitly marked as such.
70
 *
71
 * SECTION: client-server.macros Macros and automatic behaviour
72
 *
73
 * To make things easier in the general case, clients will connect by default
74
 * to a Varnish server called v1. To connect to a different Varnish server, use
75
 * '-connect ${vNAME_sock}'.
76
 *
77
 * The -vcl+backend switch of the ``varnish`` command will add all the declared
78
 * servers as backends. Be careful though, servers will by default listen to
79
 * the 127.0.0.1 IP and will pick a random port, and publish 3 macros:
80
 * sNAME_addr, sNAME_port and sNAME_sock, but only once they are started. For
81
 * 'varnish -vcl+backend' to create the vcl with the correct values, the server
82
 * must be started first.
83
 *
84
 * SECTION: client-server.args Arguments
85
 *
86
 * \-start
87
 *        Start the thread in background, processing the last given
88
 *        specification.
89
 *
90
 * \-wait
91
 *        Block until the thread finishes.
92
 *
93
 * \-run (client only)
94
 *        Equivalent to "-start -wait".
95
 *
96
 * \-repeat NUMBER
97
 *        Instead of processing the specification only once, do it NUMBER times.
98
 *
99
 * \-keepalive
100
 *        For repeat, do not open new connections but rather run all
101
 *        iterations in the same connection
102
 *
103
 * \-break (server only)
104
 *        Stop the server.
105
 *
106
 * \-listen STRING (server only)
107
 *        Dictate the listening socket for the server. STRING is of the form
108
 *        "IP PORT", or "/PATH/TO/SOCKET" for a Unix domain socket. In the
109
 *        latter case, the path must begin with '/', and the server must be
110
 *        able to create it.
111
 *
112
 * \-connect STRING (client only)
113
 *        Indicate the server to connect to. STRING is also of the form
114
 *        "IP PORT", or "/PATH/TO/SOCKET". As with "server -listen", a
115
 *        Unix domain socket is recognized when STRING begins with a '/'.
116
 *
117
 * \-dispatch (server only, s0 only)
118
 *        Normally, to keep things simple, server threads only handle one
119
 *        connection at a time, but the -dispatch switch allows to accept
120
 *        any number of connection and handle them following the given spec.
121
 *
122
 *        However, -dispatch is only allowed for the server name "s0".
123
 *
124
 * \-proxy1 STRING (client only)
125
 *        Use the PROXY protocol version 1 for this connection. STRING
126
 *        is of the form "CLIENTIP:PORT SERVERIP:PORT".
127
 *
128
 * \-proxy2 STRING (client only)
129
 *        Use the PROXY protocol version 2 for this connection. STRING
130
 *        is of the form "CLIENTIP:PORT SERVERIP:PORT [TLV [TLV ... ]]".
131
 *
132
 *        TLV is in the form name=val
133
 *
134
 *        name: 0xID or alpn, authority, crc32c, noop, unique_id, netns
135
 *        val: 0x... or string
136
 *
137
 *        ssl is currently not implemented (can be sent as hex)
138
 *
139
 * SECTION: client-server.spec Specification
140
 *
141
 * It's a string, either double-quoted "like this", but most of the time
142
 * enclosed in curly brackets, allowing multilining. Write a command per line in
143
 * it, empty line are ignored, and long line can be wrapped by using a
144
 * backslash. For example::
145
 *
146
 *     client c1 {
147
 *         txreq -url /foo \
148
 *               -hdr "bar: baz"
149
 *
150
 *         rxresp
151
 *     } -run
152
 */
153
154
#define ONLY_CLIENT(hp, av)                                             \
155
        do {                                                            \
156
                if (hp->h2)                                             \
157
                        vtc_fatal(hp->vl,                               \
158
                            "\"%s\" only possible before H/2 upgrade",  \
159
                                        av[0]);                         \
160
                if (hp->sfd != NULL)                                    \
161
                        vtc_fatal(hp->vl,                               \
162
                            "\"%s\" only possible in client", av[0]);   \
163
        } while (0)
164
165
#define ONLY_SERVER(hp, av)                                             \
166
        do {                                                            \
167
                if (hp->h2)                                             \
168
                        vtc_fatal(hp->vl,                               \
169
                            "\"%s\" only possible before H/2 upgrade",  \
170
                                        av[0]);                         \
171
                if (hp->sfd == NULL)                                    \
172
                        vtc_fatal(hp->vl,                               \
173
                            "\"%s\" only possible in server", av[0]);   \
174
        } while (0)
175
176
177
/* XXX: we may want to vary this */
178
static const char * const nl = "\r\n";
179
180
/**********************************************************************
181
 * Generate a synthetic body
182
 */
183
184
char *
185 1080
synth_body(const char *len, int rnd)
186
{
187
        int i, j, k, l;
188
        char *b;
189
190
191 1080
        AN(len);
192 1080
        i = strtoul(len, NULL, 0);
193 1080
        assert(i > 0);
194 1080
        b = malloc(i + 1L);
195 1080
        AN(b);
196 1080
        l = k = '!';
197 72193700
        for (j = 0; j < i; j++) {
198 72192620
                if ((j % 64) == 63) {
199 1127356
                        b[j] = '\n';
200 1127356
                        k++;
201 1127356
                        if (k == '~')
202 12016
                                k = '!';
203 1127356
                        l = k;
204 72192620
                } else if (rnd) {
205 34062
                        b[j] = (VRND_RandomTestable() % 95) + ' ';
206 34062
                } else {
207 71031202
                        b[j] = (char)l;
208 71031202
                        if (++l == '~')
209 760730
                                l = '!';
210
                }
211 72192620
        }
212 1080
        b[i - 1] = '\n';
213 1080
        b[i] = '\0';
214 1080
        return (b);
215
}
216
217
/**********************************************************************
218
 * Finish and write the vsb to the fd
219
 */
220
221
static void
222 11445
http_write(const struct http *hp, int lvl, const char *pfx)
223
{
224
225 11445
        AZ(VSB_finish(hp->vsb));
226 11445
        vtc_dump(hp->vl, lvl, pfx, VSB_data(hp->vsb), VSB_len(hp->vsb));
227 11445
        if (VSB_tofile(hp->vsb, hp->sess->fd))
228 28
                vtc_log(hp->vl, hp->fatal, "Write failed: %s",
229 14
                    strerror(errno));
230 11445
}
231
232
/**********************************************************************
233
 * find header
234
 */
235
236
static char *
237 28992
http_find_header(char * const *hh, const char *hdr)
238
{
239
        int n, l;
240
        char *r;
241
242 28992
        l = strlen(hdr);
243
244 212600
        for (n = 3; hh[n] != NULL; n++) {
245 196282
                if (strncasecmp(hdr, hh[n], l) || hh[n][l] != ':')
246 183608
                        continue;
247 25368
                for (r = hh[n] + l + 1; vct_issp(*r); r++)
248 12694
                        continue;
249 12674
                return (r);
250
        }
251 16318
        return (NULL);
252 28992
}
253
254
/**********************************************************************
255
 * count header
256
 */
257
258
static int
259 11346
http_count_header(char * const *hh, const char *hdr)
260
{
261 11346
        int n, l, r = 0;
262
263 11346
        l = strlen(hdr);
264
265 91476
        for (n = 3; hh[n] != NULL; n++) {
266 80130
                if (strncasecmp(hdr, hh[n], l) || hh[n][l] != ':')
267 74476
                        continue;
268 5654
                r++;
269 5654
        }
270 11346
        return (r);
271
}
272
273
/* SECTION: client-server.spec.expect
274
 *
275
 * expect STRING1 OP STRING2
276
 *         Test if "STRING1 OP STRING2" is true, and if not, fails the test.
277
 *         OP can be ==, <, <=, >, >= when STRING1 and STRING2 represent numbers
278
 *         in which case it's an order operator. If STRING1 and STRING2 are
279
 *         meant as strings OP is a matching operator, either == (exact match)
280
 *         or ~ (regex match).
281
 *
282
 *         varnishtest will first try to resolve STRING1 and STRING2 by looking
283
 *         if they have special meanings, in which case, the resolved value is
284
 *         use for the test. Note that this value can be a string representing a
285
 *         number, allowing for tests such as::
286
 *
287
 *                 expect req.http.x-num > 2
288
 *
289
 *         Here's the list of recognized strings, most should be obvious as they
290
 *         either match VCL logic, or the txreq/txresp options:
291
 *
292
 *         - remote.ip
293
 *         - remote.port
294
 *         - remote.path
295
 *         - req.method
296
 *         - req.url
297
 *         - req.proto
298
 *         - resp.proto
299
 *         - resp.status
300
 *         - resp.reason
301
 *         - resp.chunklen
302
 *         - req.bodylen
303
 *         - req.body
304
 *         - resp.bodylen
305
 *         - resp.body
306
 *         - req.http.NAME
307
 *         - resp.http.NAME
308
 */
309
310
static const char *
311 27369
cmd_var_resolve(struct http *hp, char *spec)
312
{
313
        char **hh, *hdr;
314 27369
        if (!strcmp(spec, "remote.ip"))
315 8
                return (hp->rem_ip);
316 27361
        if (!strcmp(spec, "remote.port"))
317 8
                return (hp->rem_port);
318 27353
        if (!strcmp(spec, "remote.path"))
319 8
                return (hp->rem_path);
320 27345
        if (!strcmp(spec, "req.method"))
321 78
                return (hp->req[0]);
322 27267
        if (!strcmp(spec, "req.url"))
323 1242
                return (hp->req[1]);
324 26025
        if (!strcmp(spec, "req.proto"))
325 58
                return (hp->req[2]);
326 25967
        if (!strcmp(spec, "resp.proto"))
327 36
                return (hp->resp[0]);
328 25931
        if (!strcmp(spec, "resp.status"))
329 3286
                return (hp->resp[1]);
330 22645
        if (!strcmp(spec, "resp.reason"))
331 428
                return (hp->resp[2]);
332 22217
        if (!strcmp(spec, "resp.chunklen"))
333 0
                return (hp->chunklen);
334 22217
        if (!strcmp(spec, "req.bodylen"))
335 58
                return (hp->bodylen);
336 22159
        if (!strcmp(spec, "req.body"))
337 56
                return (hp->body != NULL ? hp->body : spec);
338 22103
        if (!strcmp(spec, "resp.bodylen"))
339 1374
                return (hp->bodylen);
340 20729
        if (!strcmp(spec, "resp.body"))
341 427
                return (hp->body != NULL ? hp->body : spec);
342 20302
        if (!strncmp(spec, "req.http.", 9)) {
343 798
                hh = hp->req;
344 798
                hdr = spec + 9;
345 20302
        } else if (!strncmp(spec, "resp.http.", 10)) {
346 6190
                hh = hp->resp;
347 6190
                hdr = spec + 10;
348 19504
        } else if (!strcmp(spec, "h2.state")) {
349 14
                if (hp->h2)
350 6
                        return ("true");
351
                else
352 8
                        return ("false");
353
        } else
354 13300
                return (spec);
355 6988
        hdr = http_find_header(hh, hdr);
356 6988
        return (hdr);
357 27369
}
358
359
static void
360 13686
cmd_http_expect(CMD_ARGS)
361
{
362
        struct http *hp;
363
        const char *lhs;
364
        char *cmp;
365
        const char *rhs;
366
367 13686
        (void)vl;
368 13686
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
369 13686
        AZ(strcmp(av[0], "expect"));
370 13686
        av++;
371
372 13686
        AN(av[0]);
373 13686
        AN(av[1]);
374 13686
        AN(av[2]);
375 13686
        AZ(av[3]);
376 13686
        lhs = cmd_var_resolve(hp, av[0]);
377 13686
        cmp = av[1];
378 13686
        rhs = cmd_var_resolve(hp, av[2]);
379
380 13686
        vtc_expect(vl, av[0], lhs, cmp, av[2], rhs);
381 13686
}
382
383
/* SECTION: client-server.spec.expect_pattern
384
 *
385
 * expect_pattern
386
 *
387
 * Expect as the http body the test pattern generated by chunkedlen ('0'..'7'
388
 * repeating).
389
 */
390
static void
391 8
cmd_http_expect_pattern(CMD_ARGS)
392
{
393
        char *p;
394
        struct http *hp;
395 8
        char t = '0';
396
397 8
        (void)vl;
398 8
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
399 8
        AZ(strcmp(av[0], "expect_pattern"));
400 8
        av++;
401 8
        AZ(av[0]);
402 524296
        for (p = hp->body; *p != '\0'; p++) {
403 524288
                if (*p != t)
404 0
                        vtc_fatal(hp->vl,
405
                            "EXPECT PATTERN FAIL @%zd should 0x%02x is 0x%02x",
406 0
                            (ssize_t) (p - hp->body), t, *p);
407 524288
                t += 1;
408 524288
                t &= ~0x08;
409 524288
        }
410 8
        vtc_log(hp->vl, 4, "EXPECT PATTERN SUCCESS");
411 8
}
412
413
/**********************************************************************
414
 * Split a HTTP protocol header
415
 */
416
417
static void
418 11346
http_splitheader(struct http *hp, int req)
419
{
420
        char *p, *q, **hh;
421
        int n;
422
        char buf[20];
423
424 11346
        CHECK_OBJ_NOTNULL(hp, HTTP_MAGIC);
425 11346
        if (req) {
426 4704
                memset(hp->req, 0, sizeof hp->req);
427 4704
                hh = hp->req;
428 4704
        } else {
429 6642
                memset(hp->resp, 0, sizeof hp->resp);
430 6642
                hh = hp->resp;
431
        }
432
433 11346
        n = 0;
434 11346
        p = hp->rx_b;
435 11346
        if (*p == '\0') {
436 160
                vtc_log(hp->vl, 4, "No headers");
437 160
                return;
438
        }
439
440
        /* REQ/PROTO */
441 11188
        while (vct_islws(*p))
442 2
                p++;
443 11186
        hh[n++] = p;
444 77560
        while (!vct_islws(*p))
445 66374
                p++;
446 11186
        AZ(vct_iscrlf(p, hp->rx_e));
447 11186
        *p++ = '\0';
448
449
        /* URL/STATUS */
450 11186
        while (vct_issp(*p))            /* XXX: H space only */
451 0
                p++;
452 11186
        AZ(vct_iscrlf(p, hp->rx_e));
453 11186
        hh[n++] = p;
454 54776
        while (!vct_islws(*p))
455 43590
                p++;
456 11186
        if (vct_iscrlf(p, hp->rx_e)) {
457 2
                hh[n++] = NULL;
458 2
                q = p;
459 2
                p = vct_skipcrlf(p, hp->rx_e);
460 2
                *q = '\0';
461 2
        } else {
462 11184
                *p++ = '\0';
463
                /* PROTO/MSG */
464 11184
                while (vct_issp(*p))            /* XXX: H space only */
465 0
                        p++;
466 11184
                hh[n++] = p;
467 86654
                while (!vct_iscrlf(p, hp->rx_e))
468 75470
                        p++;
469 11184
                q = p;
470 11184
                p = vct_skipcrlf(p, hp->rx_e);
471 11184
                *q = '\0';
472
        }
473 11186
        assert(n == 3);
474
475 91306
        while (*p != '\0') {
476 91305
                assert(n < MAX_HDR);
477 91305
                if (vct_iscrlf(p, hp->rx_e))
478 11185
                        break;
479 80120
                hh[n++] = p++;
480 1748667
                while (*p != '\0' && !vct_iscrlf(p, hp->rx_e))
481 1668547
                        p++;
482 80120
                if (*p == '\0') {
483 0
                        break;
484
                }
485 80120
                q = p;
486 80120
                p = vct_skipcrlf(p, hp->rx_e);
487 80120
                *q = '\0';
488
        }
489 11186
        p = vct_skipcrlf(p, hp->rx_e);
490 11186
        assert(*p == '\0');
491
492 124874
        for (n = 0; n < 3 || hh[n] != NULL; n++) {
493 113688
                bprintf(buf, "http[%2d] ", n);
494 113688
                vtc_dump(hp->vl, 4, buf, hh[n], -1);
495 113688
        }
496 11346
}
497
498
499
/**********************************************************************
500
 * Receive another character
501
 */
502
503
static int
504 2579412
http_rxchar(struct http *hp, int n, int eof)
505
{
506
        int i;
507
        struct pollfd pfd[1];
508
509 5168258
        while (n > 0) {
510 2589056
                pfd[0].fd = hp->sess->fd;
511 2589056
                pfd[0].events = POLLIN;
512 2589056
                pfd[0].revents = 0;
513 2589056
                i = poll(pfd, 1, (int)(hp->timeout * 1000));
514 2589056
                if (i < 0 && errno == EINTR)
515 0
                        continue;
516 2589056
                if (i == 0) {
517 0
                        vtc_log(hp->vl, hp->fatal,
518
                            "HTTP rx timeout (fd:%d %.3fs)",
519 0
                            hp->sess->fd, hp->timeout);
520 0
                        continue;
521
                }
522 2589056
                if (i < 0) {
523 0
                        vtc_log(hp->vl, hp->fatal,
524
                            "HTTP rx failed (fd:%d poll: %s)",
525 0
                            hp->sess->fd, strerror(errno));
526 0
                        continue;
527
                }
528 2589056
                assert(i > 0);
529 2589056
                assert(hp->rx_p + n < hp->rx_e);
530 2589056
                i = read(hp->sess->fd, hp->rx_p, n);
531 2589056
                if (!(pfd[0].revents & POLLIN))
532 0
                        vtc_log(hp->vl, 4,
533
                            "HTTP rx poll (fd:%d revents: %x n=%d, i=%d)",
534 0
                            hp->sess->fd, pfd[0].revents, n, i);
535 2589056
                if (i == 0 && eof)
536 170
                        return (i);
537 2588886
                if (i == 0) {
538 80
                        vtc_log(hp->vl, hp->fatal,
539
                            "HTTP rx EOF (fd:%d read: %s) %d",
540 40
                            hp->sess->fd, strerror(errno), n);
541 40
                        return (-1);
542
                }
543 2588846
                if (i < 0) {
544 0
                        vtc_log(hp->vl, hp->fatal,
545
                            "HTTP rx failed (fd:%d read: %s)",
546 0
                            hp->sess->fd, strerror(errno));
547 0
                        return (-1);
548
                }
549 2588846
                hp->rx_p += i;
550 2588846
                *hp->rx_p = '\0';
551 2588846
                n -= i;
552
        }
553 2579202
        return (1);
554 2579412
}
555
556
static int
557 2746
http_rxchunk(struct http *hp)
558
{
559
        char *q, *old;
560
        int i;
561
562 2746
        old = hp->rx_p;
563 2746
        do {
564 13823
                if (http_rxchar(hp, 1, 0) < 0)
565 20
                        return (-1);
566 13803
        } while (hp->rx_p[-1] != '\n');
567 2726
        vtc_dump(hp->vl, 4, "len", old, -1);
568 2726
        i = strtoul(old, &q, 16);
569 2726
        bprintf(hp->chunklen, "%d", i);
570 2726
        if ((q == old) || (q == hp->rx_p) || (*q != '\0' && !vct_islws(*q))) {
571 0
                vtc_log(hp->vl, hp->fatal, "Chunklen fail (%02x @ %td)",
572 0
                    (*q & 0xff), q - old);
573 0
                return (-1);
574
        }
575 2726
        assert(*q == '\0' || vct_islws(*q));
576 2726
        hp->rx_p = old;
577 2726
        if (i > 0) {
578 2174
                if (http_rxchar(hp, i, 0) < 0)
579 4
                        return (-1);
580 2170
                vtc_dump(hp->vl, 4, "chunk", old, i);
581 2170
        }
582 2722
        old = hp->rx_p;
583 2722
        if (http_rxchar(hp, 2, 0) < 0)
584 0
                return (-1);
585 2722
        if (!vct_iscrlf(old, hp->rx_e)) {
586 0
                vtc_log(hp->vl, hp->fatal, "Chunklen without CRLF");
587 0
                return (-1);
588
        }
589 2722
        hp->rx_p = old;
590 2722
        *hp->rx_p = '\0';
591 2722
        return (i);
592 2746
}
593
594
/**********************************************************************
595
 * Swallow a HTTP message body
596
 *
597
 * max: 0 is all
598
 */
599
600
static void
601 10995
http_swallow_body(struct http *hp, char * const *hh, int body, int max)
602
{
603
        const char *p, *q;
604
        int i, l, ll;
605
606 10995
        l = hp->rx_p - hp->body;
607
608 10995
        p = http_find_header(hh, "transfer-encoding");
609 10995
        q = http_find_header(hh, "content-length");
610 10995
        if (p != NULL && !strcasecmp(p, "chunked")) {
611 581
                if (q != NULL) {
612 0
                        vtc_log(hp->vl, hp->fatal, "Both C-E: Chunked and C-L");
613 0
                        return;
614
                }
615 581
                ll = 0;
616 2719
                while (http_rxchunk(hp) > 0) {
617 2150
                        ll = (hp->rx_p - hp->body) - l;
618 2150
                        if (max && ll >= max)
619 12
                                break;
620
                }
621 581
                p = "chunked";
622 10995
        } else if (q != NULL) {
623 5548
                ll = strtoul(q, NULL, 10);
624 5548
                if (max && ll > l + max)
625 8
                        ll = max;
626
                else
627 5540
                        ll -= l;
628 5548
                i = http_rxchar(hp, ll, 0);
629 5548
                if (i < 0)
630 16
                        return;
631 5532
                p = "c-l";
632 10398
        } else if (body) {
633 14
                ll = 0;
634 14
                do  {
635 393450
                        i = http_rxchar(hp, 1, 1);
636 393450
                        if (i < 0)
637 0
                                return;
638 393450
                        ll += i;
639 393450
                        if (max && ll >= max)
640 4
                                break;
641 393446
                } while (i > 0);
642 14
                p = "eof";
643 14
        } else {
644 4852
                p = "none";
645 4852
                ll = l = 0;
646
        }
647 10979
        vtc_dump(hp->vl, 4, p, hp->body + l, ll);
648 10979
        l += ll;
649 10979
        hp->bodyl = l;
650 10979
        bprintf(hp->bodylen, "%d", l);
651 10995
}
652
653
/**********************************************************************
654
 * Receive a HTTP protocol header
655
 */
656
657
static void
658 11346
http_rxhdr(struct http *hp)
659
{
660 11346
        int i, s = 0;
661
        char *p;
662
        ssize_t l;
663
664 11346
        CHECK_OBJ_NOTNULL(hp, HTTP_MAGIC);
665 11346
        hp->rx_p = hp->rx_b;
666 11346
        *hp->rx_p = '\0';
667 11346
        hp->body = NULL;
668 11346
        bprintf(hp->bodylen, "%s", "<undef>");
669 2160944
        while (1) {
670 2160944
                p = hp->rx_p;
671 2160944
                i = http_rxchar(hp, 1, 1);
672 2160944
                if (i < 1)
673 160
                        break;
674 2160784
                if (s == 0 && *p == '\r')
675 91309
                        s = 1;
676 2069475
                else if ((s == 0 || s == 1) && *p == '\n')
677 91315
                        s = 2;
678 1978160
                else if (s == 2 && *p == '\r')
679 11184
                        s = 3;
680 1966976
                else if ((s == 2 || s == 3) && *p == '\n')
681 11186
                        break;
682
                else
683 1955790
                        s = 0;
684
        }
685 11346
        l = hp->rx_p - hp->rx_b;
686 11346
        vtc_dump(hp->vl, 4, "rxhdr", hp->rx_b, l);
687 11346
        vtc_log(hp->vl, 4, "rxhdrlen = %zd", l);
688 11346
        if (i < 1)
689 160
                vtc_log(hp->vl, hp->fatal, "HTTP header is incomplete");
690 11346
        *hp->rx_p = '\0';
691 11346
        hp->body = hp->rx_p;
692 11346
}
693
694
/* SECTION: client-server.spec.rxresp
695
 *
696
 * rxresp [-no_obj] (client only)
697
 *         Receive and parse a response's headers and body. If -no_obj is
698
 *         present, only get the headers.
699
 */
700
701
static void
702 6540
cmd_http_rxresp(CMD_ARGS)
703
{
704
        struct http *hp;
705 6540
        int has_obj = 1;
706
707 6540
        (void)vl;
708 6540
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
709 6540
        ONLY_CLIENT(hp, av);
710 6540
        AZ(strcmp(av[0], "rxresp"));
711 6540
        av++;
712
713 6592
        for (; *av != NULL; av++)
714 104
                if (!strcmp(*av, "-no_obj"))
715 52
                        has_obj = 0;
716
                else
717 0
                        vtc_fatal(hp->vl,
718 0
                            "Unknown http rxresp spec: %s\n", *av);
719 6540
        http_rxhdr(hp);
720 6540
        http_splitheader(hp, 0);
721 6540
        if (http_count_header(hp->resp, "Content-Length") > 1)
722 0
                vtc_fatal(hp->vl,
723
                    "Multiple Content-Length headers.\n");
724 6540
        if (!has_obj)
725 52
                return;
726 6488
        if (!hp->resp[0] || !hp->resp[1])
727 126
                return;
728 6364
        if (hp->head_method)
729 140
                return;
730 6224
        if (!strcmp(hp->resp[1], "200"))
731 4702
                http_swallow_body(hp, hp->resp, 1, 0);
732
        else
733 1522
                http_swallow_body(hp, hp->resp, 0, 0);
734 6224
        vtc_log(hp->vl, 4, "bodylen = %s", hp->bodylen);
735 6542
}
736
737
/* SECTION: client-server.spec.rxresphdrs
738
 *
739
 * rxresphdrs (client only)
740
 *         Receive and parse a response's headers.
741
 */
742
743
static void
744 100
cmd_http_rxresphdrs(CMD_ARGS)
745
{
746
        struct http *hp;
747
748 100
        (void)vl;
749 100
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
750 100
        ONLY_CLIENT(hp, av);
751 100
        AZ(strcmp(av[0], "rxresphdrs"));
752 100
        av++;
753
754 100
        for (; *av != NULL; av++)
755 0
                vtc_fatal(hp->vl, "Unknown http rxresp spec: %s\n", *av);
756 100
        http_rxhdr(hp);
757 100
        http_splitheader(hp, 0);
758 100
        if (http_count_header(hp->resp, "Content-Length") > 1)
759 0
                vtc_fatal(hp->vl,
760
                    "Multiple Content-Length headers.\n");
761 100
}
762
763
/* SECTION: client-server.spec.gunzip
764
 *
765
 * gunzip
766
 *         Gunzip the body in place.
767
 */
768
static void
769 74
cmd_http_gunzip(CMD_ARGS)
770
{
771
        struct http *hp;
772
773 74
        (void)av;
774 74
        (void)vl;
775
776 74
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
777 74
        vtc_gunzip(hp, hp->body, &hp->bodyl);
778 74
}
779
780
/**********************************************************************
781
 * Handle common arguments of a transmitted request or response
782
 */
783
784
static char* const *
785 10943
http_tx_parse_args(char * const *av, struct vtclog *vl, struct http *hp,
786
    char *body, unsigned nohost, unsigned nodate, unsigned noserver, unsigned nouseragent)
787
{
788 10943
        long bodylen = 0;
789
        char *b, *c;
790
        char *nullbody;
791
        ssize_t len;
792 10943
        int nolen = 0;
793
        int l;
794
795 10943
        nullbody = body;
796
797 15564
        for (; *av != NULL; av++) {
798 6909
                if (!strcmp(*av, "-nolen")) {
799 274
                        nolen = 1;
800 6909
                } else if (!strcmp(*av, "-nohost")) {
801 4
                        nohost = 1;
802 6635
                } else if (!strcmp(*av, "-nodate")) {
803 16
                        nodate = 1;
804 6631
                } else if (!strcmp(*av, "-hdr")) {
805 4319
                        if (!strncasecmp(av[1], "Content-Length:", 15) ||
806 4187
                            !strncasecmp(av[1], "Transfer-Encoding:", 18))
807 316
                                nolen = 1;
808 4319
                        if (!strncasecmp(av[1], "Host:", 5))
809 72
                                nohost = 1;
810 4319
                        if (!strncasecmp(av[1], "Date:", 5))
811 16
                                nodate = 1;
812 4319
                        if (!strncasecmp(av[1], "Server:", 7))
813 30
                                noserver = 1;
814 4319
                        if (!strncasecmp(av[1], "User-Agent:", 11))
815 4
                                nouseragent = 1;
816 4319
                        VSB_printf(hp->vsb, "%s%s", av[1], nl);
817 4319
                        av++;
818 6615
                } else if (!strcmp(*av, "-hdrlen")) {
819 8
                        VSB_printf(hp->vsb, "%s: ", av[1]);
820 8
                        l = atoi(av[2]);
821 1508
                        while (l-- > 0)
822 1500
                                VSB_putc(hp->vsb, '0' + (l % 10));
823 8
                        VSB_printf(hp->vsb, "%s", nl);
824 8
                        av+=2;
825 8
                } else
826 2288
                        break;
827 4621
        }
828 13265
        for (; *av != NULL; av++) {
829 2322
                if (!strcmp(*av, "-body")) {
830 1500
                        assert(body == nullbody);
831 1500
                        REPLACE(body, av[1]);
832
833 1500
                        AN(body);
834 1500
                        av++;
835 1500
                        bodylen = strlen(body);
836 46298
                        for (b = body; *b != '\0'; b++) {
837 44798
                                if (*b == '\\' && b[1] == '0') {
838 8
                                        *b = '\0';
839 82
                                        for (c = b+1; *c != '\0'; c++) {
840 74
                                                *c = c[1];
841 74
                                        }
842 8
                                        b++;
843 8
                                        bodylen--;
844 8
                                }
845 44798
                        }
846 2322
                } else if (!strcmp(*av, "-bodyfrom")) {
847 4
                        assert(body == nullbody);
848 4
                        free(body);
849 4
                        body = VFIL_readfile(NULL, av[1], &len);
850 4
                        AN(body);
851 4
                        assert(len < INT_MAX);
852 4
                        bodylen = len;
853 4
                        av++;
854 822
                } else if (!strcmp(*av, "-bodylen")) {
855 456
                        assert(body == nullbody);
856 456
                        free(body);
857 456
                        body = synth_body(av[1], 0);
858 456
                        bodylen = strlen(body);
859 456
                        av++;
860 818
                } else if (!strncmp(*av, "-gzip", 5)) {
861 362
                        l = vtc_gzip_cmd(hp, av, &body, &bodylen);
862 362
                        if (l == 0)
863 0
                                break;
864 362
                        av++;
865 362
                        if (l > 1)
866 328
                                VSB_printf(hp->vsb, "Content-Encoding: gzip%s", nl);
867 362
                } else
868 0
                        break;
869 2322
        }
870 10943
        if (!nohost) {
871 6423
                VSB_cat(hp->vsb, "Host: ");
872 6423
                macro_cat(vl, hp->vsb, "localhost", NULL);
873 6423
                VSB_cat(hp->vsb, nl);
874 6423
        }
875 10943
        if (!nodate) {
876 4351
                VSB_cat(hp->vsb, "Date: ");
877 4351
                macro_cat(vl, hp->vsb, "date", NULL);
878 4351
                VSB_cat(hp->vsb, nl);
879 4351
        }
880 10943
        if (!noserver)
881 4325
                VSB_printf(hp->vsb, "Server: %s%s", hp->sess->name, nl);
882 10943
        if (!nouseragent)
883 6548
                VSB_printf(hp->vsb, "User-Agent: %s%s", hp->sess->name, nl);
884 10943
        if (body != NULL && !nolen)
885 4239
                VSB_printf(hp->vsb, "Content-Length: %ld%s", bodylen, nl);
886 10943
        VSB_cat(hp->vsb, nl);
887 10943
        if (body != NULL) {
888 4507
                VSB_bcat(hp->vsb, body, bodylen);
889 4507
                free(body);
890 4507
        }
891 10943
        return (av);
892
}
893
894
/* SECTION: client-server.spec.txreq
895
 *
896
 * txreq|txresp [...]
897
 *         Send a minimal request or response, but overload it if necessary.
898
 *
899
 *         txreq is client-specific and txresp is server-specific.
900
 *
901
 *         The only thing different between a request and a response, apart
902
 *         from who can send them is that the first line (request line vs
903
 *         status line), so all the options are pretty much the same.
904
 *
905
 *         \-method STRING (txreq only)
906
 *                 What method to use (default: "GET").
907
 *
908
 *         \-req STRING (txreq only)
909
 *                 Alias for -method.
910
 *
911
 *         \-url STRING (txreq only)
912
 *                 What location to use (default "/").
913
 *
914
 *         \-proto STRING
915
 *                 What protocol use in the status line.
916
 *                 (default: "HTTP/1.1").
917
 *
918
 *         \-status NUMBER (txresp only)
919
 *                 What status code to return (default 200).
920
 *
921
 *         \-reason STRING (txresp only)
922
 *                 What message to put in the status line (default: "OK").
923
 *
924
 *         \-noserver (txresp only)
925
 *                 Don't include a Server header with the id of the server.
926
 *
927
 *         \-nouseragent (txreq only)
928
 *                 Don't include a User-Agent header with the id of the client.
929
 *
930
 *         These three switches can appear in any order but must come before the
931
 *         following ones.
932
 *
933
 *         \-nohost
934
 *                 Don't include a Host header in the request. Also Implied
935
 *                 by the addition of a Host header with ``-hdr``.
936
 *
937
 *         \-nolen
938
 *                 Don't include a Content-Length header. Also implied by the
939
 *                 addition of a Content-Length or Transfer-Encoding header
940
 *                 with ``-hdr``.
941
 *
942
 *         \-nodate
943
 *                 Don't include a Date header in the response. Also implied
944
 *                 by the addition of a Date header with ``-hdr``.
945
 *
946
 *         \-hdr STRING
947
 *                 Add STRING as a header, it must follow this format:
948
 *                 "name: value". It can be called multiple times.
949
 *
950
 *         \-hdrlen STRING NUMBER
951
 *                 Add STRING as a header with NUMBER bytes of content.
952
 *
953
 *         You can then use the arguments related to the body:
954
 *
955
 *         \-body STRING
956
 *                 Input STRING as body.
957
 *
958
 *         \-bodyfrom FILE
959
 *                 Same as -body but content is read from FILE.
960
 *
961
 *         \-bodylen NUMBER
962
 *                 Generate and input a body that is NUMBER bytes-long.
963
 *
964
 *         \-gziplevel NUMBER
965
 *                 Set the gzip level (call it before any of the other gzip
966
 *                 switches).
967
 *
968
 *         \-gzipresidual NUMBER
969
 *                 Add extra gzip bits. You should never need it.
970
 *
971
 *         \-gzipbody STRING
972
 *                 Gzip STRING and send it as body.
973
 *
974
 *         \-gziplen NUMBER
975
 *                 Combine -bodylen and -gzipbody: generate a string of length
976
 *                 NUMBER, gzip it and send as body.
977
 */
978
979
/**********************************************************************
980
 * Transmit a response
981
 */
982
983
static void
984 4383
cmd_http_txresp(CMD_ARGS)
985
{
986
        struct http *hp;
987 4383
        const char *proto = "HTTP/1.1";
988 4383
        const char *status = "200";
989 4383
        const char *reason = "OK";
990 4383
        char* body = NULL;
991 4383
        unsigned noserver = 0;
992
993 4383
        (void)vl;
994 4383
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
995 4383
        ONLY_SERVER(hp, av);
996 4383
        AZ(strcmp(av[0], "txresp"));
997 4383
        av++;
998
999 4383
        VSB_clear(hp->vsb);
1000
1001 4819
        for (; *av != NULL; av++) {
1002 3326
                if (!strcmp(*av, "-proto")) {
1003 58
                        proto = av[1];
1004 58
                        av++;
1005 3326
                } else if (!strcmp(*av, "-status")) {
1006 318
                        status = av[1];
1007 318
                        av++;
1008 3268
                } else if (!strcmp(*av, "-reason")) {
1009 32
                        reason = av[1];
1010 32
                        av++;
1011 32
                        continue;
1012 2918
                } else if (!strcmp(*av, "-noserver")) {
1013 28
                        noserver = 1;
1014 28
                        continue;
1015
                } else
1016 2890
                        break;
1017 376
        }
1018
1019 4383
        VSB_printf(hp->vsb, "%s %s %s%s", proto, status, reason, nl);
1020
1021
        /* send a "Content-Length: 0" header unless something else happens */
1022 4383
        REPLACE(body, "");
1023
1024 4383
        av = http_tx_parse_args(av, vl, hp, body, 1, 0, noserver, 1);
1025 4383
        if (*av != NULL)
1026 0
                vtc_fatal(hp->vl, "Unknown http txresp spec: %s\n", *av);
1027
1028 4383
        http_write(hp, 4, "txresp");
1029 4383
}
1030
1031
static void
1032 4
cmd_http_upgrade(CMD_ARGS)
1033
{
1034
        char *h;
1035
        struct http *hp;
1036
1037 4
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1038 4
        ONLY_SERVER(hp, av);
1039 4
        AN(hp->sfd);
1040
1041 4
        h = http_find_header(hp->req, "Upgrade");
1042 4
        if (!h || strcmp(h, "h2c"))
1043 0
                vtc_fatal(vl, "Req misses \"Upgrade: h2c\" header");
1044
1045 4
        h = http_find_header(hp->req, "Connection");
1046 4
        if (!h || strcmp(h, "Upgrade, HTTP2-Settings"))
1047 0
                vtc_fatal(vl, "Req misses \"Connection: "
1048
                        "Upgrade, HTTP2-Settings\" header");
1049
1050 4
        h = http_find_header(hp->req, "HTTP2-Settings");
1051 4
        if (!h)
1052 0
                vtc_fatal(vl, "Req misses \"HTTP2-Settings\" header");
1053
1054 4
        parse_string(vl, hp,
1055
            "txresp -status 101"
1056
            " -hdr \"Connection: Upgrade\""
1057
            " -hdr \"Upgrade: h2c\"\n"
1058
        );
1059
1060 4
        parse_string(vl, hp,
1061
            "rxpri\n"
1062
            "stream 0 {\n"
1063
            "    txsettings\n"
1064
            "    rxsettings\n"
1065
            "    txsettings -ack\n"
1066
            "    rxsettings\n"
1067
            "    expect settings.ack == true\n"
1068
            "} -start\n"
1069
        );
1070
1071 4
        b64_settings(hp, h);
1072
1073 4
}
1074
1075
/**********************************************************************
1076
 * Receive a request
1077
 */
1078
1079
/* SECTION: client-server.spec.rxreq
1080
 *
1081
 * rxreq (server only)
1082
 *         Receive and parse a request's headers and body.
1083
 */
1084
static void
1085 4729
cmd_http_rxreq(CMD_ARGS)
1086
{
1087
        struct http *hp;
1088
1089 4729
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1090 4729
        ONLY_SERVER(hp, av);
1091 4729
        AZ(strcmp(av[0], "rxreq"));
1092 4729
        av++;
1093
1094 4729
        for (; *av != NULL; av++)
1095 0
                vtc_fatal(vl, "Unknown http rxreq spec: %s\n", *av);
1096 4729
        http_rxhdr(hp);
1097 4729
        http_splitheader(hp, 1);
1098 4729
        if (http_count_header(hp->req, "Content-Length") > 1)
1099 0
                vtc_fatal(vl, "Multiple Content-Length headers.\n");
1100 4729
        http_swallow_body(hp, hp->req, 0, 0);
1101 4729
        vtc_log(vl, 4, "bodylen = %s", hp->bodylen);
1102 4729
}
1103
1104
/* SECTION: client-server.spec.rxreqhdrs
1105
 *
1106
 * rxreqhdrs (server only)
1107
 *         Receive and parse a request's headers (but not the body).
1108
 */
1109
1110
static void
1111 10
cmd_http_rxreqhdrs(CMD_ARGS)
1112
{
1113
        struct http *hp;
1114
1115 10
        (void)vl;
1116 10
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1117 10
        AZ(strcmp(av[0], "rxreqhdrs"));
1118 10
        av++;
1119
1120 10
        for (; *av != NULL; av++)
1121 0
                vtc_fatal(hp->vl, "Unknown http rxreq spec: %s\n", *av);
1122 10
        http_rxhdr(hp);
1123 10
        http_splitheader(hp, 1);
1124 10
        if (http_count_header(hp->req, "Content-Length") > 1)
1125 0
                vtc_fatal(hp->vl, "Multiple Content-Length headers.\n");
1126 10
}
1127
1128
/* SECTION: client-server.spec.rxreqbody
1129
 *
1130
 * rxreqbody (server only)
1131
 *         Receive a request's body.
1132
 */
1133
1134
static void
1135 8
cmd_http_rxreqbody(CMD_ARGS)
1136
{
1137
        struct http *hp;
1138
1139 8
        (void)vl;
1140 8
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1141 8
        ONLY_SERVER(hp, av);
1142 8
        AZ(strcmp(av[0], "rxreqbody"));
1143 8
        av++;
1144
1145 8
        for (; *av != NULL; av++)
1146 0
                vtc_fatal(hp->vl, "Unknown http rxreq spec: %s\n", *av);
1147 8
        http_swallow_body(hp, hp->req, 0, 0);
1148 8
        vtc_log(hp->vl, 4, "bodylen = %s", hp->bodylen);
1149 8
}
1150
1151
/* SECTION: client-server.spec.rxrespbody
1152
 *
1153
 * rxrespbody (client only)
1154
 *         Receive (part of) a response's body.
1155
 *
1156
 * -max : max length of this receive, 0 for all
1157
 */
1158
1159
static void
1160 70
cmd_http_rxrespbody(CMD_ARGS)
1161
{
1162
        struct http *hp;
1163 70
        int max = 0;
1164
1165 70
        (void)vl;
1166 70
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1167 70
        ONLY_CLIENT(hp, av);
1168 70
        AZ(strcmp(av[0], "rxrespbody"));
1169 70
        av++;
1170
1171 94
        for (; *av != NULL; av++)
1172 48
                if (!strcmp(*av, "-max")) {
1173 24
                        max = atoi(av[1]);
1174 24
                        av++;
1175 24
                } else
1176 0
                        vtc_fatal(hp->vl,
1177 0
                            "Unknown http rxrespbody spec: %s\n", *av);
1178
1179 70
        http_swallow_body(hp, hp->resp, 1, max);
1180 70
        vtc_log(hp->vl, 4, "bodylen = %s", hp->bodylen);
1181 70
}
1182
1183
/* SECTION: client-server.spec.rxchunk
1184
 *
1185
 * rxchunk
1186
 *         Receive an HTTP chunk.
1187
 */
1188
1189
static void
1190 26
cmd_http_rxchunk(CMD_ARGS)
1191
{
1192
        struct http *hp;
1193
        int ll, i;
1194
1195 26
        (void)vl;
1196 26
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1197 26
        ONLY_CLIENT(hp, av);
1198
1199 26
        i = http_rxchunk(hp);
1200 26
        if (i == 0) {
1201 0
                ll = hp->rx_p - hp->body;
1202 0
                hp->bodyl = ll;
1203 0
                bprintf(hp->bodylen, "%d", ll);
1204 0
                vtc_log(hp->vl, 4, "bodylen = %s", hp->bodylen);
1205 0
        }
1206 26
}
1207
1208
/**********************************************************************
1209
 * Transmit a request
1210
 */
1211
1212
static void
1213 6559
cmd_http_txreq(CMD_ARGS)
1214
{
1215
        struct http *hp;
1216 6559
        const char *req = "GET";
1217 6559
        const char *url = "/";
1218 6559
        const char *proto = "HTTP/1.1";
1219 6559
        const char *up = NULL;
1220
        unsigned nohost;
1221 6559
        unsigned nouseragent = 0;
1222
1223 6559
        (void)vl;
1224 6559
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1225 6559
        ONLY_CLIENT(hp, av);
1226 6559
        AZ(strcmp(av[0], "txreq"));
1227 6559
        av++;
1228
1229 6559
        VSB_clear(hp->vsb);
1230
1231 6559
        hp->head_method = 0;
1232 10558
        for (; *av != NULL; av++) {
1233 5881
                if (!strcmp(*av, "-url")) {
1234 3389
                        url = av[1];
1235 3389
                        av++;
1236 5881
                } else if (!strcmp(*av, "-proto")) {
1237 76
                        proto = av[1];
1238 76
                        av++;
1239 2492
                } else if (!strcmp(*av, "-method") ||
1240 2168
                    !strcmp(*av, "-req")) {
1241 524
                        req = av[1];
1242 524
                        hp->head_method = !strcmp(av[1], "HEAD") ;
1243 524
                        av++;
1244 2416
                } else if (!hp->sfd && !strcmp(*av, "-up")) {
1245 2
                        up = av[1];
1246 2
                        av++;
1247 1892
                } else if (!strcmp(*av, "-nouseragent")) {
1248 8
                        nouseragent = 1;
1249 8
                } else
1250 1882
                        break;
1251 3999
        }
1252 6559
        VSB_printf(hp->vsb, "%s %s %s%s", req, url, proto, nl);
1253
1254 6559
        if (up)
1255 4
                VSB_printf(hp->vsb, "Connection: Upgrade, HTTP2-Settings%s"
1256
                                "Upgrade: h2c%s"
1257 2
                                "HTTP2-Settings: %s%s", nl, nl, up, nl);
1258
1259 6559
        nohost = strcmp(proto, "HTTP/1.1") != 0;
1260 6559
        av = http_tx_parse_args(av, vl, hp, NULL, nohost, 1, 1, nouseragent);
1261 6559
        if (*av != NULL)
1262 0
                vtc_fatal(hp->vl, "Unknown http txreq spec: %s\n", *av);
1263 6559
        http_write(hp, 4, "txreq");
1264
1265 6559
        if (up) {
1266 2
                parse_string(vl, hp,
1267
                    "rxresp\n"
1268
                    "expect resp.status == 101\n"
1269
                    "expect resp.http.connection == Upgrade\n"
1270
                    "expect resp.http.upgrade == h2c\n"
1271
                    "txpri\n"
1272
                );
1273 2
                b64_settings(hp, up);
1274 2
                parse_string(vl, hp,
1275
                    "stream 0 {\n"
1276
                    "    txsettings\n"
1277
                    "    rxsettings\n"
1278
                    "    txsettings -ack\n"
1279
                    "    rxsettings\n"
1280
                    "    expect settings.ack == true"
1281
                    "} -start\n"
1282
                );
1283 2
        }
1284 6559
}
1285
1286
/* SECTION: client-server.spec.recv
1287
 *
1288
 * recv NUMBER
1289
 *         Read NUMBER bytes from the connection.
1290
 */
1291
1292
static void
1293 18
cmd_http_recv(CMD_ARGS)
1294
{
1295
        struct http *hp;
1296
        int i, n;
1297
        char u[32];
1298
1299 18
        (void)vl;
1300 18
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1301 18
        AN(av[1]);
1302 18
        AZ(av[2]);
1303 18
        n = strtoul(av[1], NULL, 0);
1304 58
        while (n > 0) {
1305 40
                i = read(hp->sess->fd, u, n > 32 ? 32 : n);
1306 40
                if (i > 0)
1307 40
                        vtc_dump(hp->vl, 4, "recv", u, i);
1308
                else
1309 0
                        vtc_log(hp->vl, hp->fatal, "recv() got %d (%s)", i,
1310 0
                            strerror(errno));
1311 40
                n -= i;
1312
        }
1313 18
}
1314
1315
/* SECTION: client-server.spec.send
1316
 *
1317
 * send STRING
1318
 *         Push STRING on the connection.
1319
 */
1320
1321
static void
1322 1813
cmd_http_send(CMD_ARGS)
1323
{
1324
        struct http *hp;
1325
        int i;
1326
1327 1813
        (void)vl;
1328 1813
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1329 1813
        AN(av[1]);
1330 1813
        AZ(av[2]);
1331 1813
        vtc_dump(hp->vl, 4, "send", av[1], -1);
1332 1813
        i = write(hp->sess->fd, av[1], strlen(av[1]));
1333 1813
        if (i != strlen(av[1]))
1334 0
                vtc_log(hp->vl, hp->fatal, "Write error in http_send(): %s",
1335 0
                    strerror(errno));
1336 1813
}
1337
1338
/* SECTION: client-server.spec.send_n
1339
 *
1340
 * send_n NUMBER STRING
1341
 *         Write STRING on the socket NUMBER times.
1342
 */
1343
1344
static void
1345 8
cmd_http_send_n(CMD_ARGS)
1346
{
1347
        struct http *hp;
1348
        int i, n, l;
1349
1350 8
        (void)vl;
1351 8
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1352 8
        AN(av[1]);
1353 8
        AN(av[2]);
1354 8
        AZ(av[3]);
1355 8
        n = strtoul(av[1], NULL, 0);
1356 8
                vtc_dump(hp->vl, 4, "send_n", av[2], -1);
1357 8
        l = strlen(av[2]);
1358 4188
        while (n--) {
1359 4180
                i = write(hp->sess->fd, av[2], l);
1360 4180
                if (i != l)
1361 0
                        vtc_log(hp->vl, hp->fatal,
1362
                            "Write error in http_send(): %s",
1363 0
                            strerror(errno));
1364
        }
1365 8
}
1366
1367
/* SECTION: client-server.spec.send_urgent
1368
 *
1369
 * send_urgent STRING
1370
 *         Send string as TCP OOB urgent data. You will never need this.
1371
 */
1372
1373
static void
1374 20
cmd_http_send_urgent(CMD_ARGS)
1375
{
1376
        struct http *hp;
1377
        int i;
1378
1379 20
        (void)vl;
1380 20
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1381 20
        AN(av[1]);
1382 20
        AZ(av[2]);
1383 20
        vtc_dump(hp->vl, 4, "send_urgent", av[1], -1);
1384 20
        i = send(hp->sess->fd, av[1], strlen(av[1]), MSG_OOB);
1385 20
        if (i != strlen(av[1]))
1386 0
                vtc_log(hp->vl, hp->fatal,
1387 0
                    "Write error in http_send_urgent(): %s", strerror(errno));
1388 20
}
1389
1390
/* SECTION: client-server.spec.sendhex
1391
 *
1392
 * sendhex STRING
1393
 *         Send bytes as described by STRING. STRING should consist of hex pairs
1394
 *         possibly separated by whitespace or newlines. For example:
1395
 *         "0F EE a5    3df2".
1396
 */
1397
1398
static void
1399 358
cmd_http_sendhex(CMD_ARGS)
1400
{
1401
        struct vsb *vsb;
1402
        struct http *hp;
1403
1404 358
        (void)vl;
1405 358
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1406 358
        AN(av[1]);
1407 358
        AZ(av[2]);
1408 358
        vsb = vtc_hex_to_bin(hp->vl, av[1]);
1409 358
        assert(VSB_len(vsb) >= 0);
1410 358
        vtc_hexdump(hp->vl, 4, "sendhex", VSB_data(vsb), VSB_len(vsb));
1411 358
        if (VSB_tofile(vsb, hp->sess->fd))
1412 0
                vtc_log(hp->vl, hp->fatal, "Write failed: %s",
1413 0
                    strerror(errno));
1414 358
        VSB_destroy(&vsb);
1415 358
}
1416
1417
/* SECTION: client-server.spec.chunked
1418
 *
1419
 * chunked STRING
1420
 *         Send STRING as chunked encoding.
1421
 */
1422
1423
static void
1424 124
cmd_http_chunked(CMD_ARGS)
1425
{
1426
        struct http *hp;
1427
1428 124
        (void)vl;
1429 124
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1430 124
        AN(av[1]);
1431 124
        AZ(av[2]);
1432 124
        VSB_clear(hp->vsb);
1433 248
        VSB_printf(hp->vsb, "%jx%s%s%s",
1434 124
            (uintmax_t)strlen(av[1]), nl, av[1], nl);
1435 124
        http_write(hp, 4, "chunked");
1436 124
}
1437
1438
/* SECTION: client-server.spec.chunkedlen
1439
 *
1440
 * chunkedlen NUMBER
1441
 *         Do as ``chunked`` except that the string will be generated
1442
 *         for you, with a length of NUMBER characters.
1443
 */
1444
1445
static void
1446 378
cmd_http_chunkedlen(CMD_ARGS)
1447
{
1448
        unsigned len;
1449
        unsigned u, v;
1450
        char buf[16384];
1451
        struct http *hp;
1452
1453 378
        (void)vl;
1454 378
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1455 378
        AN(av[1]);
1456 378
        AZ(av[2]);
1457 378
        VSB_clear(hp->vsb);
1458
1459 378
        len = atoi(av[1]);
1460
1461 378
        if (len == 0) {
1462 142
                VSB_printf(hp->vsb, "0%s%s", nl, nl);
1463 142
        } else {
1464 3475837
                for (u = 0; u < sizeof buf; u++)
1465 3475601
                        buf[u] = (u & 7) + '0';
1466
1467 236
                VSB_printf(hp->vsb, "%x%s", len, nl);
1468 820
                for (u = 0; u < len; u += v) {
1469 584
                        v = vmin_t(unsigned, len - u, sizeof buf);
1470 584
                        VSB_bcat(hp->vsb, buf, v);
1471 584
                }
1472 236
                VSB_printf(hp->vsb, "%s", nl);
1473
        }
1474 378
        http_write(hp, 4, "chunked");
1475 378
}
1476
1477
1478
/* SECTION: client-server.spec.timeout
1479
 *
1480
 * timeout NUMBER
1481
 *         Set the TCP timeout for this entity.
1482
 */
1483
1484
static void
1485 68
cmd_http_timeout(CMD_ARGS)
1486
{
1487
        struct http *hp;
1488
        double d;
1489
1490 68
        (void)vl;
1491 68
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1492 68
        AN(av[1]);
1493 68
        AZ(av[2]);
1494 68
        d = VNUM(av[1]);
1495 68
        if (isnan(d))
1496 0
                vtc_fatal(vl, "timeout is not a number (%s)", av[1]);
1497 68
        hp->timeout = d;
1498 68
}
1499
1500
/* SECTION: client-server.spec.expect_close
1501
 *
1502
 * expect_close
1503
 *      Reads from the connection, expecting nothing to read but an EOF.
1504
 */
1505
static void
1506 352
cmd_http_expect_close(CMD_ARGS)
1507
{
1508
        struct http *hp;
1509
        struct pollfd fds[1];
1510
        char c;
1511
        int i;
1512
1513 352
        (void)vl;
1514 352
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1515 352
        AZ(av[1]);
1516
1517 352
        vtc_log(vl, 4, "Expecting close (fd = %d)", hp->sess->fd);
1518 352
        if (hp->h2)
1519 28
                stop_h2(hp);
1520 352
        while (1) {
1521 352
                fds[0].fd = hp->sess->fd;
1522 352
                fds[0].events = POLLIN;
1523 352
                fds[0].revents = 0;
1524 352
                i = poll(fds, 1, (int)(hp->timeout * 1000));
1525 352
                if (i < 0 && errno == EINTR)
1526 0
                        continue;
1527 352
                if (i == 0)
1528 0
                        vtc_log(vl, hp->fatal, "Expected close: timeout");
1529 352
                if (i != 1 || !(fds[0].revents & (POLLIN|POLLERR|POLLHUP)))
1530 20
                        vtc_log(vl, hp->fatal,
1531
                            "Expected close: poll = %d, revents = 0x%x",
1532 10
                            i, fds[0].revents);
1533 342
                i = read(hp->sess->fd, &c, 1);
1534 342
                if (i <= 0 && VTCP_Check(i))
1535 342
                        break;
1536 10
                if (i == 1 && vct_islws(c))
1537 0
                        continue;
1538 0
                vtc_log(vl, hp->fatal,
1539 0
                    "Expecting close: read = %d, c = 0x%02x", i, c);
1540
        }
1541 342
        vtc_log(vl, 4, "fd=%d EOF, as expected", hp->sess->fd);
1542 342
}
1543
1544
/* SECTION: client-server.spec.close
1545
 *
1546
 * close (server only)
1547
 *      Close the connection. Note that if operating in HTTP/2 mode no
1548
 *      extra (GOAWAY) frame is sent, it's simply a TCP close.
1549
 */
1550
static void
1551 38
cmd_http_close(CMD_ARGS)
1552
{
1553
        struct http *hp;
1554
1555 38
        (void)vl;
1556 38
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1557 38
        ONLY_SERVER(hp, av);
1558 38
        AZ(av[1]);
1559 38
        assert(hp->sfd != NULL);
1560 38
        assert(*hp->sfd >= 0);
1561 38
        if (hp->h2)
1562 0
                stop_h2(hp);
1563 38
        VTCP_close(&hp->sess->fd);
1564 38
        vtc_log(vl, 4, "Closed");
1565 38
}
1566
1567
/* SECTION: client-server.spec.accept
1568
 *
1569
 * accept (server only)
1570
 *      Close the current connection, if any, and accept a new one. Note
1571
 *      that this new connection is HTTP/1.x.
1572
 */
1573
static void
1574 322
cmd_http_accept(CMD_ARGS)
1575
{
1576
        struct http *hp;
1577
1578 322
        (void)vl;
1579 322
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1580 322
        ONLY_SERVER(hp, av);
1581 322
        AZ(av[1]);
1582 322
        assert(hp->sfd != NULL);
1583 322
        assert(*hp->sfd >= 0);
1584 322
        if (hp->h2)
1585 0
                stop_h2(hp);
1586 322
        if (hp->sess->fd >= 0)
1587 286
                VTCP_close(&hp->sess->fd);
1588 322
        vtc_log(vl, 4, "Accepting");
1589 322
        hp->sess->fd = accept(*hp->sfd, NULL, NULL);
1590 322
        if (hp->sess->fd < 0)
1591 0
                vtc_log(vl, hp->fatal, "Accepted failed: %s", strerror(errno));
1592 322
        vtc_log(vl, 3, "Accepted socket fd is %d", hp->sess->fd);
1593 322
}
1594
1595
/* SECTION: client-server.spec.shutdown
1596
 *
1597
 * shutdown
1598
 *      Initiate shutdown.
1599
 *
1600
 *      \-read
1601
 *              Shutdown the read direction.
1602
 *      \-write
1603
 *              Shutdown the write direction.
1604
 *
1605
 *      The default is both direction.
1606
 */
1607
static void
1608
cmd_http_shutdown(CMD_ARGS)
1609
{
1610 20
        struct http *hp;
1611
        int how = SHUT_RDWR;
1612
        const char *str[] = {
1613 20
                [SHUT_RD]       = "RD",
1614 20
                [SHUT_WR]       = "WR",
1615
                [SHUT_RDWR]     = "RDWR",
1616 20
        };
1617
1618
        (void)vl;
1619
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1620
        AZ(strcmp(av[0], "shutdown"));
1621
        av++;
1622 20
1623 20
        if (*av != NULL) {
1624 20
                if (!strcmp(*av, "-read")) {
1625 20
                        how = SHUT_RD;
1626
                        av++;
1627 40
                } else if (!strcmp(*av, "-write")) {
1628 20
                        how = SHUT_WR;
1629 4
                        av++;
1630 4
                }
1631 20
        }
1632 12
1633 12
        if (*av != NULL)
1634 16
                vtc_fatal(hp->vl, "Unknown http shutdown spec: %s\n", *av);
1635 4
1636 4
        vtc_log(vl, 4, "Shutting down fd (%s): %d", str[how], hp->sess->fd);
1637 4
        if (shutdown(hp->sess->fd, how) < 0)
1638 0
                vtc_log(vl, hp->fatal, "Shutdown failed: %s", strerror(errno));
1639
        vtc_log(vl, 3, "Shutdown socket fd (%d): %d", how, hp->sess->fd);
1640
}
1641
1642 20
/* SECTION: client-server.spec.fatal
1643 0
 *
1644
 * fatal|non_fatal
1645 20
 *         Control whether a failure of this entity should stop the test.
1646 20
 */
1647 20
1648 20
static void
1649 0
cmd_http_fatal(CMD_ARGS)
1650
{
1651 0
        struct http *hp;
1652
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1653 20
1654 0
        (void)vl;
1655
        AZ(av[1]);
1656 0
        if (!strcmp(av[0], "fatal")) {
1657
                hp->fatal = 0;
1658
        } else {
1659 40
                assert(!strcmp(av[0], "non_fatal"));
1660 20
                hp->fatal = -1;
1661
        }
1662 20
}
1663
1664
#define cmd_http_non_fatal cmd_http_fatal
1665
1666
static const char PREFACE[24] = {
1667
        0x50, 0x52, 0x49, 0x20, 0x2a, 0x20, 0x48, 0x54,
1668
        0x54, 0x50, 0x2f, 0x32, 0x2e, 0x30, 0x0d, 0x0a,
1669
        0x0d, 0x0a, 0x53, 0x4d, 0x0d, 0x0a, 0x0d, 0x0a
1670
};
1671 836
1672
/* SECTION: client-server.spec.txpri
1673
 *
1674 836
 * txpri (client only)
1675
 *      Send an HTTP/2 preface ("PRI * HTTP/2.0\\r\\n\\r\\nSM\\r\\n\\r\\n")
1676 836
 *      and set client to HTTP/2.
1677 836
 */
1678 836
static void
1679 42
cmd_http_txpri(CMD_ARGS)
1680 42
{
1681 794
        size_t l;
1682 794
        struct http *hp;
1683
1684 836
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1685
        ONLY_CLIENT(hp, av);
1686
1687
        vtc_dump(hp->vl, 4, "txpri", PREFACE, sizeof(PREFACE));
1688
        /* Dribble out the preface */
1689
        l = write(hp->sess->fd, PREFACE, 18);
1690
        if (l != 18)
1691
                vtc_log(vl, hp->fatal, "Write failed: (%zd vs %zd) %s",
1692
                    l, sizeof(PREFACE), strerror(errno));
1693
        VTIM_sleep(0.01);
1694
        l = write(hp->sess->fd, PREFACE + 18, sizeof(PREFACE) - 18);
1695
        if (l != sizeof(PREFACE) - 18)
1696
                vtc_log(vl, hp->fatal, "Write failed: (%zd vs %zd) %s",
1697
                    l, sizeof(PREFACE), strerror(errno));
1698
1699
        start_h2(hp);
1700
        AN(hp->h2);
1701 364
}
1702
1703
/* SECTION: client-server.spec.rxpri
1704
 *
1705
 * rxpri (server only)
1706 364
 *      Receive a preface. If valid set the server to HTTP/2, abort
1707 364
 *      otherwise.
1708
 */
1709 364
static void
1710
cmd_http_rxpri(CMD_ARGS)
1711 364
{
1712 364
        struct http *hp;
1713 0
1714 0
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1715 364
        ONLY_SERVER(hp, av);
1716 364
1717 364
        hp->rx_p = hp->rx_b;
1718 0
        if (!http_rxchar(hp, sizeof(PREFACE), 0))
1719 0
                vtc_fatal(vl, "Couldn't retrieve connection preface");
1720
        if (memcmp(hp->rx_b, PREFACE, sizeof(PREFACE)))
1721 364
                vtc_fatal(vl, "Received invalid preface\n");
1722 364
        start_h2(hp);
1723 364
        AN(hp->h2);
1724
}
1725
1726
/* SECTION: client-server.spec.settings
1727
 *
1728
 * settings -dectbl INT
1729
 *      Force internal HTTP/2 settings to certain values. Currently only
1730
 *      support setting the decoding table size.
1731
 */
1732 60
static void
1733
cmd_http_settings(CMD_ARGS)
1734
{
1735
        uint32_t n;
1736 60
        char *p;
1737 60
        struct http *hp;
1738
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1739 60
1740 60
        if (!hp->h2)
1741 0
                vtc_fatal(hp->vl, "Only possible in H/2 mode");
1742 60
1743 0
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1744 60
1745 60
        for (; *av != NULL; av++) {
1746 60
                if (!strcmp(*av, "-dectbl")) {
1747
                        n = strtoul(av[1], &p, 0);
1748
                        if (*p != '\0')
1749
                                vtc_fatal(hp->vl, "-dectbl takes an integer as "
1750
                                    "argument (found %s)", av[1]);
1751
                        assert(HPK_ResizeTbl(hp->decctx, n) != hpk_err);
1752
                        av++;
1753
                } else
1754
                        vtc_fatal(vl, "Unknown settings spec: %s\n", *av);
1755 0
        }
1756
}
1757
1758
static void
1759
cmd_http_stream(CMD_ARGS)
1760 0
{
1761
        struct http *hp;
1762 0
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1763 0
        if (!hp->h2) {
1764
                vtc_log(hp->vl, 4, "Not in H/2 mode, do what's needed");
1765 0
                if (hp->sfd)
1766
                        parse_string(vl, hp, "rxpri");
1767 0
                else
1768 0
                        parse_string(vl, hp, "txpri");
1769 0
                parse_string(vl, hp,
1770 0
                    "stream 0 {\n"
1771 0
                    "    txsettings\n"
1772 0
                    "    rxsettings\n"
1773 0
                    "    txsettings -ack\n"
1774 0
                    "    rxsettings\n"
1775 0
                    "    expect settings.ack == true"
1776 0
                    "} -run\n"
1777 0
                );
1778 0
        }
1779
        cmd_stream(av, hp, vl);
1780
}
1781 1214
1782
/* SECTION: client-server.spec.write_body
1783
 *
1784 1214
 * write_body STRING
1785 1214
 *      Write the body of a request or a response to a file. By using the
1786 376
 *      shell command, higher-level checks on the body can be performed
1787 376
 *      (eg. XML, JSON, ...) provided that such checks can be delegated
1788 52
 *      to an external program.
1789
 */
1790 324
static void
1791 376
cmd_http_write_body(CMD_ARGS)
1792
{
1793
        struct http *hp;
1794
1795
        (void)vl;
1796
        CAST_OBJ_NOTNULL(hp, priv, HTTP_MAGIC);
1797
        AN(av[0]);
1798
        AN(av[1]);
1799
        AZ(av[2]);
1800 376
        AZ(strcmp(av[0], "write_body"));
1801 1214
        if (VFIL_writefile(NULL, av[1], hp->body, hp->bodyl) != 0)
1802 1214
                vtc_fatal(hp->vl, "failed to write body: %s (%d)",
1803
                    strerror(errno), errno);
1804
}
1805
1806
/**********************************************************************
1807
 * Execute HTTP specifications
1808
 */
1809
1810
const struct cmds http_cmds[] = {
1811
#define CMD_HTTP(n) { #n, cmd_http_##n },
1812
        /* session */
1813 4
        CMD_HTTP(accept)
1814
        CMD_HTTP(close)
1815
        CMD_HTTP(recv)
1816
        CMD_HTTP(send)
1817 4
        CMD_HTTP(send_n)
1818 4
        CMD_HTTP(send_urgent)
1819 4
        CMD_HTTP(sendhex)
1820 4
        CMD_HTTP(shutdown)
1821 4
        CMD_HTTP(timeout)
1822 4
1823 4
        /* spec */
1824 0
        CMD_HTTP(fatal)
1825 0
        CMD_HTTP(non_fatal)
1826 4
1827
        /* body */
1828
        CMD_HTTP(gunzip)
1829
        CMD_HTTP(write_body)
1830
1831
        /* HTTP/1.x */
1832
        CMD_HTTP(chunked)
1833
        CMD_HTTP(chunkedlen)
1834
        CMD_HTTP(rxchunk)
1835
1836
        /* HTTP/2 */
1837
        CMD_HTTP(stream)
1838
        CMD_HTTP(settings)
1839
1840
        /* client */
1841
        CMD_HTTP(rxresp)
1842
        CMD_HTTP(rxrespbody)
1843
        CMD_HTTP(rxresphdrs)
1844
        CMD_HTTP(txpri)
1845
        CMD_HTTP(txreq)
1846
1847
        /* server */
1848
        CMD_HTTP(rxpri)
1849
        CMD_HTTP(rxreq)
1850
        CMD_HTTP(rxreqbody)
1851
        CMD_HTTP(rxreqhdrs)
1852
        CMD_HTTP(txresp)
1853
        CMD_HTTP(upgrade)
1854
1855
        /* expect */
1856
        CMD_HTTP(expect)
1857
        CMD_HTTP(expect_close)
1858
        CMD_HTTP(expect_pattern)
1859
#undef CMD_HTTP
1860
        { NULL, NULL }
1861
};
1862
1863
static void
1864
http_process_cleanup(void *arg)
1865
{
1866
        struct http *hp;
1867
1868
        CAST_OBJ_NOTNULL(hp, arg, HTTP_MAGIC);
1869
1870
        if (hp->h2)
1871
                stop_h2(hp);
1872
        VSB_destroy(&hp->vsb);
1873
        free(hp->rx_b);
1874
        free(hp->rem_ip);
1875
        free(hp->rem_port);
1876
        free(hp->rem_path);
1877
        FREE_OBJ(hp);
1878
}
1879
1880
int
1881
http_process(struct vtclog *vl, struct vtc_sess *vsp, const char *spec,
1882
    int sock, int *sfd, const char *addr, int rcvbuf)
1883
{
1884
        struct http *hp;
1885
        int retval, oldbuf;
1886 7979
        socklen_t intlen = sizeof(int);
1887
1888
        (void)sfd;
1889
        ALLOC_OBJ(hp, HTTP_MAGIC);
1890 7979
        AN(hp);
1891
        hp->sess = vsp;
1892 7979
        hp->sess->fd = sock;
1893 396
        hp->timeout = vtc_maxdur * .5;
1894 7979
1895 7979
        if (rcvbuf) {
1896 7979
                // XXX setsockopt() too late on SunOS
1897 7979
                // https://github.com/varnishcache/varnish-cache/pull/2980#issuecomment-486214661
1898 7979
                hp->rcvbuf = rcvbuf;
1899 7979
1900 7979
                oldbuf = 0;
1901
                AZ(getsockopt(hp->sess->fd, SOL_SOCKET, SO_RCVBUF, &oldbuf, &intlen));
1902
                AZ(setsockopt(hp->sess->fd, SOL_SOCKET, SO_RCVBUF, &rcvbuf, intlen));
1903 7982
                AZ(getsockopt(hp->sess->fd, SOL_SOCKET, SO_RCVBUF, &rcvbuf, &intlen));
1904
1905
                vtc_log(vl, 3, "-rcvbuf fd=%d old=%d new=%d actual=%d",
1906
                    hp->sess->fd, oldbuf, hp->rcvbuf, rcvbuf);
1907
        }
1908 7982
1909
        hp->nrxbuf = 2048*1024;
1910 7982
        hp->rx_b = malloc(hp->nrxbuf);
1911 7982
        AN(hp->rx_b);
1912 7982
        hp->rx_e = hp->rx_b + hp->nrxbuf;
1913 7982
        hp->rx_p = hp->rx_b;
1914 7982
        *hp->rx_p = '\0';
1915 7982
1916
        hp->vsb = VSB_new_auto();
1917 7982
        AN(hp->vsb);
1918
1919
        hp->sfd = sfd;
1920 18
1921
        hp->rem_ip = malloc(VTCP_ADDRBUFSIZE);
1922 18
        AN(hp->rem_ip);
1923 18
1924 18
        hp->rem_port = malloc(VTCP_PORTBUFSIZE);
1925 18
        AN(hp->rem_port);
1926
1927 36
        hp->vl = vl;
1928 18
        vtc_log_set_cmd(hp->vl, http_cmds);
1929 18
        hp->gziplevel = 0;
1930
        hp->gzipresidual = -1;
1931 7982
1932 7982
        if (*addr != '/') {
1933 7982
                VTCP_hisname(sock, hp->rem_ip, VTCP_ADDRBUFSIZE, hp->rem_port,
1934 7982
                             VTCP_PORTBUFSIZE);
1935 7982
                hp->rem_path = NULL;
1936 7982
        } else {
1937
                strcpy(hp->rem_ip, "0.0.0.0");
1938 7982
                strcpy(hp->rem_port, "0");
1939 7982
                hp->rem_path = strdup(addr);
1940
        }
1941 7982
        /* XXX: After an upgrade to HTTP/2 the cleanup of a server that is
1942
         * not -wait'ed before the test resets is subject to a race where the
1943 7982
         * cleanup does not happen, so ASAN reports leaks despite the push
1944 7982
         * of a cleanup handler. To easily reproduce, remove the server wait
1945
         * from a02022.vtc and run with ASAN enabled.
1946 7982
         */
1947 7982
        pthread_cleanup_push(http_process_cleanup, hp);
1948
        parse_string(vl, hp, spec);
1949 7982
        retval = hp->sess->fd;
1950 7982
        pthread_cleanup_pop(0);
1951 7982
        http_process_cleanup(hp);
1952 7982
        return (retval);
1953
}
1954 7982
1955 7362
/**********************************************************************
1956
 * Magic test routine
1957 7362
 *
1958 7362
 * This function brute-forces some short strings through gzip(9) to
1959 620
 * find candidates for all possible 8 bit positions of the stopbit.
1960 620
 *
1961 620
 * Here is some good short output strings:
1962
 *
1963
 *      0 184 <e04c8d0fd604c>
1964
 *      1 257 <1ea86e6cf31bf4ec3d7a86>
1965
 *      2 106 <10>
1966
 *      3 163 <a5e2e2e1c2e2>
1967
 *      4 180 <71c5d18ec5d5d1>
1968
 *      5 189 <39886d28a6d2988>
1969 7982
 *      6 118 <80000>
1970 7982
 *      7 151 <386811868>
1971 7982
 *
1972 7982
 */
1973 7982
1974 7982
#if 0
1975
void xxx(void);
1976
1977
void
1978
xxx(void)
1979
{
1980
        z_stream vz;
1981
        int n;
1982
        char ibuf[200];
1983
        char obuf[200];
1984
        int fl[8];
1985
        int i, j;
1986
1987
        for (n = 0; n < 8; n++)
1988
                fl[n] = 9999;
1989
1990
        memset(&vz, 0, sizeof vz);
1991
1992
        for (n = 0;  n < 999999999; n++) {
1993
                *ibuf = 0;
1994
                for (j = 0; j < 7; j++) {
1995
                        snprintf(strchr(ibuf, 0), 5, "%x",
1996
                            (unsigned)VRND_RandomTestable() & 0xffff);
1997
                        vz.next_in = TRUST_ME(ibuf);
1998
                        vz.avail_in = strlen(ibuf);
1999
                        vz.next_out = TRUST_ME(obuf);
2000
                        vz.avail_out = sizeof obuf;
2001
                        assert(Z_OK == deflateInit2(&vz,
2002
                            9, Z_DEFLATED, 31, 9, Z_DEFAULT_STRATEGY));
2003
                        assert(Z_STREAM_END == deflate(&vz, Z_FINISH));
2004
                        i = vz.stop_bit & 7;
2005
                        if (fl[i] > strlen(ibuf)) {
2006
                                printf("%d %jd <%s>\n", i, vz.stop_bit, ibuf);
2007
                                fl[i] = strlen(ibuf);
2008
                        }
2009
                        assert(Z_OK == deflateEnd(&vz));
2010
                }
2011
        }
2012
2013
        printf("FOO\n");
2014
}
2015
#endif