diff options
author | Qing He <qing.he@intel.com> | 2010-09-25 15:19:45 +0800 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-27 08:59:16 -0700 |
commit | 0f55d28a4d1f425343eb5aeae3eb7ffb3efd266a (patch) | |
tree | 50f89281614c8266ce092c1c6fb1865b4bf90098 /meta/recipes-core/eglibc | |
parent | 5c8fad6544421e238da2ff33f5bbf1ed68fbc8be (diff) | |
download | poky-0f55d28a4d1f425343eb5aeae3eb7ffb3efd266a.tar.gz |
glibc & eglibc: fix mips DT_MIPS_RLD_MAP checking
On mips target, binutils currently sets DT_MIPS_RLD_MAP to 0 in dynamic
section if a --version-script sets _RLD_MAP to local. This is apparently
a binutils bug, but libc shouldn't segfault in this case.
Add sanity check on the entry to avoid segfault, fixes [BUGID #287].
Signed-off-by: Qing He <qing.he@intel.com>
Diffstat (limited to 'meta/recipes-core/eglibc')
-rw-r--r-- | meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch | 21 | ||||
-rw-r--r-- | meta/recipes-core/eglibc/eglibc_2.12.bb | 3 |
2 files changed, 23 insertions, 1 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch b/meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch new file mode 100644 index 0000000000..ed08d7e301 --- /dev/null +++ b/meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch | |||
@@ -0,0 +1,21 @@ | |||
1 | On mips target, binutils currently sets DT_MIPS_RLD_MAP to 0 in dynamic | ||
2 | section if a --version-script sets _RLD_MAP to local. This is apparently | ||
3 | a binutils bug, but libc shouldn't segfault in this case. | ||
4 | |||
5 | see also: http://sourceware.org/bugilla/show_bug.cgi?id=11615 | ||
6 | |||
7 | 9/19/2010 - added by Qing He <qing.he@intel.com> | ||
8 | --- | ||
9 | diff -ru glibc-2.10.1.orig/ports/sysdeps/mips/dl-machine.h glibc-2.10.1/ports/sysdeps/mips/dl-machine.h | ||
10 | --- glibc-2.10.1.orig/ports/sysdeps/mips/dl-machine.h 2009-05-16 16:36:20.000000000 +0800 | ||
11 | +++ glibc-2.10.1/ports/sysdeps/mips/dl-machine.h 2010-09-19 09:11:53.000000000 +0800 | ||
12 | @@ -70,7 +70,8 @@ | ||
13 | /* If there is a DT_MIPS_RLD_MAP entry in the dynamic section, fill it in | ||
14 | with the run-time address of the r_debug structure */ | ||
15 | #define ELF_MACHINE_DEBUG_SETUP(l,r) \ | ||
16 | -do { if ((l)->l_info[DT_MIPS (RLD_MAP)]) \ | ||
17 | +do { if ((l)->l_info[DT_MIPS (RLD_MAP)] && \ | ||
18 | + (l)->l_info[DT_MIPS (RLD_MAP)]->d_un.d_ptr) \ | ||
19 | *(ElfW(Addr) *)((l)->l_info[DT_MIPS (RLD_MAP)]->d_un.d_ptr) = \ | ||
20 | (ElfW(Addr)) (r); \ | ||
21 | } while (0) | ||
diff --git a/meta/recipes-core/eglibc/eglibc_2.12.bb b/meta/recipes-core/eglibc/eglibc_2.12.bb index 1b633a7d47..7917fbdd7f 100644 --- a/meta/recipes-core/eglibc/eglibc_2.12.bb +++ b/meta/recipes-core/eglibc/eglibc_2.12.bb | |||
@@ -2,13 +2,14 @@ require eglibc.inc | |||
2 | 2 | ||
3 | DEPENDS += "gperf-native" | 3 | DEPENDS += "gperf-native" |
4 | FILESPATHPKG =. "eglibc-svn:" | 4 | FILESPATHPKG =. "eglibc-svn:" |
5 | PR = "r7" | 5 | PR = "r8" |
6 | SRCREV="10809" | 6 | SRCREV="10809" |
7 | EGLIBC_BRANCH="eglibc-2_12" | 7 | EGLIBC_BRANCH="eglibc-2_12" |
8 | SRC_URI = "svn://www.eglibc.org/svn/branches/;module=${EGLIBC_BRANCH};proto=http \ | 8 | SRC_URI = "svn://www.eglibc.org/svn/branches/;module=${EGLIBC_BRANCH};proto=http \ |
9 | file://eglibc-svn-arm-lowlevellock-include-tls.patch \ | 9 | file://eglibc-svn-arm-lowlevellock-include-tls.patch \ |
10 | file://IO-acquire-lock-fix.patch \ | 10 | file://IO-acquire-lock-fix.patch \ |
11 | file://shorten-build-commands.patch \ | 11 | file://shorten-build-commands.patch \ |
12 | file://mips-rld-map-check.patch \ | ||
12 | file://etc/ld.so.conf \ | 13 | file://etc/ld.so.conf \ |
13 | file://generate-supported.mk" | 14 | file://generate-supported.mk" |
14 | S = "${WORKDIR}/${EGLIBC_BRANCH}/libc" | 15 | S = "${WORKDIR}/${EGLIBC_BRANCH}/libc" |