1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*
* Copyright (C) 2023-2025 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "stress-ng.h"
#include "core-builtin.h"
#include "core-processes.h"
#include <ctype.h>
#include <pwd.h>
#if defined(__linux__)
/*
* stress_dump_processes_filter()
* filter out non-process filenames from /proc
*/
static int stress_dump_processes_filter(const struct dirent *d)
{
if (UNLIKELY(!d))
return 0;
return isdigit((int)d->d_name[0]);
}
/*
* stress_dump_processes()
* dump out names and state of running processes
*/
void stress_dump_processes(void)
{
int i, n, pid_width = 5;
struct dirent **namelist = NULL;
n = scandir("/proc", &namelist, stress_dump_processes_filter, alphasort);
if (UNLIKELY(n <= 0))
return;
for (i = 0; i < n; i++) {
const int len = strlen(namelist[i]->d_name);
pid_width = STRESS_MAXIMUM(pid_width, len);
}
for (i = 0; i < n; i++) {
char path[PATH_MAX];
struct stat statbuf;
char buf[8192];
char cmd[4096];
char state[16];
char name[32];
char *p_name;
pid_t pid, ppid;
ssize_t ret;
(void)shim_memset(cmd, 0, sizeof(cmd));
(void)snprintf(path, sizeof(path), "/proc/%s/cmdline", namelist[i]->d_name);
ret = stress_system_read(path, cmd, sizeof(cmd));
if (ret > 0) {
int j;
for (j = 0; j < (int)ret; j++) {
if (cmd[j] == '\0')
cmd[j] = ' ';
}
for (j--; j > 0; j--) {
if (cmd[j] == ' ')
cmd[j] = '\0';
else
break;
}
}
if (strstr(cmd, "stress-ng") == NULL)
continue;
pid = (pid_t)atoi(namelist[i]->d_name);
ppid = 0;
p_name = "?";
(void)shim_strscpy(state, "?", sizeof(state));
(void)snprintf(path, sizeof(path), "/proc/%s", namelist[i]->d_name);
if (shim_stat(path, &statbuf) == 0) {
#if defined(BUILD_STATIC)
(void)snprintf(name, sizeof(name), "%u", (unsigned int)statbuf.st_uid);
p_name = name;
#else
struct passwd *pwd;
pwd = getpwuid(statbuf.st_uid);
if (pwd && pwd->pw_name) {
p_name = pwd->pw_name;
} else {
(void)snprintf(name, sizeof(name), "%u", (unsigned int)statbuf.st_uid);
p_name = name;
}
#endif
}
(void)snprintf(path, sizeof(path), "/proc/%s/status", namelist[i]->d_name);
ret = stress_system_read(path, buf, sizeof(buf));
if (ret > 0) {
const char *ptr;
ptr = strstr(buf, "\nPPid:");
if (ptr) {
if (sscanf(ptr, "\nPPid:%d", &ppid) != 1)
ppid = 0;
}
(void)shim_strscpy(state, "?", sizeof(state));
ptr = strstr(buf, "\nState:");
if (ptr) {
if (sscanf(ptr, "\nState:%1s", state) != 1)
(void)shim_strscpy(state, "?", sizeof(state));
}
}
pr_inf("proc: %-8.8s %*d %*d %c %s\n", p_name, pid_width, pid, pid_width, ppid, state[0], cmd);
}
stress_dirent_list_free(namelist, n);
}
#else
void stress_dump_processes(void)
{
}
#endif
|