gdb/i386obsd-nat.c - gdb

Functions defined

Source code

  1. /* Native-dependent code for OpenBSD/i386.

  2.    Copyright (C) 2002-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. #include "defs.h"
  15. #include "gdbcore.h"
  16. #include "regcache.h"
  17. #include "target.h"

  18. #include <sys/sysctl.h>
  19. #include <machine/frame.h>
  20. #include <machine/pcb.h>

  21. #include "i386-tdep.h"
  22. #include "i386bsd-nat.h"
  23. #include "obsd-nat.h"
  24. #include "bsd-kvm.h"

  25. static int
  26. i386obsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
  27. {
  28.   struct gdbarch *gdbarch = get_regcache_arch (regcache);
  29.   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  30.   struct switchframe sf;

  31.   /* The following is true for OpenBSD 3.6:

  32.      The pcb contains %esp and %ebp at the point of the context switch
  33.      in cpu_switch().  At that point we have a stack frame as
  34.      described by `struct switchframe', which for OpenBSD 3.6 has the
  35.      following layout:

  36.      interrupt level
  37.      %edi
  38.      %esi
  39.      %ebx
  40.      %eip

  41.      we reconstruct the register state as it would look when we just
  42.      returned from cpu_switch().  */

  43.   /* The stack pointer shouldn't be zero.  */
  44.   if (pcb->pcb_esp == 0)
  45.     return 0;

  46.   /* Read the stack frame, and check its validity.  We do this by
  47.      checking if the saved interrupt priority level in the stack frame
  48.      looks reasonable..  */
  49. #ifdef PCB_SAVECTX
  50.   if ((pcb->pcb_flags & PCB_SAVECTX) == 0)
  51.     {
  52.       /* Yes, we have a frame that matches cpu_switch().  */
  53.       read_memory (pcb->pcb_esp, (gdb_byte *) &sf, sizeof sf);
  54.       pcb->pcb_esp += sizeof (struct switchframe);
  55.       regcache_raw_supply (regcache, I386_EDI_REGNUM, &sf.sf_edi);
  56.       regcache_raw_supply (regcache, I386_ESI_REGNUM, &sf.sf_esi);
  57.       regcache_raw_supply (regcache, I386_EBX_REGNUM, &sf.sf_ebx);
  58.       regcache_raw_supply (regcache, I386_EIP_REGNUM, &sf.sf_eip);
  59.     }
  60.   else
  61. #endif
  62.     {
  63.       /* No, the pcb must have been last updated by savectx().  */
  64.       pcb->pcb_esp = pcb->pcb_ebp;
  65.       pcb->pcb_ebp = read_memory_integer(pcb->pcb_esp, 4, byte_order);
  66.       sf.sf_eip = read_memory_integer(pcb->pcb_esp + 4, 4, byte_order);
  67.       regcache_raw_supply (regcache, I386_EIP_REGNUM, &sf.sf_eip);
  68.     }

  69.   regcache_raw_supply (regcache, I386_EBP_REGNUM, &pcb->pcb_ebp);
  70.   regcache_raw_supply (regcache, I386_ESP_REGNUM, &pcb->pcb_esp);

  71.   return 1;
  72. }


  73. /* Prevent warning from -Wmissing-prototypes.  */
  74. void _initialize_i386obsd_nat (void);

  75. void
  76. _initialize_i386obsd_nat (void)
  77. {
  78.   /* Add some extra features to the common *BSD/i386 target.  */
  79.   obsd_add_target (i386bsd_target ());

  80.   /* Support debugging kernel virtual memory images.  */
  81.   bsd_kvm_add_target (i386obsd_supply_pcb);

  82.   /* OpenBSD provides a vm.psstrings sysctl that we can use to locate
  83.      the sigtramp.  That way we can still recognize a sigtramp if its
  84.      location is changed in a new kernel.  This is especially
  85.      important for OpenBSD, since it uses a different memory layout
  86.      than NetBSD, yet we cannot distinguish between the two.

  87.      Of course this is still based on the assumption that the sigtramp
  88.      is placed directly under the location where the program arguments
  89.      and environment can be found.  */
  90. #ifdef VM_PSSTRINGS
  91.   {
  92.     struct _ps_strings _ps;
  93.     int mib[2];
  94.     size_t len;

  95.     mib[0] = CTL_VM;
  96.     mib[1] = VM_PSSTRINGS;
  97.     len = sizeof (_ps);
  98.     if (sysctl (mib, 2, &_ps, &len, NULL, 0) == 0)
  99.       {
  100.         i386obsd_sigtramp_start_addr = (u_long) _ps.val - 128;
  101.         i386obsd_sigtramp_end_addr = (u_long) _ps.val;
  102.       }
  103.   }
  104. #endif
  105. }