On Wed, 19 Jul 2023 at 14:02, Matt Whitlock <kernel@xxxxxxxxxxxxxxxxx> wrote: > > On Wednesday, 19 July 2023 16:16:07 EDT, Linus Torvalds wrote: > > The *ONLY* reason for splice() existing is for zero-copy. > > The very first sentence of splice(2) reads: "splice() moves data between > two file descriptors without copying between kernel address space and user > address space." Thus, it is not unreasonable to believe that the point of > splice is to avoid copying between user-space and kernel-space. I'm not at all opposed to clarifying the documentation. But I *am* very much against changing existing semantics. People rely on it. The networking layer knows about it. The whole design is all around "copy by reference". And changing existing semantics would not only slow things down, it wouldn't even *fix* anything that got this wrong. They'd still be broken on old kernels. When documentation and reality collide, documentation loses. That's how this works. > If you use read() and write(), then you're making two copies. If you use > splice(), then you're making one copy (or zero, but that's an optimization > that should be invisible to the user). No. It really isn't. It is an optimization that is INHERENT IN THE INTERFACE and has been there literally since day #1. It was *never* invisible. It was the *point*. You getting this use case wrong is not an excuse to change reality. It is, at most, a good reason to clarify the documentation. The "without copying between kernel address space and user address space" is about the ability to not copy AT ALL, and yes, let's by all means clarify that part. Really. If you cannot understand this fact, and the fact that you simply misunderstood how splice() worked, I can't really help you about that. I repeat: if you want a stable copy of some file data, you *have* to copy the file data. There's no magic. There's no difference between "copy to user space" or "copy in kernel space". So you had better just use "read()". If you want to avoid the copy, you use one of the interfaces that are about references to the data. splice() is not the only such interface. mmap() acts the same way (on input). You really should see splice() into a pipe as a way to 'mmap the data without allocating user space backing store". Of course, splice() *out* of a pipe is different too. It's the same system call, but "splice into pipe" and "splice out of pipe" are actually very different animals. So splicing into a pipe is kind of like a small temporary mmap without the TLB flush or VM allocation overhead. But splicing out of the pipe is more akin to "map this buffer into your own buffers as long as you don't modify it", so it basically say "you can take just a reference to this page" (complexity addition: SPLICE_F_GIFT and buffer stealing). And all of this is literally designed to be able to do zero-copy from multiple sources to multiple destinations. Not "sendpage()", which could only do file->network, but a more generic ability like having data that is sourced from (say) a TV capture card, and is transferred to the network or maybe to another accelerator for encoding. That's why the "pipe" part exists. It's the buffer in between arbitrary end points. It's the replacement for a user buffer. But it's also literally designed to be all about copy-by-reference. Really. So stop arguing. You misused splice(), because you didn't understand it, and you got burnt. You don't like that. I get it. But that doesn't make splice() wrong. That only made your use of it buggy. So splice() is for zero-copy. It expects that you either stabilized the data somehow (maybe those files are never modified, or maybe you have other synchronization) or that you simply don't care whether it's stable, and if the file changes, maybe the data you send changed too. If you want "one-copy", what you can do is: - mmap() the file data (zero copy, not stable yet) - use "write()" to write the data to the network. This will copy it to the skbs before the write() call returns and that copy makes it stable. Alternatively, if you want to be more than a bit odd, you _can_ do the zero-copy on the write side, by doing - read the file data (one copy, now it's stable) - vmsplice() to the kernel buffer (zero copy) - splice() to the network (zero copy at least for the good cases) and now you just need to make sure that you don't re-use the user buffer until the network data has actually been sent. Which makes this second alternative much more complicated than the first one, and I'm absolutely not recommending it, but I'm mentioning it as a possibility. Honestly, the read/vmsplice/splice model is kind of crazy, but there might be real reasons to do it that odd way, and the buffer handling in user space is manageable (you might, for example, just decide to "munmap()" the buffer after sending it out). For an example of "why would you ever do that", you might have content conversion issues between the read/vmsplice, or need to generate a checksum on the stable data or whatever. So it's a *valid* use of splice(), but it's certainly a bit odd. Linus