lzma: Port size-checking ulzman() version to coreboot
We've had a second version of ulzma() that would check the input and output buffer sizes in libpayload for a while now. Since it's generally never a bad idea to double-check for overruns, let's port it to coreboot and use it where applicable. (This requires a small fix in the four byte at a time read optimization we only have in coreboot, since it made the stream counter hit the end a little earlier than the algorithm liked and could trigger an assertion.) BRANCH=None BUG=None TEST=Booted Oak, Jerry and Falco. Change-Id: Id566b31dfa896ea1b991badf5a6ad9d075aef987 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/13637 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
d189987fc9
commit
a25b5d257d
|
@ -20,8 +20,9 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
||||||
/* Defined in src/lib/lzma.c */
|
/* Defined in src/lib/lzma.c. Returns decompressed size or 0 on error. */
|
||||||
unsigned long ulzma(unsigned char *src, unsigned char *dst);
|
size_t ulzma(const void *src, void *dst);
|
||||||
|
size_t ulzman(const void *src, size_t srcn, void *dst, size_t dstn);
|
||||||
|
|
||||||
/* Defined in src/lib/ramtest.c */
|
/* Defined in src/lib/ramtest.c */
|
||||||
void ram_check(unsigned long start, unsigned long stop);
|
void ram_check(unsigned long start, unsigned long stop);
|
||||||
|
|
|
@ -16,9 +16,10 @@
|
||||||
|
|
||||||
#include "lzmadecode.h"
|
#include "lzmadecode.h"
|
||||||
|
|
||||||
unsigned long ulzma(unsigned char * src, unsigned char * dst)
|
size_t ulzman(const void *src, size_t srcn, void *dst, size_t dstn)
|
||||||
{
|
{
|
||||||
unsigned char properties[LZMA_PROPERTIES_SIZE];
|
unsigned char properties[LZMA_PROPERTIES_SIZE];
|
||||||
|
const int data_offset = LZMA_PROPERTIES_SIZE + 8;
|
||||||
UInt32 outSize;
|
UInt32 outSize;
|
||||||
SizeT inProcessed;
|
SizeT inProcessed;
|
||||||
SizeT outProcessed;
|
SizeT outProcessed;
|
||||||
|
@ -26,7 +27,7 @@ unsigned long ulzma(unsigned char * src, unsigned char * dst)
|
||||||
CLzmaDecoderState state;
|
CLzmaDecoderState state;
|
||||||
SizeT mallocneeds;
|
SizeT mallocneeds;
|
||||||
MAYBE_STATIC unsigned char scratchpad[15980];
|
MAYBE_STATIC unsigned char scratchpad[15980];
|
||||||
unsigned char *cp;
|
const unsigned char *cp;
|
||||||
|
|
||||||
/* Note: these timestamps aren't useful for memory-mapped media (x86) */
|
/* Note: these timestamps aren't useful for memory-mapped media (x86) */
|
||||||
timestamp_add_now(TS_START_ULZMA);
|
timestamp_add_now(TS_START_ULZMA);
|
||||||
|
@ -37,7 +38,8 @@ unsigned long ulzma(unsigned char * src, unsigned char * dst)
|
||||||
* byte and re-construct. */
|
* byte and re-construct. */
|
||||||
cp = src + LZMA_PROPERTIES_SIZE;
|
cp = src + LZMA_PROPERTIES_SIZE;
|
||||||
outSize = cp[3] << 24 | cp[2] << 16 | cp[1] << 8 | cp[0];
|
outSize = cp[3] << 24 | cp[2] << 16 | cp[1] << 8 | cp[0];
|
||||||
if (LzmaDecodeProperties(&state.Properties, properties, LZMA_PROPERTIES_SIZE) != LZMA_RESULT_OK) {
|
if (LzmaDecodeProperties(&state.Properties, properties,
|
||||||
|
LZMA_PROPERTIES_SIZE) != LZMA_RESULT_OK) {
|
||||||
printk(BIOS_WARNING, "lzma: Incorrect stream properties.\n");
|
printk(BIOS_WARNING, "lzma: Incorrect stream properties.\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -47,8 +49,8 @@ unsigned long ulzma(unsigned char * src, unsigned char * dst)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
state.Probs = (CProb *)scratchpad;
|
state.Probs = (CProb *)scratchpad;
|
||||||
res = LzmaDecode(&state, src + LZMA_PROPERTIES_SIZE + 8, (SizeT)0xffffffff, &inProcessed,
|
res = LzmaDecode(&state, src + data_offset, srcn - data_offset,
|
||||||
dst, outSize, &outProcessed);
|
&inProcessed, dst, outSize, &outProcessed);
|
||||||
if (res != 0) {
|
if (res != 0) {
|
||||||
printk(BIOS_WARNING, "lzma: Decoding error = %d\n", res);
|
printk(BIOS_WARNING, "lzma: Decoding error = %d\n", res);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -56,3 +58,8 @@ unsigned long ulzma(unsigned char * src, unsigned char * dst)
|
||||||
timestamp_add_now(TS_END_ULZMA);
|
timestamp_add_now(TS_END_ULZMA);
|
||||||
return outProcessed;
|
return outProcessed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
size_t ulzma(const void *src, void *dst)
|
||||||
|
{
|
||||||
|
return ulzman(src, ~(size_t)0, dst, ~(size_t)0);
|
||||||
|
}
|
||||||
|
|
|
@ -29,9 +29,12 @@
|
||||||
#define kBitModelTotal (1 << kNumBitModelTotalBits)
|
#define kBitModelTotal (1 << kNumBitModelTotalBits)
|
||||||
#define kNumMoveBits 5
|
#define kNumMoveBits 5
|
||||||
|
|
||||||
/* Use 32-bit reads whenever possible to avoid bad flash performance. */
|
/* Use 32-bit reads whenever possible to avoid bad flash performance. Fall back
|
||||||
|
* to byte reads for last 4 bytes since RC_TEST returns an error when BufferLim
|
||||||
|
* is *reached* (not surpassed!), meaning we can't allow that to happen while
|
||||||
|
* there are still bytes to decode from the algorithm's point of view. */
|
||||||
#define RC_READ_BYTE (look_ahead_ptr < 4 ? look_ahead.raw[look_ahead_ptr++] \
|
#define RC_READ_BYTE (look_ahead_ptr < 4 ? look_ahead.raw[look_ahead_ptr++] \
|
||||||
: ((((uintptr_t) Buffer & 3) || ((SizeT) (BufferLim - Buffer) < 4)) ? (*Buffer++) \
|
: ((((uintptr_t) Buffer & 3) || ((SizeT) (BufferLim - Buffer) <= 4)) ? (*Buffer++) \
|
||||||
: ((look_ahead.dw = *(UInt32 *)Buffer), (Buffer += 4), (look_ahead_ptr = 1), look_ahead.raw[0])))
|
: ((look_ahead.dw = *(UInt32 *)Buffer), (Buffer += 4), (look_ahead_ptr = 1), look_ahead.raw[0])))
|
||||||
|
|
||||||
#define RC_INIT2 Code = 0; Range = 0xFFFFFFFF; \
|
#define RC_INIT2 Code = 0; Range = 0xFFFFFFFF; \
|
||||||
|
|
|
@ -295,7 +295,7 @@ int rmodule_stage_load(struct rmod_stage_load *rsl)
|
||||||
if (map == NULL)
|
if (map == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
fsize = ulzma(map, rmod_loc);
|
fsize = ulzman(map, stage.len, rmod_loc, stage.memlen);
|
||||||
|
|
||||||
rdev_munmap(fh, map);
|
rdev_munmap(fh, map);
|
||||||
|
|
||||||
|
|
|
@ -378,12 +378,12 @@ static int load_self_segments(
|
||||||
/* Copy data from the initial buffer */
|
/* Copy data from the initial buffer */
|
||||||
if (ptr->s_filesz) {
|
if (ptr->s_filesz) {
|
||||||
unsigned char *middle, *end;
|
unsigned char *middle, *end;
|
||||||
size_t len;
|
size_t len = ptr->s_filesz;
|
||||||
len = ptr->s_filesz;
|
size_t memsz = ptr->s_memsz;
|
||||||
switch(ptr->compression) {
|
switch(ptr->compression) {
|
||||||
case CBFS_COMPRESS_LZMA: {
|
case CBFS_COMPRESS_LZMA: {
|
||||||
printk(BIOS_DEBUG, "using LZMA\n");
|
printk(BIOS_DEBUG, "using LZMA\n");
|
||||||
len = ulzma(src, dest);
|
len = ulzman(src, len, dest, memsz);
|
||||||
if (!len) /* Decompression Error. */
|
if (!len) /* Decompression Error. */
|
||||||
return 0;
|
return 0;
|
||||||
break;
|
break;
|
||||||
|
@ -397,7 +397,7 @@ static int load_self_segments(
|
||||||
printk(BIOS_INFO, "CBFS: Unknown compression type %d\n", ptr->compression);
|
printk(BIOS_INFO, "CBFS: Unknown compression type %d\n", ptr->compression);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
end = dest + ptr->s_memsz;
|
end = dest + memsz;
|
||||||
middle = dest + len;
|
middle = dest + len;
|
||||||
printk(BIOS_SPEW, "[ 0x%08lx, %08lx, 0x%08lx) <- %08lx\n",
|
printk(BIOS_SPEW, "[ 0x%08lx, %08lx, 0x%08lx) <- %08lx\n",
|
||||||
(unsigned long)dest,
|
(unsigned long)dest,
|
||||||
|
|
Loading…
Reference in New Issue