Mercurial > minori
view dep/animia/src/fd/linux.cc @ 151:54744a48a7d7
last commit part 2: struct init with {} is valid syntax, actually
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 14 Nov 2023 16:31:21 -0500 |
parents | ffa535b6d630 |
children | 8700806c2cc2 |
line wrap: on
line source
#include "animia/util.h" #include "animia/fd/linux.h" #include <algorithm> #include <filesystem> #include <fstream> #include <iostream> #include <sstream> #include <string> #include <unordered_map> #include <vector> #include <cstring> #include <fcntl.h> #include <dirent.h> #include <sys/stat.h> #include <unistd.h> #define PROC_LOCATION "/proc" namespace animia::internal::linux { /* this uses dirent instead of std::filesystem; it would make a bit more sense to use the latter, but this is platform dependent already :) */ std::vector<std::string> GetAllFilesInDir(const std::string& _dir) { std::vector<std::string> ret; DIR* dir = opendir(_dir.c_str()); if (!dir) return ret; struct dirent* dp; while ((dp = readdir(dir)) != NULL) { if (!(!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))) ret.push_back(_dir + "/" + dp->d_name); } closedir(dir); return ret; } std::string Basename(const std::string& path) { return path.substr(path.find_last_of("/") + 1, path.length()); } static bool IsRegularFile(std::string link) { struct stat sb; if (stat(link.c_str(), &sb) == -1) return false; return S_ISREG(sb.st_mode); } static bool AreFlagsOk(pid_t pid, int fd) { const std::string path = PROC_LOCATION "/" + std::to_string(pid) + "/fdinfo/" + std::to_string(fd); std::stringstream buffer; { std::string data; if (!util::ReadFile(path, data)) return false; buffer << data; } int flags = 0; for (std::string line; std::getline(buffer, line);) { /* FIXME: exception handling here!! */ if (line.rfind("flags:", 0) == 0) { flags = std::stoi(line.substr(line.find_last_not_of("0123456789") + 1)); } } if (flags & O_WRONLY || flags & O_RDWR) return false; return true; } static std::string GetFilenameFromFd(std::string link) { /* gets around stupid linux limitation where /proc doesn't give actual filesize readings */ size_t exe_size = 1024; ssize_t exe_used; std::string ret; while (1) { ret = std::string(exe_size, '\0'); exe_used = readlink(link.c_str(), &ret.front(), ret.length()); if (exe_used == (ssize_t)-1) return NULL; if (exe_used < (ssize_t)1) { errno = ENOENT; return NULL; } if (exe_used < (ssize_t)(exe_size - 1)) break; exe_size += 1024; } return ret.c_str(); } bool LinuxFdTools::GetAllPids(std::set<pid_t>& pids) { bool success = false; for (const auto& dir : GetAllFilesInDir(PROC_LOCATION)) { pid_t pid; try { pid = std::stoul(Basename(dir)); success = true; } catch (std::invalid_argument) { continue; } pids.insert(pid); } return success; } bool LinuxFdTools::GetProcessName(pid_t pid, std::string& result) { const std::string path = PROC_LOCATION "/" + std::to_string(pid) + "/comm"; if (!util::ReadFile(path, result)) return false; result.erase(std::remove(result.begin(), result.end(), '\n'), result.end()); return true; } bool LinuxFdTools::EnumerateOpenFiles(const std::set<pid_t>& pids, std::vector<OpenFile>& files) { for (const auto& pid : pids) { const std::string path = PROC_LOCATION "/" + std::to_string(pid) + "/fd"; for (const auto& dir : GetAllFilesInDir(path)) { if (!AreFlagsOk(pid, std::stoi(Basename(dir)))) continue; std::string name = GetFilenameFromFd(dir); if (!IsRegularFile(name)) continue; files.push_back({pid, name}); } } return true; } } // namespace animia::internal::linux