From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexis Bauvin Subject: Re: [PATCH v6 1/4] udp_tunnel: add config option to bind to a device Date: Mon, 3 Dec 2018 10:14:00 +0100 Message-ID: <10F25D11-8FE5-4E29-BC7E-F4C95CBBC84A@scaleway.com> References: <20181127130545.54356-1-abauvin@scaleway.com> <20181127130545.54356-2-abauvin@scaleway.com> <20181130143100.GA7623@bistromath.localdomain> Mime-Version: 1.0 (Mac OS X Mail 11.5 \(3445.9.1\)) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT Cc: netdev , akherbouche@scaleway.com, Alexis Bauvin To: Sabrina Dubroca , David Ahern , Roopa Prabhu , Stephen Hemminger Return-path: Received: from mail.online.net ([62.210.16.11]:46390 "EHLO mail.online.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725888AbeLCJOM (ORCPT ); Mon, 3 Dec 2018 04:14:12 -0500 In-Reply-To: <20181130143100.GA7623@bistromath.localdomain> Sender: netdev-owner@vger.kernel.org List-ID: Le 30 nov. 2018 à 15:31, Sabrina Dubroca a écrit : > 2018-11-27, 14:05:42 +0100, Alexis Bauvin wrote: >> diff --git a/net/ipv4/udp_tunnel.c b/net/ipv4/udp_tunnel.c >> index 6539ff15e9a3..dc68e15a4f72 100644 >> --- a/net/ipv4/udp_tunnel.c >> +++ b/net/ipv4/udp_tunnel.c >> @@ -20,6 +20,16 @@ int udp_sock_create4(struct net *net, struct udp_port_cfg *cfg, >> if (err < 0) >> goto error; >> >> + if (cfg->bind_ifindex) { >> + struct net_device *dev; >> + >> + dev = __dev_get_by_index(net, cfg->bind_ifindex); > > Quoting from net/core/dev.c: > > * [...] The device has not > * had its reference counter increased so the caller must be careful > * about locking. The caller must hold either the RTNL semaphore > * or @dev_base_lock. > */ > > which is the case for VXLAN (and GENEVE) during ndo_open, but I don't > think other UDP tunnels (FOU, L2TP) are holding RTNL when they call > udp_sock_create(). dev_get_by_index() + dev_put() should be safe. > > Also, I don't think it's a problem with vxlan, but this could handle > the case where __dev_get_by_index returns NULL. First, sorry for the (late) response, thanks for the feedback! That’s a real issue I did not take into account when writing the patch; still too new to kernel dev. Fixing and spinning up v7. >> + err = kernel_setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, >> + dev->name, strlen(dev->name) + 1); >> + if (err < 0) >> + goto error; >> + } >> + >> udp_addr.sin_family = AF_INET; >> udp_addr.sin_addr = cfg->local_ip; >> udp_addr.sin_port = cfg->local_udp_port; > > -- > Sabrina