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