Eliminate pointer signedness warning.
[deliverable/binutils-gdb.git] / gdb / i386obsd-nat.c
CommitLineData
baadce09 1/* Native-dependent code for OpenBSD/i386.
5d93ae8c 2
ecd75fc8 3 Copyright (C) 2002-2014 Free Software Foundation, Inc.
baadce09
MK
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
baadce09
MK
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
baadce09
MK
19
20#include "defs.h"
5d0fc17b
MK
21#include "gdbcore.h"
22#include "regcache.h"
23#include "target.h"
baadce09 24
baadce09 25#include <sys/sysctl.h>
5d0fc17b
MK
26#include <machine/frame.h>
27#include <machine/pcb.h>
baadce09 28
e2dbbd2d 29#include "i386-tdep.h"
5d0fc17b
MK
30#include "i386bsd-nat.h"
31#include "bsd-kvm.h"
32
33static int
34i386obsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
35{
e17a4113
UW
36 struct gdbarch *gdbarch = get_regcache_arch (regcache);
37 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5d0fc17b
MK
38 struct switchframe sf;
39
40 /* The following is true for OpenBSD 3.6:
41
42 The pcb contains %esp and %ebp at the point of the context switch
43 in cpu_switch(). At that point we have a stack frame as
44 described by `struct switchframe', which for OpenBSD 3.6 has the
45 following layout:
46
47 interrupt level
48 %edi
49 %esi
50 %ebx
51 %eip
52
53 we reconstruct the register state as it would look when we just
54 returned from cpu_switch(). */
55
56 /* The stack pointer shouldn't be zero. */
57 if (pcb->pcb_esp == 0)
58 return 0;
59
60 /* Read the stack frame, and check its validity. We do this by
61 checking if the saved interrupt priority level in the stack frame
62 looks reasonable.. */
f73a15e4
MK
63#ifdef PCB_SAVECTX
64 if ((pcb->pcb_flags & PCB_SAVECTX) == 0)
5d0fc17b
MK
65 {
66 /* Yes, we have a frame that matches cpu_switch(). */
b72a7981 67 read_memory (pcb->pcb_esp, (gdb_byte *) &sf, sizeof sf);
5d0fc17b
MK
68 pcb->pcb_esp += sizeof (struct switchframe);
69 regcache_raw_supply (regcache, I386_EDI_REGNUM, &sf.sf_edi);
70 regcache_raw_supply (regcache, I386_ESI_REGNUM, &sf.sf_esi);
71 regcache_raw_supply (regcache, I386_EBX_REGNUM, &sf.sf_ebx);
72 regcache_raw_supply (regcache, I386_EIP_REGNUM, &sf.sf_eip);
73 }
74 else
f73a15e4 75#endif
5d0fc17b
MK
76 {
77 /* No, the pcb must have been last updated by savectx(). */
f73a15e4 78 pcb->pcb_esp = pcb->pcb_ebp;
e17a4113
UW
79 pcb->pcb_ebp = read_memory_integer(pcb->pcb_esp, 4, byte_order);
80 sf.sf_eip = read_memory_integer(pcb->pcb_esp + 4, 4, byte_order);
3979a37f 81 regcache_raw_supply (regcache, I386_EIP_REGNUM, &sf.sf_eip);
5d0fc17b
MK
82 }
83
84 regcache_raw_supply (regcache, I386_EBP_REGNUM, &pcb->pcb_ebp);
85 regcache_raw_supply (regcache, I386_ESP_REGNUM, &pcb->pcb_esp);
86
87 return 1;
88}
89\f
e2dbbd2d 90
baadce09 91/* Prevent warning from -Wmissing-prototypes. */
e5e4acad 92void _initialize_i386obsd_nat (void);
baadce09
MK
93
94void
95_initialize_i386obsd_nat (void)
96{
5d0fc17b
MK
97 /* We've got nothing to add to the common *BSD/i386 target. */
98 add_target (i386bsd_target ());
99
100 /* Support debugging kernel virtual memory images. */
101 bsd_kvm_add_target (i386obsd_supply_pcb);
102
baadce09
MK
103 /* OpenBSD provides a vm.psstrings sysctl that we can use to locate
104 the sigtramp. That way we can still recognize a sigtramp if its
105 location is changed in a new kernel. This is especially
106 important for OpenBSD, since it uses a different memory layout
107 than NetBSD, yet we cannot distinguish between the two.
108
109 Of course this is still based on the assumption that the sigtramp
110 is placed directly under the location where the program arguments
111 and environment can be found. */
112#ifdef VM_PSSTRINGS
113 {
114 struct _ps_strings _ps;
115 int mib[2];
116 size_t len;
117
baadce09
MK
118 mib[0] = CTL_VM;
119 mib[1] = VM_PSSTRINGS;
120 len = sizeof (_ps);
121 if (sysctl (mib, 2, &_ps, &len, NULL, 0) == 0)
122 {
57ac95b8
MK
123 i386obsd_sigtramp_start_addr = (u_long) _ps.val - 128;
124 i386obsd_sigtramp_end_addr = (u_long) _ps.val;
baadce09
MK
125 }
126 }
127#endif
128}
This page took 0.923525 seconds and 4 git commands to generate.