url: decode buffers that are not NUL-terminated
The url_decode function needs only minor tweaks to handle arbitrary buffers. Let's do those tweaks, which cleans up an unreadable mess of temporary strings in http.c. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
d79bcd6805
commit
66c8448543
26
url.c
26
url.c
@ -68,18 +68,20 @@ static int url_decode_char(const char *q)
|
||||
return val;
|
||||
}
|
||||
|
||||
static char *url_decode_internal(const char **query, const char *stop_at,
|
||||
struct strbuf *out, int decode_plus)
|
||||
static char *url_decode_internal(const char **query, int len,
|
||||
const char *stop_at, struct strbuf *out,
|
||||
int decode_plus)
|
||||
{
|
||||
const char *q = *query;
|
||||
|
||||
do {
|
||||
while (len) {
|
||||
unsigned char c = *q;
|
||||
|
||||
if (!c)
|
||||
break;
|
||||
if (stop_at && strchr(stop_at, c)) {
|
||||
q++;
|
||||
len--;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -88,6 +90,7 @@ static char *url_decode_internal(const char **query, const char *stop_at,
|
||||
if (0 <= val) {
|
||||
strbuf_addch(out, val);
|
||||
q += 3;
|
||||
len -= 3;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
@ -97,34 +100,41 @@ static char *url_decode_internal(const char **query, const char *stop_at,
|
||||
else
|
||||
strbuf_addch(out, c);
|
||||
q++;
|
||||
} while (1);
|
||||
len--;
|
||||
}
|
||||
*query = q;
|
||||
return strbuf_detach(out, NULL);
|
||||
}
|
||||
|
||||
char *url_decode(const char *url)
|
||||
{
|
||||
return url_decode_mem(url, strlen(url));
|
||||
}
|
||||
|
||||
char *url_decode_mem(const char *url, int len)
|
||||
{
|
||||
struct strbuf out = STRBUF_INIT;
|
||||
const char *colon = strchr(url, ':');
|
||||
const char *colon = memchr(url, ':', len);
|
||||
|
||||
/* Skip protocol part if present */
|
||||
if (colon && url < colon) {
|
||||
strbuf_add(&out, url, colon - url);
|
||||
len -= colon - url;
|
||||
url = colon;
|
||||
}
|
||||
return url_decode_internal(&url, NULL, &out, 0);
|
||||
return url_decode_internal(&url, len, NULL, &out, 0);
|
||||
}
|
||||
|
||||
char *url_decode_parameter_name(const char **query)
|
||||
{
|
||||
struct strbuf out = STRBUF_INIT;
|
||||
return url_decode_internal(query, "&=", &out, 1);
|
||||
return url_decode_internal(query, -1, "&=", &out, 1);
|
||||
}
|
||||
|
||||
char *url_decode_parameter_value(const char **query)
|
||||
{
|
||||
struct strbuf out = STRBUF_INIT;
|
||||
return url_decode_internal(query, "&", &out, 1);
|
||||
return url_decode_internal(query, -1, "&", &out, 1);
|
||||
}
|
||||
|
||||
void end_url_with_slash(struct strbuf *buf, const char *url)
|
||||
|
Reference in New Issue
Block a user