1 /* <proc_service.h> implementation.
3 Copyright (C) 1999-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/>. */
23 #include "gdbthread.h"
29 #include "gdb_proc_service.h"
31 #include <sys/procfs.h>
33 /* Prototypes for supply_gregset etc. */
37 /* Helper functions. */
39 /* Convert a psaddr_t to a CORE_ADDR. */
42 ps_addr_to_core_addr (psaddr_t addr
)
44 if (current_program_space
->exec_bfd ()
45 && bfd_get_sign_extend_vma (current_program_space
->exec_bfd ()))
46 return (intptr_t) addr
;
48 return (uintptr_t) addr
;
51 /* Convert a CORE_ADDR to a psaddr_t. */
54 core_addr_to_ps_addr (CORE_ADDR addr
)
56 if (current_program_space
->exec_bfd ()
57 && bfd_get_sign_extend_vma (current_program_space
->exec_bfd ()))
58 return (psaddr_t
) (intptr_t) addr
;
60 return (psaddr_t
) (uintptr_t) addr
;
63 /* Transfer LEN bytes of memory between BUF and address ADDR in the
64 process specified by PH. If WRITE, transfer them to the process,
65 else transfer them from the process. Returns PS_OK for success,
68 This is a helper function for ps_pdread and ps_pdwrite. */
71 ps_xfer_memory (const struct ps_prochandle
*ph
, psaddr_t addr
,
72 gdb_byte
*buf
, size_t len
, int write
)
74 scoped_restore_current_inferior_for_memory
save_inferior (ph
->thread
->inf
);
76 CORE_ADDR core_addr
= ps_addr_to_core_addr (addr
);
80 ret
= target_write_memory (core_addr
, buf
, len
);
82 ret
= target_read_memory (core_addr
, buf
, len
);
83 return (ret
== 0 ? PS_OK
: PS_ERR
);
87 /* Search for the symbol named NAME within the object named OBJ within
88 the target process PH. If the symbol is found the address of the
89 symbol is stored in SYM_ADDR. */
92 ps_pglobal_lookup (struct ps_prochandle
*ph
, const char *obj
,
93 const char *name
, psaddr_t
*sym_addr
)
95 inferior
*inf
= ph
->thread
->inf
;
97 scoped_restore_current_program_space restore_pspace
;
99 set_current_program_space (inf
->pspace
);
101 /* FIXME: kettenis/2000-09-03: What should we do with OBJ? */
102 bound_minimal_symbol ms
= lookup_minimal_symbol (name
, NULL
, NULL
);
103 if (ms
.minsym
== NULL
)
106 *sym_addr
= core_addr_to_ps_addr (ms
.value_address ());
110 /* Read SIZE bytes from the target process PH at address ADDR and copy
114 ps_pdread (struct ps_prochandle
*ph
, psaddr_t addr
, void *buf
, size_t size
)
116 return ps_xfer_memory (ph
, addr
, (gdb_byte
*) buf
, size
, 0);
119 /* Write SIZE bytes from BUF into the target process PH at address ADDR. */
122 ps_pdwrite (struct ps_prochandle
*ph
, psaddr_t addr
,
123 const void *buf
, size_t size
)
125 return ps_xfer_memory (ph
, addr
, (gdb_byte
*) buf
, size
, 1);
128 /* Get a regcache for LWPID using its inferior's "main" architecture,
129 which is the register set libthread_db expects to be using. In
130 multi-arch debugging scenarios, the thread's architecture may
131 differ from the inferior's "main" architecture. */
133 static struct regcache
*
134 get_ps_regcache (struct ps_prochandle
*ph
, lwpid_t lwpid
)
136 inferior
*inf
= ph
->thread
->inf
;
137 return get_thread_arch_regcache (inf
, ptid_t (inf
->pid
, lwpid
),
141 /* Get the general registers of LWP LWPID within the target process PH
142 and store them in GREGSET. */
145 ps_lgetregs (struct ps_prochandle
*ph
, lwpid_t lwpid
, prgregset_t gregset
)
147 struct regcache
*regcache
= get_ps_regcache (ph
, lwpid
);
149 target_fetch_registers (regcache
, -1);
150 fill_gregset (regcache
, (gdb_gregset_t
*) gregset
, -1);
155 /* Set the general registers of LWP LWPID within the target process PH
159 ps_lsetregs (struct ps_prochandle
*ph
, lwpid_t lwpid
, const prgregset_t gregset
)
161 struct regcache
*regcache
= get_ps_regcache (ph
, lwpid
);
163 supply_gregset (regcache
, (const gdb_gregset_t
*) gregset
);
164 target_store_registers (regcache
, -1);
169 /* Get the floating-point registers of LWP LWPID within the target
170 process PH and store them in FPREGSET. */
173 ps_lgetfpregs (struct ps_prochandle
*ph
, lwpid_t lwpid
,
174 prfpregset_t
*fpregset
)
176 struct regcache
*regcache
= get_ps_regcache (ph
, lwpid
);
178 target_fetch_registers (regcache
, -1);
179 fill_fpregset (regcache
, (gdb_fpregset_t
*) fpregset
, -1);
184 /* Set the floating-point registers of LWP LWPID within the target
185 process PH from FPREGSET. */
188 ps_lsetfpregs (struct ps_prochandle
*ph
, lwpid_t lwpid
,
189 const prfpregset_t
*fpregset
)
191 struct regcache
*regcache
= get_ps_regcache (ph
, lwpid
);
193 supply_fpregset (regcache
, (const gdb_fpregset_t
*) fpregset
);
194 target_store_registers (regcache
, -1);
199 /* Return overall process id of the target PH. Special for GNU/Linux
200 -- not used on Solaris. */
203 ps_getpid (struct ps_prochandle
*ph
)
205 return ph
->thread
->ptid
.pid ();
208 void _initialize_proc_service ();
210 _initialize_proc_service ()
212 /* This function solely exists to make sure this module is linked
213 into the final binary. */