chelsio: Use netdev_<level> and pr_<level>
[linux-2.6/btrfs-unstable.git] / drivers / net / veth.c
blob8b2e11238efadea62fc3624a086df82a5e6e846b
1 /*
2 * drivers/net/veth.c
4 * Copyright (C) 2007 OpenVZ http://openvz.org, SWsoft Inc
6 * Author: Pavel Emelianov <xemul@openvz.org>
7 * Ethtool interface from: Eric W. Biederman <ebiederm@xmission.com>
9 */
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>
17 #include <net/dst.h>
18 #include <net/xfrm.h>
19 #include <linux/veth.h>
20 #include <linux/module.h>
22 #define DRV_NAME "veth"
23 #define DRV_VERSION "1.0"
25 #define MIN_MTU 68 /* Min L3 MTU */
26 #define MAX_MTU 65535 /* Max L3 MTU (arbitrary) */
28 struct pcpu_vstats {
29 u64 packets;
30 u64 bytes;
31 struct u64_stats_sync syncp;
34 struct veth_priv {
35 struct net_device *peer;
36 atomic64_t dropped;
40 * ethtool interface
43 static struct {
44 const char string[ETH_GSTRING_LEN];
45 } ethtool_stats_keys[] = {
46 { "peer_ifindex" },
49 static int veth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
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;
64 static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
66 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
67 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
70 static void veth_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
72 switch(stringset) {
73 case ETH_SS_STATS:
74 memcpy(buf, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
75 break;
79 static int veth_get_sset_count(struct net_device *dev, int sset)
81 switch (sset) {
82 case ETH_SS_STATS:
83 return ARRAY_SIZE(ethtool_stats_keys);
84 default:
85 return -EOPNOTSUPP;
89 static void veth_get_ethtool_stats(struct net_device *dev,
90 struct ethtool_stats *stats, u64 *data)
92 struct veth_priv *priv;
94 priv = netdev_priv(dev);
95 data[0] = priv->peer->ifindex;
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,
107 static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev)
109 struct veth_priv *priv = netdev_priv(dev);
110 struct net_device *rcv = priv->peer;
111 int length = skb->len;
113 /* don't change ip_summed == CHECKSUM_PARTIAL, as that
114 * will cause bad checksum on forwarded packets
116 if (skb->ip_summed == CHECKSUM_NONE &&
117 rcv->features & NETIF_F_RXCSUM)
118 skb->ip_summed = CHECKSUM_UNNECESSARY;
120 if (likely(dev_forward_skb(rcv, skb) == NET_RX_SUCCESS)) {
121 struct pcpu_vstats *stats = this_cpu_ptr(dev->vstats);
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);
131 return NETDEV_TX_OK;
135 * general routines
138 static u64 veth_stats_one(struct pcpu_vstats *result, struct net_device *dev)
140 struct veth_priv *priv = netdev_priv(dev);
141 int cpu;
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;
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;
158 return atomic64_read(&priv->dropped);
161 static struct rtnl_link_stats64 *veth_get_stats64(struct net_device *dev,
162 struct rtnl_link_stats64 *tot)
164 struct veth_priv *priv = netdev_priv(dev);
165 struct pcpu_vstats one;
167 tot->tx_dropped = veth_stats_one(&one, dev);
168 tot->tx_bytes = one.bytes;
169 tot->tx_packets = one.packets;
171 tot->rx_dropped = veth_stats_one(&one, priv->peer);
172 tot->rx_bytes = one.bytes;
173 tot->rx_packets = one.packets;
175 return tot;
178 static int veth_open(struct net_device *dev)
180 struct veth_priv *priv;
182 priv = netdev_priv(dev);
183 if (priv->peer == NULL)
184 return -ENOTCONN;
186 if (priv->peer->flags & IFF_UP) {
187 netif_carrier_on(dev);
188 netif_carrier_on(priv->peer);
190 return 0;
193 static int veth_close(struct net_device *dev)
195 struct veth_priv *priv = netdev_priv(dev);
197 netif_carrier_off(dev);
198 netif_carrier_off(priv->peer);
200 return 0;
203 static int is_valid_veth_mtu(int new_mtu)
205 return new_mtu >= MIN_MTU && new_mtu <= MAX_MTU;
208 static int veth_change_mtu(struct net_device *dev, int new_mtu)
210 if (!is_valid_veth_mtu(new_mtu))
211 return -EINVAL;
212 dev->mtu = new_mtu;
213 return 0;
216 static int veth_dev_init(struct net_device *dev)
218 dev->vstats = alloc_percpu(struct pcpu_vstats);
219 if (!dev->vstats)
220 return -ENOMEM;
222 return 0;
225 static void veth_dev_free(struct net_device *dev)
227 free_percpu(dev->vstats);
228 free_netdev(dev);
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,
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)
245 static void veth_setup(struct net_device *dev)
247 ether_setup(dev);
249 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
250 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
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;
258 dev->hw_features = VETH_FEATURES;
262 * netlink interface
265 static int veth_validate(struct nlattr *tb[], struct nlattr *data[])
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;
273 if (tb[IFLA_MTU]) {
274 if (!is_valid_veth_mtu(nla_get_u32(tb[IFLA_MTU])))
275 return -EINVAL;
277 return 0;
280 static struct rtnl_link_ops veth_link_ops;
282 static int veth_newlink(struct net *src_net, struct net_device *dev,
283 struct nlattr *tb[], struct nlattr *data[])
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;
294 * create and register peer first
296 if (data != NULL && data[VETH_INFO_PEER] != NULL) {
297 struct nlattr *nla_peer;
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;
308 err = veth_validate(peer_tb, NULL);
309 if (err < 0)
310 return err;
312 tbp = peer_tb;
313 } else {
314 ifmp = NULL;
315 tbp = tb;
318 if (tbp[IFLA_IFNAME])
319 nla_strlcpy(ifname, tbp[IFLA_IFNAME], IFNAMSIZ);
320 else
321 snprintf(ifname, IFNAMSIZ, DRV_NAME "%%d");
323 net = rtnl_link_get_net(src_net, tbp);
324 if (IS_ERR(net))
325 return PTR_ERR(net);
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);
333 if (tbp[IFLA_ADDRESS] == NULL)
334 eth_hw_addr_random(peer);
336 if (ifmp && (dev->ifindex != 0))
337 peer->ifindex = ifmp->ifi_index;
339 err = register_netdevice(peer);
340 put_net(net);
341 net = NULL;
342 if (err < 0)
343 goto err_register_peer;
345 netif_carrier_off(peer);
347 err = rtnl_configure_link(peer, ifmp);
348 if (err < 0)
349 goto err_configure_peer;
352 * register dev last
354 * note, that since we've registered new device the dev's name
355 * should be re-allocated
358 if (tb[IFLA_ADDRESS] == NULL)
359 eth_hw_addr_random(dev);
361 if (tb[IFLA_IFNAME])
362 nla_strlcpy(dev->name, tb[IFLA_IFNAME], IFNAMSIZ);
363 else
364 snprintf(dev->name, IFNAMSIZ, DRV_NAME "%%d");
366 if (strchr(dev->name, '%')) {
367 err = dev_alloc_name(dev, dev->name);
368 if (err < 0)
369 goto err_alloc_name;
372 err = register_netdevice(dev);
373 if (err < 0)
374 goto err_register_dev;
376 netif_carrier_off(dev);
379 * tie the deviced together
382 priv = netdev_priv(dev);
383 priv->peer = peer;
385 priv = netdev_priv(peer);
386 priv->peer = dev;
387 return 0;
389 err_register_dev:
390 /* nothing to do */
391 err_alloc_name:
392 err_configure_peer:
393 unregister_netdevice(peer);
394 return err;
396 err_register_peer:
397 free_netdev(peer);
398 return err;
401 static void veth_dellink(struct net_device *dev, struct list_head *head)
403 struct veth_priv *priv;
404 struct net_device *peer;
406 priv = netdev_priv(dev);
407 peer = priv->peer;
409 unregister_netdevice_queue(dev, head);
410 unregister_netdevice_queue(peer, head);
413 static const struct nla_policy veth_policy[VETH_INFO_MAX + 1] = {
414 [VETH_INFO_PEER] = { .len = sizeof(struct ifinfomsg) },
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,
429 * init/fini
432 static __init int veth_init(void)
434 return rtnl_link_register(&veth_link_ops);
437 static __exit void veth_exit(void)
439 rtnl_link_unregister(&veth_link_ops);
442 module_init(veth_init);
443 module_exit(veth_exit);
445 MODULE_DESCRIPTION("Virtual Ethernet Tunnel");
446 MODULE_LICENSE("GPL v2");
447 MODULE_ALIAS_RTNL_LINK(DRV_NAME);