public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] give elf_check_arch() a chance for checking endian mismatch
@ 2008-03-19 19:03 Roy Lee
  2008-03-23  5:06 ` Valdis.Kletnieks
  0 siblings, 1 reply; 3+ messages in thread
From: Roy Lee @ 2008-03-19 19:03 UTC (permalink / raw)
  To: linux-kernel

I'd like to warn for endianess mismatch, or unsupported feature( hardware
float point support) when loading an ELF file.
The problem is that if the endianess mismatches happens, the logic inside
the elf_check_arch() won't have a chance to be executed.
Because the "elf_ex.e_type" would be misinterpreted and the elf_check_arch()
will be skipped.
This patch should give elf_check_arch() more chance to do some machine
dependent checking.

Roy

diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
index 672a3b9..2ffbe49 100644
--- a/fs/binfmt_elf.c
+++ b/fs/binfmt_elf.c
@@ -567,10 +567,10 @@ static int load_elf_binary(struct linux_binprm *bprm,
struct pt_regs *regs)
        if (memcmp(loc->elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
                goto out;

-       if (loc->elf_ex.e_type != ET_EXEC && loc->elf_ex.e_type != ET_DYN)
-               goto out;
        if (!elf_check_arch(&loc->elf_ex))
                goto out;
+       if (loc->elf_ex.e_type != ET_EXEC && loc->elf_ex.e_type != ET_DYN)
+               goto out;
        if (!bprm->file->f_op||!bprm->file->f_op->mmap)
                goto out;



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-03-23  9:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-19 19:03 [PATCH] give elf_check_arch() a chance for checking endian mismatch Roy Lee
2008-03-23  5:06 ` Valdis.Kletnieks
2008-03-23  9:41   ` Roy Lee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox