linux/lib/xz
Lasse Collin 58b4e0c075 lib/xz: Validate the value before assigning it to an enum variable
[ Upstream commit 4f8d7abaa413c34da9d751289849dbfb7c977d05 ]

This might matter, for example, if the underlying type of enum xz_check
was a signed char. In such a case the validation wouldn't have caught an
unsupported header. I don't know if this problem can occur in the kernel
on any arch but it's still good to fix it because some people might copy
the XZ code to their own projects from Linux instead of the upstream
XZ Embedded repository.

This change may increase the code size by a few bytes. An alternative
would have been to use an unsigned int instead of enum xz_check but
using an enumeration looks cleaner.

Link: https://lore.kernel.org/r/20211010213145.17462-3-xiang@kernel.org
Signed-off-by: Lasse Collin <lasse.collin@tukaani.org>
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2021-11-17 09:48:31 +01:00
..
Kconfig treewide: Add SPDX license identifier - Makefile/Kconfig 2019-05-21 10:50:46 +02:00
Makefile treewide: Add SPDX license identifier - Makefile/Kconfig 2019-05-21 10:50:46 +02:00
xz_crc32.c lib/xz: Put CRC32_POLY_LE in xz_private.h 2018-10-02 08:44:59 +10:00
xz_dec_bcj.c XZ: Fix incorrect XZ_BUF_ERROR 2011-09-21 13:39:59 -07:00
xz_dec_lzma2.c lib/xz: Avoid overlapping memcpy() with invalid input with in-place decompression 2021-11-17 09:48:31 +01:00
xz_dec_stream.c lib/xz: Validate the value before assigning it to an enum variable 2021-11-17 09:48:31 +01:00
xz_dec_syms.c decompressors: add XZ decompressor module 2011-01-13 08:03:24 -08:00
xz_dec_test.c decompressors: add XZ decompressor module 2011-01-13 08:03:24 -08:00
xz_lzma2.h decompressors: add XZ decompressor module 2011-01-13 08:03:24 -08:00
xz_private.h lib/xz: Put CRC32_POLY_LE in xz_private.h 2018-10-02 08:44:59 +10:00
xz_stream.h decompressors: add XZ decompressor module 2011-01-13 08:03:24 -08:00