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] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 17 Jan 2014 17:30:19 -0800
From:	Eric Dumazet <eric.dumazet@...il.com>
To:	Dominic Curran <dominic.curran@...rix.com>
Cc:	netdev@...r.kernel.org, Jason Wang <jasowang@...hat.com>,
	Maxim Krasnyansky <maxk@...lcomm.com>
Subject: Re: [RFC PATCH] tuntap: Fix for a race in accessing numqueue

On Sat, 2014-01-18 at 00:26 +0000, Dominic Curran wrote:
> A patch for fixing a race between queue selection and changing queues
> was introduced in commit 92bb73ea2c434618a68a5.
> 
> The fix was to prevent the driver from re-reading the tun->numqueues
> more than once within tun_select_queue().
> 
> We have been experiancing  'Divide-by-zero' errors in 
> tun_net_xmit() since we moved from 3.6 to 3.10, and believe that they 
> come from a simular source where the value of tun->numqueues changes 
> to zero between the first and second read of tun->numqueues.
> 
> Signed-off-by: Dominic Curran <dominic.curran@...rix.com>
> Cc: Jason Wang <jasowang@...hat.com>
> Cc: Maxim Krasnyansky <maxk@...lcomm.com>
> 
> ---
>  drivers/net/tun.c |    6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> Index: net-next/drivers/net/tun.c
> ===================================================================
> --- net-next.orig/drivers/net/tun.c	2014-01-17 23:41:54.000000000 +0000
> +++ net-next/drivers/net/tun.c	2014-01-17 23:51:55.000000000 +0000
> @@ -738,12 +738,14 @@ static netdev_tx_t tun_net_xmit(struct s
>  	struct tun_struct *tun = netdev_priv(dev);
>  	int txq = skb->queue_mapping;
>  	struct tun_file *tfile;
> +	u32 numqueues = 0;
>  
>  	rcu_read_lock();
>  	tfile = rcu_dereference(tun->tfiles[txq]);
> +	numqueues = ACCESS_ONCE(tun->numqueues);
>  
>  	/* Drop packet if interface is not attached */
> -	if (txq >= tun->numqueues)
> +	if (txq >= numqueues)
>  		goto drop;
>  
>  	if (tun->numqueues == 1) {

This is net-next tree, not net tree

(This part was added in commit 9bc8893937c83)

You might change this "tun->numqueues" as well.

> @@ -780,7 +782,7 @@ static netdev_tx_t tun_net_xmit(struct s
>  	 * number of queues.
>  	 */
>  	if (skb_queue_len(&tfile->socket.sk->sk_receive_queue)
> -			  >= dev->tx_queue_len / tun->numqueues)
> +			  >= dev->tx_queue_len / numqueues)
>  		goto drop;

Could use a multiply instead....

if (skb_queue_len(&tfile->socket.sk->sk_receive_queue) * numqueues >=
dev->tx_queue_len )


Please submit this patch on net tree, since its a bug fix.


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ