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
|
/*
* No copyright is claimed. This code is in the public domain; do with
* it what you wish.
*
* Authors: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu> [2025]
*/
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/vfs.h>
#include <sys/types.h>
#include <errno.h>
#include <err.h>
#include "c.h"
#include "nls.h"
#include "strutils.h"
#include "pidfd-utils.h"
#include "statfs_magic.h"
/*
* Returns 1, if the pidfd has the pidfs file system type, otherwise 0.
*/
int pfd_is_pidfs(int pidfd)
{
struct statfs stfs;
int rc;
rc = fstatfs(pidfd, &stfs);
if (rc < 0)
return 0;
return F_TYPE_EQUAL(stfs.f_type, STATFS_PIDFS_MAGIC);
}
#ifdef USE_PIDFD_INO_SUPPORT
uint64_t pidfd_get_inode(int pidfd)
{
struct statx stx;
int rc;
rc = statx(pidfd, "", AT_EMPTY_PATH, STATX_INO, &stx);
if (rc < 0) {
close(pidfd);
err(EXIT_FAILURE, N_("failed to statx() pidfd"));
}
return stx.stx_ino;
}
#endif
/*
* ul_get_valid_pidfd_or_err() - Return a valid file descriptor for a PID
* or exit the process with an error message.
*
* @pid: PID number for which to get a file descriptor
* @pfd_ino: A pidfd inode number that is expected to be the
* same as for the new file descriptor.
*
* Pass @pfd_ino as 0, if the pidfd should not be validated.
*
* Return: On success, a file descriptor is returned.
* On failure, err() is called with an error message
* and the processes is terminated.
*
*/
#ifdef USE_PIDFD_INO_SUPPORT
int ul_get_valid_pidfd_or_err(pid_t pid, uint64_t pidfd_ino)
#else
int ul_get_valid_pidfd_or_err(pid_t pid, uint64_t pidfd_ino __attribute__((__unused__)))
#endif
{
int pfd;
pfd = ul_get_valid_pidfd(pid, pidfd_ino);
if (pfd < 0)
err(EXIT_FAILURE, N_("failed to obtain a valid file descriptor for PID %d"), pid);
return pfd;
}
/*
* ul_get_valid_pidfd() - Return a valid file descriptor for a PID
*
* @pid: PID number for which to get a file descriptor
* @pfd_ino: A pidfd inode number that is expected to be the
* same as for the new file descriptor.
*
* Pass @pfd_ino as 0, if the pidfd should not be validated.
*
* Return: On success, a file descriptor is returned.
* On failure, a negative errno is returned and errno
* is set accordingly.
*
*/
#ifdef USE_PIDFD_INO_SUPPORT
int ul_get_valid_pidfd(pid_t pid, uint64_t pidfd_ino)
#else
int ul_get_valid_pidfd(pid_t pid, uint64_t pidfd_ino __attribute__((__unused__)))
#endif
{
int pfd;
pfd = pidfd_open(pid, 0);
if (pfd < 0)
return -errno;
/* the file descriptor has to have the pidfs file system type
* otherwise the inode assigned to it will not be useful.
*/
if (!pfd_is_pidfs(pfd)) {
close(pfd);
return -(errno = ENOTSUP);
}
#ifdef USE_PIDFD_INO_SUPPORT
uint64_t real_pidfd_ino;
if (pidfd_ino) {
real_pidfd_ino = pidfd_get_inode(pfd);
if (real_pidfd_ino != pidfd_ino) {
close(pfd);
return -(errno = ESRCH);
}
}
#endif
return pfd;
}
|