]> Pileus Git - ~andy/linux/blob - drivers/net/veth.c
veth: extend device features
[~andy/linux] / drivers / net / veth.c
1 /*
2  *  drivers/net/veth.c
3  *
4  *  Copyright (C) 2007 OpenVZ http://openvz.org, SWsoft Inc
5  *
6  * Author: Pavel Emelianov <xemul@openvz.org>
7  * Ethtool interface from: Eric W. Biederman <ebiederm@xmission.com>
8  *
9  */
10
11 #include <linux/netdevice.h>
12 #include <linux/slab.h>
13 #include <linux/ethtool.h>
14 #include <linux/etherdevice.h>
15 #include <linux/u64_stats_sync.h>
16
17 #include <net/dst.h>
18 #include <net/xfrm.h>
19 #include <linux/veth.h>
20 #include <linux/module.h>
21
22 #define DRV_NAME        "veth"
23 #define DRV_VERSION     "1.0"
24
25 #define MIN_MTU 68              /* Min L3 MTU */
26 #define MAX_MTU 65535           /* Max L3 MTU (arbitrary) */
27
28 struct pcpu_vstats {
29         u64                     packets;
30         u64                     bytes;
31         struct u64_stats_sync   syncp;
32 };
33
34 struct veth_priv {
35         struct net_device       *peer;
36         atomic64_t              dropped;
37 };
38
39 /*
40  * ethtool interface
41  */
42
43 static struct {
44         const char string[ETH_GSTRING_LEN];
45 } ethtool_stats_keys[] = {
46         { "peer_ifindex" },
47 };
48
49 static int veth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
50 {
51         cmd->supported          = 0;
52         cmd->advertising        = 0;
53         ethtool_cmd_speed_set(cmd, SPEED_10000);
54         cmd->duplex             = DUPLEX_FULL;
55         cmd->port               = PORT_TP;
56         cmd->phy_address        = 0;
57         cmd->transceiver        = XCVR_INTERNAL;
58         cmd->autoneg            = AUTONEG_DISABLE;
59         cmd->maxtxpkt           = 0;
60         cmd->maxrxpkt           = 0;
61         return 0;
62 }
63
64 static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
65 {
66         strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
67         strlcpy(info->version, DRV_VERSION, sizeof(info->version));
68 }
69
70 static void veth_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
71 {
72         switch(stringset) {
73         case ETH_SS_STATS:
74                 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
75                 break;
76         }
77 }
78
79 static int veth_get_sset_count(struct net_device *dev, int sset)
80 {
81         switch (sset) {
82         case ETH_SS_STATS:
83                 return ARRAY_SIZE(ethtool_stats_keys);
84         default:
85                 return -EOPNOTSUPP;
86         }
87 }
88
89 static void veth_get_ethtool_stats(struct net_device *dev,
90                 struct ethtool_stats *stats, u64 *data)
91 {
92         struct veth_priv *priv;
93
94         priv = netdev_priv(dev);
95         data[0] = priv->peer->ifindex;
96 }
97
98 static const struct ethtool_ops veth_ethtool_ops = {
99         .get_settings           = veth_get_settings,
100         .get_drvinfo            = veth_get_drvinfo,
101         .get_link               = ethtool_op_get_link,
102         .get_strings            = veth_get_strings,
103         .get_sset_count         = veth_get_sset_count,
104         .get_ethtool_stats      = veth_get_ethtool_stats,
105 };
106
107 static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev)
108 {
109         struct veth_priv *priv = netdev_priv(dev);
110         struct net_device *rcv = priv->peer;
111         int length = skb->len;
112
113         /* don't change ip_summed == CHECKSUM_PARTIAL, as that
114          * will cause bad checksum on forwarded packets
115          */
116         if (skb->ip_summed == CHECKSUM_NONE &&
117             rcv->features & NETIF_F_RXCSUM)
118                 skb->ip_summed = CHECKSUM_UNNECESSARY;
119
120         if (likely(dev_forward_skb(rcv, skb) == NET_RX_SUCCESS)) {
121                 struct pcpu_vstats *stats = this_cpu_ptr(dev->vstats);
122
123                 u64_stats_update_begin(&stats->syncp);
124                 stats->bytes += length;
125                 stats->packets++;
126                 u64_stats_update_end(&stats->syncp);
127         } else {
128                 atomic64_inc(&priv->dropped);
129         }
130
131         return NETDEV_TX_OK;
132 }
133
134 /*
135  * general routines
136  */
137
138 static u64 veth_stats_one(struct pcpu_vstats *result, struct net_device *dev)
139 {
140         struct veth_priv *priv = netdev_priv(dev);
141         int cpu;
142
143         result->packets = 0;
144         result->bytes = 0;
145         for_each_possible_cpu(cpu) {
146                 struct pcpu_vstats *stats = per_cpu_ptr(dev->vstats, cpu);
147                 u64 packets, bytes;
148                 unsigned int start;
149
150                 do {
151                         start = u64_stats_fetch_begin_bh(&stats->syncp);
152                         packets = stats->packets;
153                         bytes = stats->bytes;
154                 } while (u64_stats_fetch_retry_bh(&stats->syncp, start));
155                 result->packets += packets;
156                 result->bytes += bytes;
157         }
158         return atomic64_read(&priv->dropped);
159 }
160
161 static struct rtnl_link_stats64 *veth_get_stats64(struct net_device *dev,
162                                                   struct rtnl_link_stats64 *tot)
163 {
164         struct veth_priv *priv = netdev_priv(dev);
165         struct pcpu_vstats one;
166
167         tot->tx_dropped = veth_stats_one(&one, dev);
168         tot->tx_bytes = one.bytes;
169         tot->tx_packets = one.packets;
170
171         tot->rx_dropped = veth_stats_one(&one, priv->peer);
172         tot->rx_bytes = one.bytes;
173         tot->rx_packets = one.packets;
174
175         return tot;
176 }
177
178 static int veth_open(struct net_device *dev)
179 {
180         struct veth_priv *priv;
181
182         priv = netdev_priv(dev);
183         if (priv->peer == NULL)
184                 return -ENOTCONN;
185
186         if (priv->peer->flags & IFF_UP) {
187                 netif_carrier_on(dev);
188                 netif_carrier_on(priv->peer);
189         }
190         return 0;
191 }
192
193 static int veth_close(struct net_device *dev)
194 {
195         struct veth_priv *priv = netdev_priv(dev);
196
197         netif_carrier_off(dev);
198         netif_carrier_off(priv->peer);
199
200         return 0;
201 }
202
203 static int is_valid_veth_mtu(int new_mtu)
204 {
205         return new_mtu >= MIN_MTU && new_mtu <= MAX_MTU;
206 }
207
208 static int veth_change_mtu(struct net_device *dev, int new_mtu)
209 {
210         if (!is_valid_veth_mtu(new_mtu))
211                 return -EINVAL;
212         dev->mtu = new_mtu;
213         return 0;
214 }
215
216 static int veth_dev_init(struct net_device *dev)
217 {
218         dev->vstats = alloc_percpu(struct pcpu_vstats);
219         if (!dev->vstats)
220                 return -ENOMEM;
221
222         return 0;
223 }
224
225 static void veth_dev_free(struct net_device *dev)
226 {
227         free_percpu(dev->vstats);
228         free_netdev(dev);
229 }
230
231 static const struct net_device_ops veth_netdev_ops = {
232         .ndo_init            = veth_dev_init,
233         .ndo_open            = veth_open,
234         .ndo_stop            = veth_close,
235         .ndo_start_xmit      = veth_xmit,
236         .ndo_change_mtu      = veth_change_mtu,
237         .ndo_get_stats64     = veth_get_stats64,
238         .ndo_set_mac_address = eth_mac_addr,
239 };
240
241 #define VETH_FEATURES (NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_ALL_TSO |    \
242                        NETIF_F_HW_CSUM | NETIF_F_RXCSUM | NETIF_F_HIGHDMA | \
243                        NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX)
244
245 static void veth_setup(struct net_device *dev)
246 {
247         ether_setup(dev);
248
249         dev->priv_flags &= ~IFF_TX_SKB_SHARING;
250         dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
251
252         dev->netdev_ops = &veth_netdev_ops;
253         dev->ethtool_ops = &veth_ethtool_ops;
254         dev->features |= NETIF_F_LLTX;
255         dev->features |= VETH_FEATURES;
256         dev->destructor = veth_dev_free;
257
258         dev->hw_features = VETH_FEATURES;
259 }
260
261 /*
262  * netlink interface
263  */
264
265 static int veth_validate(struct nlattr *tb[], struct nlattr *data[])
266 {
267         if (tb[IFLA_ADDRESS]) {
268                 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
269                         return -EINVAL;
270                 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
271                         return -EADDRNOTAVAIL;
272         }
273         if (tb[IFLA_MTU]) {
274                 if (!is_valid_veth_mtu(nla_get_u32(tb[IFLA_MTU])))
275                         return -EINVAL;
276         }
277         return 0;
278 }
279
280 static struct rtnl_link_ops veth_link_ops;
281
282 static int veth_newlink(struct net *src_net, struct net_device *dev,
283                          struct nlattr *tb[], struct nlattr *data[])
284 {
285         int err;
286         struct net_device *peer;
287         struct veth_priv *priv;
288         char ifname[IFNAMSIZ];
289         struct nlattr *peer_tb[IFLA_MAX + 1], **tbp;
290         struct ifinfomsg *ifmp;
291         struct net *net;
292
293         /*
294          * create and register peer first
295          */
296         if (data != NULL && data[VETH_INFO_PEER] != NULL) {
297                 struct nlattr *nla_peer;
298
299                 nla_peer = data[VETH_INFO_PEER];
300                 ifmp = nla_data(nla_peer);
301                 err = nla_parse(peer_tb, IFLA_MAX,
302                                 nla_data(nla_peer) + sizeof(struct ifinfomsg),
303                                 nla_len(nla_peer) - sizeof(struct ifinfomsg),
304                                 ifla_policy);
305                 if (err < 0)
306                         return err;
307
308                 err = veth_validate(peer_tb, NULL);
309                 if (err < 0)
310                         return err;
311
312                 tbp = peer_tb;
313         } else {
314                 ifmp = NULL;
315                 tbp = tb;
316         }
317
318         if (tbp[IFLA_IFNAME])
319                 nla_strlcpy(ifname, tbp[IFLA_IFNAME], IFNAMSIZ);
320         else
321                 snprintf(ifname, IFNAMSIZ, DRV_NAME "%%d");
322
323         net = rtnl_link_get_net(src_net, tbp);
324         if (IS_ERR(net))
325                 return PTR_ERR(net);
326
327         peer = rtnl_create_link(net, ifname, &veth_link_ops, tbp);
328         if (IS_ERR(peer)) {
329                 put_net(net);
330                 return PTR_ERR(peer);
331         }
332
333         if (tbp[IFLA_ADDRESS] == NULL)
334                 eth_hw_addr_random(peer);
335
336         if (ifmp && (dev->ifindex != 0))
337                 peer->ifindex = ifmp->ifi_index;
338
339         err = register_netdevice(peer);
340         put_net(net);
341         net = NULL;
342         if (err < 0)
343                 goto err_register_peer;
344
345         netif_carrier_off(peer);
346
347         err = rtnl_configure_link(peer, ifmp);
348         if (err < 0)
349                 goto err_configure_peer;
350
351         /*
352          * register dev last
353          *
354          * note, that since we've registered new device the dev's name
355          * should be re-allocated
356          */
357
358         if (tb[IFLA_ADDRESS] == NULL)
359                 eth_hw_addr_random(dev);
360
361         if (tb[IFLA_IFNAME])
362                 nla_strlcpy(dev->name, tb[IFLA_IFNAME], IFNAMSIZ);
363         else
364                 snprintf(dev->name, IFNAMSIZ, DRV_NAME "%%d");
365
366         if (strchr(dev->name, '%')) {
367                 err = dev_alloc_name(dev, dev->name);
368                 if (err < 0)
369                         goto err_alloc_name;
370         }
371
372         err = register_netdevice(dev);
373         if (err < 0)
374                 goto err_register_dev;
375
376         netif_carrier_off(dev);
377
378         /*
379          * tie the deviced together
380          */
381
382         priv = netdev_priv(dev);
383         priv->peer = peer;
384
385         priv = netdev_priv(peer);
386         priv->peer = dev;
387         return 0;
388
389 err_register_dev:
390         /* nothing to do */
391 err_alloc_name:
392 err_configure_peer:
393         unregister_netdevice(peer);
394         return err;
395
396 err_register_peer:
397         free_netdev(peer);
398         return err;
399 }
400
401 static void veth_dellink(struct net_device *dev, struct list_head *head)
402 {
403         struct veth_priv *priv;
404         struct net_device *peer;
405
406         priv = netdev_priv(dev);
407         peer = priv->peer;
408
409         unregister_netdevice_queue(dev, head);
410         unregister_netdevice_queue(peer, head);
411 }
412
413 static const struct nla_policy veth_policy[VETH_INFO_MAX + 1] = {
414         [VETH_INFO_PEER]        = { .len = sizeof(struct ifinfomsg) },
415 };
416
417 static struct rtnl_link_ops veth_link_ops = {
418         .kind           = DRV_NAME,
419         .priv_size      = sizeof(struct veth_priv),
420         .setup          = veth_setup,
421         .validate       = veth_validate,
422         .newlink        = veth_newlink,
423         .dellink        = veth_dellink,
424         .policy         = veth_policy,
425         .maxtype        = VETH_INFO_MAX,
426 };
427
428 /*
429  * init/fini
430  */
431
432 static __init int veth_init(void)
433 {
434         return rtnl_link_register(&veth_link_ops);
435 }
436
437 static __exit void veth_exit(void)
438 {
439         rtnl_link_unregister(&veth_link_ops);
440 }
441
442 module_init(veth_init);
443 module_exit(veth_exit);
444
445 MODULE_DESCRIPTION("Virtual Ethernet Tunnel");
446 MODULE_LICENSE("GPL v2");
447 MODULE_ALIAS_RTNL_LINK(DRV_NAME);