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