summaryrefslogtreecommitdiffstats
path: root/util/cbfstool/cbfs-mkpayload.c
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2018-07-19 07:36:38 +0800
committerPatrick Georgi <pgeorgi@google.com>2018-07-19 07:25:37 +0000
commita302e7f46b582a163758bc9d53f8801e7cdb2443 (patch)
tree91cded63521f84d32518993cad434920ed4109d9 /util/cbfstool/cbfs-mkpayload.c
parent202e7d4f3c50bfac53d06eaf0b0b1247f4c95be8 (diff)
downloadcoreboot-a302e7f46b582a163758bc9d53f8801e7cdb2443.tar.gz
coreboot-a302e7f46b582a163758bc9d53f8801e7cdb2443.tar.bz2
coreboot-a302e7f46b582a163758bc9d53f8801e7cdb2443.zip
cbfstool/add-payload: initialize segment headers to 0
Some types of payload segment headers do not use all fields. If these unused fields are not initialized to 0, they can cause problems in other software which consumes payloads. For example, PAYLOAD_SEGMENT_ENTRY does not use the compression field. If it happens to be a non-existent compression type, the 'cbfstool extract' command fails. BUG=https://ticket.coreboot.org/issues/170 TEST=cbfstool tianocore.cbfs create -s 2097152 -m x86 cbfstool tianocore.cbfs add-payload -f UEFIPAYLOAD.fd -n payload -c lzma -v xxd tianocore.cbfs | head # visually inspect compression field for 0 Change-Id: I359ed117ab4154438bac7172aebf608f7a022552 Signed-off-by: kitching@google.com Reviewed-on: https://review.coreboot.org/27540 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/cbfstool/cbfs-mkpayload.c')
-rw-r--r--util/cbfstool/cbfs-mkpayload.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/cbfstool/cbfs-mkpayload.c b/util/cbfstool/cbfs-mkpayload.c
index e26c53010699..8464a2bbb96a 100644
--- a/util/cbfstool/cbfs-mkpayload.c
+++ b/util/cbfstool/cbfs-mkpayload.c
@@ -130,7 +130,7 @@ int parse_elf_to_payload(const struct buffer *input, struct buffer *output,
segments++;
}
- /* allocate the segment header array */
+ /* Allocate and initialize the segment header array */
segs = calloc(segments, sizeof(*segs));
if (segs == NULL) {
ret = -1;
@@ -250,7 +250,7 @@ int parse_flat_binary_to_payload(const struct buffer *input,
enum comp_algo algo)
{
comp_func_ptr compress;
- struct cbfs_payload_segment segs[2];
+ struct cbfs_payload_segment segs[2] = {0};
int doffset, len = 0;
compress = compression_function(algo);
@@ -295,7 +295,7 @@ int parse_fv_to_payload(const struct buffer *input, struct buffer *output,
enum comp_algo algo)
{
comp_func_ptr compress;
- struct cbfs_payload_segment segs[2];
+ struct cbfs_payload_segment segs[2] = {0};
int doffset, len = 0;
firmware_volume_header_t *fv;
ffs_file_header_t *fh;