]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/splice.2
intro.1, _exit.2, access.2, alarm.2, alloc_hugepages.2, arch_prctl.2, bind.2, chdir...
[thirdparty/man-pages.git] / man2 / splice.2
CommitLineData
2bc4bb77 1.\" This manpage is Copyright (C) 2006 Jens Axboe
c11b1abf 2.\" and Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
2bc4bb77 3.\"
93015253 4.\" %%%LICENSE_START(VERBATIM)
2bc4bb77
MK
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
c13182ef 13.\"
2bc4bb77
MK
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
c13182ef 21.\"
2bc4bb77
MK
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 24.\" %%%LICENSE_END
2bc4bb77 25.\"
c95b6ae1 26.TH SPLICE 2 2012-05-04 "Linux" "Linux Programmer's Manual"
2bc4bb77
MK
27.SH NAME
28splice \- splice data to/from a pipe
29.SH SYNOPSIS
30.nf
b80f966b 31.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
2bc4bb77
MK
32.B #include <fcntl.h>
33
52520fb5
MH
34.BI "ssize_t splice(int " fd_in ", loff_t *" off_in ", int " fd_out ,
35.BI " loff_t *" off_out ", size_t " len \
2bc4bb77 36", unsigned int " flags );
52520fb5 37.\" Return type was long before glibc 2.7
2bc4bb77
MK
38.fi
39.SH DESCRIPTION
40.BR splice ()
c13182ef 41moves data between two file descriptors
2bc4bb77
MK
42without copying between kernel address space and user address space.
43It transfers up to
44.I len
45bytes of data from the file descriptor
46.I fd_in
47to the file descriptor
48.IR fd_out ,
c13182ef 49where one of the descriptors must refer to a pipe.
2bc4bb77
MK
50
51If
ae39cf8f 52.I fd_in
2bc4bb77 53refers to a pipe, then
c13182ef 54.I off_in
2bc4bb77
MK
55must be NULL.
56If
c13182ef 57.I fd_in
2bc4bb77 58does not refer to a pipe and
ae39cf8f 59.I off_in
c13182ef 60is NULL, then bytes are read from
ae39cf8f 61.I fd_in
2bc4bb77
MK
62starting from the current file offset,
63and the current file offset is adjusted appropriately.
64If
c13182ef 65.I fd_in
2bc4bb77 66does not refer to a pipe and
ae39cf8f 67.I off_in
c13182ef 68is not NULL, then
ae39cf8f 69.I off_in
2bc4bb77
MK
70must point to a buffer which specifies the starting
71offset from which bytes will be read from
ae39cf8f 72.IR fd_in ;
2bc4bb77 73in this case, the current file offset of
0daa9e92 74.I fd_in
2bc4bb77
MK
75is not changed.
76Analogous statements apply for
e267688b 77.I fd_out
2bc4bb77 78and
ae39cf8f 79.IR off_out .
2bc4bb77
MK
80
81The
82.I flags
83argument is a bit mask that is composed by ORing together
84zero or more of the following values:
85.TP 1.9i
86.B SPLICE_F_MOVE
c13182ef 87Attempt to move pages instead of copying.
2bc4bb77 88This is only a hint to the kernel:
c13182ef 89pages may still be copied if the kernel cannot move the
2bc4bb77
MK
90pages from the pipe, or if
91the pipe buffers don't refer to full pages.
986992f3
MK
92The initial implementation of this flag was buggy:
93therefore starting in Linux 2.6.21 it is a no-op
94(but is still permitted in a
95.BR splice ()
96call);
97in the future, a correct implementation may be restored.
2bc4bb77
MK
98.TP
99.B SPLICE_F_NONBLOCK
100Do not block on I/O.
ff40dbb3 101This makes the splice pipe operations nonblocking, but
2bc4bb77
MK
102.BR splice ()
103may nevertheless block because the file descriptors that
104are spliced to/from may block (unless they have the
0daa9e92 105.B O_NONBLOCK
2bc4bb77
MK
106flag set).
107.TP
108.B SPLICE_F_MORE
109More data will be coming in a subsequent splice.
110This is a helpful hint when
c13182ef 111the
2bc4bb77
MK
112.I fd_out
113refers to a socket (see also the description of
114.B MSG_MORE
115in
116.BR send (2),
117and the description of
118.B TCP_CORK
119in
120.BR tcp (7))
121.TP
122.B SPLICE_F_GIFT
123Unused for
124.BR splice ();
125see
126.BR vmsplice (2).
127.SH RETURN VALUE
128Upon successful completion,
129.BR splice ()
130returns the number of bytes
c13182ef
MK
131spliced to or from the pipe.
132A return value of 0 means that there was no data to transfer,
133and it would not make sense to block, because there are no
134writers connected to the write end of the pipe referred to by
2bc4bb77
MK
135.IR fd_in .
136
c13182ef 137On error,
2bc4bb77
MK
138.BR splice ()
139returns \-1 and
140.I errno
141is set to indicate the error.
142.SH ERRORS
143.TP
144.B EBADF
c13182ef 145One or both file descriptors are not valid,
2bc4bb77
MK
146or do not have proper read-write mode.
147.TP
148.B EINVAL
149Target file system doesn't support splicing;
28081592
MH
150target file is opened in append mode;
151.\" The append-mode error is given since 2.6.27; in earlier kernels,
152.\" splice() in append mode was broken
c13182ef 153neither of the descriptors refers to a pipe; or
24b74457 154offset given for nonseekable device.
2bc4bb77
MK
155.TP
156.B ENOMEM
157Out of memory.
158.TP
159.B ESPIPE
c13182ef 160Either
2bc4bb77 161.I off_in
c13182ef 162or
2bc4bb77
MK
163.I off_out
164was not NULL, but the corresponding file descriptor refers to a pipe.
ff457ccb 165.SH VERSIONS
2bc4bb77 166The
2777b1ca 167.BR splice ()
c95b6ae1
MK
168system call first appeared in Linux 2.6.17;
169library support was added to glibc in version 2.5.
47297adb 170.SH CONFORMING TO
8382f16d 171This system call is Linux-specific.
2bc4bb77
MK
172.SH NOTES
173The three system calls
2777b1ca 174.BR splice (),
2bc4bb77
MK
175.BR vmsplice (2),
176and
e267688b 177.BR tee (2),
7fac88a9 178provide user-space programs with full control over an arbitrary
2bc4bb77 179kernel buffer, implemented within the kernel using the same type
c13182ef 180of buffer that is used for a pipe.
2bc4bb77
MK
181In overview, these system calls perform the following tasks:
182.TP 1.2i
183.BR splice ()
184moves data from the buffer to an arbitrary file descriptor, or vice versa,
185or from one buffer to another.
186.TP
0bfa087b 187.BR tee (2)
2bc4bb77
MK
188"copies" the data from one buffer to another.
189.TP
0bfa087b 190.BR vmsplice (2)
2bc4bb77
MK
191"copies" data from user space into the buffer.
192.PP
193Though we talk of copying, actual copies are generally avoided.
c13182ef 194The kernel does this by implementing a pipe buffer as a set
2bc4bb77 195of reference-counted pointers to pages of kernel memory.
c13182ef
MK
196The kernel creates "copies" of pages in a buffer by creating new
197pointers (for the output buffer) referring to the pages,
198and increasing the reference counts for the pages:
2bc4bb77
MK
199only pointers are copied, not the pages of the buffer.
200.\"
c13182ef
MK
201.\" Linus: Now, imagine using the above in a media server, for example.
202.\" Let's say that a year or two has passed, so that the video drivers
203.\" have been updated to be able to do the splice thing, and what can
2bc4bb77 204.\" you do? You can:
c13182ef 205.\"
2bc4bb77
MK
206.\" - splice from the (mpeg or whatever - let's just assume that the video
207.\" input is either digital or does the encoding on its own - like they
208.\" pretty much all do) video input into a pipe (remember: no copies - the
c13182ef 209.\" video input will just DMA directly into memory, and splice will just
2bc4bb77
MK
210.\" set up the pages in the pipe buffer)
211.\" - tee that pipe to split it up
212.\" - splice one end to a file (ie "save the compressed stream to disk")
c13182ef 213.\" - splice the other end to a real-time video decoder window for your
2bc4bb77
MK
214.\" real-time viewing pleasure.
215.\"
c13182ef
MK
216.\" Linus: Now, the advantage of splice()/tee() is that you can
217.\" do zero-copy movement of data, and unlike sendfile() you can
218.\" do it on _arbitrary_ data (and, as shown by "tee()", it's more
219.\" than just sending the data to somebody else: you can duplicate
220.\" the data and choose to forward it to two or more different
0967c11f 221.\" users - for things like logging etc.).
2bc4bb77
MK
222.\"
223.SH EXAMPLE
224See
225.BR tee (2).
2bc4bb77
MK
226.SH SEE ALSO
227.BR sendfile (2),
0a90178c 228.BR tee (2),
0a4f8b7b 229.BR vmsplice (2)