The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH bpf-next v4 0/2] Introduced to support the ULP to get or set sockets
@ 2025-02-28  8:53 zhangmingyi
  2025-02-28  8:53 ` [PATCH bpf-next v4 1/2] " zhangmingyi
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: zhangmingyi @ 2025-02-28  8:53 UTC (permalink / raw)
  To: ast, daniel, andrii, martin.lau, song, yhs, john.fastabend,
	kpsingh, sdf, haoluo, jolsa
  Cc: bpf, linux-kernel, yanan, wuchangye, xiesongyang, liuxin350,
	liwei883, tianmuyang, zhangmingyi5

From: Mingyi Zhang <zhangmingyi5@huawei.com>

We want call bpf_setsockopt to replace the kernel module in the TCP_ULP
case. The purpose is to customize the behavior in connect and sendmsg
after the user-defined ko file is loaded. We have an open source
community project kmesh (kmesh.net). Based on this, we refer to some
processes of tcp fastopen to implement delayed connet and perform HTTP
DNAT when sendmsg.In this case, we need to parse HTTP packets in the
bpf program and set TCP_ULP for the specified socket.

Note that tcp_getsockopt and tcp_setsockopt support TCP_ULP, while
bpf_getsockopt and bpf_setsockopt do not support TCP_ULP.
I'm not sure why there is such a difference, but I noticed that
tcp_setsockopt is called in bpf_setsockopt.I think we can add the
handling of this case.

Change list:
- v3 -> v4:
  - fixed selftest compilation issues in kernel ci

- v2 -> v3:
  - fixed some compilation issues and added TCP_ULP macro
  - Move __tcp_set_ulp outside rcu_read_unlock

- v1 -> v2:
  - modified the do_tcp_setsockopt(TCP_ULP) process by referring to
  section do_tcp_setsockopt(TCP_CONGESTION), avoid sleep
  - The selftest case is modified. An independent file is selected
  for the test to avoid affecting the original file in setget_sockopt.c
  - fixed some formatting errors, such as Signed and Subject

Revisions:
- v1
  https://lore.kernel.org/bpf/20250127090724.3168791-1-zhangmingyi5@huawei.com/

- v2
  https://lore.kernel.org/bpf/20250210134550.3189616-1-zhangmingyi5@huawei.com/

- v3
  https://lore.kernel.org/bpf/20250228070628.3219087-1-zhangmingyi5@huawei.com/

Mingyi Zhang (2):
  Introduced to support the ULP to get or set sockets
  selftest for TCP_ULP in bpf_setsockopt

 include/net/tcp.h                             |  2 +-
 net/core/filter.c                             |  1 +
 net/ipv4/tcp.c                                |  2 +-
 net/ipv4/tcp_ulp.c                            | 28 ++++++++--------
 net/mptcp/subflow.c                           |  2 +-
 .../selftests/bpf/prog_tests/setget_sockopt.c | 32 +++++++++++++++++++
 .../selftests/bpf/progs/bpf_tracing_net.h     |  1 +
 .../selftests/bpf/progs/setget_sockopt.c      | 24 ++++++++++++++
 8 files changed, 76 insertions(+), 16 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-02-28 20:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-28  8:53 [PATCH bpf-next v4 0/2] Introduced to support the ULP to get or set sockets zhangmingyi
2025-02-28  8:53 ` [PATCH bpf-next v4 1/2] " zhangmingyi
2025-02-28  8:53 ` [PATCH bpf-next v4 2/2] selftest for TCP_ULP in bpf_setsockopt zhangmingyi
2025-02-28 20:08 ` [PATCH bpf-next v4 0/2] Introduced to support the ULP to get or set sockets Martin KaFai Lau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox