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