diff options
author | Serhey Popovych <serhe.popovych@gmail.com> | 2018-10-09 14:21:01 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-10-16 00:40:31 -0400 |
commit | df52eab23d703142c766ac00bdb8db19d71238d0 (patch) | |
tree | 6e773bc9e63f98f8adafa6f188d8d814dec1437c /drivers/net/tun.c | |
parent | 921060ccdae9756f645bcf42ca27fd3ad3a352ff (diff) |
tun: Consistently configure generic netdev params via rtnetlink
Configuring generic network device parameters on tun will fail in
presence of IFLA_INFO_KIND attribute in IFLA_LINKINFO nested attribute
since tun_validate() always return failure.
This can be visualized with following ip-link(8) command sequences:
# ip link set dev tun0 group 100
# ip link set dev tun0 group 100 type tun
RTNETLINK answers: Invalid argument
with contrast to dummy and veth drivers:
# ip link set dev dummy0 group 100
# ip link set dev dummy0 type dummy
# ip link set dev veth0 group 100
# ip link set dev veth0 group 100 type veth
Fix by returning zero in tun_validate() when @data is NULL that is
always in case since rtnl_link_ops->maxtype is zero in tun driver.
Fixes: f019a7a594d9 ("tun: Implement ip link del tunXXX")
Signed-off-by: Serhey Popovych <serhe.popovych@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tun.c')
-rw-r--r-- | drivers/net/tun.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 92fa35abba92..060135ceaf0e 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c | |||
@@ -2289,6 +2289,8 @@ static void tun_setup(struct net_device *dev) | |||
2289 | static int tun_validate(struct nlattr *tb[], struct nlattr *data[], | 2289 | static int tun_validate(struct nlattr *tb[], struct nlattr *data[], |
2290 | struct netlink_ext_ack *extack) | 2290 | struct netlink_ext_ack *extack) |
2291 | { | 2291 | { |
2292 | if (!data) | ||
2293 | return 0; | ||
2292 | return -EINVAL; | 2294 | return -EINVAL; |
2293 | } | 2295 | } |
2294 | 2296 | ||