* [PATCH] X.509: fix printing uninitialized stack memory when OID is empty
@ 2017-11-27 7:18 Eric Biggers
2017-11-28 11:03 ` David Howells
0 siblings, 1 reply; 3+ messages in thread
From: Eric Biggers @ 2017-11-27 7:18 UTC (permalink / raw)
To: keyrings, David Howells
Cc: linux-crypto, Alexander Potapenko, Eric Biggers, Takashi Iwai
From: Eric Biggers <ebiggers@google.com>
Callers of sprint_oid() do not check its return value before printing
the result. In the case where the OID is zero-length, -EBADMSG was
being returned without anything being written to the buffer, resulting
in uninitialized stack memory being printed. Fix this by writing
"(empty)" to the buffer in that case.
Fixes: 4f73175d0375 ("X.509: Add utility functions to render OIDs as strings")
Cc: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Eric Biggers <ebiggers@google.com>
---
lib/oid_registry.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/oid_registry.c b/lib/oid_registry.c
index 5a75d127995d..3640170f0d65 100644
--- a/lib/oid_registry.c
+++ b/lib/oid_registry.c
@@ -115,8 +115,10 @@ int sprint_oid(const void *data, size_t datasize, char *buffer, size_t bufsize)
size_t ret;
int count;
- if (v >= end)
+ if (v >= end) {
+ snprintf(buffer, bufsize, "(empty)");
return -EBADMSG;
+ }
n = *v++;
ret = count = snprintf(buffer, bufsize, "%u.%u", n / 40, n % 40);
--
2.15.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] X.509: fix printing uninitialized stack memory when OID is empty
2017-11-27 7:18 [PATCH] X.509: fix printing uninitialized stack memory when OID is empty Eric Biggers
@ 2017-11-28 11:03 ` David Howells
2017-11-28 18:56 ` Eric Biggers
0 siblings, 1 reply; 3+ messages in thread
From: David Howells @ 2017-11-28 11:03 UTC (permalink / raw)
To: Eric Biggers
Cc: dhowells, keyrings, linux-crypto, Alexander Potapenko,
Eric Biggers, Takashi Iwai
I wonder if all -EBADMSG returns here should just print "(badoid)" into the
buffer.
David
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] X.509: fix printing uninitialized stack memory when OID is empty
2017-11-28 11:03 ` David Howells
@ 2017-11-28 18:56 ` Eric Biggers
0 siblings, 0 replies; 3+ messages in thread
From: Eric Biggers @ 2017-11-28 18:56 UTC (permalink / raw)
To: David Howells
Cc: keyrings, linux-crypto, Alexander Potapenko, Eric Biggers,
Takashi Iwai
Hi David,
On Tue, Nov 28, 2017 at 11:03:54AM +0000, David Howells wrote:
> I wonder if all -EBADMSG returns here should just print "(badoid)" into the
> buffer.
>
I don't really care either way; it's just a question of whether it's better to
truncate the bad part, or print a special value. If you prefer the latter here
is a revised patch to consider. (I went with "(bad)" instead of "(badoid)"
because the callers already label the string as an OID.):
---8<---
>From 5a68ec1afd819e145446a97268bd790f9f3226b3 Mon Sep 17 00:00:00 2001
From: Eric Biggers <ebiggers@google.com>
Date: Tue, 28 Nov 2017 10:47:42 -0800
Subject: [PATCH v2] X.509: fix printing uninitialized stack memory when OID is
empty
Callers of sprint_oid() do not check its return value before printing
the result. In the case where the OID is zero-length, -EBADMSG was
being returned without anything being written to the buffer, resulting
in uninitialized stack memory being printed. Fix this by writing
"(bad)" to the buffer in the cases where -EBADMSG is returned.
Fixes: 4f73175d0375 ("X.509: Add utility functions to render OIDs as strings")
Signed-off-by: Eric Biggers <ebiggers@google.com>
---
lib/oid_registry.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/lib/oid_registry.c b/lib/oid_registry.c
index 41b9e50711a7..b5f7d9986be1 100644
--- a/lib/oid_registry.c
+++ b/lib/oid_registry.c
@@ -116,7 +116,7 @@ int sprint_oid(const void *data, size_t datasize, char *buffer, size_t bufsize)
int count;
if (v >= end)
- return -EBADMSG;
+ goto bad;
n = *v++;
ret = count = snprintf(buffer, bufsize, "%u.%u", n / 40, n % 40);
@@ -134,7 +134,7 @@ int sprint_oid(const void *data, size_t datasize, char *buffer, size_t bufsize)
num = n & 0x7f;
do {
if (v >= end)
- return -EBADMSG;
+ goto bad;
n = *v++;
num <<= 7;
num |= n & 0x7f;
@@ -148,6 +148,10 @@ int sprint_oid(const void *data, size_t datasize, char *buffer, size_t bufsize)
}
return ret;
+
+bad:
+ snprintf(buffer, bufsize, "(bad)");
+ return -EBADMSG;
}
EXPORT_SYMBOL_GPL(sprint_oid);
--
2.15.0.417.g466bffb3ac-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-11-28 18:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-27 7:18 [PATCH] X.509: fix printing uninitialized stack memory when OID is empty Eric Biggers
2017-11-28 11:03 ` David Howells
2017-11-28 18:56 ` Eric Biggers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).