Fix null pointer dereference in process_debug_info()
[binutils-gdb.git] / gdb / i386-netbsd-nat.c
blob7eaaaf398c3be0ac63d90b3327e8e25dca16b511
1 /* Native-dependent code for NetBSD/i386.
3 Copyright (C) 2004-2024 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "gdbcore.h"
21 #include "regcache.h"
22 #include "target.h"
24 #include "i386-tdep.h"
25 #include "i386-bsd-nat.h"
27 /* Support for debugging kernel virtual memory images. */
29 #include <sys/types.h>
30 #include <machine/frame.h>
31 #include <machine/pcb.h>
33 #include "netbsd-nat.h"
34 #include "bsd-kvm.h"
36 static int
37 i386nbsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
39 struct switchframe sf;
41 /* The following is true for NetBSD 1.6.2:
43 The pcb contains %esp and %ebp at the point of the context switch
44 in cpu_switch(). At that point we have a stack frame as
45 described by `struct switchframe', which for NetBSD 1.6.2 has the
46 following layout:
48 interrupt level
49 %edi
50 %esi
51 %ebx
52 %eip
54 we reconstruct the register state as it would look when we just
55 returned from cpu_switch(). */
57 /* The stack pointer shouldn't be zero. */
58 if (pcb->pcb_esp == 0)
59 return 0;
61 read_memory (pcb->pcb_esp, (gdb_byte *)&sf, sizeof sf);
62 pcb->pcb_esp += sizeof (struct switchframe);
63 regcache->raw_supply (I386_EDI_REGNUM, &sf.sf_edi);
64 regcache->raw_supply (I386_ESI_REGNUM, &sf.sf_esi);
65 regcache->raw_supply (I386_EBP_REGNUM, &pcb->pcb_ebp);
66 regcache->raw_supply (I386_ESP_REGNUM, &pcb->pcb_esp);
67 regcache->raw_supply (I386_EBX_REGNUM, &sf.sf_ebx);
68 regcache->raw_supply (I386_EIP_REGNUM, &sf.sf_eip);
70 return 1;
73 static i386_bsd_nat_target<nbsd_nat_target> the_i386_nbsd_nat_target;
75 void _initialize_i386nbsd_nat ();
76 void
77 _initialize_i386nbsd_nat ()
79 add_inf_child_target (&the_i386_nbsd_nat_target);
81 /* Support debugging kernel virtual memory images. */
82 bsd_kvm_add_target (i386nbsd_supply_pcb);