diff mbox series

[net,2/2] net: enhance error message for 'netns local' iface

Message ID 20250206165132.2898347-3-nicolas.dichtel@6wind.com (mailing list archive)
State Superseded
Delegated to: Netdev Maintainers
Headers show
Series net: notify users when an iface cannot change its netns | expand

Checks

Context Check Description
netdev/series_format success Posting correctly formatted
netdev/tree_selection success Clearly marked for net
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag present in non-next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers warning 2 maintainers not CCed: horms@kernel.org kuniyu@amazon.com
netdev/build_clang success Errors and warnings before: 2 this patch: 2
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 4 this patch: 4
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 13 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 5 this patch: 5
netdev/source_inline success Was 0 now: 0
netdev/contest fail net-next-2025-02-06--21-00 (tests: 889)

Commit Message

Nicolas Dichtel Feb. 6, 2025, 4:50 p.m. UTC
The current message is "Invalid argument". Let's help the user by
explaining the error.

Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
---
 net/core/rtnetlink.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Comments

Andrew Lunn Feb. 6, 2025, 11:02 p.m. UTC | #1
On Thu, Feb 06, 2025 at 05:50:27PM +0100, Nicolas Dichtel wrote:
> The current message is "Invalid argument". Let's help the user by
> explaining the error.
> 
> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
> ---
>  net/core/rtnetlink.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
> index 5032e65b8faa..91b358bdfe5c 100644
> --- a/net/core/rtnetlink.c
> +++ b/net/core/rtnetlink.c
> @@ -3024,8 +3024,12 @@ static int do_setlink(const struct sk_buff *skb, struct net_device *dev,
>  		new_ifindex = nla_get_s32_default(tb[IFLA_NEW_IFINDEX], 0);
>  
>  		err = __dev_change_net_namespace(dev, tgt_net, pat, new_ifindex);
> -		if (err)
> +		if (err) {
> +			if (dev->netns_local)
> +				NL_SET_ERR_MSG(extack,
> +					       "The interface has the 'netns local' property");

This seems to have the wrong order. Why even try calling
__dev_change_net_namespace() if you know it is going to fail?

Maybe this NL_SET_ERR_MSG() should be pushed into
__dev_change_net_namespace()? You could then return useful messages if
the altnames conflict, the ifindex is already in use, etc.

	Andrew
Nicolas Dichtel Feb. 7, 2025, 9:08 a.m. UTC | #2
Le 07/02/2025 à 00:02, Andrew Lunn a écrit :
> On Thu, Feb 06, 2025 at 05:50:27PM +0100, Nicolas Dichtel wrote:
>> The current message is "Invalid argument". Let's help the user by
>> explaining the error.
>>
>> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
>> ---
>>  net/core/rtnetlink.c | 6 +++++-
>>  1 file changed, 5 insertions(+), 1 deletion(-)
>>
>> diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
>> index 5032e65b8faa..91b358bdfe5c 100644
>> --- a/net/core/rtnetlink.c
>> +++ b/net/core/rtnetlink.c
>> @@ -3024,8 +3024,12 @@ static int do_setlink(const struct sk_buff *skb, struct net_device *dev,
>>  		new_ifindex = nla_get_s32_default(tb[IFLA_NEW_IFINDEX], 0);
>>  
>>  		err = __dev_change_net_namespace(dev, tgt_net, pat, new_ifindex);
>> -		if (err)
>> +		if (err) {
>> +			if (dev->netns_local)
>> +				NL_SET_ERR_MSG(extack,
>> +					       "The interface has the 'netns local' property");
> 
> This seems to have the wrong order. Why even try calling
> __dev_change_net_namespace() if you know it is going to fail?
> 
> Maybe this NL_SET_ERR_MSG() should be pushed into
> __dev_change_net_namespace()? You could then return useful messages if
> the altnames conflict, the ifindex is already in use, etc.
Users of dev_change_net_namespace() are not netlink users, so I kept the same
API. I will plumb the extack into __dev_change_net_namespace().


Thanks,
Nicolas
diff mbox series

Patch

diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 5032e65b8faa..91b358bdfe5c 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -3024,8 +3024,12 @@  static int do_setlink(const struct sk_buff *skb, struct net_device *dev,
 		new_ifindex = nla_get_s32_default(tb[IFLA_NEW_IFINDEX], 0);
 
 		err = __dev_change_net_namespace(dev, tgt_net, pat, new_ifindex);
-		if (err)
+		if (err) {
+			if (dev->netns_local)
+				NL_SET_ERR_MSG(extack,
+					       "The interface has the 'netns local' property");
 			goto errout;
+		}
 
 		status |= DO_SETLINK_MODIFIED;
 	}