Here are patches to do the following: (1) Block MSG_SENDPAGE_* flags from leaking into ->sendmsg() from userspace, whilst allowing splice_to_socket() to pass them in. (2) Allow MSG_SPLICE_PAGES to be passed into tls_*_sendmsg(). Until support is added, it will be ignored and a splice-driven sendmsg() will be treated like a normal sendmsg(). TCP, UDP, AF_UNIX and Chelsio-TLS already handle the flag in net-next. (3) Allow tls/sw to be given a zero-length send()/sendto()/sendmsg() without MSG_MORE set to allow userspace ot flush the pending record. (4) Replace a chain of functions to splice-to-sendpage with a single function to splice via sendmsg() with MSG_SPLICE_PAGES. This allows a bunch of pages to be spliced from a pipe in a single call using a bio_vec[] and pushes the main processing loop down into the bowels of the protocol driver rather than repeatedly calling in with a page at a time. (5) Alter the behaviour of sendfile() and fix SPLICE_F_MORE/MSG_MORE signalling[1] such SPLICE_F_MORE is always signalled until we have read sufficient data to finish the request. If we get a zero-length before we've managed to splice sufficient data, we now leave the socket expecting more data and leave it to userspace to deal with it. (6) Address the now failing TLS multi_chunk_sendfile kselftest by putting in a zero-length send() to end the record. (7) Make AF_TLS handle the MSG_SPLICE_PAGES internal sendmsg flag. MSG_SPLICE_PAGES is an internal hint that tells the protocol that it should splice the pages supplied if it can. Its sendpage implementations are then turned into wrappers around that. (8) Provide some sample programs for driving AF_ALG (hash & encrypt), TCP, TLS, UDP and AF_UNIX. Here are some simple timings, taking the best timing for each out of several runs. In the following table, samples added in the last patch were used for the first five columns and the tls kselftest for the last: Patches unix- tcp-send tls-send tls send kselftest 10G lo 10G lo ======= ======= ======= ======= ======= ======= ======= none 0.516 0.469 0.492 3.121 3.082 1.152 splice 0.470 0.452 0.471 3.074 3.041 0.294 all 0.469 0.440 0.475 3.077 3.041 0.345 the times are all in seconds. The "none" row is with none of the patches applied; "splice" is up to the splice-to-sendpage replacement; and "all" is with all the patches applied. The "10G" column is going to a server on a different box by 10G ethernet and the "lo" column is going to a server on the same box by the loopback device. I think the apparent improvement is from cutting out a layer in the splice stack and pushing more than one page in a single sendmsg. The improvement in the tls selftest column is particularly marked. The following sample and selftest commands were used: unix-sink /tmp/sock & # server unix-send -ds 256M /tmp/sock # client tcp-sink & # server tcp-send -ds 256M 127.0.0.1 # client - loopback tcp-send -ds 256M 192.168.6.1 # client - 10G ethernet tls-sink & # server tls-send -ds 256M 127.0.0.1 # client - loopback tls-send -ds 256M 192.168.6.1 # client - 10G ethernet tls -r tls.12_aes_gcm.multi_chunk_sendfile where 256M is a 256MiB file to be read in its entirety unless otherwise specified, -d indicates O_DIRECT and -s asks for splice (if input is a pipe) or sendfile (if input not a pipe) to be used. I've pushed the patches here also: https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs.git/log/?h=sendpage-2-tls David Changes ======= ver #3) - Include the splice-to-socket rewrite patch. - Fix SPLICE_F_MORE/MSG_MORE signalling. - Allow AF_TLS to accept sendmsg() with MSG_SPLICE_PAGES before it is handled. - Allow a zero-length send() to a TLS socket to flush an outstanding record. - Address TLS kselftest failure. ver #2) - Dropped the slab data copying. - "rls_" should be "tls_". - Attempted to fix splice_direct_to_actor(). - Blocked MSG_SENDPAGE_* from being set by userspace. Link: https://lore.kernel.org/r/499791.1685485603@xxxxxxxxxxxxxxxxxxxxxx/ [1] Link: https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=51c78a4d532efe9543a4df019ff405f05c6157f6 # part 1 Link: https://lore.kernel.org/r/20230524153311.3625329-1-dhowells@xxxxxxxxxx/ # v1 David Howells (11): net: Block MSG_SENDPAGE_* from being passed to sendmsg() by userspace tls: Allow MSG_SPLICE_PAGES but treat it as normal sendmsg tls/sw: Use zero-length sendmsg() without MSG_MORE to flush splice, net: Use sendmsg(MSG_SPLICE_PAGES) rather than ->sendpage() splice, net: Fix SPLICE_F_MORE signalling in splice_direct_to_actor() tls: Address behaviour change in multi_chunk_sendfile kselftest tls/sw: Support MSG_SPLICE_PAGES tls/sw: Convert tls_sw_sendpage() to use MSG_SPLICE_PAGES tls/device: Support MSG_SPLICE_PAGES tls/device: Convert tls_device_sendpage() to use MSG_SPLICE_PAGES net: Add samples for network I/O and splicing fs/splice.c | 176 ++++++++++++++++++------ include/linux/fs.h | 2 - include/linux/socket.h | 4 +- include/linux/splice.h | 2 + net/socket.c | 26 +--- net/tls/tls_device.c | 97 ++++++------- net/tls/tls_sw.c | 217 +++++++++++------------------- samples/Kconfig | 14 ++ samples/Makefile | 1 + samples/net/Makefile | 13 ++ samples/net/alg-encrypt.c | 206 ++++++++++++++++++++++++++++ samples/net/alg-hash.c | 147 ++++++++++++++++++++ samples/net/splice-out.c | 147 ++++++++++++++++++++ samples/net/tcp-send.c | 177 ++++++++++++++++++++++++ samples/net/tcp-sink.c | 80 +++++++++++ samples/net/tls-send.c | 188 ++++++++++++++++++++++++++ samples/net/tls-sink.c | 104 ++++++++++++++ samples/net/udp-send.c | 156 +++++++++++++++++++++ samples/net/udp-sink.c | 84 ++++++++++++ samples/net/unix-send.c | 151 +++++++++++++++++++++ samples/net/unix-sink.c | 54 ++++++++ tools/testing/selftests/net/tls.c | 6 +- 22 files changed, 1792 insertions(+), 260 deletions(-) create mode 100644 samples/net/Makefile create mode 100644 samples/net/alg-encrypt.c create mode 100644 samples/net/alg-hash.c create mode 100644 samples/net/splice-out.c create mode 100644 samples/net/tcp-send.c create mode 100644 samples/net/tcp-sink.c create mode 100644 samples/net/tls-send.c create mode 100644 samples/net/tls-sink.c create mode 100644 samples/net/udp-send.c create mode 100644 samples/net/udp-sink.c create mode 100644 samples/net/unix-send.c create mode 100644 samples/net/unix-sink.c