]> code.ossystems Code Review - openembedded-core.git/commit
prelink: use ehdr.e_shstrndx as index rather than ehdr.e_shnum
authorRobert Yang <liezhi.yang@windriver.com>
Thu, 16 Aug 2018 02:25:46 +0000 (10:25 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 16 Aug 2018 09:44:07 +0000 (10:44 +0100)
commitb7c291ee6532cba845ee6bfbbaa21076a2b2cbe5
tree3c1f19e7128d4da4ab40f77a3a6cf9196b664439
parent83cb0938b90bab9ba727f883b8955b0b40d49a01
prelink: use ehdr.e_shstrndx as index rather than ehdr.e_shnum

[YOCTO #12791]

According to struct elf32_hd, the e_shnum is section header number, and the
index is e_shstrndx, not e_shnum.

This can fix segmention fault when handle libqb.so.0.18.2 from libqb_1.0.3.
It fails to handle libqb.so.0.18.2 and get errors:
Symbol section index outside of section numbers

Then segmentation fault, this is because the e_shnum is 34, while e_shstrndx is
27 (it would be 33 when no errors), I've checked several elf files to confirm
that the ones after e_shstrndx is NULL, so use e_shstrndx should be correct.

Fixed:
MACHINE="qemux86-64"
IMAGE_INSTALL_append = " libqb" #libqp is from meta-openembedded
$ bitbake core-image-minimal
Segmention fault

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
meta/recipes-devtools/prelink/prelink/0001-src-dso.c-use-ehdr.e_shstrndx-as-index.patch [new file with mode: 0644]
meta/recipes-devtools/prelink/prelink_git.bb