[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1376917088.4226.50.camel@edumazet-glaptop>
Date: Mon, 19 Aug 2013 05:58:08 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: Dan Carpenter <dan.carpenter@...cle.com>
Cc: "David S. Miller" <davem@...emloft.net>,
Nicolas Dichtel <nicolas.dichtel@...nd.com>,
Alexey Kuznetsov <kuznet@....inr.ac.ru>,
James Morris <jmorris@...ei.org>,
Hideaki YOSHIFUJI <yoshfuji@...ux-ipv6.org>,
Patrick McHardy <kaber@...sh.net>, netdev@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: Re: [patch -next] ipip: dereferencing an ERR_PTR in
ip_tunnel_init_net()
On Mon, 2013-08-19 at 10:05 +0300, Dan Carpenter wrote:
> We need to move the derefernce after the IS_ERR() check.
>
> Signed-off-by: Dan Carpenter <dan.carpenter@...cle.com>
>
> diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c
> index a4d9126..24549b4 100644
> --- a/net/ipv4/ip_tunnel.c
> +++ b/net/ipv4/ip_tunnel.c
> @@ -854,14 +854,14 @@ int ip_tunnel_init_net(struct net *net, int ip_tnl_net_id,
>
> rtnl_lock();
> itn->fb_tunnel_dev = __ip_tunnel_create(net, ops, &parms);
> - /* FB netdevice is special: we have one, and only one per netns.
> - * Allowing to move it to another netns is clearly unsafe.
> - */
> - itn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
> rtnl_unlock();
>
> if (IS_ERR(itn->fb_tunnel_dev))
> return PTR_ERR(itn->fb_tunnel_dev);
> + /* FB netdevice is special: we have one, and only one per netns.
> + * Allowing to move it to another netns is clearly unsafe.
> + */
> + itn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
>
> return 0;
> }
> --
Please add to the changelog :
Bug was added in commit 6c742e714d8c2 ("ipip: add x-netns support")
I do not think this fix is safe.
"dev->features |= some_flag;" should be protected by rtnl
So I suggest using instead :
diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c
index a4d9126..830de3f 100644
--- a/net/ipv4/ip_tunnel.c
+++ b/net/ipv4/ip_tunnel.c
@@ -857,13 +857,11 @@ int ip_tunnel_init_net(struct net *net, int ip_tnl_net_id,
/* FB netdevice is special: we have one, and only one per netns.
* Allowing to move it to another netns is clearly unsafe.
*/
- itn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
+ if (!IS_ERR(itn->fb_tunnel_dev))
+ itn->fb_tunnel_dev->features |= NETIF_F_NETNS_LOCAL;
rtnl_unlock();
- if (IS_ERR(itn->fb_tunnel_dev))
- return PTR_ERR(itn->fb_tunnel_dev);
-
- return 0;
+ return PTR_RET(itn->fb_tunnel_dev);
}
EXPORT_SYMBOL_GPL(ip_tunnel_init_net);
--
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