Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patchelf --add-needed fails on Android4.1。 #72

Open
jluysf opened this issue Jan 14, 2016 · 0 comments
Open

Patchelf --add-needed fails on Android4.1。 #72

jluysf opened this issue Jan 14, 2016 · 0 comments

Comments

@jluysf
Copy link

jluysf commented Jan 14, 2016

Modified program header is stored at the end of elf files. But, linker of Android4.1 read program header at the first PAGE in elf.

code of linker~~~~~~~~:

static soinfo *
load_library(const char *name)
{
...

if ((cnt = read(fd, &__header[0], PAGE_SIZE)) < 0) {
    DL_ERR("read() failed!");
    goto fail;
}

...

if (load_segments(fd, &__header[0], si) < 0) {
    goto fail;
}

...

}

static int
load_segments(int fd, void *header, soinfo *si)
{
Elf32_Ehdr *ehdr = (Elf32_Ehdr *)header;
Elf32_Phdr *phdr = (Elf32_Phdr *)((unsigned char *)header + ehdr->e_phoff);

...

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant