summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2021-10-31 06:48:55 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2021-10-31 06:48:55 +0000
commitece8d9685feca53620fd9e8604aa6fe86f3b0fcf (patch)
tree590b9edd367df94484721a08d331d6d781210d85
parent5db6e292f9ed529a16741ac1cd355f1c96e87e4a (diff)
Add explicit CBS_contains_zero_byte() check in CBS_strdup().
If the CBS data contains a zero byte, then CBS_strdup() is only going to return part of the data - add an explicit CBS_contains_zero_byte() and treat such data as an error case. ok tb@
-rw-r--r--lib/libssl/bs_cbs.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libssl/bs_cbs.c b/lib/libssl/bs_cbs.c
index 8d55871592f..ab76b789272 100644
--- a/lib/libssl/bs_cbs.c
+++ b/lib/libssl/bs_cbs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bs_cbs.c,v 1.20 2021/05/16 10:58:27 jsing Exp $ */
+/* $OpenBSD: bs_cbs.c,v 1.21 2021/10/31 06:48:54 jsing Exp $ */
/*
* Copyright (c) 2014, Google Inc.
*
@@ -95,6 +95,11 @@ int
CBS_strdup(const CBS *cbs, char **out_ptr)
{
free(*out_ptr);
+ *out_ptr = NULL;
+
+ if (CBS_contains_zero_byte(cbs))
+ return 0;
+
*out_ptr = strndup((const char *)cbs->data, cbs->len);
return (*out_ptr != NULL);
}