X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fnat%2Flinux-procfs.c;h=25d36c10efc29b05e01836bf35bad71742ab9d60;hb=1bee48c7ad5b75896ef8d84fedc774e181fb09a7;hp=1e922b94824ae876d51065c351a18bb7f6c732d9;hpb=2db9a4275ceada4aad3443dc157b96dd2e23afc0;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/nat/linux-procfs.c b/gdb/nat/linux-procfs.c index 1e922b9482..25d36c10ef 100644 --- a/gdb/nat/linux-procfs.c +++ b/gdb/nat/linux-procfs.c @@ -1,5 +1,5 @@ /* Linux-specific PROCFS manipulation routines. - Copyright (C) 2009-2015 Free Software Foundation, Inc. + Copyright (C) 2009-2021 Free Software Foundation, Inc. This file is part of GDB. @@ -16,9 +16,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#include "common-defs.h" +#include "gdbsupport/common-defs.h" #include "linux-procfs.h" -#include "filestuff.h" +#include "gdbsupport/filestuff.h" #include #include @@ -29,12 +29,11 @@ static int linux_proc_get_int (pid_t lwpid, const char *field, int warn) { size_t field_len = strlen (field); - FILE *status_file; char buf[100]; int retval = -1; snprintf (buf, sizeof (buf), "/proc/%d/status", (int) lwpid); - status_file = gdb_fopen_cloexec (buf, "r"); + gdb_file_up status_file = gdb_fopen_cloexec (buf, "r"); if (status_file == NULL) { if (warn) @@ -42,14 +41,13 @@ linux_proc_get_int (pid_t lwpid, const char *field, int warn) return -1; } - while (fgets (buf, sizeof (buf), status_file)) + while (fgets (buf, sizeof (buf), status_file.get ())) if (strncmp (buf, field, field_len) == 0 && buf[field_len] == ':') { retval = strtol (&buf[field_len + 1], NULL, 10); break; } - fclose (status_file); return retval; } @@ -70,20 +68,69 @@ linux_proc_get_tracerpid_nowarn (pid_t lwpid) return linux_proc_get_int (lwpid, "TracerPid", 0); } -/* Fill in BUFFER, a buffer with BUFFER_SIZE bytes with the 'State' +/* Process states as discovered in the 'State' line of + /proc/PID/status. Not all possible states are represented here, + only those that we care about. */ + +enum proc_state +{ + /* Some state we don't handle. */ + PROC_STATE_UNKNOWN, + + /* Stopped on a signal. */ + PROC_STATE_STOPPED, + + /* Tracing stop. */ + PROC_STATE_TRACING_STOP, + + /* Dead. */ + PROC_STATE_DEAD, + + /* Zombie. */ + PROC_STATE_ZOMBIE, +}; + +/* Parse a PROC_STATE out of STATE, a buffer with the state found in + the 'State:' line of /proc/PID/status. */ + +static enum proc_state +parse_proc_status_state (const char *state) +{ + state = skip_spaces (state); + + switch (state[0]) + { + case 't': + return PROC_STATE_TRACING_STOP; + case 'T': + /* Before Linux 2.6.33, tracing stop used uppercase T. */ + if (strcmp (state, "T (stopped)\n") == 0) + return PROC_STATE_STOPPED; + else /* "T (tracing stop)\n" */ + return PROC_STATE_TRACING_STOP; + case 'X': + return PROC_STATE_DEAD; + case 'Z': + return PROC_STATE_ZOMBIE; + } + + return PROC_STATE_UNKNOWN; +} + + +/* Fill in STATE, a buffer with BUFFER_SIZE bytes with the 'State' line of /proc/PID/status. Returns -1 on failure to open the /proc file, 1 if the line is found, and 0 if not found. If WARN, warn on failure to open the /proc file. */ static int -linux_proc_pid_get_state (pid_t pid, char *buffer, size_t buffer_size, - int warn) +linux_proc_pid_get_state (pid_t pid, int warn, enum proc_state *state) { - FILE *procfile; int have_state; + char buffer[100]; - xsnprintf (buffer, buffer_size, "/proc/%d/status", (int) pid); - procfile = gdb_fopen_cloexec (buffer, "r"); + xsnprintf (buffer, sizeof (buffer), "/proc/%d/status", (int) pid); + gdb_file_up procfile = gdb_fopen_cloexec (buffer, "r"); if (procfile == NULL) { if (warn) @@ -92,13 +139,13 @@ linux_proc_pid_get_state (pid_t pid, char *buffer, size_t buffer_size, } have_state = 0; - while (fgets (buffer, buffer_size, procfile) != NULL) - if (strncmp (buffer, "State:", 6) == 0) + while (fgets (buffer, sizeof (buffer), procfile.get ()) != NULL) + if (startswith (buffer, "State:")) { have_state = 1; + *state = parse_proc_status_state (buffer + sizeof ("State:") - 1); break; } - fclose (procfile); return have_state; } @@ -107,10 +154,10 @@ linux_proc_pid_get_state (pid_t pid, char *buffer, size_t buffer_size, int linux_proc_pid_is_gone (pid_t pid) { - char buffer[100]; int have_state; + enum proc_state state; - have_state = linux_proc_pid_get_state (pid, buffer, sizeof buffer, 0); + have_state = linux_proc_pid_get_state (pid, 0, &state); if (have_state < 0) { /* If we can't open the status file, assume the thread has @@ -123,23 +170,20 @@ linux_proc_pid_is_gone (pid_t pid) return 0; } else - { - return (strstr (buffer, "Z (") != NULL - || strstr (buffer, "X (") != NULL); - } + return (state == PROC_STATE_ZOMBIE || state == PROC_STATE_DEAD); } /* Return non-zero if 'State' of /proc/PID/status contains STATE. If WARN, warn on failure to open the /proc file. */ static int -linux_proc_pid_has_state (pid_t pid, const char *state, int warn) +linux_proc_pid_has_state (pid_t pid, enum proc_state state, int warn) { - char buffer[100]; int have_state; + enum proc_state cur_state; - have_state = linux_proc_pid_get_state (pid, buffer, sizeof buffer, warn); - return (have_state > 0 && strstr (buffer, state) != NULL); + have_state = linux_proc_pid_get_state (pid, warn, &cur_state); + return (have_state > 0 && cur_state == state); } /* Detect `T (stopped)' in `/proc/PID/status'. @@ -148,7 +192,16 @@ linux_proc_pid_has_state (pid_t pid, const char *state, int warn) int linux_proc_pid_is_stopped (pid_t pid) { - return linux_proc_pid_has_state (pid, "T (stopped)", 1); + return linux_proc_pid_has_state (pid, PROC_STATE_STOPPED, 1); +} + +/* Detect `t (tracing stop)' in `/proc/PID/status'. + Other states including `T (stopped)' are reported as false. */ + +int +linux_proc_pid_is_trace_stopped_nowarn (pid_t pid) +{ + return linux_proc_pid_has_state (pid, PROC_STATE_TRACING_STOP, 1); } /* Return non-zero if PID is a zombie. If WARN, warn on failure to @@ -157,7 +210,7 @@ linux_proc_pid_is_stopped (pid_t pid) static int linux_proc_pid_is_zombie_maybe_warn (pid_t pid, int warn) { - return linux_proc_pid_has_state (pid, "Z (zombie)", warn); + return linux_proc_pid_has_state (pid, PROC_STATE_ZOMBIE, warn); } /* See linux-procfs.h declaration. */ @@ -176,23 +229,44 @@ linux_proc_pid_is_zombie (pid_t pid) return linux_proc_pid_is_zombie_maybe_warn (pid, 1); } -/* See linux-procfs.h declaration. */ +/* See linux-procfs.h. */ -char * -linux_proc_pid_get_ns (pid_t pid, const char *ns) +const char * +linux_proc_tid_get_name (ptid_t ptid) { - char buf[100]; - char nsval[64]; - int ret; - xsnprintf (buf, sizeof (buf), "/proc/%d/ns/%s", (int) pid, ns); - ret = readlink (buf, nsval, sizeof (nsval)); - if (0 < ret && ret < sizeof (nsval)) +#define TASK_COMM_LEN 16 /* As defined in the kernel's sched.h. */ + + static char comm_buf[TASK_COMM_LEN]; + char comm_path[100]; + const char *comm_val; + pid_t pid = ptid.pid (); + pid_t tid = ptid.lwp_p () ? ptid.lwp () : ptid.pid (); + + xsnprintf (comm_path, sizeof (comm_path), + "/proc/%ld/task/%ld/comm", (long) pid, (long) tid); + + gdb_file_up comm_file = gdb_fopen_cloexec (comm_path, "r"); + if (comm_file == NULL) + return NULL; + + comm_val = fgets (comm_buf, sizeof (comm_buf), comm_file.get ()); + + if (comm_val != NULL) { - nsval[ret] = '\0'; - return xstrdup (nsval); + int i; + + /* Make sure there is no newline at the end. */ + for (i = 0; i < sizeof (comm_buf); i++) + { + if (comm_buf[i] == '\n') + { + comm_buf[i] = '\0'; + break; + } + } } - return NULL; + return comm_val; } /* See linux-procfs.h. */ @@ -234,7 +308,7 @@ linux_proc_attach_tgid_threads (pid_t pid, lwp = strtoul (dp->d_name, NULL, 10); if (lwp != 0) { - ptid_t ptid = ptid_build (pid, lwp, 0); + ptid_t ptid = ptid_t (pid, lwp, 0); if (attach_lwp (ptid)) new_threads_found = 1; @@ -264,3 +338,39 @@ linux_proc_task_list_dir_exists (pid_t pid) xsnprintf (pathname, sizeof (pathname), "/proc/%ld/task", (long) pid); return (stat (pathname, &buf) == 0); } + +/* See linux-procfs.h. */ + +char * +linux_proc_pid_to_exec_file (int pid) +{ + static char buf[PATH_MAX]; + char name[PATH_MAX]; + ssize_t len; + + xsnprintf (name, PATH_MAX, "/proc/%d/exe", pid); + len = readlink (name, buf, PATH_MAX - 1); + if (len <= 0) + strcpy (buf, name); + else + buf[len] = '\0'; + + return buf; +} + +/* See linux-procfs.h. */ + +void +linux_proc_init_warnings () +{ + static bool warned = false; + + if (warned) + return; + warned = true; + + struct stat st; + + if (stat ("/proc/self", &st) != 0) + warning (_("/proc is not accessible.")); +}