Blame SOURCES/gdb-rhbz1080657-tls-variable-static-linked-binary-1of3.patch

7ab123
commit 9e0aa64f5510861b2517c5841b59adde8e423540
7ab123
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
7ab123
Date:   Mon May 19 20:20:27 2014 +0200
7ab123
7ab123
    Fix gdbserver qGetTLSAddr for x86_64 -m32
7ab123
    
7ab123
    gdbserver makes libthread_db to access uninitialized memory.  Surprisingly it
7ab123
    does not harm normally, even -fsanitize=address works with current gdbserver.
7ab123
    I have found just valgrind detects it as a very first warning for gdbserver:
7ab123
    
7ab123
    Syscall param ptrace(addr) contains uninitialised byte(s)
7ab123
       at 0x3721EECEBE: ptrace (ptrace.c:45)
7ab123
       by 0x436EE5: ps_get_thread_area (linux-x86-low.c:252)
7ab123
       by 0x5559D02: __td_ta_lookup_th_unique (td_ta_map_lwp2thr.c:157)
7ab123
       by 0x5559EC3: td_ta_map_lwp2thr (td_ta_map_lwp2thr.c:207)
7ab123
       by 0x43F87D: find_one_thread (thread-db.c:281)
7ab123
       by 0x440038: thread_db_get_tls_address (thread-db.c:505)
7ab123
       by 0x40F6D0: handle_query (server.c:2004)
7ab123
       by 0x4124CF: process_serial_event (server.c:3445)
7ab123
       by 0x4136B6: handle_serial_event (server.c:3889)
7ab123
       by 0x419571: handle_file_event (event-loop.c:434)
7ab123
       by 0x418D38: process_event (event-loop.c:189)
7ab123
       by 0x419AB7: start_event_loop (event-loop.c:552)
7ab123
    
7ab123
    Reproducible with:
7ab123
    cd gdb/testsuite
7ab123
    g++ -o gdb.threads/tls gdb.threads/tls{,2}.c -m32 -pthread
7ab123
    ../gdbserver/gdbserver :1234 gdb.threads/tls
7ab123
    ../gdb -batch gdb.threads/tls -ex 'target remote :1234' -ex 'b spin' -ex c -ex 'p a_thread_local'
7ab123
    
7ab123
    It is more easily reproducible even without valgrind using s/0x00/0xff/ in the
7ab123
    attached patch.  It will then turn the output of reproducer above:
7ab123
    $1 = 0
7ab123
    ->
7ab123
    Cannot find thread-local storage for Thread 29044, executable file .../gdb/testsuite/gdb.threads/tls:
7ab123
    Remote target failed to process qGetTLSAddr request
7ab123
    
7ab123
    gdb/gdbserver/
7ab123
    2014-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
7ab123
    
7ab123
    	Fix gdbserver qGetTLSAddr for x86_64 -m32.
7ab123
    	* linux-x86-low.c (X86_64_USER_REGS): New.
7ab123
    	(x86_fill_gregset): Call memset for BUF first in x86_64 -m32 case.
7ab123
    
7ab123
    Message-ID: <20140410114901.GA16411@host2.jankratochvil.net>
7ab123
7ab123
Index: gdb-7.6.1/gdb/gdbserver/linux-x86-low.c
7ab123
===================================================================
7ab123
--- gdb-7.6.1.orig/gdb/gdbserver/linux-x86-low.c
7ab123
+++ gdb-7.6.1/gdb/gdbserver/linux-x86-low.c
7ab123
@@ -144,6 +144,7 @@ static const int x86_64_regmap[] =
7ab123
 };
7ab123
 
7ab123
 #define X86_64_NUM_REGS (sizeof (x86_64_regmap) / sizeof (x86_64_regmap[0]))
7ab123
+#define X86_64_USER_REGS (GS + 1)
7ab123
 
7ab123
 #else /* ! __x86_64__ */
7ab123
 
7ab123
@@ -275,6 +276,10 @@ x86_fill_gregset (struct regcache *regca
7ab123
 	  collect_register (regcache, i, ((char *) buf) + x86_64_regmap[i]);
7ab123
       return;
7ab123
     }
7ab123
+
7ab123
+  /* 32-bit inferior registers need to be zero-extended.
7ab123
+     Callers would read uninitialized memory otherwise.  */
7ab123
+  memset (buf, 0x00, X86_64_USER_REGS * 8);
7ab123
 #endif
7ab123
 
7ab123
   for (i = 0; i < I386_NUM_REGS; i++)