datapath: Move LRO check from transmit to receive.
[sliver-openvswitch.git] / datapath / vport-netdev.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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21 #include <linux/if_arp.h>
22 #include <linux/if_bridge.h>
23 #include <linux/if_vlan.h>
24 #include <linux/kernel.h>
25 #include <linux/llc.h>
26 #include <linux/rtnetlink.h>
27 #include <linux/skbuff.h>
28
29 #include <net/llc.h>
30
31 #include "checksum.h"
32 #include "datapath.h"
33 #include "vlan.h"
34 #include "vport-internal_dev.h"
35 #include "vport-netdev.h"
36
37 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37) && \
38         !defined(HAVE_VLAN_BUG_WORKAROUND)
39 #include <linux/module.h>
40
41 static int vlan_tso __read_mostly;
42 module_param(vlan_tso, int, 0644);
43 MODULE_PARM_DESC(vlan_tso, "Enable TSO for VLAN packets");
44 #else
45 #define vlan_tso true
46 #endif
47
48 static void netdev_port_receive(struct vport *vport, struct sk_buff *skb);
49
50 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)
51 /* Called with rcu_read_lock and bottom-halves disabled. */
52 static rx_handler_result_t netdev_frame_hook(struct sk_buff **pskb)
53 {
54         struct sk_buff *skb = *pskb;
55         struct vport *vport;
56
57         if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
58                 return RX_HANDLER_PASS;
59
60         vport = ovs_netdev_get_vport(skb->dev);
61
62         netdev_port_receive(vport, skb);
63
64         return RX_HANDLER_CONSUMED;
65 }
66 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
67 /* Called with rcu_read_lock and bottom-halves disabled. */
68 static struct sk_buff *netdev_frame_hook(struct sk_buff *skb)
69 {
70         struct vport *vport;
71
72         if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
73                 return skb;
74
75         vport = ovs_netdev_get_vport(skb->dev);
76
77         netdev_port_receive(vport, skb);
78
79         return NULL;
80 }
81 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
82 /*
83  * Used as br_handle_frame_hook.  (Cannot run bridge at the same time, even on
84  * different set of devices!)
85  */
86 /* Called with rcu_read_lock and bottom-halves disabled. */
87 static struct sk_buff *netdev_frame_hook(struct net_bridge_port *p,
88                                          struct sk_buff *skb)
89 {
90         netdev_port_receive((struct vport *)p, skb);
91         return NULL;
92 }
93 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
94 /*
95  * Used as br_handle_frame_hook.  (Cannot run bridge at the same time, even on
96  * different set of devices!)
97  */
98 /* Called with rcu_read_lock and bottom-halves disabled. */
99 static int netdev_frame_hook(struct net_bridge_port *p, struct sk_buff **pskb)
100 {
101         netdev_port_receive((struct vport *)p, *pskb);
102         return 1;
103 }
104 #else
105 #error
106 #endif
107
108 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
109 static int netdev_init(void) { return 0; }
110 static void netdev_exit(void) { }
111 #else
112 static int netdev_init(void)
113 {
114         /* Hook into callback used by the bridge to intercept packets.
115          * Parasites we are. */
116         br_handle_frame_hook = netdev_frame_hook;
117
118         return 0;
119 }
120
121 static void netdev_exit(void)
122 {
123         br_handle_frame_hook = NULL;
124 }
125 #endif
126
127 static struct vport *netdev_create(const struct vport_parms *parms)
128 {
129         struct vport *vport;
130         struct netdev_vport *netdev_vport;
131         int err;
132
133         vport = ovs_vport_alloc(sizeof(struct netdev_vport),
134                                 &ovs_netdev_vport_ops, parms);
135         if (IS_ERR(vport)) {
136                 err = PTR_ERR(vport);
137                 goto error;
138         }
139
140         netdev_vport = netdev_vport_priv(vport);
141
142         netdev_vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), parms->name);
143         if (!netdev_vport->dev) {
144                 err = -ENODEV;
145                 goto error_free_vport;
146         }
147
148         if (netdev_vport->dev->flags & IFF_LOOPBACK ||
149             netdev_vport->dev->type != ARPHRD_ETHER ||
150             ovs_is_internal_dev(netdev_vport->dev)) {
151                 err = -EINVAL;
152                 goto error_put;
153         }
154
155         err = netdev_rx_handler_register(netdev_vport->dev, netdev_frame_hook,
156                                          vport);
157         if (err)
158                 goto error_put;
159
160         dev_set_promiscuity(netdev_vport->dev, 1);
161 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
162         dev_disable_lro(netdev_vport->dev);
163 #endif
164         netdev_vport->dev->priv_flags |= IFF_OVS_DATAPATH;
165
166         return vport;
167
168 error_put:
169         dev_put(netdev_vport->dev);
170 error_free_vport:
171         ovs_vport_free(vport);
172 error:
173         return ERR_PTR(err);
174 }
175
176 static void free_port_rcu(struct rcu_head *rcu)
177 {
178         struct netdev_vport *netdev_vport = container_of(rcu,
179                                         struct netdev_vport, rcu);
180
181         dev_put(netdev_vport->dev);
182         ovs_vport_free(vport_from_priv(netdev_vport));
183 }
184
185 static void netdev_destroy(struct vport *vport)
186 {
187         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
188
189         netdev_vport->dev->priv_flags &= ~IFF_OVS_DATAPATH;
190         netdev_rx_handler_unregister(netdev_vport->dev);
191         dev_set_promiscuity(netdev_vport->dev, -1);
192
193         call_rcu(&netdev_vport->rcu, free_port_rcu);
194 }
195
196 int ovs_netdev_set_addr(struct vport *vport, const unsigned char *addr)
197 {
198         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
199         struct sockaddr sa;
200
201         sa.sa_family = ARPHRD_ETHER;
202         memcpy(sa.sa_data, addr, ETH_ALEN);
203
204         return dev_set_mac_address(netdev_vport->dev, &sa);
205 }
206
207 const char *ovs_netdev_get_name(const struct vport *vport)
208 {
209         const struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
210         return netdev_vport->dev->name;
211 }
212
213 const unsigned char *ovs_netdev_get_addr(const struct vport *vport)
214 {
215         const struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
216         return netdev_vport->dev->dev_addr;
217 }
218
219 int ovs_netdev_get_ifindex(const struct vport *vport)
220 {
221         const struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
222         return netdev_vport->dev->ifindex;
223 }
224
225 /* Must be called with rcu_read_lock. */
226 static void netdev_port_receive(struct vport *vport, struct sk_buff *skb)
227 {
228         if (unlikely(!vport))
229                 goto error;
230
231         if (unlikely(skb_warn_if_lro(skb)))
232                 goto error;
233
234         /* Make our own copy of the packet.  Otherwise we will mangle the
235          * packet for anyone who came before us (e.g. tcpdump via AF_PACKET).
236          * (No one comes after us, since we tell handle_bridge() that we took
237          * the packet.) */
238         skb = skb_share_check(skb, GFP_ATOMIC);
239         if (unlikely(!skb))
240                 return;
241
242         skb_push(skb, ETH_HLEN);
243
244         if (unlikely(compute_ip_summed(skb, false)))
245                 goto error;
246
247         vlan_copy_skb_tci(skb);
248
249         ovs_vport_receive(vport, skb);
250         return;
251
252 error:
253         kfree_skb(skb);
254 }
255
256 static unsigned int packet_length(const struct sk_buff *skb)
257 {
258         unsigned int length = skb->len - ETH_HLEN;
259
260         if (skb->protocol == htons(ETH_P_8021Q))
261                 length -= VLAN_HLEN;
262
263         return length;
264 }
265
266 static bool dev_supports_vlan_tx(struct net_device *dev)
267 {
268 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)
269         /* Software fallback means every device supports vlan_tci on TX. */
270         return true;
271 #elif defined(HAVE_VLAN_BUG_WORKAROUND)
272         return dev->features & NETIF_F_HW_VLAN_TX;
273 #else
274         /* Assume that the driver is buggy. */
275         return false;
276 #endif
277 }
278
279 static int netdev_send(struct vport *vport, struct sk_buff *skb)
280 {
281         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
282         int mtu = netdev_vport->dev->mtu;
283         int len;
284
285         if (unlikely(packet_length(skb) > mtu && !skb_is_gso(skb))) {
286                 net_warn_ratelimited("%s: dropped over-mtu packet: %d > %d\n",
287                                      netdev_vport->dev->name,
288                                      packet_length(skb), mtu);
289                 goto error;
290         }
291
292         skb->dev = netdev_vport->dev;
293         forward_ip_summed(skb, true);
294
295         if (vlan_tx_tag_present(skb) && !dev_supports_vlan_tx(skb->dev)) {
296                 int features;
297
298                 features = netif_skb_features(skb);
299
300                 if (!vlan_tso)
301                         features &= ~(NETIF_F_TSO | NETIF_F_TSO6 |
302                                       NETIF_F_UFO | NETIF_F_FSO);
303
304                 if (netif_needs_gso(skb, features)) {
305                         struct sk_buff *nskb;
306
307                         nskb = skb_gso_segment(skb, features);
308                         if (!nskb) {
309                                 if (unlikely(skb_cloned(skb) &&
310                                     pskb_expand_head(skb, 0, 0, GFP_ATOMIC))) {
311                                         kfree_skb(skb);
312                                         return 0;
313                                 }
314
315                                 skb_shinfo(skb)->gso_type &= ~SKB_GSO_DODGY;
316                                 goto tag;
317                         }
318
319                         if (IS_ERR(nskb)) {
320                                 kfree_skb(skb);
321                                 return 0;
322                         }
323                         consume_skb(skb);
324                         skb = nskb;
325
326                         len = 0;
327                         do {
328                                 nskb = skb->next;
329                                 skb->next = NULL;
330
331                                 skb = __vlan_put_tag(skb, vlan_tx_tag_get(skb));
332                                 if (likely(skb)) {
333                                         len += skb->len;
334                                         vlan_set_tci(skb, 0);
335                                         dev_queue_xmit(skb);
336                                 }
337
338                                 skb = nskb;
339                         } while (skb);
340
341                         return len;
342                 }
343
344 tag:
345                 skb = __vlan_put_tag(skb, vlan_tx_tag_get(skb));
346                 if (unlikely(!skb))
347                         return 0;
348                 vlan_set_tci(skb, 0);
349         }
350
351         len = skb->len;
352         dev_queue_xmit(skb);
353
354         return len;
355
356 error:
357         kfree_skb(skb);
358         ovs_vport_record_error(vport, VPORT_E_TX_DROPPED);
359         return 0;
360 }
361
362 /* Returns null if this device is not attached to a datapath. */
363 struct vport *ovs_netdev_get_vport(struct net_device *dev)
364 {
365 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
366 #if IFF_OVS_DATAPATH != 0
367         if (likely(dev->priv_flags & IFF_OVS_DATAPATH))
368 #else
369         if (likely(rcu_access_pointer(dev->rx_handler) == netdev_frame_hook))
370 #endif
371                 return (struct vport *)rcu_dereference_rtnl(dev->rx_handler_data);
372         else
373                 return NULL;
374 #else
375         return (struct vport *)rcu_dereference_rtnl(dev->br_port);
376 #endif
377 }
378
379 const struct vport_ops ovs_netdev_vport_ops = {
380         .type           = OVS_VPORT_TYPE_NETDEV,
381         .flags          = VPORT_F_REQUIRED,
382         .init           = netdev_init,
383         .exit           = netdev_exit,
384         .create         = netdev_create,
385         .destroy        = netdev_destroy,
386         .set_addr       = ovs_netdev_set_addr,
387         .get_name       = ovs_netdev_get_name,
388         .get_addr       = ovs_netdev_get_addr,
389         .get_ifindex    = ovs_netdev_get_ifindex,
390         .send           = netdev_send,
391 };
392
393 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)
394 /*
395  * Enforces, mutual exclusion with the Linux bridge module, by declaring and
396  * exporting br_should_route_hook.  Because the bridge module also exports the
397  * same symbol, the module loader will refuse to load both modules at the same
398  * time (e.g. "bridge: exports duplicate symbol br_should_route_hook (owned by
399  * openvswitch)").
400  *
401  * Before Linux 2.6.36, Open vSwitch cannot safely coexist with the Linux
402  * bridge module, so openvswitch uses this macro in those versions.  In
403  * Linux 2.6.36 and later, Open vSwitch can coexist with the bridge module.
404  *
405  * The use of "typeof" here avoids the need to track changes in the type of
406  * br_should_route_hook over various kernel versions.
407  */
408 typeof(br_should_route_hook) br_should_route_hook;
409 EXPORT_SYMBOL(br_should_route_hook);
410 #endif