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
|
// Copyright Contributors to the DNF5 project.
// Copyright Contributors to the libdnf project.
// SPDX-License-Identifier: LGPL-2.1-or-later
//
// This file is part of libdnf: https://github.com/rpm-software-management/libdnf/
//
// Libdnf is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 2.1 of the License, or
// (at your option) any later version.
//
// Libdnf 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with libdnf. If not, see <https://www.gnu.org/licenses/>.
#ifndef LIBDNF5_COMMON_PROC_HPP
#define LIBDNF5_COMMON_PROC_HPP
#include "libdnf5/defs.h"
#include <sys/types.h>
#include <filesystem>
#include <set>
#include <vector>
namespace libdnf5 {
constexpr uid_t INVALID_UID = static_cast<uid_t>(-1);
/// Read the process owner login uid from the "/proc/<pid>/loginuid".
/// @param pid process id
/// @return libdnf5::INVALID_UID if fails, login uid otherwise
/// @since 5.0
LIBDNF_API uid_t read_login_uid_from_proc(pid_t pid) noexcept;
/// Return the current user login uid, if available.
/// The getuid() is returned instead if there was a problem.
/// The value is cached.
/// @since 5.0
LIBDNF_API uid_t get_login_uid() noexcept;
/// Get the set of PIDs which are accessing the specified path.
/// Similar to the fuser tool from psmisc.
/// Ignores entries in procfs that cannot be accessed, e.g. due to insufficient permissions.
/// @throw libdnf5::SystemError if the specified path cannot be accessed.
/// @since 5.3.1.0
LIBDNF_API std::set<pid_t> fuser(const std::filesystem::path & path);
/// Get the cmdline of a process given its PID.
/// @throw libdnf5::SystemError if the entry in procfs cannot be accessed.
/// @since 5.3.1.0
LIBDNF_API std::vector<std::string> pid_cmdline(const pid_t pid);
} // namespace libdnf5
#endif
|