1 // SPDX-License-Identifier: GPL-2.0
4 * Copyright (c) 2020, Tessares SA.
5 * Copyright (c) 2022, SUSE.
7 * Author: Nicolas Rybowski <nicolas.rybowski@tessares.net>
10 #define pr_fmt(fmt) "MPTCP: " fmt
12 #include <linux/bpf.h>
15 struct mptcp_sock *bpf_mptcp_sock_from_subflow(struct sock *sk)
17 if (sk && sk_fullsock(sk) && sk->sk_protocol == IPPROTO_TCP && sk_is_mptcp(sk))
18 return mptcp_sk(mptcp_subflow_ctx(sk)->conn);
23 BTF_SET8_START(bpf_mptcp_fmodret_ids)
24 BTF_ID_FLAGS(func, update_socket_protocol)
25 BTF_SET8_END(bpf_mptcp_fmodret_ids)
27 static const struct btf_kfunc_id_set bpf_mptcp_fmodret_set = {
29 .set = &bpf_mptcp_fmodret_ids,
32 static int __init bpf_mptcp_kfunc_init(void)
34 return register_btf_fmodret_id_set(&bpf_mptcp_fmodret_set);
36 late_initcall(bpf_mptcp_kfunc_init);