Skip to content

Commit c30b12b

Browse files
committedApr 10, 2017
glibc: fix i686 crashes via an upstream patch
Fixes #23177.
1 parent a05959e commit c30b12b

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
 

‎pkgs/development/libraries/glibc/common.nix

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ stdenv.mkDerivation ({
4848
"/bin:/usr/bin", which is inappropriate on NixOS machines. This
4949
patch extends the search path by "/run/current-system/sw/bin". */
5050
./fix_path_attribute_in_getconf.patch
51+
52+
./fix-i686-memchr.patch
5153
];
5254

5355
postPatch =
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Fix i686 memchr overflow calculation (BZ#21182)
2+
3+
https://sourceware.org/git/?p=glibc.git;a=commit;h=3abeeec5f46ff03
4+
diff --git a/sysdeps/i386/i686/multiarch/memchr-sse2.S b/sysdeps/i386/i686/multiarch/memchr-sse2.S
5+
index 910679c..e41f324 100644
6+
--- a/sysdeps/i386/i686/multiarch/memchr-sse2.S
7+
+++ b/sysdeps/i386/i686/multiarch/memchr-sse2.S
8+
@@ -117,7 +117,6 @@ L(crosscache):
9+
10+
# ifndef USE_AS_RAWMEMCHR
11+
jnz L(match_case2_prolog1)
12+
- lea -16(%edx), %edx
13+
/* Calculate the last acceptable address and check for possible
14+
addition overflow by using satured math:
15+
edx = ecx + edx
16+
@@ -125,6 +124,7 @@ L(crosscache):
17+
add %ecx, %edx
18+
sbb %eax, %eax
19+
or %eax, %edx
20+
+ sub $16, %edx
21+
jbe L(return_null)
22+
lea 16(%edi), %edi
23+
# else

0 commit comments

Comments
 (0)
Please sign in to comment.