* [PATCH] fix unlikely NULL pointer deref in kallsyms
@ 2006-03-09 21:48 Jesper Juhl
0 siblings, 0 replies; only message in thread
From: Jesper Juhl @ 2006-03-09 21:48 UTC (permalink / raw)
To: linux-kernel; +Cc: Andrew Morton, Jesper Juhl
The Coverity checker noticed that kallsyms may dereference a NULL pointer
(in two places) in the function write_src() if malloc() fails.
In addition, malloc() returns a void*, so there's no need to cast the
return value.
The amount requested is small, so this is unlikely to happen, but not
impossible.
To fix the problem, if malloc() should fail, print a descriptive error and
exit.
A lot better than just dereferencing a NULL pointer and crashing.
This fixes coverity bug #398
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
---
scripts/kallsyms.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletion(-)
--- linux-2.6.16-rc5-git12-orig/scripts/kallsyms.c 2006-01-03 04:21:10.000000000 +0100
+++ linux-2.6.16-rc5-git12/scripts/kallsyms.c 2006-03-09 22:41:17.000000000 +0100
@@ -272,7 +272,12 @@ static void write_src(void)
/* table of offset markers, that give the offset in the compressed stream
* every 256 symbols */
- markers = (unsigned int *) malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
+ markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
+ if (!markers) {
+ fprintf(stderr, "kallsyms failure: "
+ "unable to allocate required memory\n");
+ exit(EXIT_FAILURE);
+ }
output_label("kallsyms_names");
off = 0;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-03-09 21:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-09 21:48 [PATCH] fix unlikely NULL pointer deref in kallsyms Jesper Juhl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome