mirror of
https://sourceware.org/git/glibc.git
synced 2025-06-15 06:41:47 +03:00
Fix i686 memchr for large input sizes
Similar to BZ#19387 and BZ#20971, both i686 memchr optimized assembly implementations (memchr-sse2-bsf and memchr-sse2) do not handle the size overflow correctly. It is shown by the new tests added by commit3daef2c8ee
, where both implementation fails with size as SIZE_MAX. This patch uses a similar strategy used on3daef2c8ee
, where saturared math is used for overflow case. Checked on i686-linux-gnu. [BZ #21014] * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S (MEMCHR): Avoid overflow in pointer addition. * sysdeps/i386/i686/multiarch/memchr-sse2.S (MEMCHR): Likewise.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2017-01-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||||
|
|
||||||
|
[BZ #21014]
|
||||||
|
* sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S (MEMCHR): Avoid overflow
|
||||||
|
in pointer addition.
|
||||||
|
* sysdeps/i386/i686/multiarch/memchr-sse2.S (MEMCHR): Likewise.
|
||||||
|
|
||||||
2017-01-02 Torvald Riegel <triegel@redhat.com>
|
2017-01-02 Torvald Riegel <triegel@redhat.com>
|
||||||
|
|
||||||
* sysdeps/sparc/nptl/bits/pthreadtypes.h (pthread_cond_t): Adapt to
|
* sysdeps/sparc/nptl/bits/pthreadtypes.h (pthread_cond_t): Adapt to
|
||||||
|
@ -149,9 +149,15 @@ L(crosscache):
|
|||||||
.p2align 4
|
.p2align 4
|
||||||
L(unaligned_no_match):
|
L(unaligned_no_match):
|
||||||
# ifndef USE_AS_RAWMEMCHR
|
# ifndef USE_AS_RAWMEMCHR
|
||||||
sub $16, %edx
|
/* Calculate the last acceptable address and check for possible
|
||||||
|
addition overflow by using satured math:
|
||||||
|
edx = ecx + edx
|
||||||
|
edx |= -(edx < ecx) */
|
||||||
add %ecx, %edx
|
add %ecx, %edx
|
||||||
jle L(return_null)
|
sbb %eax, %eax
|
||||||
|
or %eax, %edx
|
||||||
|
sub $16, %edx
|
||||||
|
jbe L(return_null)
|
||||||
add $16, %edi
|
add $16, %edi
|
||||||
# else
|
# else
|
||||||
add $16, %edx
|
add $16, %edx
|
||||||
|
@ -118,8 +118,14 @@ L(crosscache):
|
|||||||
# ifndef USE_AS_RAWMEMCHR
|
# ifndef USE_AS_RAWMEMCHR
|
||||||
jnz L(match_case2_prolog1)
|
jnz L(match_case2_prolog1)
|
||||||
lea -16(%edx), %edx
|
lea -16(%edx), %edx
|
||||||
|
/* Calculate the last acceptable address and check for possible
|
||||||
|
addition overflow by using satured math:
|
||||||
|
edx = ecx + edx
|
||||||
|
edx |= -(edx < ecx) */
|
||||||
add %ecx, %edx
|
add %ecx, %edx
|
||||||
jle L(return_null)
|
sbb %eax, %eax
|
||||||
|
or %eax, %edx
|
||||||
|
jbe L(return_null)
|
||||||
lea 16(%edi), %edi
|
lea 16(%edi), %edi
|
||||||
# else
|
# else
|
||||||
jnz L(match_case1_prolog1)
|
jnz L(match_case1_prolog1)
|
||||||
|
Reference in New Issue
Block a user