datapath: vport: Remove compat support
[sliver-openvswitch.git] / datapath / vport-internal_dev.c
1 /*
2  * Copyright (c) 2007-2012 Nicira, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16  * 02110-1301, USA
17  */
18
19 #include <linux/hardirq.h>
20 #include <linux/if_vlan.h>
21 #include <linux/kernel.h>
22 #include <linux/netdevice.h>
23 #include <linux/etherdevice.h>
24 #include <linux/ethtool.h>
25 #include <linux/netdev_features.h>
26 #include <linux/skbuff.h>
27 #include <linux/version.h>
28
29 #include <net/dst.h>
30 #include <net/xfrm.h>
31
32 #include "checksum.h"
33 #include "datapath.h"
34 #include "vlan.h"
35 #include "vport-internal_dev.h"
36 #include "vport-netdev.h"
37
38 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0)
39 #define HAVE_NET_DEVICE_OPS
40 #endif
41
42 struct internal_dev {
43         struct vport *vport;
44 };
45
46 static struct internal_dev *internal_dev_priv(struct net_device *netdev)
47 {
48         return netdev_priv(netdev);
49 }
50
51 /* This function is only called by the kernel network layer.*/
52 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
53 static struct rtnl_link_stats64 *internal_dev_get_stats(struct net_device *netdev,
54                                                         struct rtnl_link_stats64 *stats)
55 {
56 #else
57 static struct net_device_stats *internal_dev_sys_stats(struct net_device *netdev)
58 {
59         struct net_device_stats *stats = &netdev->stats;
60 #endif
61         struct vport *vport = ovs_internal_dev_get_vport(netdev);
62         struct ovs_vport_stats vport_stats;
63
64         ovs_vport_get_stats(vport, &vport_stats);
65
66         /* The tx and rx stats need to be swapped because the
67          * switch and host OS have opposite perspectives. */
68         stats->rx_packets       = vport_stats.tx_packets;
69         stats->tx_packets       = vport_stats.rx_packets;
70         stats->rx_bytes         = vport_stats.tx_bytes;
71         stats->tx_bytes         = vport_stats.rx_bytes;
72         stats->rx_errors        = vport_stats.tx_errors;
73         stats->tx_errors        = vport_stats.rx_errors;
74         stats->rx_dropped       = vport_stats.tx_dropped;
75         stats->tx_dropped       = vport_stats.rx_dropped;
76
77         return stats;
78 }
79
80 /* Called with rcu_read_lock_bh. */
81 static int internal_dev_xmit(struct sk_buff *skb, struct net_device *netdev)
82 {
83         if (unlikely(compute_ip_summed(skb, true))) {
84                 kfree_skb(skb);
85                 return 0;
86         }
87
88         vlan_copy_skb_tci(skb);
89
90         rcu_read_lock();
91         ovs_vport_receive(internal_dev_priv(netdev)->vport, skb, NULL);
92         rcu_read_unlock();
93         return 0;
94 }
95
96 static int internal_dev_open(struct net_device *netdev)
97 {
98         netif_start_queue(netdev);
99         return 0;
100 }
101
102 static int internal_dev_stop(struct net_device *netdev)
103 {
104         netif_stop_queue(netdev);
105         return 0;
106 }
107
108 static void internal_dev_getinfo(struct net_device *netdev,
109                                  struct ethtool_drvinfo *info)
110 {
111         strlcpy(info->driver, "openvswitch", sizeof(info->driver));
112 }
113
114 static const struct ethtool_ops internal_dev_ethtool_ops = {
115         .get_drvinfo    = internal_dev_getinfo,
116         .get_link       = ethtool_op_get_link,
117 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39)
118         .get_sg         = ethtool_op_get_sg,
119         .set_sg         = ethtool_op_set_sg,
120         .get_tx_csum    = ethtool_op_get_tx_csum,
121         .set_tx_csum    = ethtool_op_set_tx_hw_csum,
122         .get_tso        = ethtool_op_get_tso,
123         .set_tso        = ethtool_op_set_tso,
124 #endif
125 };
126
127 static int internal_dev_change_mtu(struct net_device *netdev, int new_mtu)
128 {
129         if (new_mtu < 68)
130                 return -EINVAL;
131
132         netdev->mtu = new_mtu;
133         return 0;
134 }
135
136 static void internal_dev_destructor(struct net_device *dev)
137 {
138         struct vport *vport = ovs_internal_dev_get_vport(dev);
139
140         ovs_vport_free(vport);
141         free_netdev(dev);
142 }
143
144 #ifdef HAVE_NET_DEVICE_OPS
145 static const struct net_device_ops internal_dev_netdev_ops = {
146         .ndo_open = internal_dev_open,
147         .ndo_stop = internal_dev_stop,
148         .ndo_start_xmit = internal_dev_xmit,
149         .ndo_set_mac_address = eth_mac_addr,
150         .ndo_change_mtu = internal_dev_change_mtu,
151 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
152         .ndo_get_stats64 = internal_dev_get_stats,
153 #else
154         .ndo_get_stats = internal_dev_sys_stats,
155 #endif
156 };
157 #endif
158
159 static void do_setup(struct net_device *netdev)
160 {
161         ether_setup(netdev);
162
163 #ifdef HAVE_NET_DEVICE_OPS
164         netdev->netdev_ops = &internal_dev_netdev_ops;
165 #else
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 = eth_mac_addr;
171         netdev->change_mtu = internal_dev_change_mtu;
172 #endif
173
174         netdev->priv_flags &= ~IFF_TX_SKB_SHARING;
175         netdev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
176         netdev->destructor = internal_dev_destructor;
177         SET_ETHTOOL_OPS(netdev, &internal_dev_ethtool_ops);
178         netdev->tx_queue_len = 0;
179
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         netdev->vlan_features = netdev->features;
184         netdev->features |= NETIF_F_HW_VLAN_CTAG_TX;
185
186 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)
187         netdev->hw_features = netdev->features & ~NETIF_F_LLTX;
188 #endif
189         eth_hw_addr_random(netdev);
190 }
191
192 static struct vport *internal_dev_create(const struct vport_parms *parms)
193 {
194         struct vport *vport;
195         struct netdev_vport *netdev_vport;
196         struct internal_dev *internal_dev;
197         int err;
198
199         vport = ovs_vport_alloc(sizeof(struct netdev_vport),
200                                 &ovs_internal_vport_ops, parms);
201         if (IS_ERR(vport)) {
202                 err = PTR_ERR(vport);
203                 goto error;
204         }
205
206         netdev_vport = netdev_vport_priv(vport);
207
208         netdev_vport->dev = alloc_netdev(sizeof(struct internal_dev),
209                                          parms->name, do_setup);
210         if (!netdev_vport->dev) {
211                 err = -ENOMEM;
212                 goto error_free_vport;
213         }
214
215         dev_net_set(netdev_vport->dev, ovs_dp_get_net(vport->dp));
216         internal_dev = internal_dev_priv(netdev_vport->dev);
217         internal_dev->vport = vport;
218
219         /* Restrict bridge port to current netns. */
220         if (vport->port_no == OVSP_LOCAL)
221                 netdev_vport->dev->features |= NETIF_F_NETNS_LOCAL;
222
223         rtnl_lock();
224         err = register_netdevice(netdev_vport->dev);
225         if (err)
226                 goto error_free_netdev;
227
228         dev_set_promiscuity(netdev_vport->dev, 1);
229         rtnl_unlock();
230         netif_start_queue(netdev_vport->dev);
231
232         return vport;
233
234 error_free_netdev:
235         rtnl_unlock();
236         free_netdev(netdev_vport->dev);
237 error_free_vport:
238         ovs_vport_free(vport);
239 error:
240         return ERR_PTR(err);
241 }
242
243 static void internal_dev_destroy(struct vport *vport)
244 {
245         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
246
247         netif_stop_queue(netdev_vport->dev);
248         rtnl_lock();
249         dev_set_promiscuity(netdev_vport->dev, -1);
250
251         /* unregister_netdevice() waits for an RCU grace period. */
252         unregister_netdevice(netdev_vport->dev);
253
254         rtnl_unlock();
255 }
256
257 static int internal_dev_recv(struct vport *vport, struct sk_buff *skb)
258 {
259         struct net_device *netdev = netdev_vport_priv(vport)->dev;
260         int len;
261
262 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)
263         if (unlikely(vlan_deaccel_tag(skb)))
264                 return 0;
265 #endif
266
267         len = skb->len;
268
269         skb_dst_drop(skb);
270         nf_reset(skb);
271         secpath_reset(skb);
272
273         skb->dev = netdev;
274         skb->pkt_type = PACKET_HOST;
275         skb->protocol = eth_type_trans(skb, netdev);
276         skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
277         forward_ip_summed(skb, false);
278
279         netif_rx(skb);
280
281         return len;
282 }
283
284 const struct vport_ops ovs_internal_vport_ops = {
285         .type           = OVS_VPORT_TYPE_INTERNAL,
286         .create         = internal_dev_create,
287         .destroy        = internal_dev_destroy,
288         .get_name       = ovs_netdev_get_name,
289         .send           = internal_dev_recv,
290 };
291
292 int ovs_is_internal_dev(const struct net_device *netdev)
293 {
294 #ifdef HAVE_NET_DEVICE_OPS
295         return netdev->netdev_ops == &internal_dev_netdev_ops;
296 #else
297         return netdev->open == internal_dev_open;
298 #endif
299 }
300
301 struct vport *ovs_internal_dev_get_vport(struct net_device *netdev)
302 {
303         if (!ovs_is_internal_dev(netdev))
304                 return NULL;
305
306         return internal_dev_priv(netdev)->vport;
307 }