summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2017-01-13 13:30:54 +0100
committerNico Huber <nico.h@gmx.de>2017-03-20 20:05:09 +0100
commitdce629b2f8260010a06ea5a9bd31f5c65f483f3d (patch)
treee115338fc2b00d1c9820414afd33e2bb8608fd34 /util
parent1dfc0a64d42cc9052f5140cfa481ec0380971eef (diff)
downloadcoreboot-dce629b2f8260010a06ea5a9bd31f5c65f483f3d.tar.gz
coreboot-dce629b2f8260010a06ea5a9bd31f5c65f483f3d.tar.bz2
coreboot-dce629b2f8260010a06ea5a9bd31f5c65f483f3d.zip
util/cbfstool: avoid memleaks and off-by-ones
Change-Id: Iac136a5dfe76f21aa7c0d5ee4e974e50b955403b Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Found-by: scan-build 3.8 Reviewed-on: https://review.coreboot.org/18134 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'util')
-rw-r--r--util/cbfstool/cbfs_image.c15
-rw-r--r--util/cbfstool/cbfscomptool.c5
-rw-r--r--util/cbfstool/fmd.c2
3 files changed, 21 insertions, 1 deletions
diff --git a/util/cbfstool/cbfs_image.c b/util/cbfstool/cbfs_image.c
index e530224fac4d..1f4b49a48d69 100644
--- a/util/cbfstool/cbfs_image.c
+++ b/util/cbfstool/cbfs_image.c
@@ -1150,13 +1150,22 @@ static int cbfs_payload_make_elf(struct buffer *buff, uint32_t arch)
segs[i].len);
} else if (segs[i].type == PAYLOAD_SEGMENT_ENTRY) {
break;
+ } else {
+ ERROR("unknown ELF segment type\n");
+ goto out;
}
+ if (!name) {
+ ERROR("out of memory\n");
+ goto out;
+ }
if (elf_writer_add_section(ew, &shdr, &tbuff, name)) {
ERROR("Unable to add ELF section: %s\n", name);
+ free(name);
goto out;
}
+ free(name);
if (empty_sz != 0) {
struct buffer b;
@@ -1168,10 +1177,16 @@ static int cbfs_payload_make_elf(struct buffer *buff, uint32_t arch)
shdr.sh_addr = segs[i].load_addr + segs[i].len;
shdr.sh_size = empty_sz;
name = strdup(".empty");
+ if (!name) {
+ ERROR("out of memory\n");
+ goto out;
+ }
if (elf_writer_add_section(ew, &shdr, &b, name)) {
ERROR("Unable to add ELF section: %s\n", name);
+ free(name);
goto out;
}
+ free(name);
}
}
diff --git a/util/cbfstool/cbfscomptool.c b/util/cbfstool/cbfscomptool.c
index 9e804860a9af..3430809e0df5 100644
--- a/util/cbfstool/cbfscomptool.c
+++ b/util/cbfstool/cbfscomptool.c
@@ -49,6 +49,7 @@ int benchmark()
}
char *compressed_data = malloc(bufsize);
if (!compressed_data) {
+ free(data);
fprintf(stderr, "out of memory\n");
return 1;
}
@@ -64,6 +65,8 @@ int benchmark()
comp_func_ptr comp = compression_function(algo->type);
if (comp == NULL) {
printf("no handler associated with algorithm\n");
+ free(data);
+ free(compressed_data);
return 1;
}
@@ -80,6 +83,8 @@ int benchmark()
bufsize, outsize,
t_e.tv_sec - t_s.tv_sec);
}
+ free(data);
+ free(compressed_data);
return 0;
}
diff --git a/util/cbfstool/fmd.c b/util/cbfstool/fmd.c
index afd87015f870..7a289d774312 100644
--- a/util/cbfstool/fmd.c
+++ b/util/cbfstool/fmd.c
@@ -289,7 +289,7 @@ static void print_with_prefix(const struct flashmap_descriptor *tree,
if (tree->list_len) {
puts(":");
- char child_prefix[strlen(pre) + 1];
+ char child_prefix[strlen(pre) + 2];
strcpy(child_prefix, pre);
strcat(child_prefix, "\t");
fmd_foreach_child(each, tree)