ioctl_ficlonerange (2) - Linux Manuals
ioctl_ficlonerange: share some the data of one file with another file
NAME
ioctl_ficlonerange, ioctl_ficlone - share some the data of one file with another file
SYNOPSIS
#include <sys/ioctl.h>#include <linux/fs.h>
int ioctl(int dest_fd, FICLONERANGE, struct file_clone_range *arg);
int ioctl(int dest_fd, FICLONE, int src_fd);
DESCRIPTION
If a filesystem supports files sharing physical storage between multiple files ("reflink"), this ioctl(2) operation can be used to make some of the data in the src_fd file appear in the dest_fd file by sharing the underlying storage, which is faster than making a separate physical copy of the data. Both files must reside within the same filesystem. If a file write should occur to a shared region, the filesystem must ensure that the changes remain private to the file being written. This behavior is commonly referred to as "copy on write".This ioctl reflinks up to src_length bytes from file descriptor src_fd at offset src_offset into the file dest_fd at offset dest_offset, provided that both are files. If src_length is zero, the ioctl reflinks to the end of the source file. This information is conveyed in a structure of the following form:
struct file_clone_range {
Clones are atomic with regards to concurrent writes, so no locks need to be
taken to obtain a consistent cloned copy.
The
FICLONE
ioctl clones entire files.
RETURN VALUE
On error, -1 is returned, and
errno
is set to indicate the error.
ERRORS
Error codes can be one of, but are not limited to, the following:
VERSIONS
These ioctl operations first appeared in Linux 4.5.
They were previously known as
BTRFS_IOC_CLONE
and
BTRFS_IOC_CLONE_RANGE,
and were private to Btrfs.
CONFORMING TO
This API is Linux-specific.
NOTES
Because a copy-on-write operation requires the allocation of new storage, the
fallocate(2)
operation may unshare shared blocks to guarantee that subsequent writes will
not fail because of lack of disk space.
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/.