c03381697f34be239d729f909de5ac05e9eb6379
[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 static void netdev_destroy(struct vport *vport)
205 {
206         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
207
208         netdev_exit();
209         rtnl_lock();
210         netdev_vport->dev->priv_flags &= ~IFF_OVS_DATAPATH;
211         netdev_rx_handler_unregister(netdev_vport->dev);
212         netdev_upper_dev_unlink(netdev_vport->dev, get_dpdev(vport->dp));
213         dev_set_promiscuity(netdev_vport->dev, -1);
214         rtnl_unlock();
215
216         call_rcu(&netdev_vport->rcu, free_port_rcu);
217 }
218
219 const char *ovs_netdev_get_name(const struct vport *vport)
220 {
221         const struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
222         return netdev_vport->dev->name;
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         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
292         if (vlan_tx_tag_present(skb) && !dev_supports_vlan_tx(skb->dev)) {
293                 int features;
294
295                 features = netif_skb_features(skb);
296
297                 if (!vlan_tso)
298                         features &= ~(NETIF_F_TSO | NETIF_F_TSO6 |
299                                       NETIF_F_UFO | NETIF_F_FSO);
300
301                 if (netif_needs_gso(skb, features)) {
302                         struct sk_buff *nskb;
303
304                         nskb = skb_gso_segment(skb, features);
305                         if (!nskb) {
306                                 if (unlikely(skb_cloned(skb) &&
307                                     pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
308                                         goto drop;
309
310                                 skb_shinfo(skb)->gso_type &= ~SKB_GSO_DODGY;
311                                 goto tag;
312                         }
313
314                         if (IS_ERR(nskb))
315                                 goto drop;
316                         consume_skb(skb);
317                         skb = nskb;
318
319                         len = 0;
320                         do {
321                                 nskb = skb->next;
322                                 skb->next = NULL;
323
324                                 skb = __vlan_put_tag(skb, skb->vlan_proto, vlan_tx_tag_get(skb));
325                                 if (likely(skb)) {
326                                         len += skb->len;
327                                         vlan_set_tci(skb, 0);
328                                         dev_queue_xmit(skb);
329                                 }
330
331                                 skb = nskb;
332                         } while (skb);
333
334                         return len;
335                 }
336
337 tag:
338                 skb = __vlan_put_tag(skb, skb->vlan_proto, vlan_tx_tag_get(skb));
339                 if (unlikely(!skb))
340                         return 0;
341                 vlan_set_tci(skb, 0);
342         }
343
344         len = skb->len;
345         dev_queue_xmit(skb);
346
347         return len;
348
349 drop:
350         kfree_skb(skb);
351         return 0;
352 }
353
354 /* Returns null if this device is not attached to a datapath. */
355 struct vport *ovs_netdev_get_vport(struct net_device *dev)
356 {
357 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) || \
358     defined HAVE_RHEL_OVS_HOOK
359 #if IFF_OVS_DATAPATH != 0
360         if (likely(dev->priv_flags & IFF_OVS_DATAPATH))
361 #else
362         if (likely(rcu_access_pointer(dev->rx_handler) == netdev_frame_hook))
363 #endif
364 #ifdef HAVE_RHEL_OVS_HOOK
365                 return (struct vport *)rcu_dereference_rtnl(dev->ax25_ptr);
366 #else
367                 return (struct vport *)rcu_dereference_rtnl(dev->rx_handler_data);
368 #endif
369         else
370                 return NULL;
371 #else
372         return (struct vport *)rcu_dereference_rtnl(dev->br_port);
373 #endif
374 }
375
376 const struct vport_ops ovs_netdev_vport_ops = {
377         .type           = OVS_VPORT_TYPE_NETDEV,
378         .create         = netdev_create,
379         .destroy        = netdev_destroy,
380         .get_name       = ovs_netdev_get_name,
381         .send           = netdev_send,
382 };
383
384 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) && \
385     !defined HAVE_RHEL_OVS_HOOK
386 /*
387  * Enforces, mutual exclusion with the Linux bridge module, by declaring and
388  * exporting br_should_route_hook.  Because the bridge module also exports the
389  * same symbol, the module loader will refuse to load both modules at the same
390  * time (e.g. "bridge: exports duplicate symbol br_should_route_hook (owned by
391  * openvswitch)").
392  *
393  * Before Linux 2.6.36, Open vSwitch cannot safely coexist with the Linux
394  * bridge module, so openvswitch uses this macro in those versions.  In
395  * Linux 2.6.36 and later, Open vSwitch can coexist with the bridge module.
396  *
397  * The use of "typeof" here avoids the need to track changes in the type of
398  * br_should_route_hook over various kernel versions.
399  */
400 typeof(br_should_route_hook) br_should_route_hook;
401 EXPORT_SYMBOL(br_should_route_hook);
402 #endif