Patch "x86/vdso: Pass --eh-frame-hdr to the linker" has been added to the 4.14-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    x86/vdso: Pass --eh-frame-hdr to the linker

to the 4.14-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     x86-vdso-pass-eh-frame-hdr-to-the-linker.patch
and it can be found in the queue-4.14 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 7793d012407511bdf67ca79989766f3825f21ec4
Author: Alistair Strachan <astrachan@xxxxxxxxxx>
Date:   Fri Dec 14 14:36:37 2018 -0800

    x86/vdso: Pass --eh-frame-hdr to the linker
    
    [ Upstream commit cd01544a268ad8ee5b1dfe42c4393f1095f86879 ]
    
    Commit
    
      379d98ddf413 ("x86: vdso: Use $LD instead of $CC to link")
    
    accidentally broke unwinding from userspace, because ld would strip the
    .eh_frame sections when linking.
    
    Originally, the compiler would implicitly add --eh-frame-hdr when
    invoking the linker, but when this Makefile was converted from invoking
    ld via the compiler, to invoking it directly (like vmlinux does),
    the flag was missed. (The EH_FRAME section is important for the VDSO
    shared libraries, but not for vmlinux.)
    
    Fix the problem by explicitly specifying --eh-frame-hdr, which restores
    parity with the old method.
    
    See relevant bug reports for additional info:
    
      https://bugzilla.kernel.org/show_bug.cgi?id=201741
      https://bugzilla.redhat.com/show_bug.cgi?id=1659295
    
    Fixes: 379d98ddf413 ("x86: vdso: Use $LD instead of $CC to link")
    Reported-by: Florian Weimer <fweimer@xxxxxxxxxx>
    Reported-by: Carlos O'Donell <carlos@xxxxxxxxxx>
    Reported-by: "H. J. Lu" <hjl.tools@xxxxxxxxx>
    Signed-off-by: Alistair Strachan <astrachan@xxxxxxxxxx>
    Signed-off-by: Borislav Petkov <bp@xxxxxxx>
    Tested-by: Laura Abbott <labbott@xxxxxxxxxx>
    Cc: Andy Lutomirski <luto@xxxxxxxxxx>
    Cc: Carlos O'Donell <carlos@xxxxxxxxxx>
    Cc: "H. Peter Anvin" <hpa@xxxxxxxxx>
    Cc: Ingo Molnar <mingo@xxxxxxxxxx>
    Cc: Joel Fernandes <joel@xxxxxxxxxxxxxxxxx>
    Cc: kernel-team@xxxxxxxxxxx
    Cc: Laura Abbott <labbott@xxxxxxxxxx>
    Cc: stable <stable@xxxxxxxxxxxxxxx>
    Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
    Cc: X86 ML <x86@xxxxxxxxxx>
    Link: https://lkml.kernel.org/r/20181214223637.35954-1-astrachan@xxxxxxxxxx
    Signed-off-by: Sasha Levin <alexander.levin@xxxxxxxxxxxxx>

diff --git a/arch/x86/entry/vdso/Makefile b/arch/x86/entry/vdso/Makefile
index 839015f1b0de0..ab7f730cf7f22 100644
--- a/arch/x86/entry/vdso/Makefile
+++ b/arch/x86/entry/vdso/Makefile
@@ -182,7 +182,8 @@ quiet_cmd_vdso = VDSO    $@
 		 sh $(srctree)/$(src)/checkundef.sh '$(NM)' '$@'
 
 VDSO_LDFLAGS = -shared $(call ld-option, --hash-style=both) \
-	$(call ld-option, --build-id) -Bsymbolic
+	$(call ld-option, --build-id) $(call ld-option, --eh-frame-hdr) \
+	-Bsymbolic
 GCOV_PROFILE := n
 
 #



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux