|
@@ -1621,6 +1621,80 @@ static int ethtool_get_module_eeprom(struct net_device *dev,
|
|
|
modinfo.eeprom_len);
|
|
|
}
|
|
|
|
|
|
+static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
|
|
|
+{
|
|
|
+ switch (tuna->id) {
|
|
|
+ case ETHTOOL_RX_COPYBREAK:
|
|
|
+ if (tuna->len != sizeof(u32) ||
|
|
|
+ tuna->type_id != ETHTOOL_TUNABLE_U32)
|
|
|
+ return -EINVAL;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
|
|
|
+{
|
|
|
+ int ret;
|
|
|
+ struct ethtool_tunable tuna;
|
|
|
+ const struct ethtool_ops *ops = dev->ethtool_ops;
|
|
|
+ void *data;
|
|
|
+
|
|
|
+ if (!ops->get_tunable)
|
|
|
+ return -EOPNOTSUPP;
|
|
|
+ if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
|
|
|
+ return -EFAULT;
|
|
|
+ ret = ethtool_tunable_valid(&tuna);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+ data = kmalloc(tuna.len, GFP_USER);
|
|
|
+ if (!data)
|
|
|
+ return -ENOMEM;
|
|
|
+ ret = ops->get_tunable(dev, &tuna, data);
|
|
|
+ if (ret)
|
|
|
+ goto out;
|
|
|
+ useraddr += sizeof(tuna);
|
|
|
+ ret = -EFAULT;
|
|
|
+ if (copy_to_user(useraddr, data, tuna.len))
|
|
|
+ goto out;
|
|
|
+ ret = 0;
|
|
|
+
|
|
|
+out:
|
|
|
+ kfree(data);
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
+static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
|
|
|
+{
|
|
|
+ int ret;
|
|
|
+ struct ethtool_tunable tuna;
|
|
|
+ const struct ethtool_ops *ops = dev->ethtool_ops;
|
|
|
+ void *data;
|
|
|
+
|
|
|
+ if (!ops->set_tunable)
|
|
|
+ return -EOPNOTSUPP;
|
|
|
+ if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
|
|
|
+ return -EFAULT;
|
|
|
+ ret = ethtool_tunable_valid(&tuna);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+ data = kmalloc(tuna.len, GFP_USER);
|
|
|
+ if (!data)
|
|
|
+ return -ENOMEM;
|
|
|
+ useraddr += sizeof(tuna);
|
|
|
+ ret = -EFAULT;
|
|
|
+ if (copy_from_user(data, useraddr, tuna.len))
|
|
|
+ goto out;
|
|
|
+ ret = ops->set_tunable(dev, &tuna, data);
|
|
|
+
|
|
|
+out:
|
|
|
+ kfree(data);
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
/* The main entry point in this file. Called from net/core/dev_ioctl.c */
|
|
|
|
|
|
int dev_ethtool(struct net *net, struct ifreq *ifr)
|
|
@@ -1670,6 +1744,7 @@ int dev_ethtool(struct net *net, struct ifreq *ifr)
|
|
|
case ETHTOOL_GCHANNELS:
|
|
|
case ETHTOOL_GET_TS_INFO:
|
|
|
case ETHTOOL_GEEE:
|
|
|
+ case ETHTOOL_GTUNABLE:
|
|
|
break;
|
|
|
default:
|
|
|
if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
|
|
@@ -1857,6 +1932,12 @@ int dev_ethtool(struct net *net, struct ifreq *ifr)
|
|
|
case ETHTOOL_GMODULEEEPROM:
|
|
|
rc = ethtool_get_module_eeprom(dev, useraddr);
|
|
|
break;
|
|
|
+ case ETHTOOL_GTUNABLE:
|
|
|
+ rc = ethtool_get_tunable(dev, useraddr);
|
|
|
+ break;
|
|
|
+ case ETHTOOL_STUNABLE:
|
|
|
+ rc = ethtool_set_tunable(dev, useraddr);
|
|
|
+ break;
|
|
|
default:
|
|
|
rc = -EOPNOTSUPP;
|
|
|
}
|