datapath: collect mega flow mask stats
[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 #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 static void netdev_port_receive(struct vport *vport, struct sk_buff *skb);
38
39 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)
40 /* Called with rcu_read_lock and bottom-halves disabled. */
41 static rx_handler_result_t netdev_frame_hook(struct sk_buff **pskb)
42 {
43         struct sk_buff *skb = *pskb;
44         struct vport *vport;
45
46         if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
47                 return RX_HANDLER_PASS;
48
49         vport = ovs_netdev_get_vport(skb->dev);
50
51         netdev_port_receive(vport, skb);
52
53         return RX_HANDLER_CONSUMED;
54 }
55 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) || \
56       defined HAVE_RHEL_OVS_HOOK
57 /* Called with rcu_read_lock and bottom-halves disabled. */
58 static struct sk_buff *netdev_frame_hook(struct sk_buff *skb)
59 {
60         struct vport *vport;
61
62         if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
63                 return skb;
64
65         vport = ovs_netdev_get_vport(skb->dev);
66
67         netdev_port_receive(vport, skb);
68
69         return NULL;
70 }
71 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32)
72 /*
73  * Used as br_handle_frame_hook.  (Cannot run bridge at the same time, even on
74  * different set of devices!)
75  */
76 /* Called with rcu_read_lock and bottom-halves disabled. */
77 static struct sk_buff *netdev_frame_hook(struct net_bridge_port *p,
78                                          struct sk_buff *skb)
79 {
80         netdev_port_receive((struct vport *)p, skb);
81         return NULL;
82 }
83 #else
84 #error
85 #endif
86
87 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) || \
88     defined HAVE_RHEL_OVS_HOOK
89 static int netdev_init(void) { return 0; }
90 static void netdev_exit(void) { }
91 #else
92 static int port_count;
93
94 static void netdev_init(void)
95 {
96         port_count++;
97         if (port_count > 1)
98                 return;
99
100         /* Hook into callback used by the bridge to intercept packets.
101          * Parasites we are. */
102         br_handle_frame_hook = netdev_frame_hook;
103
104         return;
105 }
106
107 static void netdev_exit(void)
108 {
109         port_count--;
110         if (port_count > 0)
111                 return;
112
113         br_handle_frame_hook = NULL;
114 }
115 #endif
116
117 static struct net_device *get_dpdev(struct datapath *dp)
118 {
119         struct vport *local;
120
121         local = ovs_vport_ovsl(dp, OVSP_LOCAL);
122         BUG_ON(!local);
123         return netdev_vport_priv(local)->dev;
124 }
125
126 static struct vport *netdev_create(const struct vport_parms *parms)
127 {
128         struct vport *vport;
129         struct netdev_vport *netdev_vport;
130         int err;
131
132         vport = ovs_vport_alloc(sizeof(struct netdev_vport),
133                                 &ovs_netdev_vport_ops, parms);
134         if (IS_ERR(vport)) {
135                 err = PTR_ERR(vport);
136                 goto error;
137         }
138
139         netdev_vport = netdev_vport_priv(vport);
140
141         netdev_vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), parms->name);
142         if (!netdev_vport->dev) {
143                 err = -ENODEV;
144                 goto error_free_vport;
145         }
146
147         if (netdev_vport->dev->flags & IFF_LOOPBACK ||
148             netdev_vport->dev->type != ARPHRD_ETHER ||
149             ovs_is_internal_dev(netdev_vport->dev)) {
150                 err = -EINVAL;
151                 goto error_put;
152         }
153
154         rtnl_lock();
155         err = netdev_master_upper_dev_link(netdev_vport->dev,
156                                            get_dpdev(vport->dp));
157         if (err)
158                 goto error_unlock;
159
160         err = netdev_rx_handler_register(netdev_vport->dev, netdev_frame_hook,
161                                          vport);
162         if (err)
163                 goto error_master_upper_dev_unlink;
164
165         dev_set_promiscuity(netdev_vport->dev, 1);
166         netdev_vport->dev->priv_flags |= IFF_OVS_DATAPATH;
167         rtnl_unlock();
168
169         netdev_init();
170         return vport;
171
172 error_master_upper_dev_unlink:
173         netdev_upper_dev_unlink(netdev_vport->dev, get_dpdev(vport->dp));
174 error_unlock:
175         rtnl_unlock();
176 error_put:
177         dev_put(netdev_vport->dev);
178 error_free_vport:
179         ovs_vport_free(vport);
180 error:
181         return ERR_PTR(err);
182 }
183
184 static void free_port_rcu(struct rcu_head *rcu)
185 {
186         struct netdev_vport *netdev_vport = container_of(rcu,
187                                         struct netdev_vport, rcu);
188
189         dev_put(netdev_vport->dev);
190         ovs_vport_free(vport_from_priv(netdev_vport));
191 }
192
193 void ovs_netdev_detach_dev(struct vport *vport)
194 {
195         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
196
197         ASSERT_RTNL();
198         netdev_vport->dev->priv_flags &= ~IFF_OVS_DATAPATH;
199         netdev_rx_handler_unregister(netdev_vport->dev);
200         netdev_upper_dev_unlink(netdev_vport->dev,
201                                 netdev_master_upper_dev_get(netdev_vport->dev));
202         dev_set_promiscuity(netdev_vport->dev, -1);
203 }
204
205 static void netdev_destroy(struct vport *vport)
206 {
207         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
208
209         netdev_exit();
210
211         rtnl_lock();
212         if (ovs_netdev_get_vport(netdev_vport->dev))
213                 ovs_netdev_detach_dev(vport);
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         ovs_vport_receive(vport, skb, NULL);
246         return;
247
248 error:
249         kfree_skb(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 int netdev_send(struct vport *vport, struct sk_buff *skb)
263 {
264         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
265         int mtu = netdev_vport->dev->mtu;
266         int len;
267
268         if (unlikely(packet_length(skb) > mtu && !skb_is_gso(skb))) {
269                 net_warn_ratelimited("%s: dropped over-mtu packet: %d > %d\n",
270                                      netdev_vport->dev->name,
271                                      packet_length(skb), mtu);
272                 goto drop;
273         }
274
275         skb->dev = netdev_vport->dev;
276         len = skb->len;
277         dev_queue_xmit(skb);
278
279         return len;
280
281 drop:
282         kfree_skb(skb);
283         return 0;
284 }
285
286 /* Returns null if this device is not attached to a datapath. */
287 struct vport *ovs_netdev_get_vport(struct net_device *dev)
288 {
289 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) || \
290     defined HAVE_RHEL_OVS_HOOK
291 #if IFF_OVS_DATAPATH != 0
292         if (likely(dev->priv_flags & IFF_OVS_DATAPATH))
293 #else
294         if (likely(rcu_access_pointer(dev->rx_handler) == netdev_frame_hook))
295 #endif
296 #ifdef HAVE_RHEL_OVS_HOOK
297                 return (struct vport *)rcu_dereference_rtnl(dev->ax25_ptr);
298 #else
299                 return (struct vport *)rcu_dereference_rtnl(dev->rx_handler_data);
300 #endif
301         else
302                 return NULL;
303 #else
304         return (struct vport *)rcu_dereference_rtnl(dev->br_port);
305 #endif
306 }
307
308 const struct vport_ops ovs_netdev_vport_ops = {
309         .type           = OVS_VPORT_TYPE_NETDEV,
310         .create         = netdev_create,
311         .destroy        = netdev_destroy,
312         .get_name       = ovs_netdev_get_name,
313         .send           = netdev_send,
314 };
315
316 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) && \
317     !defined HAVE_RHEL_OVS_HOOK
318 /*
319  * Enforces, mutual exclusion with the Linux bridge module, by declaring and
320  * exporting br_should_route_hook.  Because the bridge module also exports the
321  * same symbol, the module loader will refuse to load both modules at the same
322  * time (e.g. "bridge: exports duplicate symbol br_should_route_hook (owned by
323  * openvswitch)").
324  *
325  * Before Linux 2.6.36, Open vSwitch cannot safely coexist with the Linux
326  * bridge module, so openvswitch uses this macro in those versions.  In
327  * Linux 2.6.36 and later, Open vSwitch can coexist with the bridge module.
328  *
329  * The use of "typeof" here avoids the need to track changes in the type of
330  * br_should_route_hook over various kernel versions.
331  */
332 typeof(br_should_route_hook) br_should_route_hook;
333 EXPORT_SYMBOL(br_should_route_hook);
334 #endif