]> git.baikalelectronics.ru Git - kernel.git/commit
x86/vdso: Error out in vdso2c if DT_RELA is present
authorAndy Lutomirski <luto@amacapital.net>
Tue, 24 Jun 2014 20:46:53 +0000 (13:46 -0700)
committerH. Peter Anvin <hpa@linux.intel.com>
Tue, 24 Jun 2014 20:53:57 +0000 (13:53 -0700)
commit9893e81bfcc3b81ab22b4255bbb9480694a6a8a8
tree0d5e84135369f337c8034e39599c2bb5fe52b34a
parenta967eb04285f8ed1f2e783e74ea9965ce6488e63
x86/vdso: Error out in vdso2c if DT_RELA is present

vdso2c was checking for various types of relocations to detect when
the vdso had undefined symbols or was otherwise dependent on
relocation at load time.  Undefined symbols in the vdso would fail if
accessed at runtime, and certain implementation errors (e.g. branch
profiling or incorrect symbol visibilities) could result in data
access through the GOT that requires relocations.  This could be
as simple as:

    extern char foo;
    return foo;

Without some kind of visibility control, the compiler would assume
that foo could be interposed at load time and would generate a
relocation.

x86-64 and x32 (as opposed to i386) use explicit-addent (RELA) instead
of implicit-addent (REL) relocations for data access, and vdso2c
forgot to detect those.

Whether these bad relocations would actually fail at runtime depends
on what the linker sticks in the unrelocated references.  Nonetheless,
these relocations have no business existing in the vDSO and should be
fixed rather than silently ignored.

This error could trigger on some configurations due to branch
profiling.  The previous patch fixed that.

Signed-off-by: Andy Lutomirski <luto@amacapital.net>
Link: http://lkml.kernel.org/r/74ef0c00b4d2a3b573e00a4113874e62f772e348.1403642755.git.luto@amacapital.net
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
arch/x86/vdso/vdso2c.h