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