6c83737408da2b007ce779ba5593acf58c7164cd
[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 #include <linux/netdevice.h>
30
31 #include <net/llc.h>
32
33 #include "datapath.h"
34 #include "vlan.h"
35 #include "vport-internal_dev.h"
36 #include "vport-netdev.h"
37
38 static struct vport_ops ovs_netdev_vport_ops;
39 static void netdev_port_receive(struct vport *vport, struct sk_buff *skb);
40
41 #if defined HAVE_RX_HANDLER_PSKB  /* 2.6.39 and above or backports */
42 /* Called with rcu_read_lock and bottom-halves disabled. */
43 static rx_handler_result_t netdev_frame_hook(struct sk_buff **pskb)
44 {
45         struct sk_buff *skb = *pskb;
46         struct vport *vport;
47
48         if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
49                 return RX_HANDLER_PASS;
50
51         vport = ovs_netdev_get_vport(skb->dev);
52
53         netdev_port_receive(vport, skb);
54
55         return RX_HANDLER_CONSUMED;
56 }
57 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) || \
58       defined HAVE_RHEL_OVS_HOOK
59 /* Called with rcu_read_lock and bottom-halves disabled. */
60 static struct sk_buff *netdev_frame_hook(struct sk_buff *skb)
61 {
62         struct vport *vport;
63
64         if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
65                 return skb;
66
67         vport = ovs_netdev_get_vport(skb->dev);
68
69         netdev_port_receive(vport, skb);
70
71         return NULL;
72 }
73 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32)
74 /*
75  * Used as br_handle_frame_hook.  (Cannot run bridge at the same time, even on
76  * different set of devices!)
77  */
78 /* Called with rcu_read_lock and bottom-halves disabled. */
79 static struct sk_buff *netdev_frame_hook(struct net_bridge_port *p,
80                                          struct sk_buff *skb)
81 {
82         netdev_port_receive((struct vport *)p, skb);
83         return NULL;
84 }
85 #else
86 #error
87 #endif
88
89 static struct net_device *get_dpdev(const struct datapath *dp)
90 {
91         struct vport *local;
92
93         local = ovs_vport_ovsl(dp, OVSP_LOCAL);
94         BUG_ON(!local);
95         return netdev_vport_priv(local)->dev;
96 }
97
98 static struct vport *netdev_create(const struct vport_parms *parms)
99 {
100         struct vport *vport;
101         struct netdev_vport *netdev_vport;
102         int err;
103
104         vport = ovs_vport_alloc(sizeof(struct netdev_vport),
105                                 &ovs_netdev_vport_ops, parms);
106         if (IS_ERR(vport)) {
107                 err = PTR_ERR(vport);
108                 goto error;
109         }
110
111         netdev_vport = netdev_vport_priv(vport);
112
113         netdev_vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), parms->name);
114         if (!netdev_vport->dev) {
115                 err = -ENODEV;
116                 goto error_free_vport;
117         }
118
119         if (netdev_vport->dev->flags & IFF_LOOPBACK ||
120             netdev_vport->dev->type != ARPHRD_ETHER ||
121             ovs_is_internal_dev(netdev_vport->dev)) {
122                 err = -EINVAL;
123                 goto error_put;
124         }
125
126         rtnl_lock();
127         err = netdev_master_upper_dev_link(netdev_vport->dev,
128                                            get_dpdev(vport->dp));
129         if (err)
130                 goto error_unlock;
131
132         err = netdev_rx_handler_register(netdev_vport->dev, netdev_frame_hook,
133                                          vport);
134         if (err)
135                 goto error_master_upper_dev_unlink;
136
137         dev_disable_lro(netdev_vport->dev);
138         dev_set_promiscuity(netdev_vport->dev, 1);
139         netdev_vport->dev->priv_flags |= IFF_OVS_DATAPATH;
140         rtnl_unlock();
141
142         return vport;
143
144 error_master_upper_dev_unlink:
145         netdev_upper_dev_unlink(netdev_vport->dev, get_dpdev(vport->dp));
146 error_unlock:
147         rtnl_unlock();
148 error_put:
149         dev_put(netdev_vport->dev);
150 error_free_vport:
151         ovs_vport_free(vport);
152 error:
153         return ERR_PTR(err);
154 }
155
156 static void free_port_rcu(struct rcu_head *rcu)
157 {
158         struct netdev_vport *netdev_vport = container_of(rcu,
159                                         struct netdev_vport, rcu);
160
161         dev_put(netdev_vport->dev);
162         ovs_vport_free(vport_from_priv(netdev_vport));
163 }
164
165 void ovs_netdev_detach_dev(struct vport *vport)
166 {
167         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
168
169         ASSERT_RTNL();
170         netdev_vport->dev->priv_flags &= ~IFF_OVS_DATAPATH;
171         netdev_rx_handler_unregister(netdev_vport->dev);
172         netdev_upper_dev_unlink(netdev_vport->dev,
173                                 netdev_master_upper_dev_get(netdev_vport->dev));
174         dev_set_promiscuity(netdev_vport->dev, -1);
175 }
176
177 static void netdev_destroy(struct vport *vport)
178 {
179         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
180
181         rtnl_lock();
182         if (ovs_netdev_get_vport(netdev_vport->dev))
183                 ovs_netdev_detach_dev(vport);
184         rtnl_unlock();
185
186         call_rcu(&netdev_vport->rcu, free_port_rcu);
187 }
188
189 const char *ovs_netdev_get_name(const struct vport *vport)
190 {
191         const struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
192         return netdev_vport->dev->name;
193 }
194
195 /* Must be called with rcu_read_lock. */
196 static void netdev_port_receive(struct vport *vport, struct sk_buff *skb)
197 {
198         if (unlikely(!vport))
199                 goto error;
200
201         if (unlikely(skb_warn_if_lro(skb)))
202                 goto error;
203
204         /* Make our own copy of the packet.  Otherwise we will mangle the
205          * packet for anyone who came before us (e.g. tcpdump via AF_PACKET).
206          * (No one comes after us, since we tell handle_bridge() that we took
207          * the packet.)
208          */
209         skb = skb_share_check(skb, GFP_ATOMIC);
210         if (unlikely(!skb))
211                 return;
212
213         skb_push(skb, ETH_HLEN);
214         ovs_skb_postpush_rcsum(skb, skb->data, ETH_HLEN);
215
216         ovs_vport_receive(vport, skb, NULL);
217         return;
218
219 error:
220         kfree_skb(skb);
221 }
222
223 static unsigned int packet_length(const struct sk_buff *skb)
224 {
225         unsigned int length = skb->len - ETH_HLEN;
226
227         if (skb->protocol == htons(ETH_P_8021Q))
228                 length -= VLAN_HLEN;
229
230         return length;
231 }
232
233 static int netdev_send(struct vport *vport, struct sk_buff *skb)
234 {
235         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
236         int mtu = netdev_vport->dev->mtu;
237         int len;
238
239         if (unlikely(packet_length(skb) > mtu && !skb_is_gso(skb))) {
240                 net_warn_ratelimited("%s: dropped over-mtu packet: %d > %d\n",
241                                      netdev_vport->dev->name,
242                                      packet_length(skb), mtu);
243                 goto drop;
244         }
245
246         skb->dev = netdev_vport->dev;
247         len = skb->len;
248         dev_queue_xmit(skb);
249
250         return len;
251
252 drop:
253         kfree_skb(skb);
254         return 0;
255 }
256
257 /* Returns null if this device is not attached to a datapath. */
258 struct vport *ovs_netdev_get_vport(struct net_device *dev)
259 {
260 #if defined HAVE_NETDEV_RX_HANDLER_REGISTER || \
261     defined HAVE_RHEL_OVS_HOOK
262 #ifdef HAVE_OVS_DATAPATH
263         if (likely(dev->priv_flags & IFF_OVS_DATAPATH))
264 #else
265         if (likely(rcu_access_pointer(dev->rx_handler) == netdev_frame_hook))
266 #endif
267 #ifdef HAVE_RHEL_OVS_HOOK
268                 return (struct vport *)rcu_dereference_rtnl(dev->ax25_ptr);
269 #else
270 #ifdef HAVE_NET_DEVICE_EXTENDED
271                 return (struct vport *)
272                         rcu_dereference_rtnl(netdev_extended(dev)->rx_handler_data);
273 #else
274                 return (struct vport *)rcu_dereference_rtnl(dev->rx_handler_data);
275 #endif
276 #endif
277         else
278                 return NULL;
279 #else
280         return (struct vport *)rcu_dereference_rtnl(dev->br_port);
281 #endif
282 }
283
284 static struct vport_ops ovs_netdev_vport_ops = {
285         .type           = OVS_VPORT_TYPE_NETDEV,
286         .create         = netdev_create,
287         .destroy        = netdev_destroy,
288         .get_name       = ovs_netdev_get_name,
289         .send           = netdev_send,
290 };
291
292 int __init ovs_netdev_init(void)
293 {
294         return ovs_vport_ops_register(&ovs_netdev_vport_ops);
295 }
296
297 void ovs_netdev_exit(void)
298 {
299         ovs_vport_ops_unregister(&ovs_netdev_vport_ops);
300 }
301
302 #if !defined HAVE_NETDEV_RX_HANDLER_REGISTER && \
303     !defined HAVE_RHEL_OVS_HOOK
304 /*
305  * Enforces, mutual exclusion with the Linux bridge module, by declaring and
306  * exporting br_should_route_hook.  Because the bridge module also exports the
307  * same symbol, the module loader will refuse to load both modules at the same
308  * time (e.g. "bridge: exports duplicate symbol br_should_route_hook (owned by
309  * openvswitch)").
310  *
311  * Before Linux 2.6.36, Open vSwitch cannot safely coexist with the Linux
312  * bridge module, so openvswitch uses this macro in those versions.  In
313  * Linux 2.6.36 and later, Open vSwitch can coexist with the bridge module.
314  *
315  * The use of "typeof" here avoids the need to track changes in the type of
316  * br_should_route_hook over various kernel versions.
317  */
318 typeof(br_should_route_hook) br_should_route_hook;
319 EXPORT_SYMBOL(br_should_route_hook);
320 #endif