commit - 6f711b103fc86abf1cc94d145c48c5a927f01527
commit + 58381f7013ee220415b44aaf36c549b2f1cd2937
blob - 0160fc30c590ae25406be33eb3401352925def09
blob + 401b70e6dff3d9c32b2e251335998950b2a3ee8b
--- gotwebd/gotweb.c
+++ gotwebd/gotweb.c
/*
* Copyright (c) 2016, 2019, 2020-2022 Tracey Emery <tracey@traceyemery.net>
* Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org>
+ * Copyright (c) 2014 Reyk Floeter <reyk@openbsd.org>
* Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
* Copyright (c) 2013 Florian Obser <florian@openbsd.org>
*
#include <sys/stat.h>
#include <sys/types.h>
+#include <ctype.h>
#include <dirent.h>
#include <errno.h>
#include <event.h>
return error;
}
+/*
+ * Adapted from usr.sbin/httpd/httpd.c url_decode.
+ */
static const struct got_error *
+gotweb_urldecode(char *url)
+{
+ char *p, *q;
+ char hex[3];
+ unsigned long x;
+
+ hex[2] = '\0';
+ p = q = url;
+
+ while (*p != '\0') {
+ switch (*p) {
+ case '%':
+ /* Encoding character is followed by two hex chars */
+ if (!isxdigit((unsigned char)p[1]) ||
+ !isxdigit((unsigned char)p[2]) ||
+ (p[1] == '0' && p[2] == '0'))
+ return got_error(GOT_ERR_BAD_QUERYSTRING);
+
+ hex[0] = p[1];
+ hex[1] = p[2];
+
+ /*
+ * We don't have to validate "hex" because it is
+ * guaranteed to include two hex chars followed by nul.
+ */
+ x = strtoul(hex, NULL, 16);
+ *q = (char)x;
+ p += 2;
+ break;
+ default:
+ *q = *p;
+ break;
+ }
+ p++;
+ q++;
+ }
+ *q = '\0';
+
+ return NULL;
+}
+
+static const struct got_error *
gotweb_assign_querystring(struct querystring **qs, char *key, char *value)
{
const struct got_error *error = NULL;
const char *errstr;
int a_cnt, el_cnt;
+ error = gotweb_urldecode(value);
+ if (error)
+ return error;
+
for (el_cnt = 0; el_cnt < QSELEM__MAX; el_cnt++) {
if (strcmp(key, querystring_keys[el_cnt].name) != 0)
continue;
blob - b9ff4ec842e0441442db7c0cbce9ffc843bc4b47
blob + 81dce95fb636e4a9cb9a660616f6048f8403eb14
--- include/got_error.h
+++ include/got_error.h
#define GOT_ERR_VERIFY_TAG_SIGNATURE 155
#define GOT_ERR_SIGNING_TAG 156
#define GOT_ERR_COMMIT_REDUNDANT_AUTHOR 157
+#define GOT_ERR_BAD_QUERYSTRING 158
struct got_error {
int code;
blob - f208e82e92fa8d5f11f714140e353215e8477e04
blob + 711554564cdd65bb927ad7bc3bebbbc253efd6ac
--- lib/error.c
+++ lib/error.c
{ GOT_ERR_SIGNING_TAG, "unable to sign tag" },
{ GOT_ERR_COMMIT_REDUNDANT_AUTHOR, "specified author is equal to the "
"default one"},
+ { GOT_ERR_BAD_QUERYSTRING, "invalid query string" },
};
static struct got_custom_error {