1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-11-24 12:21:09 +03:00
Files
glibc/sysdeps/unix/sysv/linux/tst-pidfd_getinfo.c
Adhemerval Zanella 907089ba36 linux: Handle EINVAL as unsupported on tst-pidfd_getinfo
Some kernels returns EINVAL for ioctl (PIDFD_GET_INFO) on pidfd
descriptors.

Checked on aarch64-linux-gnu with Linux 6.12.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
2025-11-21 13:13:26 -03:00

72 lines
2.2 KiB
C

/* Basic tests for Linux PID_GET_INFO interfaces.
Copyright (C) 2022-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library 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.
The GNU C Library 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 the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <stdint.h>
#include <sys/pidfd.h>
#include <support/check.h>
#include <support/xunistd.h>
static int
do_test (void)
{
{
/* The pidfd_getfd syscall was the last in the set of pidfd related
syscalls added to the kernel. Use pidfd_getfd to decide if this
kernel has pidfd support that we can test. */
int r = pidfd_getfd (0, 0, 1);
TEST_VERIFY_EXIT (r == -1);
if (errno == ENOSYS)
FAIL_UNSUPPORTED ("kernel does not support pidfd_getfd, skipping test");
}
int pidfd = pidfd_open (getpid(), 0);
TEST_VERIFY (pidfd >= 0);
int pid = pidfd_getpid (pidfd);
TEST_VERIFY (pid >= 0);
struct pidfd_info info = {
.mask = PIDFD_INFO_CGROUPID,
};
if (ioctl (pidfd, PIDFD_GET_INFO, &info) != 0)
{
if (errno == ENOTTY || errno == EINVAL)
FAIL_UNSUPPORTED ("kernel does not support PIDFD_GET_INFO");
else
FAIL_EXIT1 ("ioctl (PIDFD_GET_INFO) failed: %m");
}
TEST_COMPARE (info.pid, pid);
TEST_COMPARE (info.ppid, getppid ());
TEST_COMPARE (info.ruid, getuid ());
TEST_COMPARE (info.rgid, getgid ());
TEST_COMPARE (info.euid, geteuid ());
TEST_COMPARE (info.egid, getegid ());
TEST_COMPARE (info.suid, geteuid ());
TEST_COMPARE (info.sgid, getegid ());
if (info.mask & PIDFD_INFO_CGROUPID)
TEST_VERIFY (info.cgroupid != 0);
xclose (pidfd);
return 0;
}
#include <support/test-driver.c>