gdb:
[external/binutils.git] / gdb / common / agent.c
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
32 int 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
44 /* Global flag to determine using agent or not.  */
45 int use_agent = 0;
46
47 /* Addresses of in-process agent's symbols both GDB and GDBserver cares
48    about.  */
49
50 struct ipa_sym_addresses
51 {
52   CORE_ADDR addr_helper_thread_id;
53   CORE_ADDR addr_cmd_buf;
54   CORE_ADDR addr_capability;
55 };
56
57 /* Cache of the helper thread id.  FIXME: this global should be made
58    per-process.  */
59 static unsigned int helper_thread_id = 0;
60
61 static 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),
69   IPA_SYM(capability),
70 };
71
72 static struct ipa_sym_addresses ipa_sym_addrs;
73
74 static int all_agent_symbols_looked_up = 0;
75
76 int
77 agent_loaded_p (void)
78 {
79   return all_agent_symbols_looked_up;
80 }
81
82 /* Look up all symbols needed by agent.  Return 0 if all the symbols are
83    found, return non-zero otherwise.  */
84
85 int
86 agent_look_up_symbols (void *arg)
87 {
88   int i;
89
90   all_agent_symbols_looked_up = 0;
91
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
100       struct minimal_symbol *sym =
101         lookup_minimal_symbol (symbol_list[i].name, NULL,
102                                (struct objfile *) arg);
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
114   all_agent_symbols_looked_up = 1;
115   return 0;
116 }
117
118 static unsigned int
119 agent_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         {
138           warning ("Error reading helper thread's id in lib");
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
159 static int
160 gdb_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     {
174       warning ("error opening sync socket: %s\n", strerror (errno));
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     {
183       warning ("string overflow allocating socket name\n");
184       close (fd);
185       return -1;
186     }
187
188   res = connect (fd, (struct sockaddr *) &addr, sizeof (addr));
189   if (res == -1)
190     {
191       warning ("error connecting sync socket (%s): %s. "
192                "Make sure the directory exists and that it is writable.",
193                path, strerror (errno));
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
210 int
211 agent_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     {
227       warning ("unable to write");
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         {
313           warning ("Error reading command response");
314           return -1;
315         }
316     }
317
318   return 0;
319 }
320
321 /* Each bit of it stands for a capability of agent.  */
322 static unsigned int agent_capability = 0;
323
324 /* Return true if agent has capability AGENT_CAP, otherwise return false.  */
325
326 int
327 agent_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
345         warning ("Error reading capability of agent");
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
353 void
354 agent_capability_invalidate (void)
355 {
356   agent_capability = 0;
357 }