datapath: Assert IFF_TX_SKB_SHARING on internal devices.
[sliver-openvswitch.git] / datapath / vport-internal_dev.c
1 /*
2  * Copyright (c) 2009, 2010, 2011 Nicira Networks.
3  * Distributed under the terms of the GNU GPL version 2.
4  *
5  * Significant portions of this file may be copied from parts of the Linux
6  * kernel, by Linus Torvalds and others.
7  */
8
9 #include <linux/hardirq.h>
10 #include <linux/if_vlan.h>
11 #include <linux/kernel.h>
12 #include <linux/netdevice.h>
13 #include <linux/etherdevice.h>
14 #include <linux/ethtool.h>
15 #include <linux/skbuff.h>
16 #include <linux/version.h>
17
18 #include "checksum.h"
19 #include "datapath.h"
20 #include "vlan.h"
21 #include "vport-generic.h"
22 #include "vport-internal_dev.h"
23 #include "vport-netdev.h"
24
25 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0)
26 #define HAVE_NET_DEVICE_OPS
27 #endif
28
29 struct internal_dev {
30         struct vport *vport;
31         struct net_device_stats stats;
32 };
33
34 static inline struct internal_dev *internal_dev_priv(struct net_device *netdev)
35 {
36         return netdev_priv(netdev);
37 }
38
39 /* This function is only called by the kernel network layer.*/
40 static struct net_device_stats *internal_dev_sys_stats(struct net_device *netdev)
41 {
42         struct vport *vport = internal_dev_get_vport(netdev);
43         struct net_device_stats *stats = &internal_dev_priv(netdev)->stats;
44
45         if (vport) {
46                 struct ovs_vport_stats vport_stats;
47
48                 vport_get_stats(vport, &vport_stats);
49
50                 /* The tx and rx stats need to be swapped because the switch
51                  * and host OS have opposite perspectives. */
52                 stats->rx_packets       = vport_stats.tx_packets;
53                 stats->tx_packets       = vport_stats.rx_packets;
54                 stats->rx_bytes         = vport_stats.tx_bytes;
55                 stats->tx_bytes         = vport_stats.rx_bytes;
56                 stats->rx_errors        = vport_stats.tx_errors;
57                 stats->tx_errors        = vport_stats.rx_errors;
58                 stats->rx_dropped       = vport_stats.tx_dropped;
59                 stats->tx_dropped       = vport_stats.rx_dropped;
60         }
61
62         return stats;
63 }
64
65 static int internal_dev_mac_addr(struct net_device *dev, void *p)
66 {
67         struct sockaddr *addr = p;
68
69         if (!is_valid_ether_addr(addr->sa_data))
70                 return -EADDRNOTAVAIL;
71         memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
72         return 0;
73 }
74
75 /* Called with rcu_read_lock_bh. */
76 static int internal_dev_xmit(struct sk_buff *skb, struct net_device *netdev)
77 {
78         if (unlikely(compute_ip_summed(skb, true))) {
79                 kfree_skb(skb);
80                 return 0;
81         }
82
83         vlan_copy_skb_tci(skb);
84         OVS_CB(skb)->flow = NULL;
85
86         rcu_read_lock();
87         vport_receive(internal_dev_priv(netdev)->vport, skb);
88         rcu_read_unlock();
89         return 0;
90 }
91
92 static int internal_dev_open(struct net_device *netdev)
93 {
94         netif_start_queue(netdev);
95         return 0;
96 }
97
98 static int internal_dev_stop(struct net_device *netdev)
99 {
100         netif_stop_queue(netdev);
101         return 0;
102 }
103
104 static void internal_dev_getinfo(struct net_device *netdev,
105                                  struct ethtool_drvinfo *info)
106 {
107         strcpy(info->driver, "openvswitch");
108 }
109
110 static const struct ethtool_ops internal_dev_ethtool_ops = {
111         .get_drvinfo    = internal_dev_getinfo,
112         .get_link       = ethtool_op_get_link,
113         .get_sg         = ethtool_op_get_sg,
114         .set_sg         = ethtool_op_set_sg,
115         .get_tx_csum    = ethtool_op_get_tx_csum,
116         .set_tx_csum    = ethtool_op_set_tx_hw_csum,
117         .get_tso        = ethtool_op_get_tso,
118         .set_tso        = ethtool_op_set_tso,
119 };
120
121 static int internal_dev_change_mtu(struct net_device *netdev, int new_mtu)
122 {
123         if (new_mtu < 68)
124                 return -EINVAL;
125
126         netdev->mtu = new_mtu;
127         return 0;
128 }
129
130 static int internal_dev_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
131 {
132         if (dp_ioctl_hook)
133                 return dp_ioctl_hook(dev, ifr, cmd);
134
135         return -EOPNOTSUPP;
136 }
137
138 static void internal_dev_destructor(struct net_device *dev)
139 {
140         struct vport *vport = internal_dev_get_vport(dev);
141
142         vport_free(vport);
143         free_netdev(dev);
144 }
145
146 #ifdef HAVE_NET_DEVICE_OPS
147 static const struct net_device_ops internal_dev_netdev_ops = {
148         .ndo_open = internal_dev_open,
149         .ndo_stop = internal_dev_stop,
150         .ndo_start_xmit = internal_dev_xmit,
151         .ndo_set_mac_address = internal_dev_mac_addr,
152         .ndo_do_ioctl = internal_dev_do_ioctl,
153         .ndo_change_mtu = internal_dev_change_mtu,
154         .ndo_get_stats = internal_dev_sys_stats,
155 };
156 #endif
157
158 static void do_setup(struct net_device *netdev)
159 {
160         ether_setup(netdev);
161
162 #ifdef HAVE_NET_DEVICE_OPS
163         netdev->netdev_ops = &internal_dev_netdev_ops;
164 #else
165         netdev->do_ioctl = internal_dev_do_ioctl;
166         netdev->get_stats = internal_dev_sys_stats;
167         netdev->hard_start_xmit = internal_dev_xmit;
168         netdev->open = internal_dev_open;
169         netdev->stop = internal_dev_stop;
170         netdev->set_mac_address = internal_dev_mac_addr;
171         netdev->change_mtu = internal_dev_change_mtu;
172 #endif
173
174         netdev->priv_flags &= ~IFF_TX_SKB_SHARING;
175         netdev->destructor = internal_dev_destructor;
176         SET_ETHTOOL_OPS(netdev, &internal_dev_ethtool_ops);
177         netdev->tx_queue_len = 0;
178
179         netdev->flags = IFF_BROADCAST | IFF_MULTICAST;
180         netdev->features = NETIF_F_LLTX | NETIF_F_SG | NETIF_F_FRAGLIST |
181                                 NETIF_F_HIGHDMA | NETIF_F_HW_CSUM | NETIF_F_TSO;
182
183 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)
184         netdev->vlan_features = netdev->features;
185         netdev->features |= NETIF_F_HW_VLAN_TX;
186 #endif
187
188         vport_gen_rand_ether_addr(netdev->dev_addr);
189 }
190
191 static struct vport *internal_dev_create(const struct vport_parms *parms)
192 {
193         struct vport *vport;
194         struct netdev_vport *netdev_vport;
195         struct internal_dev *internal_dev;
196         int err;
197
198         vport = vport_alloc(sizeof(struct netdev_vport), &internal_vport_ops, parms);
199         if (IS_ERR(vport)) {
200                 err = PTR_ERR(vport);
201                 goto error;
202         }
203
204         netdev_vport = netdev_vport_priv(vport);
205
206         netdev_vport->dev = alloc_netdev(sizeof(struct internal_dev), parms->name, do_setup);
207         if (!netdev_vport->dev) {
208                 err = -ENOMEM;
209                 goto error_free_vport;
210         }
211
212         internal_dev = internal_dev_priv(netdev_vport->dev);
213         internal_dev->vport = vport;
214
215         err = register_netdevice(netdev_vport->dev);
216         if (err)
217                 goto error_free_netdev;
218
219         dev_set_promiscuity(netdev_vport->dev, 1);
220         netif_start_queue(netdev_vport->dev);
221
222         return vport;
223
224 error_free_netdev:
225         free_netdev(netdev_vport->dev);
226 error_free_vport:
227         vport_free(vport);
228 error:
229         return ERR_PTR(err);
230 }
231
232 static void internal_dev_destroy(struct vport *vport)
233 {
234         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
235
236         netif_stop_queue(netdev_vport->dev);
237         dev_set_promiscuity(netdev_vport->dev, -1);
238
239         /* unregister_netdevice() waits for an RCU grace period. */
240         unregister_netdevice(netdev_vport->dev);
241 }
242
243 static int internal_dev_recv(struct vport *vport, struct sk_buff *skb)
244 {
245         struct net_device *netdev = netdev_vport_priv(vport)->dev;
246         int len;
247
248 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)
249         if (unlikely(vlan_deaccel_tag(skb)))
250                 return 0;
251 #endif
252
253         len = skb->len;
254         skb->dev = netdev;
255         skb->pkt_type = PACKET_HOST;
256         skb->protocol = eth_type_trans(skb, netdev);
257         forward_ip_summed(skb, false);
258
259         netif_rx(skb);
260
261 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,29)
262         netdev->last_rx = jiffies;
263 #endif
264
265         return len;
266 }
267
268 const struct vport_ops internal_vport_ops = {
269         .type           = OVS_VPORT_TYPE_INTERNAL,
270         .flags          = VPORT_F_REQUIRED | VPORT_F_FLOW,
271         .create         = internal_dev_create,
272         .destroy        = internal_dev_destroy,
273         .set_addr       = netdev_set_addr,
274         .get_name       = netdev_get_name,
275         .get_addr       = netdev_get_addr,
276         .get_kobj       = netdev_get_kobj,
277         .get_dev_flags  = netdev_get_dev_flags,
278         .is_running     = netdev_is_running,
279         .get_operstate  = netdev_get_operstate,
280         .get_ifindex    = netdev_get_ifindex,
281         .get_mtu        = netdev_get_mtu,
282         .send           = internal_dev_recv,
283 };
284
285 int is_internal_dev(const struct net_device *netdev)
286 {
287 #ifdef HAVE_NET_DEVICE_OPS
288         return netdev->netdev_ops == &internal_dev_netdev_ops;
289 #else
290         return netdev->open == internal_dev_open;
291 #endif
292 }
293
294 int is_internal_vport(const struct vport *vport)
295 {
296         return vport->ops == &internal_vport_ops;
297 }
298
299 struct vport *internal_dev_get_vport(struct net_device *netdev)
300 {
301         if (!is_internal_dev(netdev))
302                 return NULL;
303
304         return internal_dev_priv(netdev)->vport;
305 }