pidfd_open (2) - Linux Manuals
pidfd_open: obtain a file descriptor that refers to a process
NAME
pidfd_open - obtain a file descriptor that refers to a process
SYNOPSIS
#include <sys/types.h> int pidfd_open(pid_t pid, unsigned int flags);
DESCRIPTION
The pidfd_open() system call creates a file descriptor that refers to the process whose PID is specified in pid. The file descriptor is returned as the function result; the close-on-exec flag is set on the file descriptor.The flags argument is reserved for future use; currently, this argument must be specified as 0.
RETURN VALUE
On success, pidfd_open() returns a file descriptor (a nonnegative integer). On error, -1 is returned and errno is set to indicate the cause of the error.ERRORS
- EINVAL
- flags is not 0.
- EINVAL
- pid is not valid.
- EMFILE
- The per-process limit on the number of open file descriptors has been reached (see the description of RLIMIT_NOFILE in getrlimit(2)).
- ENFILE
- The system-wide limit on the total number of open files has been reached.
- ENODEV
- The anonymous inode filesystem is not available in this kernel.
- ENOMEM
- Insufficient kernel memory was available.
- ESRCH
- The process specified by pid does not exist.
VERSIONS
pidfd_open() first appeared in Linux 5.3.CONFORMING TO
pidfd_open() is Linux specific.NOTES
Currently, there is no glibc wrapper for this system call; call it using syscall(2).The following code sequence can be used to obtain a file descriptor for the child of fork(2):
pid = fork();
if (pid > 0) { /* If parent */
Even if the child has already terminated by the time of the
pidfd_open()
call, its PID will not have been recycled and the returned
file descriptor will refer to the resulting zombie process.
Note, however, that this is guaranteed only if the following
conditions hold true:
If any of these conditions does not hold,
then the child process (along with a PID file descriptor that refers to it)
should instead be created using
clone(2)
with the
CLONE_PIDFD
flag.
The
pidfd_open()
system call is the preferred way of obtaining a PID file descriptor
for an already existing process.
The alternative is to obtain a file descriptor by opening a
/proc/[pid]
directory.
However, the latter technique is possible only if the
proc(5)
filesystem is mounted;
furthermore, the file descriptor obtained in this way is
not
pollable and can't be waited on with
waitid(2).
#ifndef __NR_pidfd_open
#define __NR_pidfd_open 434 /* System call # on most architectures */
#endif
static int
pidfd_open(pid_t pid, unsigned int flags)
{
int
main(int argc, char *argv[])
{
Use cases for PID file descriptors
A PID file descriptor returned by
pidfd_open()
(or by
clone(2)
with the
CLONE_PID
flag) can be used for the following purposes:
EXAMPLES
The program below opens a PID file descriptor for the
process whose PID is specified as its command-line argument.
It then uses
poll(2)
to monitor the file descriptor for process exit, as indicated by an
EPOLLIN
event.
Program source
#define _GNU_SOURCE
#include <sys/types.h>
#include <sys/syscall.h>
#include <unistd.h>
#include <poll.h>
#include <stdlib.h>
#include <stdio.h>
COLOPHON
This page is part of release 5.10 of the Linux
man-pages
project.
A description of the project,
information about reporting bugs,
and the latest version of this page,
can be found at
https://www.kernel.org/doc/man-pages/.
SEE ALSO
clone(2),
kill(2),
pidfd_getfd(2),
pidfd_send_signal(2),
poll(2),
select(2),
setns(2),
waitid(2),
epoll(7)