Files
fastfetch/src/common/impl/processing_linux.c
T

673 lines
20 KiB
C
Raw Normal View History

2021-04-18 15:19:21 +02:00
#include "fastfetch.h"
2026-01-06 09:48:38 +08:00
#include "common/processing.h"
#include "common/io.h"
2026-05-28 15:58:08 +08:00
#include "common/strutil.h"
2026-01-06 09:48:38 +08:00
#include "common/mallocHelper.h"
2021-04-18 15:19:21 +02:00
2022-06-18 14:25:31 +02:00
#include <stdlib.h>
2021-04-18 15:19:21 +02:00
#include <unistd.h>
2023-07-10 16:14:04 +08:00
#include <signal.h>
#include <poll.h>
2023-07-11 20:28:59 +08:00
#include <fcntl.h>
#include <errno.h>
2023-07-15 08:25:57 +08:00
#include <sys/wait.h>
#if !(__ANDROID__ || __OpenBSD__)
#include <spawn.h>
#endif
2023-07-11 20:28:59 +08:00
#if defined(__FreeBSD__) || defined(__APPLE__)
#include <sys/types.h>
#include <sys/user.h>
#include <sys/sysctl.h>
#endif
2024-06-17 14:44:34 +08:00
#if defined(__APPLE__)
#include <libproc.h>
2024-06-17 14:44:34 +08:00
#elif defined(__sun)
#include <procfs.h>
2024-10-04 15:58:17 +08:00
#elif defined(__OpenBSD__)
#include <sys/param.h>
#include <sys/sysctl.h>
#include <kvm.h>
2024-10-27 11:43:36 +08:00
#elif defined(__NetBSD__)
#include <sys/types.h>
#include <sys/sysctl.h>
2025-02-12 00:44:41 +08:00
#elif defined(__HAIKU__)
#include <OS.h>
#include <image.h>
2024-05-28 23:46:13 +08:00
#endif
#ifndef environ
extern char** environ;
#endif
2023-12-04 15:10:58 +08:00
enum { FF_PIPE_BUFSIZ = 8192 };
2021-04-18 15:19:21 +02:00
2026-03-29 09:28:49 +08:00
static inline int ffPipe2(int* fds, int flags) {
#ifndef FF_HAVE_PIPE2
if (pipe(fds) == -1) {
return -1;
}
fcntl(fds[0], F_SETFL, fcntl(fds[0], F_GETFL) | flags);
fcntl(fds[1], F_SETFL, fcntl(fds[1], F_GETFL) | flags);
return 0;
#else
return pipe2(fds, flags);
#endif
}
// Not thread-safe
2026-03-29 09:28:49 +08:00
const char* ffProcessSpawn(char* const argv[], bool useStdErr, FFProcessHandle* outHandle) {
int pipes[2];
2026-03-29 09:28:49 +08:00
if (ffPipe2(pipes, O_CLOEXEC) == -1) {
return "pipe() failed";
2026-03-29 09:28:49 +08:00
}
pid_t childPid = -1;
int nullFile = ffGetNullFD();
2026-03-29 09:28:49 +08:00
#if !(__ANDROID__ || __OpenBSD__)
// NetBSD / Darwin: native syscall
// Linux (glibc): clone3-execve
// FreeBSD: vfork-execve
// illumos: vforkx-execve
// OpenBSD / Android (bionic): fork-execve
posix_spawn_file_actions_t file_actions;
posix_spawn_file_actions_init(&file_actions);
posix_spawn_file_actions_adddup2(&file_actions, pipes[1], useStdErr ? STDERR_FILENO : STDOUT_FILENO);
posix_spawn_file_actions_adddup2(&file_actions, nullFile, useStdErr ? STDOUT_FILENO : STDERR_FILENO);
static char* oldLang = NULL;
static int langIndex = -1;
2026-03-29 09:28:49 +08:00
if (langIndex >= 0) {
// Found before
if (oldLang) // oldLang was set only if it needed to be changed
{
2026-03-29 09:28:49 +08:00
if (environ[langIndex] != oldLang) {
// environ is changed outside of this function
langIndex = -1;
2026-03-29 09:28:49 +08:00
} else {
environ[langIndex] = (char*) "LANG=C.UTF-8";
2026-03-29 09:28:49 +08:00
}
}
}
2026-03-29 09:28:49 +08:00
if (langIndex < 0) {
for (int i = 0; environ[i] != NULL; i++) {
if (ffStrStartsWith(environ[i], "LANG=")) {
langIndex = i;
const char* langValue = environ[i] + 5; // Skip "LANG="
if (ffStrEqualsIgnCase(langValue, "C") ||
ffStrStartsWithIgnCase(environ[i], "C.") ||
ffStrEqualsIgnCase(langValue, "en_US") ||
2026-03-29 09:28:49 +08:00
ffStrStartsWithIgnCase(langValue, "en_US.")) {
break; // No need to change LANG
2026-03-29 09:28:49 +08:00
}
oldLang = environ[i];
environ[i] = (char*) "LANG=C.UTF-8"; // Set LANG to C.UTF-8 for consistent output
break;
}
}
}
int ret = posix_spawnp(&childPid, argv[0], &file_actions, NULL, argv, environ);
2026-03-29 09:28:49 +08:00
if (oldLang) {
environ[langIndex] = oldLang;
2026-03-29 09:28:49 +08:00
}
posix_spawn_file_actions_destroy(&file_actions);
2026-03-29 09:28:49 +08:00
if (ret != 0) {
close(pipes[0]);
close(pipes[1]);
2026-03-29 09:28:49 +08:00
if (ret == ENOENT) {
return "command not found";
2026-03-29 09:28:49 +08:00
}
return "posix_spawnp() failed";
}
2026-03-29 09:28:49 +08:00
#else
// https://github.com/termux/termux-packages/issues/25369
childPid = fork();
2026-03-29 09:28:49 +08:00
if (childPid == -1) {
close(pipes[0]);
close(pipes[1]);
return "fork() failed";
}
2026-03-29 09:28:49 +08:00
if (childPid == 0) {
// Child process
dup2(pipes[1], useStdErr ? STDERR_FILENO : STDOUT_FILENO);
dup2(nullFile, useStdErr ? STDOUT_FILENO : STDERR_FILENO);
putenv("LANG=C.UTF-8");
execvp(argv[0], argv);
_exit(127);
}
2026-03-29 09:28:49 +08:00
#endif
close(pipes[1]);
outHandle->pid = childPid;
outHandle->pipeRead = pipes[0];
return NULL;
}
2026-03-29 09:28:49 +08:00
const char* ffProcessReadOutput(FFProcessHandle* handle, FFstrbuf* buffer) {
assert(handle->pipeRead != -1);
assert(handle->pid != -1);
const int32_t timeout = instance.config.general.processingTimeout;
FF_AUTO_CLOSE_FD int childPipeFd = handle->pipeRead;
pid_t childPid = handle->pid;
handle->pipeRead = -1;
handle->pid = -1;
char str[FF_PIPE_BUFSIZ];
2023-07-11 20:28:59 +08:00
2026-03-29 09:28:49 +08:00
for (;;) {
if (timeout >= 0) {
2026-03-30 10:27:23 +08:00
struct pollfd pollfd = { childPipeFd, POLLIN, 0 };
int pollret = poll(&pollfd, 1, timeout);
2026-03-29 09:28:49 +08:00
if (pollret == 0) {
2023-07-11 20:28:59 +08:00
kill(childPid, SIGTERM);
waitpid(childPid, NULL, 0);
return "poll(&pollfd, 1, timeout) timeout (try increasing --processing-timeout)";
2026-03-29 09:28:49 +08:00
} else if (pollret < 0 || (pollfd.revents & POLLERR)) {
2023-07-11 20:28:59 +08:00
kill(childPid, SIGTERM);
waitpid(childPid, NULL, 0);
return pollret < 0
? "poll(&pollfd, 1, timeout) error: pollret < 0"
: "poll(&pollfd, 1, timeout) error: pollfd.revents & POLLERR";
2023-07-11 20:28:59 +08:00
}
}
2023-07-11 20:28:59 +08:00
ssize_t nRead = read(childPipeFd, str, FF_PIPE_BUFSIZ);
2026-03-29 09:28:49 +08:00
if (nRead > 0) {
ffStrbufAppendNS(buffer, (uint32_t) nRead, str);
2026-03-29 09:28:49 +08:00
} else if (nRead == 0) {
int stat_loc = 0;
2026-03-29 09:28:49 +08:00
if (childPid > 0 && waitpid(childPid, &stat_loc, 0) == childPid) {
if (!WIFEXITED(stat_loc)) {
return "child process exited abnormally";
2026-03-29 09:28:49 +08:00
}
if (WEXITSTATUS(stat_loc) == 127) {
return "command not found";
2026-03-29 09:28:49 +08:00
}
// We only handle 127 as an error. See `getTerminalVersionUrxvt` in `terminalshell.c`
return NULL;
}
return NULL;
2026-03-29 09:28:49 +08:00
} else if (nRead < 0) {
break;
2026-03-29 09:28:49 +08:00
}
}
return "read(childPipeFd, str, FF_PIPE_BUFSIZ) failed";
}
2026-03-29 09:28:49 +08:00
void ffProcessGetInfoLinux(pid_t pid, FFstrbuf* processName, FFstrbuf* exe, const char** exeName, FFstrbuf* exePath) {
assert(processName->length > 0);
ffStrbufClear(exe);
2026-03-29 09:28:49 +08:00
if (exePath) {
ffStrbufClear(exePath);
}
2026-03-29 09:28:49 +08:00
#if defined(__linux__) || defined(__GNU__)
char filePath[64];
2026-03-29 09:28:49 +08:00
snprintf(filePath, sizeof(filePath), "/proc/%d/cmdline", (int) pid);
2026-03-29 09:28:49 +08:00
if (ffReadFileBuffer(filePath, exe)) {
const char* p = exe->chars;
uint32_t len = (uint32_t) strlen(p);
2026-03-29 09:28:49 +08:00
if (len + 1 < exe->length) {
const char* name = memrchr(p, '/', len);
2026-03-29 09:28:49 +08:00
if (name) {
name++;
} else {
name = p;
}
// For interpreters, try to find the real script path in the arguments
if (ffStrStartsWith(name, "python")
#ifndef __ANDROID__
|| ffStrEquals(name, "guile") // for shepherd
#endif
2026-03-29 09:28:49 +08:00
) {
// `cmdline` always ends with a trailing '\0', and ffReadFileBuffer appends another \0
// So `exe->chars` is always double '\0' terminated
2026-03-29 09:28:49 +08:00
for (p = p + len + 1; *p && *p == '-'; p += strlen(p) + 1) { // Skip arguments
assert(p - exe->chars < exe->allocated);
2026-03-29 09:28:49 +08:00
}
if (*p) {
len = (uint32_t) strlen(p);
memmove(exe->chars, p, len + 1);
}
}
}
assert(len < exe->allocated);
exe->length = len;
2026-03-29 09:28:49 +08:00
ffStrbufTrimLeft(exe, '-'); // Login shells start with a dash
}
2026-03-29 09:28:49 +08:00
if (exePath) {
snprintf(filePath, sizeof(filePath), "/proc/%d/exe", (int) pid);
char buf[PATH_MAX];
ssize_t length = readlink(filePath, buf, PATH_MAX - 1);
2024-05-28 23:46:13 +08:00
if (length > 0) // doesn't contain trailing NUL
{
buf[length] = '\0';
// When the process is a deleted executable, the resolved path is like `/usr/bin/app (deleted)`
// But we can still access the binary via `/proc/pid/exe`. See #2136
2026-03-29 09:28:49 +08:00
if (ffPathExists(buf, FF_PATHTYPE_ANY)) {
ffStrbufSetNS(exePath, (uint32_t) length, buf);
}
2024-05-28 23:46:13 +08:00
}
if (exePath->length == 0 && access(filePath, X_OK) == 0) {
ffStrbufSetS(exePath, filePath);
2026-03-29 09:28:49 +08:00
}
}
2026-03-29 09:28:49 +08:00
#elif defined(__APPLE__)
size_t len = 0;
2026-03-30 10:27:23 +08:00
int mibs[] = { CTL_KERN, KERN_PROCARGS2, pid };
2026-03-29 09:28:49 +08:00
if (sysctl(mibs, ARRAY_SIZE(mibs), NULL, &len, NULL, 0) == 0) { // try get arg0
// don't know why if don't let len longer, proArgs2 and len will change during the following sysctl() in old MacOS version.
len++;
FF_AUTO_FREE char* const procArgs2 = malloc(len);
2026-03-29 09:28:49 +08:00
if (sysctl(mibs, ARRAY_SIZE(mibs), procArgs2, &len, NULL, 0) == 0) {
// https://gist.github.com/nonowarn/770696#file-getargv-c-L46
uint32_t argc = *(uint32_t*) procArgs2;
const char* realExePath = procArgs2 + sizeof(argc);
const char* arg0 = memchr(realExePath, '\0', len - (size_t) (realExePath - procArgs2));
2026-03-29 09:28:49 +08:00
if (exePath) {
2024-05-28 23:46:13 +08:00
ffStrbufSetNS(exePath, (uint32_t) (arg0 - realExePath), realExePath);
2026-03-29 09:28:49 +08:00
}
2026-03-29 09:28:49 +08:00
do {
arg0++;
} while (*arg0 == '\0');
assert(arg0 < procArgs2 + len);
2024-05-30 09:27:35 +08:00
2026-03-29 09:28:49 +08:00
if (argc > 1) {
2024-05-30 09:27:35 +08:00
// #977
const char* p = strrchr(arg0, '/');
2026-03-29 09:28:49 +08:00
if (p) {
2024-05-30 09:27:35 +08:00
p++;
2026-03-29 09:28:49 +08:00
} else {
p = arg0;
2026-03-29 09:28:49 +08:00
}
if (ffStrStartsWithIgnCase(p, "python")) { // /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/Resources/Python.app/Contents/MacOS/Python /Users/carter/.local/bin/xonsh
arg0 = p + strlen(p) + 1;
2026-03-29 09:28:49 +08:00
}
2024-05-30 09:27:35 +08:00
}
2026-03-29 09:28:49 +08:00
if (*arg0 == '-') {
arg0++; // Login shells
}
ffStrbufSetS(exe, arg0);
}
}
2026-03-29 09:28:49 +08:00
if (exePath || exe->length == 0) {
2024-11-13 10:46:30 +08:00
char buf[PROC_PIDPATHINFO_MAXSIZE];
int length = proc_pidpath(pid, buf, ARRAY_SIZE(buf));
2026-03-29 09:28:49 +08:00
if (length > 0) {
if (exe->length == 0) {
ffStrbufSetNS(exe, (uint32_t) length, buf);
2026-03-29 09:28:49 +08:00
}
if (exePath) {
// We don't use exec_path above as exePath because it's a relative path and can be different
// from the actual executable being run (for example, when the original file is moved)
ffStrbufSetNS(exePath, (uint32_t) length, buf);
}
2024-05-28 23:46:13 +08:00
}
}
2026-03-29 09:28:49 +08:00
#elif defined(__FreeBSD__) || defined(__NetBSD__)
size_t size = ARG_MAX;
FF_AUTO_FREE char* args = malloc(size);
static_assert(ARG_MAX > PATH_MAX, "");
2026-03-30 10:27:23 +08:00
if (exePath && sysctl((int[]) { CTL_KERN,
#if __FreeBSD__
2026-03-29 09:28:49 +08:00
KERN_PROC,
KERN_PROC_PATHNAME,
pid
#else
2026-03-29 09:28:49 +08:00
KERN_PROC_ARGS,
pid,
KERN_PROC_PATHNAME
#endif
2026-03-29 09:28:49 +08:00
},
4,
args,
&size,
NULL,
0) == 0)
ffStrbufSetNS(exePath, (uint32_t) (size - 1), args);
size = ARG_MAX;
2026-03-29 09:28:49 +08:00
if (sysctl(
2026-03-30 10:27:23 +08:00
(int[]) { CTL_KERN,
#if __FreeBSD__
2026-03-29 09:28:49 +08:00
KERN_PROC,
KERN_PROC_ARGS,
pid
#else
2026-03-29 09:28:49 +08:00
KERN_PROC_ARGS,
pid,
KERN_PROC_ARGV,
#endif
2026-03-29 09:28:49 +08:00
},
4,
args,
&size,
NULL,
0) == 0) {
char* arg0 = args;
size_t arg0Len = strlen(args);
2026-03-29 09:28:49 +08:00
if (size > arg0Len + 1) {
char* p = (char*) memrchr(args, '/', arg0Len);
2026-03-29 09:28:49 +08:00
if (p) {
p++;
2026-03-29 09:28:49 +08:00
} else {
p = arg0;
2026-03-29 09:28:49 +08:00
}
if (ffStrStartsWith(p, "python")) // /usr/local/bin/python3.9 /home/carter/.local/bin/xonsh
{
arg0 += arg0Len + 1;
}
}
2026-03-29 09:28:49 +08:00
if (arg0[0] == '-') {
arg0++;
}
ffStrbufSetS(exe, arg0);
}
2026-03-29 09:28:49 +08:00
#elif defined(__sun)
2024-06-17 14:44:34 +08:00
char filePath[128];
2024-06-17 14:44:34 +08:00
snprintf(filePath, sizeof(filePath), "/proc/%d/psinfo", (int) pid);
psinfo_t proc;
2026-03-29 09:28:49 +08:00
if (ffReadFileData(filePath, sizeof(proc), &proc) == sizeof(proc)) {
2025-06-22 12:12:49 +08:00
const char* args = proc.pr_psargs;
2026-03-29 09:28:49 +08:00
if (args[0] == '-') {
++args;
}
2025-06-22 12:12:49 +08:00
const char* end = strchr(args, ' ');
ffStrbufSetNS(exe, end ? (uint32_t) (end - args) : (uint32_t) strlen(args), args);
2024-06-17 14:44:34 +08:00
}
2026-03-29 09:28:49 +08:00
if (exePath) {
2024-06-17 15:18:02 +08:00
snprintf(filePath, sizeof(filePath), "/proc/%d/path/a.out", (int) pid);
char buf[PATH_MAX];
ssize_t length = readlink(filePath, buf, PATH_MAX - 1);
2024-06-17 15:18:02 +08:00
if (length > 0) // doesn't contain trailing NUL
{
buf[length] = '\0';
2026-03-29 09:28:49 +08:00
ffStrbufSetNS(exePath, (uint32_t) length, buf);
2024-06-17 15:18:02 +08:00
}
2024-06-17 14:44:34 +08:00
}
2026-03-29 09:28:49 +08:00
#elif defined(__OpenBSD__)
2024-10-04 15:58:17 +08:00
kvm_t* kd = kvm_open(NULL, NULL, NULL, KVM_NO_FILES, NULL);
int count = 0;
const struct kinfo_proc* proc = kvm_getprocs(kd, KERN_PROC_PID, pid, sizeof(struct kinfo_proc), &count);
2026-03-29 09:28:49 +08:00
if (proc) {
2024-10-04 15:58:17 +08:00
char** argv = kvm_getargv(kd, proc, 0);
2026-03-29 09:28:49 +08:00
if (argv) {
2025-02-05 16:10:42 +08:00
const char* arg0 = argv[0];
2026-03-29 09:28:49 +08:00
if (arg0[0] == '-') {
arg0++;
}
2025-02-05 16:10:42 +08:00
ffStrbufSetS(exe, arg0);
}
2024-10-04 15:58:17 +08:00
}
kvm_close(kd);
2026-03-29 09:28:49 +08:00
#elif defined(__HAIKU__)
2025-02-18 19:49:40 +08:00
image_info info;
int32 cookie = 0;
2025-02-17 21:22:12 +08:00
2026-03-29 09:28:49 +08:00
while (get_next_image_info(pid, &cookie, &info) == B_OK) {
if (info.type != B_APP_IMAGE) {
continue;
}
2025-02-18 19:49:40 +08:00
ffStrbufSetS(exe, info.name);
2026-03-29 09:28:49 +08:00
if (exePath) {
2025-02-18 19:49:40 +08:00
ffStrbufSet(exePath, exe);
2026-03-29 09:28:49 +08:00
}
2025-02-18 19:49:40 +08:00
break;
}
2026-03-29 09:28:49 +08:00
#endif
2026-03-29 09:28:49 +08:00
if (exe->length == 0) {
ffStrbufSet(exe, processName);
2026-03-29 09:28:49 +08:00
}
assert(exe->length > 0);
uint32_t lastSlashIndex = ffStrbufLastIndexC(exe, '/');
2026-03-29 09:28:49 +08:00
if (lastSlashIndex < exe->length) {
*exeName = exe->chars + lastSlashIndex + 1;
2026-03-29 09:28:49 +08:00
}
}
2026-03-29 09:28:49 +08:00
const char* ffProcessGetBasicInfoLinux(pid_t pid, FFstrbuf* name, pid_t* ppid, int32_t* tty) {
if (pid <= 0) {
return "Invalid pid";
2026-03-29 09:28:49 +08:00
}
2026-03-29 09:28:49 +08:00
#if defined(__linux__) || defined(__GNU__)
2024-05-28 23:46:13 +08:00
char procFilePath[64];
#if __linux__
if (ppid || tty)
#endif
2024-05-28 23:46:13 +08:00
{
2026-03-29 09:28:49 +08:00
snprintf(procFilePath, sizeof(procFilePath), "/proc/%d/stat", (int) pid);
2024-05-28 23:46:13 +08:00
char buf[PROC_FILE_BUFFSIZ];
ssize_t nRead = ffReadFileData(procFilePath, sizeof(buf) - 1, buf);
2026-03-29 09:28:49 +08:00
if (nRead <= 8) {
2024-05-28 23:46:13 +08:00
return "ffReadFileData(/proc/pid/stat, PROC_FILE_BUFFSIZ-1, buf) failed";
2026-03-29 09:28:49 +08:00
}
buf[nRead] = '\0'; // pid (comm) state ppid pgrp session tty
const char* pState = NULL;
{
// comm in `/proc/pid/stat` is not encoded, and may contain ' ', ')' or even `\n`
const char* start = memchr(buf, '(', (size_t) nRead);
2026-03-29 09:28:49 +08:00
if (!start) {
return "memchr(stat, '(') failed";
2026-03-29 09:28:49 +08:00
}
start++;
const char* end = memrchr(start, ')', (size_t) nRead - (size_t) (start - buf));
2026-03-29 09:28:49 +08:00
if (!end) {
return "memrchr(stat, ')') failed";
2026-03-29 09:28:49 +08:00
}
ffStrbufSetNS(name, (uint32_t) (end - start), start);
ffStrbufTrimRightSpace(name);
2026-03-29 09:28:49 +08:00
if (name->chars[0] == '\0') {
return "process name is empty";
2026-03-29 09:28:49 +08:00
}
pState = end + 2; // skip ") "
}
#if !__linux__
if (ppid || tty)
#endif
{
int ppid_, tty_;
2026-03-29 09:28:49 +08:00
if (sscanf(pState + 2, "%d %*d %*d %d", &ppid_, &tty_) < 2) {
return "sscanf(stat) failed";
2026-03-29 09:28:49 +08:00
}
2026-03-29 09:28:49 +08:00
if (ppid) {
*ppid = (pid_t) ppid_;
2026-03-29 09:28:49 +08:00
}
if (tty) {
*tty = tty_ & 0xFF;
2026-03-29 09:28:49 +08:00
}
}
2024-05-28 23:46:13 +08:00
}
#if __linux__
2026-03-29 09:28:49 +08:00
else {
snprintf(procFilePath, sizeof(procFilePath), "/proc/%d/comm", (int) pid);
2024-05-28 23:46:13 +08:00
ssize_t nRead = ffReadFileBuffer(procFilePath, name);
2026-03-29 09:28:49 +08:00
if (nRead <= 0) {
2025-08-24 21:50:21 +08:00
return "ffReadFileBuffer(/proc/pid/comm, name) failed";
2026-03-29 09:28:49 +08:00
}
2024-05-28 23:46:13 +08:00
ffStrbufTrimRightSpace(name);
}
#endif
2026-03-29 09:28:49 +08:00
#elif defined(__APPLE__)
struct kinfo_proc proc;
size_t size = sizeof(proc);
2026-03-29 09:28:49 +08:00
if (sysctl(
2026-03-30 10:27:23 +08:00
(int[]) { CTL_KERN, KERN_PROC, KERN_PROC_PID, pid }, 4, &proc, &size, NULL, 0)) {
return "sysctl(KERN_PROC_PID) failed";
2026-03-29 09:28:49 +08:00
}
2026-06-18 13:28:07 +08:00
ffStrbufSetS(name, proc.kp_proc.p_comm); // truncated to 16 chars
2026-03-29 09:28:49 +08:00
if (ppid) {
*ppid = (pid_t) proc.kp_eproc.e_ppid;
}
if (tty) {
*tty = ((proc.kp_eproc.e_tdev >> 24) & 0xFF) == 0x10
? proc.kp_eproc.e_tdev & 0xFFFFFF
: -1;
}
2026-03-29 09:28:49 +08:00
#elif defined(__FreeBSD__)
#ifdef __DragonFly__
#define ki_comm kp_comm
#define ki_ppid kp_ppid
#define ki_tdev kp_tdev
#define ki_flag kp_flags
#endif
2024-11-03 08:35:11 +08:00
struct kinfo_proc proc;
size_t size = sizeof(proc);
2026-03-29 09:28:49 +08:00
if (sysctl(
2026-03-30 10:27:23 +08:00
(int[]) { CTL_KERN, KERN_PROC, KERN_PROC_PID, pid }, 4, &proc, &size, NULL, 0)) {
return "sysctl(KERN_PROC_PID) failed";
2026-03-29 09:28:49 +08:00
}
2024-05-28 23:46:13 +08:00
ffStrbufSetS(name, proc.ki_comm);
2026-03-29 09:28:49 +08:00
if (ppid) {
*ppid = (pid_t) proc.ki_ppid;
}
if (tty) {
if (proc.ki_tdev != NODEV && proc.ki_flag & P_CONTROLT) {
const char* ttyName = devname(proc.ki_tdev, S_IFCHR);
2026-03-29 09:28:49 +08:00
if (ffStrStartsWith(ttyName, "pts/")) {
*tty = (int32_t) strtol(ttyName + strlen("pts/"), NULL, 10);
2026-03-29 09:28:49 +08:00
} else {
2024-10-27 11:43:36 +08:00
*tty = -1;
2026-03-29 09:28:49 +08:00
}
} else {
2024-10-27 11:43:36 +08:00
*tty = -1;
2026-03-29 09:28:49 +08:00
}
2024-10-27 11:43:36 +08:00
}
2026-03-29 09:28:49 +08:00
#elif defined(__NetBSD__)
2024-10-27 11:43:36 +08:00
struct kinfo_proc2 proc;
size_t size = sizeof(proc);
2026-03-29 09:28:49 +08:00
if (sysctl(
2026-03-30 10:27:23 +08:00
(int[]) { CTL_KERN, KERN_PROC2, KERN_PROC_PID, pid, sizeof(proc), 1 }, 6, &proc, &size, NULL, 0) != 0) {
2024-10-27 11:43:36 +08:00
return "sysctl(KERN_PROC_PID) failed";
2026-03-29 09:28:49 +08:00
}
2024-10-27 11:43:36 +08:00
ffStrbufSetS(name, proc.p_comm);
2026-03-29 09:28:49 +08:00
if (ppid) {
*ppid = (pid_t) proc.p_ppid;
}
if (tty) {
if (proc.p_flag & P_CONTROLT) {
2024-10-27 11:43:36 +08:00
const char* ttyName = devname(proc.p_tdev, S_IFCHR);
2026-03-29 09:28:49 +08:00
if (ffStrStartsWith(ttyName, "pts/")) {
2024-10-27 11:43:36 +08:00
*tty = (int32_t) strtol(ttyName + strlen("pts/"), NULL, 10);
2026-03-29 09:28:49 +08:00
} else {
*tty = -1;
2026-03-29 09:28:49 +08:00
}
} else {
*tty = -1;
2026-03-29 09:28:49 +08:00
}
}
2026-03-29 09:28:49 +08:00
#elif defined(__sun)
2024-06-17 14:44:34 +08:00
char path[128];
snprintf(path, sizeof(path), "/proc/%d/psinfo", (int) pid);
psinfo_t proc;
2026-03-29 09:28:49 +08:00
if (ffReadFileData(path, sizeof(proc), &proc) != sizeof(proc)) {
2024-06-17 14:44:34 +08:00
return "ffReadFileData(psinfo) failed";
2026-03-29 09:28:49 +08:00
}
2024-06-17 13:35:26 +08:00
2024-06-17 14:44:34 +08:00
ffStrbufSetS(name, proc.pr_fname);
2026-03-29 09:28:49 +08:00
if (ppid) {
2024-06-17 14:44:34 +08:00
*ppid = proc.pr_ppid;
2026-03-29 09:28:49 +08:00
}
if (tty) {
2024-06-17 14:44:34 +08:00
*tty = (int) proc.pr_ttydev;
2026-03-29 09:28:49 +08:00
}
2024-06-17 13:35:26 +08:00
2026-03-29 09:28:49 +08:00
#elif defined(__OpenBSD__)
2024-10-04 15:58:17 +08:00
kvm_t* kd = kvm_open(NULL, NULL, NULL, KVM_NO_FILES, NULL);
int count = 0;
const struct kinfo_proc* proc = kvm_getprocs(kd, KERN_PROC_PID, pid, sizeof(struct kinfo_proc), &count);
2026-03-29 09:28:49 +08:00
if (proc) {
2024-10-04 15:58:17 +08:00
ffStrbufSetS(name, proc->p_comm);
2026-03-29 09:28:49 +08:00
if (ppid) {
2024-10-04 15:58:17 +08:00
*ppid = proc->p_ppid;
2026-03-29 09:28:49 +08:00
}
if (tty) {
2024-10-04 15:58:17 +08:00
*tty = (int) proc->p_tdev;
2026-03-29 09:28:49 +08:00
}
2024-10-04 15:58:17 +08:00
}
kvm_close(kd);
2026-03-29 09:28:49 +08:00
if (!proc) {
2024-10-04 15:58:17 +08:00
return "kvm_getprocs() failed";
2026-03-29 09:28:49 +08:00
}
2024-10-04 15:58:17 +08:00
2026-03-29 09:28:49 +08:00
#elif defined(__HAIKU__)
2025-02-12 00:44:41 +08:00
team_info info;
2026-03-29 09:28:49 +08:00
if (get_team_info(pid, &info) == B_OK) {
2025-02-12 00:44:41 +08:00
ffStrbufSetS(name, info.name);
2026-03-29 09:28:49 +08:00
if (ppid) {
2025-02-12 00:44:41 +08:00
*ppid = info.parent;
2026-03-29 09:28:49 +08:00
}
2025-02-12 00:44:41 +08:00
}
FF_UNUSED(tty);
2026-03-29 09:28:49 +08:00
#else
return "Unsupported platform";
2026-03-29 09:28:49 +08:00
#endif
return NULL;
}