gdb/common/agent.c - gdb
Global variables defined
Data types defined
Functions defined
Macros defined
Source code
- #include "common-defs.h"
- #include "target/target.h"
- #include "common/symbol.h"
- #include <unistd.h>
- #include "agent.h"
- #include "filestuff.h"
- int debug_agent = 0;
- static void ATTRIBUTE_PRINTF (1, 2)
- debug_agent_printf (const char *fmt, ...)
- {
- va_list ap;
- if (!debug_agent)
- return;
- va_start (ap, fmt);
- debug_vprintf (fmt, ap);
- va_end (ap);
- }
- #define DEBUG_AGENT debug_agent_printf
- int use_agent = 0;
- struct ipa_sym_addresses
- {
- CORE_ADDR addr_helper_thread_id;
- CORE_ADDR addr_cmd_buf;
- CORE_ADDR addr_capability;
- };
- FIXME
- static uint32_t helper_thread_id = 0;
- static struct
- {
- const char *name;
- int offset;
- int required;
- } symbol_list[] = {
- IPA_SYM(helper_thread_id),
- IPA_SYM(cmd_buf),
- IPA_SYM(capability),
- };
- static struct ipa_sym_addresses ipa_sym_addrs;
- static int all_agent_symbols_looked_up = 0;
- int
- agent_loaded_p (void)
- {
- return all_agent_symbols_looked_up;
- }
- int
- agent_look_up_symbols (void *arg)
- {
- int i;
- all_agent_symbols_looked_up = 0;
- for (i = 0; i < sizeof (symbol_list) / sizeof (symbol_list[0]); i++)
- {
- CORE_ADDR *addrp =
- (CORE_ADDR *) ((char *) &ipa_sym_addrs + symbol_list[i].offset);
- if (find_minimal_symbol_address (symbol_list[i].name, addrp,
- arg) != 0)
- {
- DEBUG_AGENT ("symbol `%s' not found\n", symbol_list[i].name);
- return -1;
- }
- }
- all_agent_symbols_looked_up = 1;
- return 0;
- }
- static unsigned int
- agent_get_helper_thread_id (void)
- {
- if (helper_thread_id == 0)
- {
- if (target_read_uint32 (ipa_sym_addrs.addr_helper_thread_id,
- &helper_thread_id))
- warning (_("Error reading helper thread's id in lib"));
- }
- return helper_thread_id;
- }
- #ifdef HAVE_SYS_UN_H
- #include <sys/socket.h>
- #include <sys/un.h>
- #define SOCK_DIR P_tmpdir
- #ifndef UNIX_PATH_MAX
- #define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) NULL)->sun_path)
- #endif
- #endif
- static int
- gdb_connect_sync_socket (int pid)
- {
- #ifdef HAVE_SYS_UN_H
- struct sockaddr_un addr;
- int res, fd;
- char path[UNIX_PATH_MAX];
- res = xsnprintf (path, UNIX_PATH_MAX, "%s/gdb_ust%d", P_tmpdir, pid);
- if (res >= UNIX_PATH_MAX)
- return -1;
- res = fd = gdb_socket_cloexec (PF_UNIX, SOCK_STREAM, 0);
- if (res == -1)
- {
- warning (_("error opening sync socket: %s"), strerror (errno));
- return -1;
- }
- addr.sun_family = AF_UNIX;
- res = xsnprintf (addr.sun_path, UNIX_PATH_MAX, "%s", path);
- if (res >= UNIX_PATH_MAX)
- {
- warning (_("string overflow allocating socket name"));
- close (fd);
- return -1;
- }
- res = connect (fd, (struct sockaddr *) &addr, sizeof (addr));
- if (res == -1)
- {
- warning (_("error connecting sync socket (%s): %s. "
- "Make sure the directory exists and that it is writable."),
- path, strerror (errno));
- close (fd);
- return -1;
- }
- return fd;
- #else
- return -1;
- #endif
- }
- int
- agent_run_command (int pid, const char *cmd, int len)
- {
- int fd;
- int tid = agent_get_helper_thread_id ();
- ptid_t ptid = ptid_build (pid, tid, 0);
- int ret = target_write_memory (ipa_sym_addrs.addr_cmd_buf,
- (gdb_byte *) cmd, len);
- if (ret != 0)
- {
- warning (_("unable to write"));
- return -1;
- }
- DEBUG_AGENT ("agent: resumed helper thread\n");
-
- target_continue_no_signal (ptid);
- fd = gdb_connect_sync_socket (pid);
- if (fd >= 0)
- {
- char buf[1] = "";
- int ret;
- DEBUG_AGENT ("agent: signalling helper thread\n");
- do
- {
- ret = write (fd, buf, 1);
- } while (ret == -1 && errno == EINTR);
- DEBUG_AGENT ("agent: waiting for helper thread's response\n");
- do
- {
- ret = read (fd, buf, 1);
- } while (ret == -1 && errno == EINTR);
- close (fd);
- DEBUG_AGENT ("agent: helper thread's response received\n");
- }
- else
- return -1;
-
- if (!ptid_equal (ptid, null_ptid))
- {
-
- DEBUG_AGENT ("agent: stop helper thread\n");
- target_stop_and_wait (ptid);
- }
- if (fd >= 0)
- {
- if (target_read_memory (ipa_sym_addrs.addr_cmd_buf, (gdb_byte *) cmd,
- IPA_CMD_BUF_SIZE))
- {
- warning (_("Error reading command response"));
- return -1;
- }
- }
- return 0;
- }
- static uint32_t agent_capability = 0;
- int
- agent_capability_check (enum agent_capa agent_capa)
- {
- if (agent_capability == 0)
- {
- if (target_read_uint32 (ipa_sym_addrs.addr_capability,
- &agent_capability))
- warning (_("Error reading capability of agent"));
- }
- return agent_capability & agent_capa;
- }
- void
- agent_capability_invalidate (void)
- {
- agent_capability = 0;
- }