gdb/
[deliverable/binutils-gdb.git] / gdb / common / agent.c
CommitLineData
2fa291ac
YQ
1/* Shared utility routines for GDB to interact with agent.
2
3 Copyright (C) 2009-2012 Free Software Foundation, Inc.
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
9 the Free Software Foundation; either version 3 of the License, or
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
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#ifdef GDBSERVER
21#include "server.h"
22#else
23#include "defs.h"
24#include "target.h"
25#include "inferior.h" /* for non_stop */
26#endif
27
28#include <string.h>
29#include <unistd.h>
30#include "agent.h"
31
32int debug_agent = 0;
33
34#ifdef GDBSERVER
35#define DEBUG_AGENT(fmt, args...) \
36 if (debug_agent) \
37 fprintf (stderr, fmt, ##args);
38#else
39#define DEBUG_AGENT(fmt, args...) \
40 if (debug_agent) \
41 fprintf_unfiltered (gdb_stdlog, fmt, ##args);
42#endif
43
d1feda86
YQ
44/* Global flag to determine using agent or not. */
45int use_agent = 0;
46
2fa291ac
YQ
47/* Addresses of in-process agent's symbols both GDB and GDBserver cares
48 about. */
49
50struct ipa_sym_addresses
51{
52 CORE_ADDR addr_helper_thread_id;
53 CORE_ADDR addr_cmd_buf;
8ffcbaaf 54 CORE_ADDR addr_capability;
2fa291ac
YQ
55};
56
57/* Cache of the helper thread id. FIXME: this global should be made
58 per-process. */
59static unsigned int helper_thread_id = 0;
60
61static struct
62{
63 const char *name;
64 int offset;
65 int required;
66} symbol_list[] = {
67 IPA_SYM(helper_thread_id),
68 IPA_SYM(cmd_buf),
8ffcbaaf 69 IPA_SYM(capability),
2fa291ac
YQ
70};
71
72static struct ipa_sym_addresses ipa_sym_addrs;
73
58b4daa5
YQ
74static int all_agent_symbols_looked_up = 0;
75
76int
77agent_loaded_p (void)
78{
79 return all_agent_symbols_looked_up;
80}
81
2fa291ac
YQ
82/* Look up all symbols needed by agent. Return 0 if all the symbols are
83 found, return non-zero otherwise. */
84
85int
5808517f 86agent_look_up_symbols (void *arg)
2fa291ac
YQ
87{
88 int i;
89
58b4daa5
YQ
90 all_agent_symbols_looked_up = 0;
91
2fa291ac
YQ
92 for (i = 0; i < sizeof (symbol_list) / sizeof (symbol_list[0]); i++)
93 {
94 CORE_ADDR *addrp =
95 (CORE_ADDR *) ((char *) &ipa_sym_addrs + symbol_list[i].offset);
96#ifdef GDBSERVER
97
98 if (look_up_one_symbol (symbol_list[i].name, addrp, 1) == 0)
99#else
5808517f
YQ
100 struct minimal_symbol *sym =
101 lookup_minimal_symbol (symbol_list[i].name, NULL,
102 (struct objfile *) arg);
2fa291ac
YQ
103
104 if (sym != NULL)
105 *addrp = SYMBOL_VALUE_ADDRESS (sym);
106 else
107#endif
108 {
109 DEBUG_AGENT ("symbol `%s' not found\n", symbol_list[i].name);
110 return -1;
111 }
112 }
113
58b4daa5 114 all_agent_symbols_looked_up = 1;
2fa291ac
YQ
115 return 0;
116}
117
118static unsigned int
119agent_get_helper_thread_id (void)
120{
121 if (helper_thread_id == 0)
122 {
123#ifdef GDBSERVER
124 if (read_inferior_memory (ipa_sym_addrs.addr_helper_thread_id,
125 (unsigned char *) &helper_thread_id,
126 sizeof helper_thread_id))
127#else
128 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
129 gdb_byte buf[4];
130
131 if (target_read_memory (ipa_sym_addrs.addr_helper_thread_id,
132 buf, sizeof buf) == 0)
133 helper_thread_id = extract_unsigned_integer (buf, sizeof buf,
134 byte_order);
135 else
136#endif
137 {
87399aa1 138 warning (_("Error reading helper thread's id in lib"));
2fa291ac
YQ
139 }
140 }
141
142 return helper_thread_id;
143}
144
145#ifdef HAVE_SYS_UN_H
146#include <sys/socket.h>
147#include <sys/un.h>
148#define SOCK_DIR P_tmpdir
149
150#ifndef UNIX_PATH_MAX
151#define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) NULL)->sun_path)
152#endif
153
154#endif
155
156/* Connects to synchronization socket. PID is the pid of inferior, which is
157 used to set up the connection socket. */
158
159static int
160gdb_connect_sync_socket (int pid)
161{
162#ifdef HAVE_SYS_UN_H
163 struct sockaddr_un addr;
164 int res, fd;
165 char path[UNIX_PATH_MAX];
166
167 res = xsnprintf (path, UNIX_PATH_MAX, "%s/gdb_ust%d", P_tmpdir, pid);
168 if (res >= UNIX_PATH_MAX)
169 return -1;
170
171 res = fd = socket (PF_UNIX, SOCK_STREAM, 0);
172 if (res == -1)
173 {
87399aa1 174 warning (_("error opening sync socket: %s"), strerror (errno));
2fa291ac
YQ
175 return -1;
176 }
177
178 addr.sun_family = AF_UNIX;
179
180 res = xsnprintf (addr.sun_path, UNIX_PATH_MAX, "%s", path);
181 if (res >= UNIX_PATH_MAX)
182 {
87399aa1 183 warning (_("string overflow allocating socket name"));
2fa291ac
YQ
184 close (fd);
185 return -1;
186 }
187
188 res = connect (fd, (struct sockaddr *) &addr, sizeof (addr));
189 if (res == -1)
190 {
87399aa1
YQ
191 warning (_("error connecting sync socket (%s): %s. "
192 "Make sure the directory exists and that it is writable."),
193 path, strerror (errno));
2fa291ac
YQ
194 close (fd);
195 return -1;
196 }
197
198 return fd;
199#else
200 return -1;
201#endif
202}
203
204/* Execute an agent command in the inferior. PID is the value of pid of the
205 inferior. CMD is the buffer for command. GDB or GDBserver will store the
206 command into it and fetch the return result from CMD. The interaction
207 between GDB/GDBserver and the agent is synchronized by a synchronization
208 socket. Return zero if success, otherwise return non-zero. */
209
210int
211agent_run_command (int pid, const char *cmd)
212{
213 int fd;
214 int tid = agent_get_helper_thread_id ();
215 ptid_t ptid = ptid_build (pid, tid, 0);
216 int len = strlen (cmd) + 1;
217
218#ifdef GDBSERVER
219 int ret = write_inferior_memory (ipa_sym_addrs.addr_cmd_buf,
220 (const unsigned char *) cmd, len);
221#else
222 int ret = target_write_memory (ipa_sym_addrs.addr_cmd_buf, cmd, len);
223#endif
224
225 if (ret != 0)
226 {
87399aa1 227 warning (_("unable to write"));
2fa291ac
YQ
228 return -1;
229 }
230
231 DEBUG_AGENT ("agent: resumed helper thread\n");
232
233 /* Resume helper thread. */
234#ifdef GDBSERVER
235{
236 struct thread_resume resume_info;
237
238 resume_info.thread = ptid;
239 resume_info.kind = resume_continue;
240 resume_info.sig = TARGET_SIGNAL_0;
241 (*the_target->resume) (&resume_info, 1);
242}
243#else
244 target_resume (ptid, 0, TARGET_SIGNAL_0);
245#endif
246
247 fd = gdb_connect_sync_socket (pid);
248 if (fd >= 0)
249 {
250 char buf[1] = "";
251 int ret;
252
253 DEBUG_AGENT ("agent: signalling helper thread\n");
254
255 do
256 {
257 ret = write (fd, buf, 1);
258 } while (ret == -1 && errno == EINTR);
259
260 DEBUG_AGENT ("agent: waiting for helper thread's response\n");
261
262 do
263 {
264 ret = read (fd, buf, 1);
265 } while (ret == -1 && errno == EINTR);
266
267 close (fd);
268
269 DEBUG_AGENT ("agent: helper thread's response received\n");
270 }
271 else
272 return -1;
273
274 /* Need to read response with the inferior stopped. */
275 if (!ptid_equal (ptid, null_ptid))
276 {
277 struct target_waitstatus status;
278 int was_non_stop = non_stop;
279 /* Stop thread PTID. */
280 DEBUG_AGENT ("agent: stop helper thread\n");
281#ifdef GDBSERVER
282 {
283 struct thread_resume resume_info;
284
285 resume_info.thread = ptid;
286 resume_info.kind = resume_stop;
287 resume_info.sig = TARGET_SIGNAL_0;
288 (*the_target->resume) (&resume_info, 1);
289 }
290
291 non_stop = 1;
292 mywait (ptid, &status, 0, 0);
293#else
294 non_stop = 1;
295 target_stop (ptid);
296
297 memset (&status, 0, sizeof (status));
298 target_wait (ptid, &status, 0);
299#endif
300 non_stop = was_non_stop;
301 }
302
303 if (fd >= 0)
304 {
305#ifdef GDBSERVER
306 if (read_inferior_memory (ipa_sym_addrs.addr_cmd_buf,
307 (unsigned char *) cmd, IPA_CMD_BUF_SIZE))
308#else
309 if (target_read_memory (ipa_sym_addrs.addr_cmd_buf, (gdb_byte *) cmd,
310 IPA_CMD_BUF_SIZE))
311#endif
312 {
87399aa1 313 warning (_("Error reading command response"));
2fa291ac
YQ
314 return -1;
315 }
316 }
317
318 return 0;
319}
8ffcbaaf
YQ
320
321/* Each bit of it stands for a capability of agent. */
322static unsigned int agent_capability = 0;
323
324/* Return true if agent has capability AGENT_CAP, otherwise return false. */
325
326int
327agent_capability_check (enum agent_capa agent_capa)
328{
329 if (agent_capability == 0)
330 {
331#ifdef GDBSERVER
332 if (read_inferior_memory (ipa_sym_addrs.addr_capability,
333 (unsigned char *) &agent_capability,
334 sizeof agent_capability))
335#else
336 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
337 gdb_byte buf[4];
338
339 if (target_read_memory (ipa_sym_addrs.addr_capability,
340 buf, sizeof buf) == 0)
341 agent_capability = extract_unsigned_integer (buf, sizeof buf,
342 byte_order);
343 else
344#endif
87399aa1 345 warning (_("Error reading capability of agent"));
8ffcbaaf
YQ
346 }
347 return agent_capability & agent_capa;
348}
349
350/* Invalidate the cache of agent capability, so we'll read it from inferior
351 again. Call it when launches a new program or reconnect to remote stub. */
352
353void
354agent_capability_invalidate (void)
355{
356 agent_capability = 0;
357}
This page took 0.058316 seconds and 4 git commands to generate.