077c9d
commit 2339d6a55eb7a7e040ae888e906adc49eeb59eab
077c9d
Author: H.J. Lu <hjl.tools@gmail.com>
077c9d
Date:   Wed Sep 12 08:40:59 2018 -0700
077c9d
077c9d
    i386: Use ENTRY and END in start.S [BZ #23606]
077c9d
    
077c9d
    Wrapping the _start function with ENTRY and END to insert ENDBR32 at
077c9d
    function entry when CET is enabled.  Since _start now includes CFI,
077c9d
    without "cfi_undefined (eip)", unwinder may not terminate at _start
077c9d
    and we will get
077c9d
    
077c9d
    Program received signal SIGSEGV, Segmentation fault.
077c9d
    0xf7dc661e in ?? () from /lib/libgcc_s.so.1
077c9d
    Missing separate debuginfos, use: dnf debuginfo-install libgcc-8.2.1-3.0.fc28.i686
077c9d
    (gdb) bt
077c9d
     #0  0xf7dc661e in ?? () from /lib/libgcc_s.so.1
077c9d
     #1  0xf7dc7c18 in _Unwind_Backtrace () from /lib/libgcc_s.so.1
077c9d
     #2  0xf7f0d809 in __GI___backtrace (array=array@entry=0xffffc7d0,
077c9d
        size=size@entry=20) at ../sysdeps/i386/backtrace.c:127
077c9d
     #3  0x08049254 in compare (p1=p1@entry=0xffffcad0, p2=p2@entry=0xffffcad4)
077c9d
        at backtrace-tst.c:12
077c9d
     #4  0xf7e2a28c in msort_with_tmp (p=p@entry=0xffffca5c, b=b@entry=0xffffcad0,
077c9d
        n=n@entry=2) at msort.c:65
077c9d
     #5  0xf7e29f64 in msort_with_tmp (n=2, b=0xffffcad0, p=0xffffca5c)
077c9d
        at msort.c:53
077c9d
     #6  msort_with_tmp (p=p@entry=0xffffca5c, b=b@entry=0xffffcad0, n=n@entry=5)
077c9d
        at msort.c:53
077c9d
     #7  0xf7e29f64 in msort_with_tmp (n=5, b=0xffffcad0, p=0xffffca5c)
077c9d
        at msort.c:53
077c9d
     #8  msort_with_tmp (p=p@entry=0xffffca5c, b=b@entry=0xffffcad0, n=n@entry=10)
077c9d
        at msort.c:53
077c9d
     #9  0xf7e29f64 in msort_with_tmp (n=10, b=0xffffcad0, p=0xffffca5c)
077c9d
        at msort.c:53
077c9d
     #10 msort_with_tmp (p=p@entry=0xffffca5c, b=b@entry=0xffffcad0, n=n@entry=20)
077c9d
        at msort.c:53
077c9d
     #11 0xf7e2a5b6 in msort_with_tmp (n=20, b=0xffffcad0, p=0xffffca5c)
077c9d
        at msort.c:297
077c9d
     #12 __GI___qsort_r (b=b@entry=0xffffcad0, n=n@entry=20, s=s@entry=4,
077c9d
        cmp=cmp@entry=0x8049230 <compare>, arg=arg@entry=0x0) at msort.c:297
077c9d
     #13 0xf7e2a84d in __GI_qsort (b=b@entry=0xffffcad0, n=n@entry=20, s=s@entry=4,
077c9d
        cmp=cmp@entry=0x8049230 <compare>) at msort.c:308
077c9d
     #14 0x080490f6 in main (argc=2, argv=0xffffcbd4) at backtrace-tst.c:39
077c9d
    
077c9d
    FAIL: debug/backtrace-tst
077c9d
    
077c9d
            [BZ #23606]
077c9d
            * sysdeps/i386/start.S: Include <sysdep.h>
077c9d
            (_start): Use ENTRY/END to insert ENDBR32 at entry when CET is
077c9d
            enabled.  Add cfi_undefined (eip).
077c9d
    
077c9d
    Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
077c9d
    
077c9d
    (cherry picked from commit 5a274db4ea363d6b0b92933f085a92daaf1be2f2)
077c9d
077c9d
diff --git a/sysdeps/i386/start.S b/sysdeps/i386/start.S
077c9d
index 91035fa83fb7ee38..e35e9bd31b2cea30 100644
077c9d
--- a/sysdeps/i386/start.S
077c9d
+++ b/sysdeps/i386/start.S
077c9d
@@ -52,10 +52,11 @@
077c9d
 					NULL
077c9d
 */
077c9d
 
077c9d
-	.text
077c9d
-	.globl _start
077c9d
-	.type _start,@function
077c9d
-_start:
077c9d
+#include <sysdep.h>
077c9d
+
077c9d
+ENTRY (_start)
077c9d
+	/* Clearing frame pointer is insufficient, use CFI.  */
077c9d
+	cfi_undefined (eip)
077c9d
 	/* Clear the frame pointer.  The ABI suggests this be done, to mark
077c9d
 	   the outermost frame obviously.  */
077c9d
 	xorl %ebp, %ebp
077c9d
@@ -131,6 +132,7 @@ _start:
077c9d
 1:	movl	(%esp), %ebx
077c9d
 	ret
077c9d
 #endif
077c9d
+END (_start)
077c9d
 
077c9d
 /* To fulfill the System V/i386 ABI we need this symbol.  Yuck, it's so
077c9d
    meaningless since we don't support machines < 80386.  */