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