aboutsummaryrefslogtreecommitdiff
path: root/lib/http_digest.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-05-12 13:24:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-05-12 13:24:40 +0000
commitfd775454ca71ef4a70bfefde1e1789af359de9d1 (patch)
tree5c6fdf3fe2efc51f80c1696578cd1a5ca6bb09a3 /lib/http_digest.c
parent8e09a389c49486031f19535ff041387380b38403 (diff)
Check that memory functions return non-NULL or return error.
Diffstat (limited to 'lib/http_digest.c')
-rw-r--r--lib/http_digest.c52
1 files changed, 37 insertions, 15 deletions
diff --git a/lib/http_digest.c b/lib/http_digest.c
index 638f69d38..47e6c25c6 100644
--- a/lib/http_digest.c
+++ b/lib/http_digest.c
@@ -230,8 +230,6 @@ CURLcode Curl_output_digest(struct connectdata *conn,
}
authp->done = TRUE;
- ha1 = (unsigned char *)malloc(33); /* 32 digits and 1 zero byte */
-
if(!d->nc)
d->nc = 1;
@@ -239,8 +237,10 @@ CURLcode Curl_output_digest(struct connectdata *conn,
/* Generate a cnonce */
now = Curl_tvnow();
snprintf(cnoncebuf, sizeof(cnoncebuf), "%06ld", now.tv_sec);
- Curl_base64_encode(cnoncebuf, strlen(cnoncebuf), &cnonce);
- d->cnonce = cnonce;
+ if(Curl_base64_encode(cnoncebuf, strlen(cnoncebuf), &cnonce))
+ d->cnonce = cnonce;
+ else
+ return CURLE_OUT_OF_MEMORY;
}
/*
@@ -256,15 +256,23 @@ CURLcode Curl_output_digest(struct connectdata *conn,
md5this = (unsigned char *)
aprintf("%s:%s:%s", conn->user, d->realm, conn->passwd);
+ if(!md5this)
+ return CURLE_OUT_OF_MEMORY;
Curl_md5it(md5buf, md5this);
free(md5this); /* free this again */
+
+ ha1 = (unsigned char *)malloc(33); /* 32 digits and 1 zero byte */
+ if(!ha1)
+ return CURLE_OUT_OF_MEMORY;
+
md5_to_ascii(md5buf, ha1);
if(d->algo == CURLDIGESTALGO_MD5SESS) {
/* nonce and cnonce are OUTSIDE the hash */
tmp = aprintf("%s:%s:%s", ha1, d->nonce, d->cnonce);
-
free(ha1);
+ if(!tmp)
+ return CURLE_OUT_OF_MEMORY;
ha1 = (unsigned char *)tmp;
}
@@ -282,6 +290,11 @@ CURLcode Curl_output_digest(struct connectdata *conn,
*/
md5this = (unsigned char *)aprintf("%s:%s", request, uripath);
+ if(!md5this) {
+ free(ha1);
+ return CURLE_OUT_OF_MEMORY;
+ }
+
if (d->qop && strequal(d->qop, "auth-int")) {
/* We don't support auth-int at the moment. I can't see a easy way to get
entity-body here */
@@ -307,6 +320,8 @@ CURLcode Curl_output_digest(struct connectdata *conn,
ha2);
}
free(ha1);
+ if(!md5this)
+ return CURLE_OUT_OF_MEMORY;
Curl_md5it(md5buf, md5this);
free(md5this); /* free this again */
@@ -361,27 +376,34 @@ CURLcode Curl_output_digest(struct connectdata *conn,
uripath, /* this is the PATH part of the URL */
request_digest);
}
+ if(!*userp)
+ return CURLE_OUT_OF_MEMORY;
/* Add optional fields */
if(d->opaque) {
/* append opaque */
- tmp = aprintf(", opaque=\"%s\"", d->opaque);
- *userp = (char*) realloc(*userp, strlen(*userp) + strlen(tmp) + 1);
- strcat(*userp, tmp);
- free(tmp);
+ tmp = aprintf("%s, opaque=\"%s\"", *userp, d->opaque);
+ if(!tmp)
+ return CURLE_OUT_OF_MEMORY;
+ free(*userp);
+ *userp = tmp;
}
if(d->algorithm) {
/* append algorithm */
- tmp = aprintf(", algorithm=\"%s\"", d->algorithm);
- *userp = (char*) realloc(*userp, strlen(*userp) + strlen(tmp) + 1);
- strcat(conn->allocptr.userpwd, tmp);
- free(tmp);
+ tmp = aprintf("%s, algorithm=\"%s\"", *userp, d->algorithm);
+ if(!tmp)
+ return CURLE_OUT_OF_MEMORY;
+ free(*userp);
+ *userp = tmp;
}
/* append CRLF to the userpwd header */
- *userp = (char*) realloc(*userp, strlen(*userp) + 3 + 1);
- strcat(*userp, "\r\n");
+ tmp = (char*) realloc(*userp, strlen(*userp) + 3 + 1);
+ if(!tmp)
+ return CURLE_OUT_OF_MEMORY;
+ strcat(tmp, "\r\n");
+ *userp = tmp;
return CURLE_OK;
}