Set of bpf fixes and improvements to make sockmap with kTLS usable with "real" applications. This set came as the fallout of pulling kTLS+sockmap into Cilium[1] and running in container environment.
Roughly broken into three parts, Patches 1-3: resolve/improve handling of size field in sk_msg_md Patch 4: it became difficult to use this in Cilium when the SK_PASS verdict was not correctly handle. So handle the case correctly. Patch 5-8: Set of issues found while running OpenSSL TX kTLS enabled applications. This resolves the most obvious issues and gets applications using kTLS TX up and running with sock{map|has}. Other than the "sk_msg, zap ingress queue on psock down" (PATCH 6/8) which can potentially cause a WARNING the issues fixed in this series do not cause kernel side warnings, BUG, etc. but instead cause stalls and other odd behavior in the user space applications when using kTLS with BPF policies applied. Primarily tested with 'curl' compiled with latest openssl and also 'openssl s_client/s_server' containers using Cilium network plugin with docker/k8s. Some basic testing with httpd was also enabled. Cilium CI tests will be added shortly to cover these cases as well. We also have 'wrk' and other test and benchmarking tools we can run now. We have two more sets of patches currently under testing that will be sent shortly to address a few more issues. First the OpenSSL RX kTLS side breaks when both sk_msg and sk_skb_verdict programs are used with kTLS, the sk_skb_verdict programs are not enforced. Second skmsg needs to call into tcp stack to send to indicate consumed data. Thanks, John John Fastabend (8): bpf: sk_msg, fix sk_msg_md access past end test bpf: sk_msg, make offset check in sk_msg_is_valid_access more robust bpf: skmsg, replace comments with BUILD bug to avoid any future errors bpf: sk_skb_verdict, support SK_PASS on RX BPF path bpf: sk_msg, fix socket data_ready events bpf: sk_msg, zap ingress queue on psock down bpf: sk_msg, sock{map|hash} redirect through ULP bpf: tls_sw, initializing TLS ULP removes existing BPF proto hooks include/linux/skmsg.h | 12 ++++++--- include/linux/socket.h | 1 + include/net/tls.h | 9 +++++++ net/core/filter.c | 24 ++++++++++++----- net/core/skmsg.c | 23 +++++++++++++--- net/ipv4/tcp_bpf.c | 14 ++++++++-- net/tls/tls_main.c | 14 ++++++++-- net/tls/tls_sw.c | 42 ++++++++++++++++++++--------- tools/testing/selftests/bpf/test_verifier.c | 2 +- 9 files changed, 111 insertions(+), 30 deletions(-) -- 2.7.4