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:   Thu, 23 Feb 2017 17:10:29 +0100
From:   Jiri Benc <jbenc@...hat.com>
To:     Brian Russell <brussell@...cade.com>
Cc:     <netdev@...r.kernel.org>
Subject: Re: [PATCH net] vxlan: don't allow overwrite of config src addr

On Mon, 20 Feb 2017 17:25:28 +0000, Brian Russell wrote:
> --- a/drivers/net/vxlan.c
> +++ b/drivers/net/vxlan.c
> @@ -2019,7 +2019,7 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
>  
>  		dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
>  		vni = rdst->remote_vni;
> -		src = &vxlan->cfg.saddr;
> +		local_ip = vxlan->cfg.saddr;
>  		dst_cache = &rdst->dst_cache;
>  		md->gbp = skb->mark;
>  		ttl = vxlan->cfg.ttl;
> @@ -2052,7 +2052,6 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
>  		dst = &remote_ip;
>  		dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
>  		vni = tunnel_id_to_key32(info->key.tun_id);
> -		src = &local_ip;
>  		dst_cache = &info->dst_cache;
>  		if (info->options_len)
>  			md = ip_tunnel_info_opts(info);
> @@ -2061,6 +2060,7 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
>  		label = info->key.label;
>  		udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
>  	}
> +	src = &local_ip;

Btw, you can simplify this even more, get rid of src completely and
just use local_ip.

And please also add to v2:

Fixes: 272d96a5ab10 ("net: vxlan: lwt: Use source ip address during route lookup.")

 Jiri

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ