]> git.baikalelectronics.ru Git - kernel.git/commit
veth: Be more robust on network device creation when no attributes
authorSerhey Popovych <serhe.popovych@gmail.com>
Wed, 21 Jun 2017 09:12:24 +0000 (12:12 +0300)
committerDavid S. Miller <davem@davemloft.net>
Thu, 22 Jun 2017 15:15:15 +0000 (11:15 -0400)
commit4f2903f919ad8e46534c0c7aa04e4779b99eaad5
treebab1555b5bf4b75d18c150d810782590ec0cd589
parentd1e5ae302998ea4a6c3db88182e80e4dd274bc7b
veth: Be more robust on network device creation when no attributes

There are number of problems with configuration peer
network device in absence of IFLA_VETH_PEER attributes
where attributes for main network device shared with
peer.

First it is not feasible to configure both network
devices with same MAC address since this makes
communication in such configuration problematic.

This case can be reproduced with following sequence:

  # ip link add address 02:11:22:33:44:55 type veth
  # ip li sh
  ...
  26: veth0@veth1: <BROADCAST,MULTICAST,M-DOWN> mtu 1500 qdisc \
  noop state DOWN mode DEFAULT qlen 1000
      link/ether 00:11:22:33:44:55 brd ff:ff:ff:ff:ff:ff
  27: veth1@veth0: <BROADCAST,MULTICAST,M-DOWN> mtu 1500 qdisc \
  noop state DOWN mode DEFAULT qlen 1000
      link/ether 00:11:22:33:44:55 brd ff:ff:ff:ff:ff:ff

Second it is not possible to register both main and
peer network devices with same name, that happens
when name for main interface is given with IFLA_IFNAME
and same attribute reused for peer.

This case can be reproduced with following sequence:

  # ip link add dev veth1a type veth
  RTNETLINK answers: File exists

To fix both of the cases check if corresponding netlink
attributes are taken from peer_tb when valid or
name based on rtnl ops kind and random address is used.

Signed-off-by: Serhey Popovych <serhe.popovych@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/veth.c