a0bdbd74b8f215ae163781beab4857459a11e7d8
[external/binutils.git] / gdb / amd64-linux-nat.c
1 /* Native-dependent code for GNU/Linux x86-64.
2
3    Copyright (C) 2001-2012 Free Software Foundation, Inc.
4    Contributed by Jiri Smid, SuSE Labs.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #include "defs.h"
22 #include "inferior.h"
23 #include "gdbcore.h"
24 #include "regcache.h"
25 #include "regset.h"
26 #include "linux-nat.h"
27 #include "amd64-linux-tdep.h"
28
29 #include "gdb_assert.h"
30 #include "gdb_string.h"
31 #include "elf/common.h"
32 #include <sys/uio.h>
33 #include <sys/ptrace.h>
34 #include <sys/debugreg.h>
35 #include <sys/syscall.h>
36 #include <sys/procfs.h>
37 #include <asm/prctl.h>
38 /* FIXME ezannoni-2003-07-09: we need <sys/reg.h> to be included after
39    <asm/ptrace.h> because the latter redefines FS and GS for no apparent
40    reason, and those definitions don't match the ones that libpthread_db
41    uses, which come from <sys/reg.h>.  */
42 /* ezannoni-2003-07-09: I think this is fixed.  The extraneous defs have
43    been removed from ptrace.h in the kernel.  However, better safe than
44    sorry.  */
45 #include <asm/ptrace.h>
46 #include <sys/reg.h>
47 #include "gdb_proc_service.h"
48
49 /* Prototypes for supply_gregset etc.  */
50 #include "gregset.h"
51
52 #include "amd64-tdep.h"
53 #include "i386-linux-tdep.h"
54 #include "amd64-nat.h"
55 #include "i386-nat.h"
56 #include "i386-xstate.h"
57
58 #ifndef PTRACE_GETREGSET
59 #define PTRACE_GETREGSET        0x4204
60 #endif
61
62 #ifndef PTRACE_SETREGSET
63 #define PTRACE_SETREGSET        0x4205
64 #endif
65
66 /* Per-thread arch-specific data we want to keep.  */
67
68 struct arch_lwp_info
69 {
70   /* Non-zero if our copy differs from what's recorded in the thread.  */
71   int debug_registers_changed;
72 };
73
74 /* Does the current host support PTRACE_GETREGSET?  */
75 static int have_ptrace_getregset = -1;
76
77 /* Mapping between the general-purpose registers in GNU/Linux x86-64
78    `struct user' format and GDB's register cache layout for GNU/Linux
79    i386.
80
81    Note that most GNU/Linux x86-64 registers are 64-bit, while the
82    GNU/Linux i386 registers are all 32-bit, but since we're
83    little-endian we get away with that.  */
84
85 /* From <sys/reg.h> on GNU/Linux i386.  */
86 static int amd64_linux_gregset32_reg_offset[] =
87 {
88   RAX * 8, RCX * 8,             /* %eax, %ecx */
89   RDX * 8, RBX * 8,             /* %edx, %ebx */
90   RSP * 8, RBP * 8,             /* %esp, %ebp */
91   RSI * 8, RDI * 8,             /* %esi, %edi */
92   RIP * 8, EFLAGS * 8,          /* %eip, %eflags */
93   CS * 8, SS * 8,               /* %cs, %ss */
94   DS * 8, ES * 8,               /* %ds, %es */
95   FS * 8, GS * 8,               /* %fs, %gs */
96   -1, -1, -1, -1, -1, -1, -1, -1,
97   -1, -1, -1, -1, -1, -1, -1, -1,
98   -1, -1, -1, -1, -1, -1, -1, -1, -1,
99   -1, -1, -1, -1, -1, -1, -1, -1,
100   ORIG_RAX * 8                  /* "orig_eax" */
101 };
102 \f
103
104 /* Transfering the general-purpose registers between GDB, inferiors
105    and core files.  */
106
107 /* Fill GDB's register cache with the general-purpose register values
108    in *GREGSETP.  */
109
110 void
111 supply_gregset (struct regcache *regcache, const elf_gregset_t *gregsetp)
112 {
113   amd64_supply_native_gregset (regcache, gregsetp, -1);
114 }
115
116 /* Fill register REGNUM (if it is a general-purpose register) in
117    *GREGSETP with the value in GDB's register cache.  If REGNUM is -1,
118    do this for all registers.  */
119
120 void
121 fill_gregset (const struct regcache *regcache,
122               elf_gregset_t *gregsetp, int regnum)
123 {
124   amd64_collect_native_gregset (regcache, gregsetp, regnum);
125 }
126
127 /* Transfering floating-point registers between GDB, inferiors and cores.  */
128
129 /* Fill GDB's register cache with the floating-point and SSE register
130    values in *FPREGSETP.  */
131
132 void
133 supply_fpregset (struct regcache *regcache, const elf_fpregset_t *fpregsetp)
134 {
135   amd64_supply_fxsave (regcache, -1, fpregsetp);
136 }
137
138 /* Fill register REGNUM (if it is a floating-point or SSE register) in
139    *FPREGSETP with the value in GDB's register cache.  If REGNUM is
140    -1, do this for all registers.  */
141
142 void
143 fill_fpregset (const struct regcache *regcache,
144                elf_fpregset_t *fpregsetp, int regnum)
145 {
146   amd64_collect_fxsave (regcache, regnum, fpregsetp);
147 }
148 \f
149
150 /* Transferring arbitrary registers between GDB and inferior.  */
151
152 /* Fetch register REGNUM from the child process.  If REGNUM is -1, do
153    this for all registers (including the floating point and SSE
154    registers).  */
155
156 static void
157 amd64_linux_fetch_inferior_registers (struct target_ops *ops,
158                                       struct regcache *regcache, int regnum)
159 {
160   struct gdbarch *gdbarch = get_regcache_arch (regcache);
161   int tid;
162
163   /* GNU/Linux LWP ID's are process ID's.  */
164   tid = TIDGET (inferior_ptid);
165   if (tid == 0)
166     tid = PIDGET (inferior_ptid); /* Not a threaded program.  */
167
168   if (regnum == -1 || amd64_native_gregset_supplies_p (gdbarch, regnum))
169     {
170       elf_gregset_t regs;
171
172       if (ptrace (PTRACE_GETREGS, tid, 0, (long) &regs) < 0)
173         perror_with_name (_("Couldn't get registers"));
174
175       amd64_supply_native_gregset (regcache, &regs, -1);
176       if (regnum != -1)
177         return;
178     }
179
180   if (regnum == -1 || !amd64_native_gregset_supplies_p (gdbarch, regnum))
181     {
182       elf_fpregset_t fpregs;
183
184       if (have_ptrace_getregset)
185         {
186           char xstateregs[I386_XSTATE_MAX_SIZE];
187           struct iovec iov;
188
189           iov.iov_base = xstateregs;
190           iov.iov_len = sizeof (xstateregs);
191           if (ptrace (PTRACE_GETREGSET, tid,
192                       (unsigned int) NT_X86_XSTATE, (long) &iov) < 0)
193             perror_with_name (_("Couldn't get extended state status"));
194
195           amd64_supply_xsave (regcache, -1, xstateregs);
196         }
197       else
198         {
199           if (ptrace (PTRACE_GETFPREGS, tid, 0, (long) &fpregs) < 0)
200             perror_with_name (_("Couldn't get floating point status"));
201
202           amd64_supply_fxsave (regcache, -1, &fpregs);
203         }
204     }
205 }
206
207 /* Store register REGNUM back into the child process.  If REGNUM is
208    -1, do this for all registers (including the floating-point and SSE
209    registers).  */
210
211 static void
212 amd64_linux_store_inferior_registers (struct target_ops *ops,
213                                       struct regcache *regcache, int regnum)
214 {
215   struct gdbarch *gdbarch = get_regcache_arch (regcache);
216   int tid;
217
218   /* GNU/Linux LWP ID's are process ID's.  */
219   tid = TIDGET (inferior_ptid);
220   if (tid == 0)
221     tid = PIDGET (inferior_ptid); /* Not a threaded program.  */
222
223   if (regnum == -1 || amd64_native_gregset_supplies_p (gdbarch, regnum))
224     {
225       elf_gregset_t regs;
226
227       if (ptrace (PTRACE_GETREGS, tid, 0, (long) &regs) < 0)
228         perror_with_name (_("Couldn't get registers"));
229
230       amd64_collect_native_gregset (regcache, &regs, regnum);
231
232       if (ptrace (PTRACE_SETREGS, tid, 0, (long) &regs) < 0)
233         perror_with_name (_("Couldn't write registers"));
234
235       if (regnum != -1)
236         return;
237     }
238
239   if (regnum == -1 || !amd64_native_gregset_supplies_p (gdbarch, regnum))
240     {
241       elf_fpregset_t fpregs;
242
243       if (have_ptrace_getregset)
244         {
245           char xstateregs[I386_XSTATE_MAX_SIZE];
246           struct iovec iov;
247
248           iov.iov_base = xstateregs;
249           iov.iov_len = sizeof (xstateregs);
250           if (ptrace (PTRACE_GETREGSET, tid,
251                       (unsigned int) NT_X86_XSTATE, (long) &iov) < 0)
252             perror_with_name (_("Couldn't get extended state status"));
253
254           amd64_collect_xsave (regcache, regnum, xstateregs, 0);
255
256           if (ptrace (PTRACE_SETREGSET, tid,
257                       (unsigned int) NT_X86_XSTATE, (long) &iov) < 0)
258             perror_with_name (_("Couldn't write extended state status"));
259         }
260       else
261         {
262           if (ptrace (PTRACE_GETFPREGS, tid, 0, (long) &fpregs) < 0)
263             perror_with_name (_("Couldn't get floating point status"));
264
265           amd64_collect_fxsave (regcache, regnum, &fpregs);
266
267           if (ptrace (PTRACE_SETFPREGS, tid, 0, (long) &fpregs) < 0)
268             perror_with_name (_("Couldn't write floating point status"));
269         }
270     }
271 }
272 \f
273 /* Support for debug registers.  */
274
275 static unsigned long
276 amd64_linux_dr_get (ptid_t ptid, int regnum)
277 {
278   int tid;
279   unsigned long value;
280
281   tid = TIDGET (ptid);
282   if (tid == 0)
283     tid = PIDGET (ptid);
284
285   errno = 0;
286   value = ptrace (PTRACE_PEEKUSER, tid,
287                   offsetof (struct user, u_debugreg[regnum]), 0);
288   if (errno != 0)
289     perror_with_name (_("Couldn't read debug register"));
290
291   return value;
292 }
293
294 /* Set debug register REGNUM to VALUE in only the one LWP of PTID.  */
295
296 static void
297 amd64_linux_dr_set (ptid_t ptid, int regnum, unsigned long value)
298 {
299   int tid;
300
301   tid = TIDGET (ptid);
302   if (tid == 0)
303     tid = PIDGET (ptid);
304
305   errno = 0;
306   ptrace (PTRACE_POKEUSER, tid,
307           offsetof (struct user, u_debugreg[regnum]), value);
308   if (errno != 0)
309     perror_with_name (_("Couldn't write debug register"));
310 }
311
312 /* Return the inferior's debug register REGNUM.  */
313
314 static CORE_ADDR
315 amd64_linux_dr_get_addr (int regnum)
316 {
317   /* DR6 and DR7 are retrieved with some other way.  */
318   gdb_assert (DR_FIRSTADDR <= regnum && regnum <= DR_LASTADDR);
319
320   return amd64_linux_dr_get (inferior_ptid, regnum);
321 }
322
323 /* Return the inferior's DR7 debug control register.  */
324
325 static unsigned long
326 amd64_linux_dr_get_control (void)
327 {
328   return amd64_linux_dr_get (inferior_ptid, DR_CONTROL);
329 }
330
331 /* Get DR_STATUS from only the one LWP of INFERIOR_PTID.  */
332
333 static unsigned long
334 amd64_linux_dr_get_status (void)
335 {
336   return amd64_linux_dr_get (inferior_ptid, DR_STATUS);
337 }
338
339 /* Callback for iterate_over_lwps.  Update the debug registers of
340    LWP.  */
341
342 static int
343 update_debug_registers_callback (struct lwp_info *lwp, void *arg)
344 {
345   if (lwp->arch_private == NULL)
346     lwp->arch_private = XCNEW (struct arch_lwp_info);
347
348   /* The actual update is done later just before resuming the lwp, we
349      just mark that the registers need updating.  */
350   lwp->arch_private->debug_registers_changed = 1;
351
352   /* If the lwp isn't stopped, force it to momentarily pause, so we
353      can update its debug registers.  */
354   if (!lwp->stopped)
355     linux_stop_lwp (lwp);
356
357   /* Continue the iteration.  */
358   return 0;
359 }
360
361 /* Set DR_CONTROL to CONTROL in all LWPs of the current inferior.  */
362
363 static void
364 amd64_linux_dr_set_control (unsigned long control)
365 {
366   ptid_t pid_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
367
368   iterate_over_lwps (pid_ptid, update_debug_registers_callback, NULL);
369 }
370
371 /* Set address REGNUM (zero based) to ADDR in all LWPs of the current
372    inferior.  */
373
374 static void
375 amd64_linux_dr_set_addr (int regnum, CORE_ADDR addr)
376 {
377   ptid_t pid_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
378
379   gdb_assert (regnum >= 0 && regnum <= DR_LASTADDR - DR_FIRSTADDR);
380
381   iterate_over_lwps (pid_ptid, update_debug_registers_callback, NULL);
382 }
383
384 /* Called when resuming a thread.
385    If the debug regs have changed, update the thread's copies.  */
386
387 static void
388 amd64_linux_prepare_to_resume (struct lwp_info *lwp)
389 {
390   int clear_status = 0;
391
392   /* NULL means this is the main thread still going through the shell,
393      or, no watchpoint has been set yet.  In that case, there's
394      nothing to do.  */
395   if (lwp->arch_private == NULL)
396     return;
397
398   if (lwp->arch_private->debug_registers_changed)
399     {
400       struct i386_debug_reg_state *state = i386_debug_reg_state ();
401       int i;
402
403       for (i = DR_FIRSTADDR; i <= DR_LASTADDR; i++)
404         if (state->dr_ref_count[i] > 0)
405           {
406             amd64_linux_dr_set (lwp->ptid, i, state->dr_mirror[i]);
407
408             /* If we're setting a watchpoint, any change the inferior
409                had done itself to the debug registers needs to be
410                discarded, otherwise, i386_stopped_data_address can get
411                confused.  */
412             clear_status = 1;
413           }
414
415       amd64_linux_dr_set (lwp->ptid, DR_CONTROL, state->dr_control_mirror);
416
417       lwp->arch_private->debug_registers_changed = 0;
418     }
419
420   if (clear_status || lwp->stopped_by_watchpoint)
421     amd64_linux_dr_set (lwp->ptid, DR_STATUS, 0);
422 }
423
424 static void
425 amd64_linux_new_thread (struct lwp_info *lp)
426 {
427   struct arch_lwp_info *info = XCNEW (struct arch_lwp_info);
428
429   info->debug_registers_changed = 1;
430
431   lp->arch_private = info;
432 }
433 \f
434
435 /* This function is called by libthread_db as part of its handling of
436    a request for a thread's local storage address.  */
437
438 ps_err_e
439 ps_get_thread_area (const struct ps_prochandle *ph,
440                     lwpid_t lwpid, int idx, void **base)
441 {
442   if (gdbarch_ptr_bit (target_gdbarch) == 32)
443     {
444       /* The full structure is found in <asm-i386/ldt.h>.  The second
445          integer is the LDT's base_address and that is used to locate
446          the thread's local storage.  See i386-linux-nat.c more
447          info.  */
448       unsigned int desc[4];
449
450       /* This code assumes that "int" is 32 bits and that
451          GET_THREAD_AREA returns no more than 4 int values.  */
452       gdb_assert (sizeof (int) == 4);   
453 #ifndef PTRACE_GET_THREAD_AREA
454 #define PTRACE_GET_THREAD_AREA 25
455 #endif
456       if  (ptrace (PTRACE_GET_THREAD_AREA, 
457                    lwpid, (void *) (long) idx, (unsigned long) &desc) < 0)
458         return PS_ERR;
459       
460       /* Extend the value to 64 bits.  Here it's assumed that a "long"
461          and a "void *" are the same.  */
462       (*base) = (void *) (long) desc[1];
463       return PS_OK;
464     }
465   else
466     {
467       /* This definition comes from prctl.h, but some kernels may not
468          have it.  */
469 #ifndef PTRACE_ARCH_PRCTL
470 #define PTRACE_ARCH_PRCTL      30
471 #endif
472       /* FIXME: ezannoni-2003-07-09 see comment above about include
473          file order.  We could be getting bogus values for these two.  */
474       gdb_assert (FS < ELF_NGREG);
475       gdb_assert (GS < ELF_NGREG);
476       switch (idx)
477         {
478         case FS:
479           if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_FS) == 0)
480             return PS_OK;
481           break;
482         case GS:
483           if (ptrace (PTRACE_ARCH_PRCTL, lwpid, base, ARCH_GET_GS) == 0)
484             return PS_OK;
485           break;
486         default:                   /* Should not happen.  */
487           return PS_BADADDR;
488         }
489     }
490   return PS_ERR;               /* ptrace failed.  */
491 }
492 \f
493
494 static void (*super_post_startup_inferior) (ptid_t ptid);
495
496 static void
497 amd64_linux_child_post_startup_inferior (ptid_t ptid)
498 {
499   i386_cleanup_dregs ();
500   super_post_startup_inferior (ptid);
501 }
502 \f
503
504 /* When GDB is built as a 64-bit application on linux, the
505    PTRACE_GETSIGINFO data is always presented in 64-bit layout.  Since
506    debugging a 32-bit inferior with a 64-bit GDB should look the same
507    as debugging it with a 32-bit GDB, we do the 32-bit <-> 64-bit
508    conversion in-place ourselves.  */
509
510 /* These types below (compat_*) define a siginfo type that is layout
511    compatible with the siginfo type exported by the 32-bit userspace
512    support.  */
513
514 typedef int compat_int_t;
515 typedef unsigned int compat_uptr_t;
516
517 typedef int compat_time_t;
518 typedef int compat_timer_t;
519 typedef int compat_clock_t;
520
521 struct compat_timeval
522 {
523   compat_time_t tv_sec;
524   int tv_usec;
525 };
526
527 typedef union compat_sigval
528 {
529   compat_int_t sival_int;
530   compat_uptr_t sival_ptr;
531 } compat_sigval_t;
532
533 typedef struct compat_siginfo
534 {
535   int si_signo;
536   int si_errno;
537   int si_code;
538
539   union
540   {
541     int _pad[((128 / sizeof (int)) - 3)];
542
543     /* kill() */
544     struct
545     {
546       unsigned int _pid;
547       unsigned int _uid;
548     } _kill;
549
550     /* POSIX.1b timers */
551     struct
552     {
553       compat_timer_t _tid;
554       int _overrun;
555       compat_sigval_t _sigval;
556     } _timer;
557
558     /* POSIX.1b signals */
559     struct
560     {
561       unsigned int _pid;
562       unsigned int _uid;
563       compat_sigval_t _sigval;
564     } _rt;
565
566     /* SIGCHLD */
567     struct
568     {
569       unsigned int _pid;
570       unsigned int _uid;
571       int _status;
572       compat_clock_t _utime;
573       compat_clock_t _stime;
574     } _sigchld;
575
576     /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
577     struct
578     {
579       unsigned int _addr;
580     } _sigfault;
581
582     /* SIGPOLL */
583     struct
584     {
585       int _band;
586       int _fd;
587     } _sigpoll;
588   } _sifields;
589 } compat_siginfo_t;
590
591 #define cpt_si_pid _sifields._kill._pid
592 #define cpt_si_uid _sifields._kill._uid
593 #define cpt_si_timerid _sifields._timer._tid
594 #define cpt_si_overrun _sifields._timer._overrun
595 #define cpt_si_status _sifields._sigchld._status
596 #define cpt_si_utime _sifields._sigchld._utime
597 #define cpt_si_stime _sifields._sigchld._stime
598 #define cpt_si_ptr _sifields._rt._sigval.sival_ptr
599 #define cpt_si_addr _sifields._sigfault._addr
600 #define cpt_si_band _sifields._sigpoll._band
601 #define cpt_si_fd _sifields._sigpoll._fd
602
603 /* glibc at least up to 2.3.2 doesn't have si_timerid, si_overrun.
604    In their place is si_timer1,si_timer2.  */
605 #ifndef si_timerid
606 #define si_timerid si_timer1
607 #endif
608 #ifndef si_overrun
609 #define si_overrun si_timer2
610 #endif
611
612 static void
613 compat_siginfo_from_siginfo (compat_siginfo_t *to, siginfo_t *from)
614 {
615   memset (to, 0, sizeof (*to));
616
617   to->si_signo = from->si_signo;
618   to->si_errno = from->si_errno;
619   to->si_code = from->si_code;
620
621   if (to->si_code == SI_TIMER)
622     {
623       to->cpt_si_timerid = from->si_timerid;
624       to->cpt_si_overrun = from->si_overrun;
625       to->cpt_si_ptr = (intptr_t) from->si_ptr;
626     }
627   else if (to->si_code == SI_USER)
628     {
629       to->cpt_si_pid = from->si_pid;
630       to->cpt_si_uid = from->si_uid;
631     }
632   else if (to->si_code < 0)
633     {
634       to->cpt_si_pid = from->si_pid;
635       to->cpt_si_uid = from->si_uid;
636       to->cpt_si_ptr = (intptr_t) from->si_ptr;
637     }
638   else
639     {
640       switch (to->si_signo)
641         {
642         case SIGCHLD:
643           to->cpt_si_pid = from->si_pid;
644           to->cpt_si_uid = from->si_uid;
645           to->cpt_si_status = from->si_status;
646           to->cpt_si_utime = from->si_utime;
647           to->cpt_si_stime = from->si_stime;
648           break;
649         case SIGILL:
650         case SIGFPE:
651         case SIGSEGV:
652         case SIGBUS:
653           to->cpt_si_addr = (intptr_t) from->si_addr;
654           break;
655         case SIGPOLL:
656           to->cpt_si_band = from->si_band;
657           to->cpt_si_fd = from->si_fd;
658           break;
659         default:
660           to->cpt_si_pid = from->si_pid;
661           to->cpt_si_uid = from->si_uid;
662           to->cpt_si_ptr = (intptr_t) from->si_ptr;
663           break;
664         }
665     }
666 }
667
668 static void
669 siginfo_from_compat_siginfo (siginfo_t *to, compat_siginfo_t *from)
670 {
671   memset (to, 0, sizeof (*to));
672
673   to->si_signo = from->si_signo;
674   to->si_errno = from->si_errno;
675   to->si_code = from->si_code;
676
677   if (to->si_code == SI_TIMER)
678     {
679       to->si_timerid = from->cpt_si_timerid;
680       to->si_overrun = from->cpt_si_overrun;
681       to->si_ptr = (void *) (intptr_t) from->cpt_si_ptr;
682     }
683   else if (to->si_code == SI_USER)
684     {
685       to->si_pid = from->cpt_si_pid;
686       to->si_uid = from->cpt_si_uid;
687     }
688   if (to->si_code < 0)
689     {
690       to->si_pid = from->cpt_si_pid;
691       to->si_uid = from->cpt_si_uid;
692       to->si_ptr = (void *) (intptr_t) from->cpt_si_ptr;
693     }
694   else
695     {
696       switch (to->si_signo)
697         {
698         case SIGCHLD:
699           to->si_pid = from->cpt_si_pid;
700           to->si_uid = from->cpt_si_uid;
701           to->si_status = from->cpt_si_status;
702           to->si_utime = from->cpt_si_utime;
703           to->si_stime = from->cpt_si_stime;
704           break;
705         case SIGILL:
706         case SIGFPE:
707         case SIGSEGV:
708         case SIGBUS:
709           to->si_addr = (void *) (intptr_t) from->cpt_si_addr;
710           break;
711         case SIGPOLL:
712           to->si_band = from->cpt_si_band;
713           to->si_fd = from->cpt_si_fd;
714           break;
715         default:
716           to->si_pid = from->cpt_si_pid;
717           to->si_uid = from->cpt_si_uid;
718           to->si_ptr = (void* ) (intptr_t) from->cpt_si_ptr;
719           break;
720         }
721     }
722 }
723
724 /* Convert a native/host siginfo object, into/from the siginfo in the
725    layout of the inferiors' architecture.  Returns true if any
726    conversion was done; false otherwise.  If DIRECTION is 1, then copy
727    from INF to NATIVE.  If DIRECTION is 0, copy from NATIVE to
728    INF.  */
729
730 static int
731 amd64_linux_siginfo_fixup (struct siginfo *native, gdb_byte *inf, int direction)
732 {
733   /* Is the inferior 32-bit?  If so, then do fixup the siginfo
734      object.  */
735   if (gdbarch_addr_bit (get_frame_arch (get_current_frame ())) == 32)
736     {
737       gdb_assert (sizeof (struct siginfo) == sizeof (compat_siginfo_t));
738
739       if (direction == 0)
740         compat_siginfo_from_siginfo ((struct compat_siginfo *) inf, native);
741       else
742         siginfo_from_compat_siginfo (native, (struct compat_siginfo *) inf);
743
744       return 1;
745     }
746   else
747     return 0;
748 }
749
750 /* Get Linux/x86 target description from running target.
751
752    Value of CS segment register:
753      1. 64bit process: 0x33.
754      2. 32bit process: 0x23.
755  */
756
757 #define AMD64_LINUX_USER64_CS   0x33
758
759 static const struct target_desc *
760 amd64_linux_read_description (struct target_ops *ops)
761 {
762   unsigned long cs;
763   int tid;
764   int is_64bit;
765   static uint64_t xcr0;
766
767   /* GNU/Linux LWP ID's are process ID's.  */
768   tid = TIDGET (inferior_ptid);
769   if (tid == 0)
770     tid = PIDGET (inferior_ptid); /* Not a threaded program.  */
771
772   /* Get CS register.  */
773   errno = 0;
774   cs = ptrace (PTRACE_PEEKUSER, tid,
775                offsetof (struct user_regs_struct, cs), 0);
776   if (errno != 0)
777     perror_with_name (_("Couldn't get CS register"));
778
779   is_64bit = cs == AMD64_LINUX_USER64_CS;
780
781   if (have_ptrace_getregset == -1)
782     {
783       uint64_t xstateregs[(I386_XSTATE_SSE_SIZE / sizeof (uint64_t))];
784       struct iovec iov;
785
786       iov.iov_base = xstateregs;
787       iov.iov_len = sizeof (xstateregs);
788
789       /* Check if PTRACE_GETREGSET works.  */
790       if (ptrace (PTRACE_GETREGSET, tid,
791                   (unsigned int) NT_X86_XSTATE, (long) &iov) < 0)
792         have_ptrace_getregset = 0;
793       else
794         {
795           have_ptrace_getregset = 1;
796
797           /* Get XCR0 from XSAVE extended state.  */
798           xcr0 = xstateregs[(I386_LINUX_XSAVE_XCR0_OFFSET
799                              / sizeof (uint64_t))];
800         }
801     }
802
803   /* Check the native XCR0 only if PTRACE_GETREGSET is available.  */
804   if (have_ptrace_getregset
805       && (xcr0 & I386_XSTATE_AVX_MASK) == I386_XSTATE_AVX_MASK)
806     {
807       if (is_64bit)
808         return tdesc_amd64_avx_linux;
809       else
810         return tdesc_i386_avx_linux;
811     }
812   else
813     {
814       if (is_64bit)
815         return tdesc_amd64_linux;
816       else
817         return tdesc_i386_linux;
818     }
819 }
820
821 /* Provide a prototype to silence -Wmissing-prototypes.  */
822 void _initialize_amd64_linux_nat (void);
823
824 void
825 _initialize_amd64_linux_nat (void)
826 {
827   struct target_ops *t;
828
829   amd64_native_gregset32_reg_offset = amd64_linux_gregset32_reg_offset;
830   amd64_native_gregset32_num_regs = I386_LINUX_NUM_REGS;
831   amd64_native_gregset64_reg_offset = amd64_linux_gregset_reg_offset;
832   amd64_native_gregset64_num_regs = AMD64_LINUX_NUM_REGS;
833
834   gdb_assert (ARRAY_SIZE (amd64_linux_gregset32_reg_offset)
835               == amd64_native_gregset32_num_regs);
836
837   /* Fill in the generic GNU/Linux methods.  */
838   t = linux_target ();
839
840   i386_use_watchpoints (t);
841
842   i386_dr_low.set_control = amd64_linux_dr_set_control;
843   i386_dr_low.set_addr = amd64_linux_dr_set_addr;
844   i386_dr_low.get_addr = amd64_linux_dr_get_addr;
845   i386_dr_low.get_status = amd64_linux_dr_get_status;
846   i386_dr_low.get_control = amd64_linux_dr_get_control;
847   i386_set_debug_register_length (8);
848
849   /* Override the GNU/Linux inferior startup hook.  */
850   super_post_startup_inferior = t->to_post_startup_inferior;
851   t->to_post_startup_inferior = amd64_linux_child_post_startup_inferior;
852
853   /* Add our register access methods.  */
854   t->to_fetch_registers = amd64_linux_fetch_inferior_registers;
855   t->to_store_registers = amd64_linux_store_inferior_registers;
856
857   t->to_read_description = amd64_linux_read_description;
858
859   /* Register the target.  */
860   linux_nat_add_target (t);
861   linux_nat_set_new_thread (t, amd64_linux_new_thread);
862   linux_nat_set_siginfo_fixup (t, amd64_linux_siginfo_fixup);
863   linux_nat_set_prepare_to_resume (t, amd64_linux_prepare_to_resume);
864 }