diff options
Diffstat (limited to 'meta/recipes-devtools/rpm')
-rw-r--r-- | meta/recipes-devtools/rpm/rpm/debugedit-segv.patch | 35 | ||||
-rw-r--r-- | meta/recipes-devtools/rpm/rpm_5.4.9.bb | 3 |
2 files changed, 37 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rpm/rpm/debugedit-segv.patch b/meta/recipes-devtools/rpm/rpm/debugedit-segv.patch new file mode 100644 index 0000000000..bd9169381f --- /dev/null +++ b/meta/recipes-devtools/rpm/rpm/debugedit-segv.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | There are cases, especially on PPC and MIPS, where the data address | ||
2 | returned is 0, but the size is not 0. | ||
3 | |||
4 | It appears to happen when the sections headers are similar to: | ||
5 | |||
6 | [21] .data PROGBITS 000239c0 0139c0 000010 00 WA 0 0 8 | ||
7 | [22] .got PROGBITS 000239d0 0139d0 000014 04 WAX 0 0 4 | ||
8 | [23] .plt NOBITS 000239e4 0139e4 000234 00 WAX 0 0 4 | ||
9 | [24] .bss NOBITS 00023c18 0139e4 0001c8 00 WA 0 0 8 | ||
10 | [25] .comment PROGBITS 00000000 0139e4 000011 01 MS 0 0 1 | ||
11 | [26] .debug_aranges PROGBITS 00000000 0139f8 000d68 00 0 0 8 | ||
12 | |||
13 | Sections 23 and 24 (.plt and .bss) which are NOBITS have a loaded data address | ||
14 | of 0, but a size != 0. | ||
15 | |||
16 | This could be a bug in libelf... | ||
17 | |||
18 | Upstream-status: Pending | ||
19 | |||
20 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> | ||
21 | |||
22 | Index: rpm-5.4.9/tools/debugedit.c | ||
23 | =================================================================== | ||
24 | --- rpm-5.4.9.orig/tools/debugedit.c | ||
25 | +++ rpm-5.4.9/tools/debugedit.c | ||
26 | @@ -1434,7 +1434,8 @@ handle_build_id (DSO *dso, Elf_Data *bui | ||
27 | auto inline void process (const void *data, size_t size) | ||
28 | { | ||
29 | memchunk chunk = { .data = (void *) data, .size = size }; | ||
30 | - hashFunctionContextUpdateMC (&ctx, &chunk); | ||
31 | + if (data != NULL && size != 0) | ||
32 | + hashFunctionContextUpdateMC (&ctx, &chunk); | ||
33 | } | ||
34 | union | ||
35 | { | ||
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.9.bb b/meta/recipes-devtools/rpm/rpm_5.4.9.bb index ba24111bf7..e9c8f23c18 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.9.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.9.bb | |||
@@ -84,7 +84,8 @@ SRC_URI = "http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.9-0.20120508.src.rpm;ex | |||
84 | file://python-rpm-rpmsense.patch \ | 84 | file://python-rpm-rpmsense.patch \ |
85 | file://rpm-reloc-macros.patch \ | 85 | file://rpm-reloc-macros.patch \ |
86 | file://rpm-platform2.patch \ | 86 | file://rpm-platform2.patch \ |
87 | file://rpm-remove-sykcparse-decl.patch \ | 87 | file://rpm-remove-sykcparse-decl.patch \ |
88 | file://debugedit-segv.patch \ | ||
88 | " | 89 | " |
89 | 90 | ||
90 | # Uncomment the following line to enable platform score debugging | 91 | # Uncomment the following line to enable platform score debugging |