aboutsummaryrefslogtreecommitdiffstats
path: root/slowcgi.c
diff options
context:
space:
mode:
authorflorian2014-04-14 19:25:48 +0000
committerWynn Wolf Arbor2020-05-24 12:33:55 +0200
commit66a9a2015cd5871e5df35a3c793153c151c30812 (patch)
tree533cf5d2ae122d75cb46be71def0fd7817707b8a /slowcgi.c
parentfeeb9503d238a5bd3f5689dd65388114cb306fe8 (diff)
downloadslowcgi-66a9a2015cd5871e5df35a3c793153c151c30812.tar.gz
Calculate the length of name and value for parameters the right way around for the 4 byte encoding. With this QUERY_STRING can be longer than 127 bytes. Found the hard way while playing with smokeping. OK benno@
Diffstat (limited to 'slowcgi.c')
-rw-r--r--slowcgi.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/slowcgi.c b/slowcgi.c
index 8d947d3..215c466 100644
--- a/slowcgi.c
+++ b/slowcgi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: slowcgi.c,v 1.29 2014/04/13 08:46:20 florian Exp $ */
+/* $OpenBSD: slowcgi.c,v 1.30 2014/04/14 19:25:48 florian Exp $ */
/*
* Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
* Copyright (c) 2013 Florian Obser <florian@openbsd.org>
@@ -696,8 +696,8 @@ parse_params(uint8_t *buf, uint16_t n, struct request *c, uint16_t id)
buf++;
} else {
if (n > 3) {
- name_len = ((buf[3] & 0x7f) << 24) +
- (buf[2] << 16) + (buf[1] << 8) + buf[0];
+ name_len = ((buf[0] & 0x7f) << 24) +
+ (buf[1] << 16) + (buf[2] << 8) + buf[3];
n -= 4;
buf += 4;
} else
@@ -711,9 +711,9 @@ parse_params(uint8_t *buf, uint16_t n, struct request *c, uint16_t id)
buf++;
} else {
if (n > 3) {
- val_len = ((buf[3] & 0x7f) << 24) +
- (buf[2] << 16) + (buf[1] << 8) +
- buf[0];
+ val_len = ((buf[0] & 0x7f) << 24) +
+ (buf[1] << 16) + (buf[2] << 8) +
+ buf[3];
n -= 4;
buf += 4;
} else