summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-09-27 17:36:19 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-10-31 08:46:35 +0100
commitcff89bc088b7884098ea0c5378bbda3d49c437bc (patch)
tree4358449b61b0bc37b9678964daea07aea078a0ed
parent811a693b803a8715e15ba56fb161d9e6b3b6b016 (diff)
downloadgnurl-cff89bc088b7884098ea0c5378bbda3d49c437bc.tar.gz
gnurl-cff89bc088b7884098ea0c5378bbda3d49c437bc.tar.bz2
gnurl-cff89bc088b7884098ea0c5378bbda3d49c437bc.zip
cookie: replace use of fgets() with custom version
... that will ignore lines that are too long to fit in the buffer. CVE-2016-8615 Bug: https://curl.haxx.se/docs/adv_20161102A.html Reported-by: Cure53
-rw-r--r--lib/cookie.c31
1 files changed, 30 insertions, 1 deletions
diff --git a/lib/cookie.c b/lib/cookie.c
index 4932ab1f1..1b3e6457b 100644
--- a/lib/cookie.c
+++ b/lib/cookie.c
@@ -902,6 +902,35 @@ Curl_cookie_add(struct Curl_easy *data,
return co;
}
+/*
+ * get_line() makes sure to only return complete whole lines that fit in 'len'
+ * bytes and end with a newline.
+ */
+static char *get_line(char *buf, int len, FILE *input)
+{
+ bool partial = FALSE;
+ while(1) {
+ char *b = fgets(buf, len, input);
+ if(b) {
+ size_t rlen = strlen(b);
+ if(rlen && (b[rlen-1] == '\n')) {
+ if(partial) {
+ partial = FALSE;
+ continue;
+ }
+ return b;
+ }
+ else
+ /* read a partial, discard the next piece that ends with newline */
+ partial = TRUE;
+ }
+ else
+ break;
+ }
+ return NULL;
+}
+
+
/*****************************************************************************
*
* Curl_cookie_init()
@@ -958,7 +987,7 @@ struct CookieInfo *Curl_cookie_init(struct Curl_easy *data,
line = malloc(MAX_COOKIE_LINE);
if(!line)
goto fail;
- while(fgets(line, MAX_COOKIE_LINE, fp)) {
+ while(get_line(line, MAX_COOKIE_LINE, fp)) {
if(checkprefix("Set-Cookie:", line)) {
/* This is a cookie line, get it! */
lineptr=&line[11];