kernel_samsung_a53x/arch/arm/lib
Kursad Oney c66caabcba ARM: 9321/1: memset: cast the constant byte to unsigned char
[ Upstream commit c0e824661f443b8cab3897006c1bbc69fd0e7bc4 ]

memset() description in ISO/IEC 9899:1999 (and elsewhere) says:

	The memset function copies the value of c (converted to an
	unsigned char) into each of the first n characters of the
	object pointed to by s.

The kernel's arm32 memset does not cast c to unsigned char. This results
in the following code to produce erroneous output:

	char a[128];
	memset(a, -128, sizeof(a));

This is because gcc will generally emit the following code before
it calls memset() :

	mov   r0, r7
	mvn   r1, #127        ; 0x7f
	bl    00000000 <memset>

r1 ends up with 0xffffff80 before being used by memset() and the
'a' array will have -128 once in every four bytes while the other
bytes will be set incorrectly to -1 like this (printing the first
8 bytes) :

	test_module: -128 -1 -1 -1
	test_module: -1 -1 -1 -128

The change here is to 'and' r1 with 255 before it is used.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-11-18 11:43:03 +01:00
..
ashldi3.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ashrdi3.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
backtrace-clang.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
backtrace.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitops.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bswapsdi2.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
call_with_stack.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
changebit.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clear_user.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clearbit.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
copy_from_user.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
copy_page.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
copy_template.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
copy_to_user.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
csumipv6.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
csumpartial.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
csumpartialcopy.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
csumpartialcopygeneric.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
csumpartialcopyuser.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
delay-loop.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
delay.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
div64.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
findbit.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
getuser.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-readsb.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-readsl.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-readsw-armv3.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-readsw-armv4.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-writesb.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-writesl.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-writesw-armv3.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-writesw-armv4.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lib1funcs.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lshrdi3.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Makefile Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memchr.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memcpy.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memmove.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memset.S ARM: 9321/1: memset: cast the constant byte to unsigned char 2024-11-18 11:43:03 +01:00
muldi3.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
putuser.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
setbit.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
strchr.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
strrchr.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
testchangebit.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
testclearbit.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
testsetbit.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uaccess_with_memcpy.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ucmpdi2.S Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xor-neon.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00