lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Wed, 2 Dec 2020 21:44:36 +0100
From:   Eric Dumazet <eric.dumazet@...il.com>
To:     Prankur gupta <prankgup@...com>, bpf@...r.kernel.org
Cc:     kernel-team@...com, netdev@...r.kernel.org
Subject: Re: [PATCH v3 bpf-next 1/2] bpf: Adds support for setting window
 clamp



On 12/2/20 9:29 PM, Prankur gupta wrote:
> Adds a new bpf_setsockopt for TCP sockets, TCP_BPF_WINDOW_CLAMP,
> which sets the maximum receiver window size. It will be useful for
> limiting receiver window based on RTT.
> 
> Signed-off-by: Prankur gupta <prankgup@...com>
> ---
>  include/net/tcp.h |  1 +
>  net/core/filter.c |  3 +++
>  net/ipv4/tcp.c    | 23 ++++++++++++++---------
>  3 files changed, 18 insertions(+), 9 deletions(-)
> 
> diff --git a/include/net/tcp.h b/include/net/tcp.h
> index 4aba0f069b05..39ced5882fe3 100644
> --- a/include/net/tcp.h
> +++ b/include/net/tcp.h
> @@ -406,6 +406,7 @@ void tcp_syn_ack_timeout(const struct request_sock *req);
>  int tcp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int nonblock,
>  		int flags, int *addr_len);
>  int tcp_set_rcvlowat(struct sock *sk, int val);
> +int tcp_set_window_clamp(struct sock *sk, struct tcp_sock *tp, int val);
>  void tcp_data_ready(struct sock *sk);
>  #ifdef CONFIG_MMU
>  int tcp_mmap(struct file *file, struct socket *sock,
> diff --git a/net/core/filter.c b/net/core/filter.c
> index 2ca5eecebacf..d6225842cfb1 100644
> --- a/net/core/filter.c
> +++ b/net/core/filter.c
> @@ -4910,6 +4910,9 @@ static int _bpf_setsockopt(struct sock *sk, int level, int optname,
>  				tp->notsent_lowat = val;
>  				sk->sk_write_space(sk);
>  				break;
> +			case TCP_WINDOW_CLAMP:
> +				ret = tcp_set_window_clamp(sk, tp, val);
> +				break;
>  			default:
>  				ret = -EINVAL;
>  			}
> diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
> index b2bc3d7fe9e8..312feb8fcae5 100644
> --- a/net/ipv4/tcp.c
> +++ b/net/ipv4/tcp.c
> @@ -3022,6 +3022,19 @@ int tcp_sock_set_keepcnt(struct sock *sk, int val)
>  }
>  EXPORT_SYMBOL(tcp_sock_set_keepcnt);
>  
> +int tcp_set_window_clamp(struct sock *sk, struct tcp_sock *tp, int val)

No TCP function pass both sk and tp (which are identical values)

Prefer :

int tcp_set_window_clamp(struct sock *sk, int val)
{
        struct tcp_sock *tp = tcp_sk(sk);
        ...

This will allow optimal code generation.

> +{
> +	if (!val) {
> +		if (sk->sk_state != TCP_CLOSE)
> +			return -EINVAL;
> +		tp->window_clamp = 0;
> +	} else {
> +		tp->window_clamp = val < SOCK_MIN_RCVBUF / 2 ?
> +			SOCK_MIN_RCVBUF / 2 : val;
> +	}
> +	return 0;
> +}
> +
>  /*
>   *	Socket option code for TCP.
>   */
> @@ -3235,15 +3248,7 @@ static int do_tcp_setsockopt(struct sock *sk, int level, int optname,
>  		break;
>  
>  	case TCP_WINDOW_CLAMP:
> -		if (!val) {
> -			if (sk->sk_state != TCP_CLOSE) {
> -				err = -EINVAL;
> -				break;
> -			}
> -			tp->window_clamp = 0;
> -		} else
> -			tp->window_clamp = val < SOCK_MIN_RCVBUF / 2 ?
> -						SOCK_MIN_RCVBUF / 2 : val;
> +		err = tcp_set_window_clamp(sk, tp, val);
>  		break;
>  
>  	case TCP_QUICKACK:
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ