Does Linux's splice(2) work when splicing from a TCP socket? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:45:07Z http://stackoverflow.com/feeds/question/884934 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/884934/does-linuxs-splice2-work-when-splicing-from-a-tcp-socket 2 Does Linux's splice(2) work when splicing from a TCP socket? Neil Williams 2009-05-19T20:48:51Z 2009-05-19T21:04:15Z <p>I've been writing a little program for fun that transfers files over TCP in C on Linux. The program reads a file from a socket and writes it to file (or vice versa). I originally used read/write and the program worked correctly, but then I learned about <a href="http://manpages.courier-mta.org/htmlman2/splice.2.html" rel="nofollow">splice</a> and wanted to give it a try. </p> <p>The code I wrote with splice works perfectly when reading from stdin (redirected file) and writing to the TCP socket, but fails immediately with splice setting errno to EINVAL when reading from socket and writing to stdout. The man page states that EINVAL is set when neither descriptor is a pipe (not the case), an offset is passed for a stream that can't seek (no offsets passed), or the filesystem doesn't support splicing, which leads me to my question: does this mean that TCP can splice <em>from</em> a pipe, but not <em>to</em>?</p> <p>I'm including the code below (minus error handling code) in the hopes that I've just done something wrong. It's based heavily on the <a href="http://en.wikipedia.org/wiki/Splice%5F%28system%5Fcall%29#Example" rel="nofollow">Wikipedia example for splice</a>.</p> <pre><code>static void splice_all(int from, int to, long long bytes) { long long bytes_remaining; long result; bytes_remaining = bytes; while (bytes_remaining &gt; 0) { result = splice( from, NULL, to, NULL, bytes_remaining, SPLICE_F_MOVE | SPLICE_F_MORE ); if (result == -1) die("splice_all: splice"); bytes_remaining -= result; } } static void transfer(int from, int to, long long bytes) { int result; int pipes[2]; result = pipe(pipes); if (result == -1) die("transfer: pipe"); splice_all(from, pipes[1], bytes); splice_all(pipes[0], to, bytes); close(from); close(pipes[1]); close(pipes[0]); close(to); } </code></pre> <p>On a side note, I think that the above will block on the first <code>splice_all</code> when the file is large enough due to the pipe filling up(?), so I also have a version of the code that <code>fork</code>s to read and write from the pipe at the same time, but it has the same error as this version and is harder to read.</p> <p>EDIT: My kernel version is 2.6.22.18-co-0.7.3 (running coLinux on XP.)</p> http://stackoverflow.com/questions/884934/does-linuxs-splice2-work-when-splicing-from-a-tcp-socket/884990#884990 4 Answer by bdonlan for Does Linux's splice(2) work when splicing from a TCP socket? bdonlan 2009-05-19T20:58:52Z 2009-05-19T21:04:15Z <p>What kernel version is this? Linux has had support for splicing from a TCP socket since 2.6.25 (commit <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9c55e01c0cc835818475a6ce8c4d684df9949ac8" rel="nofollow">9c55e01c0</a>), so if you're using an earlier version, you're out of luck.</p>