ioctl_userfaultfd (2) - Linux Manuals
ioctl_userfaultfd: create a file descriptor for handling page faults in user
NAME
ioctl_userfaultfd - create a file descriptor for handling page faults in user space
SYNOPSIS
#include <sys/ioctl.h> int ioctl(int fd, int cmd, ...);
DESCRIPTION
Various ioctl(2) operations can be performed on a userfaultfd object (created by a call to userfaultfd(2)) using calls of the form:ioctl(fd, cmd, argp); In the above, fd is a file descriptor referring to a userfaultfd object, cmd is one of the commands listed below, and argp is a pointer to a data structure that is specific to cmd.
The various ioctl(2) operations are described below. The UFFDIO_API, UFFDIO_REGISTER, and UFFDIO_UNREGISTER operations are used to configure userfaultfd behavior. These operations allow the caller to choose what features will be enabled and what kinds of events will be delivered to the application. The remaining operations are range operations. These operations enable the calling application to resolve page-fault events.
UFFDIO_API
(Since Linux 4.3.) Enable operation of the userfaultfd and perform API handshake.The argp argument is a pointer to a uffdio_api structure, defined as:
struct uffdio_api {
The
api
field denotes the API version requested by the application.
The kernel verifies that it can support the requested API version,
and sets the
features
and
ioctls
fields to bit masks representing all the available features and the generic
ioctl(2)
operations available.
For Linux kernel versions before 4.11, the
features
field must be initialized to zero before the call to
UFFDIO_API,
and zero (i.e., no feature bits) is placed in the
features
field by the kernel upon return from
ioctl(2).
Starting from Linux 4.11, the
features
field can be used to ask whether particular features are supported
and explicitly enable userfaultfd features that are disabled by default.
The kernel always reports all the available features in the
features
field.
To enable userfaultfd features the application should set
a bit corresponding to each feature it wants to enable in the
features
field.
If the kernel supports all the requested features it will enable them.
Otherwise it will zero out the returned
uffdio_api
structure and return
EINVAL.
The following feature bits may be set:
The returned
ioctls
field can contain the following bits:
This
ioctl(2)
operation returns 0 on success.
On error, -1 is returned and
errno
is set to indicate the cause of the error.
Possible errors include:
Up to Linux kernel 4.11,
only private anonymous ranges are compatible for registering with
UFFDIO_REGISTER.
Since Linux 4.11,
hugetlbfs and shared memory ranges are also compatible with
UFFDIO_REGISTER.
The
argp
argument is a pointer to a
uffdio_register
structure, defined as:
struct uffdio_range {
struct uffdio_register {
The
range
field defines a memory range starting at
start
and continuing for
len
bytes that should be handled by the userfaultfd.
The
mode
field defines the mode of operation desired for this memory region.
The following values may be bitwise ORed to set the userfaultfd mode for
the specified range:
Currently, the only supported mode is
UFFDIO_REGISTER_MODE_MISSING.
If the operation is successful, the kernel modifies the
ioctls
bit-mask field to indicate which
ioctl(2)
operations are available for the specified range.
This returned bit mask is as for
UFFDIO_API.
This
ioctl(2)
operation returns 0 on success.
On error, -1 is returned and
errno
is set to indicate the cause of the error.
Possible errors include:
The address range to unregister is specified in the
uffdio_range
structure pointed to by
argp.
This
ioctl(2)
operation returns 0 on success.
On error, -1 is returned and
errno
is set to indicate the cause of the error.
Possible errors include:
struct uffdio_copy {
The following value may be bitwise ORed in
mode
to change the behavior of the
UFFDIO_COPY
operation:
The
copy
field is used by the kernel to return the number of bytes
that was actually copied, or an error (a negated
errno-style
value).
If the value returned in
copy
doesn't match the value that was specified in
len,
the operation fails with the error
EAGAIN.
The
copy
field is output-only;
it is not read by the
UFFDIO_COPY
operation.
This
ioctl(2)
operation returns 0 on success.
In this case, the entire area was copied.
On error, -1 is returned and
errno
is set to indicate the cause of the error.
Possible errors include:
The requested range is specified by the
range
field of the
uffdio_zeropage
structure pointed to by
argp:
struct uffdio_zeropage {
The following value may be bitwise ORed in
mode
to change the behavior of the
UFFDIO_ZEROPAGE
operation:
The
zeropage
field is used by the kernel to return the number of bytes
that was actually zeroed,
or an error in the same manner as
UFFDIO_COPY.
If the value returned in the
zeropage
field doesn't match the value that was specified in
range.len,
the operation fails with the error
EAGAIN.
The
zeropage
field is output-only;
it is not read by the
UFFDIO_ZEROPAGE
operation.
This
ioctl(2)
operation returns 0 on success.
In this case, the entire area was zeroed.
On error, -1 is returned and
errno
is set to indicate the cause of the error.
Possible errors include:
The
UFFDIO_WAKE
operation is used in conjunction with
UFFDIO_COPY
and
UFFDIO_ZEROPAGE
operations that have the
UFFDIO_COPY_MODE_DONTWAKE
or
UFFDIO_ZEROPAGE_MODE_DONTWAKE
bit set in the
mode
field.
The userfault monitor can perform several
UFFDIO_COPY
and
UFFDIO_ZEROPAGE
operations in a batch and then explicitly wake up the faulting thread using
UFFDIO_WAKE.
The
argp
argument is a pointer to a
uffdio_range
structure (shown above) that specifies the address range.
This
ioctl(2)
operation returns 0 on success.
On error, -1 is returned and
errno
is set to indicate the cause of the error.
Possible errors include:
Documentation/admin-guide/mm/userfaultfd.rst
in the Linux kernel source tree
UFFDIO_REGISTER
(Since Linux 4.3.)
Register a memory address range with the userfaultfd object.
The pages in the range must be "compatible".
UFFDIO_UNREGISTER
(Since Linux 4.3.)
Unregister a memory address range from userfaultfd.
The pages in the range must be "compatible" (see the description of
UFFDIO_REGISTER.)
UFFDIO_COPY
(Since Linux 4.3.)
Atomically copy a continuous memory chunk into the userfault registered
range and optionally wake up the blocked thread.
The source and destination addresses and the number of bytes to copy are
specified by the
src, dst, and len
fields of the
uffdio_copy
structure pointed to by
argp:
UFFDIO_ZEROPAGE
(Since Linux 4.3.)
Zero out a memory range registered with userfaultfd.
UFFDIO_WAKE
(Since Linux 4.3.)
Wake up the thread waiting for page-fault resolution on
a specified memory address range.
RETURN VALUE
See descriptions of the individual operations, above.
ERRORS
See descriptions of the individual operations, above.
In addition, the following general errors can occur for all of the
operations described above:
CONFORMING TO
These
ioctl(2)
operations are Linux-specific.
BUGS
In order to detect available userfault features and
enable some subset of those features
the userfaultfd file descriptor must be closed after the first
UFFDIO_API
operation that queries features availability and reopened before
the second
UFFDIO_API
operation that actually enables the desired features.
EXAMPLES
See
userfaultfd(2).
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
ioctl(2),
mmap(2),
userfaultfd(2)