|
@@ -2006,7 +2006,7 @@ void tcp_cleanup_ulp(struct sock *sk);
|
|
|
* program loaded).
|
|
|
*/
|
|
|
#ifdef CONFIG_BPF
|
|
|
-static inline int tcp_call_bpf(struct sock *sk, int op)
|
|
|
+static inline int tcp_call_bpf(struct sock *sk, int op, u32 nargs, u32 *args)
|
|
|
{
|
|
|
struct bpf_sock_ops_kern sock_ops;
|
|
|
int ret;
|
|
@@ -2019,6 +2019,8 @@ static inline int tcp_call_bpf(struct sock *sk, int op)
|
|
|
|
|
|
sock_ops.sk = sk;
|
|
|
sock_ops.op = op;
|
|
|
+ if (nargs > 0)
|
|
|
+ memcpy(sock_ops.args, args, nargs * sizeof(*args));
|
|
|
|
|
|
ret = BPF_CGROUP_RUN_PROG_SOCK_OPS(&sock_ops);
|
|
|
if (ret == 0)
|
|
@@ -2027,18 +2029,46 @@ static inline int tcp_call_bpf(struct sock *sk, int op)
|
|
|
ret = -1;
|
|
|
return ret;
|
|
|
}
|
|
|
+
|
|
|
+static inline int tcp_call_bpf_2arg(struct sock *sk, int op, u32 arg1, u32 arg2)
|
|
|
+{
|
|
|
+ u32 args[2] = {arg1, arg2};
|
|
|
+
|
|
|
+ return tcp_call_bpf(sk, op, 2, args);
|
|
|
+}
|
|
|
+
|
|
|
+static inline int tcp_call_bpf_3arg(struct sock *sk, int op, u32 arg1, u32 arg2,
|
|
|
+ u32 arg3)
|
|
|
+{
|
|
|
+ u32 args[3] = {arg1, arg2, arg3};
|
|
|
+
|
|
|
+ return tcp_call_bpf(sk, op, 3, args);
|
|
|
+}
|
|
|
+
|
|
|
#else
|
|
|
-static inline int tcp_call_bpf(struct sock *sk, int op)
|
|
|
+static inline int tcp_call_bpf(struct sock *sk, int op, u32 nargs, u32 *args)
|
|
|
{
|
|
|
return -EPERM;
|
|
|
}
|
|
|
+
|
|
|
+static inline int tcp_call_bpf_2arg(struct sock *sk, int op, u32 arg1, u32 arg2)
|
|
|
+{
|
|
|
+ return -EPERM;
|
|
|
+}
|
|
|
+
|
|
|
+static inline int tcp_call_bpf_3arg(struct sock *sk, int op, u32 arg1, u32 arg2,
|
|
|
+ u32 arg3)
|
|
|
+{
|
|
|
+ return -EPERM;
|
|
|
+}
|
|
|
+
|
|
|
#endif
|
|
|
|
|
|
static inline u32 tcp_timeout_init(struct sock *sk)
|
|
|
{
|
|
|
int timeout;
|
|
|
|
|
|
- timeout = tcp_call_bpf(sk, BPF_SOCK_OPS_TIMEOUT_INIT);
|
|
|
+ timeout = tcp_call_bpf(sk, BPF_SOCK_OPS_TIMEOUT_INIT, 0, NULL);
|
|
|
|
|
|
if (timeout <= 0)
|
|
|
timeout = TCP_TIMEOUT_INIT;
|
|
@@ -2049,7 +2079,7 @@ static inline u32 tcp_rwnd_init_bpf(struct sock *sk)
|
|
|
{
|
|
|
int rwnd;
|
|
|
|
|
|
- rwnd = tcp_call_bpf(sk, BPF_SOCK_OPS_RWND_INIT);
|
|
|
+ rwnd = tcp_call_bpf(sk, BPF_SOCK_OPS_RWND_INIT, 0, NULL);
|
|
|
|
|
|
if (rwnd < 0)
|
|
|
rwnd = 0;
|
|
@@ -2058,7 +2088,7 @@ static inline u32 tcp_rwnd_init_bpf(struct sock *sk)
|
|
|
|
|
|
static inline bool tcp_bpf_ca_needs_ecn(struct sock *sk)
|
|
|
{
|
|
|
- return (tcp_call_bpf(sk, BPF_SOCK_OPS_NEEDS_ECN) == 1);
|
|
|
+ return (tcp_call_bpf(sk, BPF_SOCK_OPS_NEEDS_ECN, 0, NULL) == 1);
|
|
|
}
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_SMC)
|