2017-11-21 18:55:27 +00:00
|
|
|
/*
|
|
|
|
* HTTP/2 protocol processing
|
|
|
|
*
|
|
|
|
* Copyright 2017 Willy Tarreau <w@1wt.eu>
|
|
|
|
* Copyright (C) 2017 HAProxy Technologies
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <common/config.h>
|
|
|
|
#include <common/h2.h>
|
|
|
|
#include <common/http-hdr.h>
|
|
|
|
#include <common/ist.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* Prepare the request line into <*ptr> (stopping at <end>) from pseudo headers
|
|
|
|
* stored in <phdr[]>. <fields> indicates what was found so far. This should be
|
|
|
|
* called once at the detection of the first general header field or at the end
|
|
|
|
* of the request if no general header field was found yet. Returns 0 on success
|
|
|
|
* or a negative error code on failure.
|
|
|
|
*/
|
|
|
|
static int h2_prepare_h1_reqline(uint32_t fields, struct ist *phdr, char **ptr, char *end)
|
|
|
|
{
|
|
|
|
char *out = *ptr;
|
|
|
|
int uri_idx = H2_PHDR_IDX_PATH;
|
|
|
|
|
|
|
|
if ((fields & H2_PHDR_FND_METH) && isteq(phdr[H2_PHDR_IDX_METH], ist("CONNECT"))) {
|
|
|
|
/* RFC 7540 #8.2.6 regarding CONNECT: ":scheme" and ":path"
|
|
|
|
* MUST be omitted ; ":authority" contains the host and port
|
|
|
|
* to connect to.
|
|
|
|
*/
|
|
|
|
if (fields & H2_PHDR_FND_SCHM) {
|
|
|
|
/* scheme not allowed */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
else if (fields & H2_PHDR_FND_PATH) {
|
|
|
|
/* path not allowed */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
else if (!(fields & H2_PHDR_FND_AUTH)) {
|
|
|
|
/* missing authority */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
// otherwise OK ; let's use the authority instead of the URI
|
|
|
|
uri_idx = H2_PHDR_IDX_AUTH;
|
|
|
|
}
|
|
|
|
else if ((fields & (H2_PHDR_FND_METH|H2_PHDR_FND_SCHM|H2_PHDR_FND_PATH)) !=
|
|
|
|
(H2_PHDR_FND_METH|H2_PHDR_FND_SCHM|H2_PHDR_FND_PATH)) {
|
|
|
|
/* RFC 7540 #8.1.2.3 : all requests MUST include exactly one
|
|
|
|
* valid value for the ":method", ":scheme" and ":path" phdr
|
|
|
|
* unless it is a CONNECT request.
|
|
|
|
*/
|
|
|
|
if (!(fields & H2_PHDR_FND_METH)) {
|
|
|
|
/* missing method */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
else if (!(fields & H2_PHDR_FND_SCHM)) {
|
|
|
|
/* missing scheme */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* missing path */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-03 10:51:31 +00:00
|
|
|
/* 7540#8.1.2.3: :path must not be empty */
|
|
|
|
if (!phdr[uri_idx].len)
|
|
|
|
goto fail;
|
|
|
|
|
2017-12-03 08:44:50 +00:00
|
|
|
if (out + phdr[H2_PHDR_IDX_METH].len + 1 + phdr[uri_idx].len + 11 > end) {
|
2017-11-21 18:55:27 +00:00
|
|
|
/* too large */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(out, phdr[H2_PHDR_IDX_METH].ptr, phdr[H2_PHDR_IDX_METH].len);
|
|
|
|
out += phdr[H2_PHDR_IDX_METH].len;
|
|
|
|
*(out++) = ' ';
|
|
|
|
|
|
|
|
memcpy(out, phdr[uri_idx].ptr, phdr[uri_idx].len);
|
|
|
|
out += phdr[uri_idx].len;
|
|
|
|
memcpy(out, " HTTP/1.1\r\n", 11);
|
|
|
|
out += 11;
|
|
|
|
|
|
|
|
*ptr = out;
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Takes an H2 request present in the headers list <list> terminated by a name
|
|
|
|
* being <NULL,0> and emits the equivalent HTTP/1.1 request according to the
|
|
|
|
* rules documented in RFC7540 #8.1.2. The output contents are emitted in <out>
|
|
|
|
* for a max of <osize> bytes, and the amount of bytes emitted is returned. In
|
|
|
|
* case of error, a negative error code is returned.
|
|
|
|
*
|
|
|
|
* The headers list <list> must be composed of :
|
|
|
|
* - n.name != NULL, n.len > 0 : literal header name
|
|
|
|
* - n.name == NULL, n.len > 0 : indexed pseudo header name number <n.len>
|
|
|
|
* among H2_PHDR_IDX_*
|
|
|
|
* - n.name ignored, n.len == 0 : end of list
|
|
|
|
* - in all cases except the end of list, v.name and v.len must designate a
|
|
|
|
* valid value.
|
BUG/MEDIUM: h2: always reassemble the Cookie request header field
The special case of the Cookie header field was overlooked in the
implementation, considering that most servers do handle cookie lists,
but as reported here on discourse it's not the case at all :
https://discourse.haproxy.org/t/h2-cookie-header-splitted-header/1742
This patch fixes this by skipping all occurences of the Cookie header
in the request while building the H1 request, and then building a single
Cookie header with all values appended at once, according to what is
requested in RFC7540#8.1.2.5.
In order to build the list of values, the list struct is used as a linked
list (as there can't be more cookies than headers). This makes the list
walking quite efficient and ensures all values are quickly found without
having to rescan the list.
A test case provided by Lukas shows that it properly works :
> GET /? HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> referer: https://127.0.0.1:4443/?expectValue=1511294406
> host: 127.0.0.1:4443
< HTTP/1.1 200 OK
< Server: nginx
< Date: Tue, 21 Nov 2017 20:00:13 GMT
< Content-Type: text/html; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< X-Powered-By: PHP/5.3.10-1ubuntu3.26
< Set-Cookie: HAPTESTa=1511294413
< Set-Cookie: HAPTESTb=1511294413
< Set-Cookie: HAPTESTc=1511294413
< Set-Cookie: HAPTESTd=1511294413
< Content-Encoding: gzip
> GET /?expectValue=1511294413 HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> host: 127.0.0.1:4443
> cookie: SERVERID=s1; HAPTESTa=1511294413; HAPTESTb=1511294413; HAPTESTc=1511294413; HAPTESTd=1511294413
Many thanks to @Nurza, @adrianw and @lukastribus for their helpful reports
and investigations here.
2017-11-21 20:01:29 +00:00
|
|
|
*
|
|
|
|
* The Cookie header will be reassembled at the end, and for this, the <list>
|
|
|
|
* will be used to create a linked list, so its contents may be destroyed.
|
2017-11-21 18:55:27 +00:00
|
|
|
*/
|
|
|
|
int h2_make_h1_request(struct http_hdr *list, char *out, int osize)
|
|
|
|
{
|
|
|
|
struct ist phdr_val[H2_PHDR_NUM_ENTRIES];
|
|
|
|
char *out_end = out + osize;
|
|
|
|
uint32_t fields; /* bit mask of H2_PHDR_FND_* */
|
|
|
|
uint32_t idx;
|
BUG/MEDIUM: h2: always reassemble the Cookie request header field
The special case of the Cookie header field was overlooked in the
implementation, considering that most servers do handle cookie lists,
but as reported here on discourse it's not the case at all :
https://discourse.haproxy.org/t/h2-cookie-header-splitted-header/1742
This patch fixes this by skipping all occurences of the Cookie header
in the request while building the H1 request, and then building a single
Cookie header with all values appended at once, according to what is
requested in RFC7540#8.1.2.5.
In order to build the list of values, the list struct is used as a linked
list (as there can't be more cookies than headers). This makes the list
walking quite efficient and ensures all values are quickly found without
having to rescan the list.
A test case provided by Lukas shows that it properly works :
> GET /? HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> referer: https://127.0.0.1:4443/?expectValue=1511294406
> host: 127.0.0.1:4443
< HTTP/1.1 200 OK
< Server: nginx
< Date: Tue, 21 Nov 2017 20:00:13 GMT
< Content-Type: text/html; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< X-Powered-By: PHP/5.3.10-1ubuntu3.26
< Set-Cookie: HAPTESTa=1511294413
< Set-Cookie: HAPTESTb=1511294413
< Set-Cookie: HAPTESTc=1511294413
< Set-Cookie: HAPTESTd=1511294413
< Content-Encoding: gzip
> GET /?expectValue=1511294413 HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> host: 127.0.0.1:4443
> cookie: SERVERID=s1; HAPTESTa=1511294413; HAPTESTb=1511294413; HAPTESTc=1511294413; HAPTESTd=1511294413
Many thanks to @Nurza, @adrianw and @lukastribus for their helpful reports
and investigations here.
2017-11-21 20:01:29 +00:00
|
|
|
int ck, lck; /* cookie index and last cookie index */
|
2017-11-21 18:55:27 +00:00
|
|
|
int phdr;
|
|
|
|
int ret;
|
|
|
|
|
BUG/MEDIUM: h2: always reassemble the Cookie request header field
The special case of the Cookie header field was overlooked in the
implementation, considering that most servers do handle cookie lists,
but as reported here on discourse it's not the case at all :
https://discourse.haproxy.org/t/h2-cookie-header-splitted-header/1742
This patch fixes this by skipping all occurences of the Cookie header
in the request while building the H1 request, and then building a single
Cookie header with all values appended at once, according to what is
requested in RFC7540#8.1.2.5.
In order to build the list of values, the list struct is used as a linked
list (as there can't be more cookies than headers). This makes the list
walking quite efficient and ensures all values are quickly found without
having to rescan the list.
A test case provided by Lukas shows that it properly works :
> GET /? HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> referer: https://127.0.0.1:4443/?expectValue=1511294406
> host: 127.0.0.1:4443
< HTTP/1.1 200 OK
< Server: nginx
< Date: Tue, 21 Nov 2017 20:00:13 GMT
< Content-Type: text/html; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< X-Powered-By: PHP/5.3.10-1ubuntu3.26
< Set-Cookie: HAPTESTa=1511294413
< Set-Cookie: HAPTESTb=1511294413
< Set-Cookie: HAPTESTc=1511294413
< Set-Cookie: HAPTESTd=1511294413
< Content-Encoding: gzip
> GET /?expectValue=1511294413 HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> host: 127.0.0.1:4443
> cookie: SERVERID=s1; HAPTESTa=1511294413; HAPTESTb=1511294413; HAPTESTc=1511294413; HAPTESTd=1511294413
Many thanks to @Nurza, @adrianw and @lukastribus for their helpful reports
and investigations here.
2017-11-21 20:01:29 +00:00
|
|
|
lck = ck = -1; // no cookie for now
|
2017-11-21 18:55:27 +00:00
|
|
|
fields = 0;
|
|
|
|
for (idx = 0; list[idx].n.len != 0; idx++) {
|
|
|
|
if (!list[idx].n.ptr) {
|
|
|
|
/* this is an indexed pseudo-header */
|
|
|
|
phdr = list[idx].n.len;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* this can be any type of header */
|
|
|
|
phdr = h2_str_to_phdr(list[idx].n);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (phdr > 0 && phdr < H2_PHDR_NUM_ENTRIES) {
|
|
|
|
/* insert a pseudo header by its index (in phdr) and value (in value) */
|
|
|
|
if (fields & ((1 << phdr) | H2_PHDR_FND_NONE)) {
|
|
|
|
if (fields & H2_PHDR_FND_NONE) {
|
|
|
|
/* pseudo header field after regular headers */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* repeated pseudo header field */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fields |= 1 << phdr;
|
|
|
|
phdr_val[phdr] = list[idx].v;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (phdr != 0) {
|
|
|
|
/* invalid pseudo header -- should never happen here */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* regular header field in (name,value) */
|
|
|
|
if (!(fields & H2_PHDR_FND_NONE)) {
|
|
|
|
/* no more pseudo-headers, time to build the request line */
|
|
|
|
ret = h2_prepare_h1_reqline(fields, phdr_val, &out, out_end);
|
|
|
|
if (ret != 0)
|
|
|
|
goto leave;
|
|
|
|
fields |= H2_PHDR_FND_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isteq(list[idx].n, ist("host")))
|
|
|
|
fields |= H2_PHDR_FND_HOST;
|
|
|
|
|
BUG/MEDIUM: h2: always reassemble the Cookie request header field
The special case of the Cookie header field was overlooked in the
implementation, considering that most servers do handle cookie lists,
but as reported here on discourse it's not the case at all :
https://discourse.haproxy.org/t/h2-cookie-header-splitted-header/1742
This patch fixes this by skipping all occurences of the Cookie header
in the request while building the H1 request, and then building a single
Cookie header with all values appended at once, according to what is
requested in RFC7540#8.1.2.5.
In order to build the list of values, the list struct is used as a linked
list (as there can't be more cookies than headers). This makes the list
walking quite efficient and ensures all values are quickly found without
having to rescan the list.
A test case provided by Lukas shows that it properly works :
> GET /? HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> referer: https://127.0.0.1:4443/?expectValue=1511294406
> host: 127.0.0.1:4443
< HTTP/1.1 200 OK
< Server: nginx
< Date: Tue, 21 Nov 2017 20:00:13 GMT
< Content-Type: text/html; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< X-Powered-By: PHP/5.3.10-1ubuntu3.26
< Set-Cookie: HAPTESTa=1511294413
< Set-Cookie: HAPTESTb=1511294413
< Set-Cookie: HAPTESTc=1511294413
< Set-Cookie: HAPTESTd=1511294413
< Content-Encoding: gzip
> GET /?expectValue=1511294413 HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> host: 127.0.0.1:4443
> cookie: SERVERID=s1; HAPTESTa=1511294413; HAPTESTb=1511294413; HAPTESTc=1511294413; HAPTESTd=1511294413
Many thanks to @Nurza, @adrianw and @lukastribus for their helpful reports
and investigations here.
2017-11-21 20:01:29 +00:00
|
|
|
/* cookie requires special processing at the end */
|
|
|
|
if (isteq(list[idx].n, ist("cookie"))) {
|
|
|
|
list[idx].n.len = -1;
|
|
|
|
|
|
|
|
if (ck < 0)
|
|
|
|
ck = idx;
|
|
|
|
else
|
|
|
|
list[lck].n.len = idx;
|
|
|
|
|
|
|
|
lck = idx;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-11-21 18:55:27 +00:00
|
|
|
if (out + list[idx].n.len + 2 + list[idx].v.len + 2 > out_end) {
|
|
|
|
/* too large */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy "name: value" */
|
|
|
|
memcpy(out, list[idx].n.ptr, list[idx].n.len);
|
|
|
|
out += list[idx].n.len;
|
|
|
|
*(out++) = ':';
|
|
|
|
*(out++) = ' ';
|
|
|
|
|
|
|
|
memcpy(out, list[idx].v.ptr, list[idx].v.len);
|
|
|
|
out += list[idx].v.len;
|
|
|
|
*(out++) = '\r';
|
|
|
|
*(out++) = '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Let's dump the request now if not yet emitted. */
|
|
|
|
if (!(fields & H2_PHDR_FND_NONE)) {
|
|
|
|
ret = h2_prepare_h1_reqline(fields, phdr_val, &out, out_end);
|
|
|
|
if (ret != 0)
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* complete with missing Host if needed */
|
|
|
|
if ((fields & (H2_PHDR_FND_HOST|H2_PHDR_FND_AUTH)) == H2_PHDR_FND_AUTH) {
|
|
|
|
/* missing Host field, use :authority instead */
|
|
|
|
if (out + 6 + phdr_val[H2_PHDR_IDX_AUTH].len + 2 > out_end) {
|
|
|
|
/* too large */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(out, "host: ", 6);
|
|
|
|
memcpy(out + 6, phdr_val[H2_PHDR_IDX_AUTH].ptr, phdr_val[H2_PHDR_IDX_AUTH].len);
|
|
|
|
out += 6 + phdr_val[H2_PHDR_IDX_AUTH].len;
|
|
|
|
*(out++) = '\r';
|
|
|
|
*(out++) = '\n';
|
|
|
|
}
|
|
|
|
|
BUG/MEDIUM: h2: always reassemble the Cookie request header field
The special case of the Cookie header field was overlooked in the
implementation, considering that most servers do handle cookie lists,
but as reported here on discourse it's not the case at all :
https://discourse.haproxy.org/t/h2-cookie-header-splitted-header/1742
This patch fixes this by skipping all occurences of the Cookie header
in the request while building the H1 request, and then building a single
Cookie header with all values appended at once, according to what is
requested in RFC7540#8.1.2.5.
In order to build the list of values, the list struct is used as a linked
list (as there can't be more cookies than headers). This makes the list
walking quite efficient and ensures all values are quickly found without
having to rescan the list.
A test case provided by Lukas shows that it properly works :
> GET /? HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> referer: https://127.0.0.1:4443/?expectValue=1511294406
> host: 127.0.0.1:4443
< HTTP/1.1 200 OK
< Server: nginx
< Date: Tue, 21 Nov 2017 20:00:13 GMT
< Content-Type: text/html; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< X-Powered-By: PHP/5.3.10-1ubuntu3.26
< Set-Cookie: HAPTESTa=1511294413
< Set-Cookie: HAPTESTb=1511294413
< Set-Cookie: HAPTESTc=1511294413
< Set-Cookie: HAPTESTd=1511294413
< Content-Encoding: gzip
> GET /?expectValue=1511294413 HTTP/1.1
> user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
> accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
> accept-language: en-US,en;q=0.5
> accept-encoding: gzip, deflate
> host: 127.0.0.1:4443
> cookie: SERVERID=s1; HAPTESTa=1511294413; HAPTESTb=1511294413; HAPTESTc=1511294413; HAPTESTd=1511294413
Many thanks to @Nurza, @adrianw and @lukastribus for their helpful reports
and investigations here.
2017-11-21 20:01:29 +00:00
|
|
|
/* now we may have to build a cookie list. We'll dump the values of all
|
|
|
|
* visited headers.
|
|
|
|
*/
|
|
|
|
if (ck >= 0) {
|
|
|
|
if (out + 8 > out_end) {
|
|
|
|
/* too large */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
memcpy(out, "cookie: ", 8);
|
|
|
|
out += 8;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (out + list[ck].v.len + 2 > out_end) {
|
|
|
|
/* too large */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
memcpy(out, list[ck].v.ptr, list[ck].v.len);
|
|
|
|
out += list[ck].v.len;
|
|
|
|
ck = list[ck].n.len;
|
|
|
|
|
|
|
|
if (ck >= 0) {
|
|
|
|
*(out++) = ';';
|
|
|
|
*(out++) = ' ';
|
|
|
|
}
|
|
|
|
} while (ck >= 0);
|
|
|
|
|
|
|
|
if (out + 2 > out_end) {
|
|
|
|
/* too large */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
*(out++) = '\r';
|
|
|
|
*(out++) = '\n';
|
|
|
|
}
|
|
|
|
|
2017-11-21 18:55:27 +00:00
|
|
|
/* And finish */
|
|
|
|
if (out + 2 > out_end) {
|
|
|
|
/* too large */
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
*(out++) = '\r';
|
|
|
|
*(out++) = '\n';
|
|
|
|
ret = out + osize - out_end;
|
|
|
|
leave:
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
return -1;
|
|
|
|
}
|