From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Ahern Subject: Re: [PATCH net 1/1 v1] rtnetlink: require unique netns identifier Date: Sun, 4 Feb 2018 10:21:50 -0700 Message-ID: <3b619bb9-f6cb-6ca9-955b-01c87132c389@gmail.com> References: <20180203132904.11972-1-christian.brauner@ubuntu.com> <20180203132904.11972-2-christian.brauner@ubuntu.com> <20180203111701.2ff8d7a3@xeon-e3> <20180204121100.GA1344@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Christian Brauner , netdev@vger.kernel.org, ebiederm@xmission.com, jbenc@redhat.com, nicolas.dichtel@6wind.com, linux-kernel@vger.kernel.org, davem@davemloft.net To: Christian Brauner , Stephen Hemminger Return-path: Received: from mail-io0-f196.google.com ([209.85.223.196]:34776 "EHLO mail-io0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750725AbeBDRVX (ORCPT ); Sun, 4 Feb 2018 12:21:23 -0500 In-Reply-To: <20180204121100.GA1344@gmail.com> Content-Language: en-US Sender: netdev-owner@vger.kernel.org List-ID: On 2/4/18 5:11 AM, Christian Brauner wrote: > On Sat, Feb 03, 2018 at 11:17:01AM -0800, Stephen Hemminger wrote: >> On Sat, 3 Feb 2018 14:29:04 +0100 >> Christian Brauner wrote: >> >>> +static int rtnl_ensure_unique_netns_attr(const struct sock *sk, >>> + struct nlattr *tb[], >>> + struct netlink_ext_ack *extack) >>> +{ >>> + int ret = -EINVAL; >>> + struct net *net = NULL, *unique_net = NULL; >>> + >>> + /* Requests without network namespace ids have been able to specify >>> + * multiple properties referring to different network namespaces so >>> + * don't regress them. >>> + */ >>> + if (!tb[IFLA_IF_NETNSID]) >>> + return 0; >>> + >>> + if (!tb[IFLA_NET_NS_PID] && !tb[IFLA_NET_NS_FD]) >>> + return 0; >> >> Isn't this an error? > > My reasoning was that having no explicit network namespace identifying > attributes the caller operates on the current network namespace which is > uniquely identified. agreed. those are not required attributes.