datapath: Add version check for struct netdev_ops.
[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->destructor = internal_dev_destructor;
175         SET_ETHTOOL_OPS(netdev, &internal_dev_ethtool_ops);
176         netdev->tx_queue_len = 0;
177
178         netdev->flags = IFF_BROADCAST | IFF_MULTICAST;
179         netdev->features = NETIF_F_LLTX | NETIF_F_SG | NETIF_F_FRAGLIST |
180                                 NETIF_F_HIGHDMA | NETIF_F_HW_CSUM | NETIF_F_TSO;
181
182 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)
183         netdev->vlan_features = netdev->features;
184         netdev->features |= NETIF_F_HW_VLAN_TX;
185 #endif
186
187         vport_gen_rand_ether_addr(netdev->dev_addr);
188 }
189
190 static struct vport *internal_dev_create(const struct vport_parms *parms)
191 {
192         struct vport *vport;
193         struct netdev_vport *netdev_vport;
194         struct internal_dev *internal_dev;
195         int err;
196
197         vport = vport_alloc(sizeof(struct netdev_vport), &internal_vport_ops, parms);
198         if (IS_ERR(vport)) {
199                 err = PTR_ERR(vport);
200                 goto error;
201         }
202
203         netdev_vport = netdev_vport_priv(vport);
204
205         netdev_vport->dev = alloc_netdev(sizeof(struct internal_dev), parms->name, do_setup);
206         if (!netdev_vport->dev) {
207                 err = -ENOMEM;
208                 goto error_free_vport;
209         }
210
211         internal_dev = internal_dev_priv(netdev_vport->dev);
212         internal_dev->vport = vport;
213
214         err = register_netdevice(netdev_vport->dev);
215         if (err)
216                 goto error_free_netdev;
217
218         dev_set_promiscuity(netdev_vport->dev, 1);
219         netif_start_queue(netdev_vport->dev);
220
221         return vport;
222
223 error_free_netdev:
224         free_netdev(netdev_vport->dev);
225 error_free_vport:
226         vport_free(vport);
227 error:
228         return ERR_PTR(err);
229 }
230
231 static void internal_dev_destroy(struct vport *vport)
232 {
233         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
234
235         netif_stop_queue(netdev_vport->dev);
236         dev_set_promiscuity(netdev_vport->dev, -1);
237
238         /* unregister_netdevice() waits for an RCU grace period. */
239         unregister_netdevice(netdev_vport->dev);
240 }
241
242 static int internal_dev_recv(struct vport *vport, struct sk_buff *skb)
243 {
244         struct net_device *netdev = netdev_vport_priv(vport)->dev;
245         int len;
246
247 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)
248         if (unlikely(vlan_deaccel_tag(skb)))
249                 return 0;
250 #endif
251
252         len = skb->len;
253         skb->dev = netdev;
254         skb->pkt_type = PACKET_HOST;
255         skb->protocol = eth_type_trans(skb, netdev);
256         forward_ip_summed(skb, false);
257
258         netif_rx(skb);
259
260 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,29)
261         netdev->last_rx = jiffies;
262 #endif
263
264         return len;
265 }
266
267 const struct vport_ops internal_vport_ops = {
268         .type           = OVS_VPORT_TYPE_INTERNAL,
269         .flags          = VPORT_F_REQUIRED | VPORT_F_FLOW,
270         .create         = internal_dev_create,
271         .destroy        = internal_dev_destroy,
272         .set_addr       = netdev_set_addr,
273         .get_name       = netdev_get_name,
274         .get_addr       = netdev_get_addr,
275         .get_kobj       = netdev_get_kobj,
276         .get_dev_flags  = netdev_get_dev_flags,
277         .is_running     = netdev_is_running,
278         .get_operstate  = netdev_get_operstate,
279         .get_ifindex    = netdev_get_ifindex,
280         .get_mtu        = netdev_get_mtu,
281         .send           = internal_dev_recv,
282 };
283
284 int is_internal_dev(const struct net_device *netdev)
285 {
286 #ifdef HAVE_NET_DEVICE_OPS
287         return netdev->netdev_ops == &internal_dev_netdev_ops;
288 #else
289         return netdev->open == internal_dev_open;
290 #endif
291 }
292
293 int is_internal_vport(const struct vport *vport)
294 {
295         return vport->ops == &internal_vport_ops;
296 }
297
298 struct vport *internal_dev_get_vport(struct net_device *netdev)
299 {
300         if (!is_internal_dev(netdev))
301                 return NULL;
302
303         return internal_dev_priv(netdev)->vport;
304 }