mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
vlan: disable SIOCSHWTSTAMP in container
With NET_ADMIN enabled in container, a normal user could be mapped to
root and is able to change the real device's rx filter via ioctl on
vlan, which would affect the other ptp process on host. Fix it by
disabling SIOCSHWTSTAMP in container.
Fixes: a6111d3c93
("vlan: Pass SIOC[SG]HWTSTAMP ioctls to real device")
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Acked-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6c2ea9ebaf
commit
873017af77
@ -370,10 +370,12 @@ static int vlan_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
|
|||||||
ifrr.ifr_ifru = ifr->ifr_ifru;
|
ifrr.ifr_ifru = ifr->ifr_ifru;
|
||||||
|
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
|
case SIOCSHWTSTAMP:
|
||||||
|
if (!net_eq(dev_net(dev), &init_net))
|
||||||
|
break;
|
||||||
case SIOCGMIIPHY:
|
case SIOCGMIIPHY:
|
||||||
case SIOCGMIIREG:
|
case SIOCGMIIREG:
|
||||||
case SIOCSMIIREG:
|
case SIOCSMIIREG:
|
||||||
case SIOCSHWTSTAMP:
|
|
||||||
case SIOCGHWTSTAMP:
|
case SIOCGHWTSTAMP:
|
||||||
if (netif_device_present(real_dev) && ops->ndo_do_ioctl)
|
if (netif_device_present(real_dev) && ops->ndo_do_ioctl)
|
||||||
err = ops->ndo_do_ioctl(real_dev, &ifrr, cmd);
|
err = ops->ndo_do_ioctl(real_dev, &ifrr, cmd);
|
||||||
|
Loading…
Reference in New Issue
Block a user