Setting tag sliver-openvswitch-2.2.90-1
[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 static struct net_device *get_dpdev(struct datapath *dp)
88 {
89         struct vport *local;
90
91         local = ovs_vport_ovsl(dp, OVSP_LOCAL);
92         BUG_ON(!local);
93         return netdev_vport_priv(local)->dev;
94 }
95
96 static struct vport *netdev_create(const struct vport_parms *parms)
97 {
98         struct vport *vport;
99         struct netdev_vport *netdev_vport;
100         int err;
101
102         vport = ovs_vport_alloc(sizeof(struct netdev_vport),
103                                 &ovs_netdev_vport_ops, parms);
104         if (IS_ERR(vport)) {
105                 err = PTR_ERR(vport);
106                 goto error;
107         }
108
109         netdev_vport = netdev_vport_priv(vport);
110
111         netdev_vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), parms->name);
112         if (!netdev_vport->dev) {
113                 err = -ENODEV;
114                 goto error_free_vport;
115         }
116
117         if (netdev_vport->dev->flags & IFF_LOOPBACK ||
118             netdev_vport->dev->type != ARPHRD_ETHER ||
119             ovs_is_internal_dev(netdev_vport->dev)) {
120                 err = -EINVAL;
121                 goto error_put;
122         }
123
124         rtnl_lock();
125         err = netdev_master_upper_dev_link(netdev_vport->dev,
126                                            get_dpdev(vport->dp));
127         if (err)
128                 goto error_unlock;
129
130         err = netdev_rx_handler_register(netdev_vport->dev, netdev_frame_hook,
131                                          vport);
132         if (err)
133                 goto error_master_upper_dev_unlink;
134
135         dev_set_promiscuity(netdev_vport->dev, 1);
136         netdev_vport->dev->priv_flags |= IFF_OVS_DATAPATH;
137         rtnl_unlock();
138
139         return vport;
140
141 error_master_upper_dev_unlink:
142         netdev_upper_dev_unlink(netdev_vport->dev, get_dpdev(vport->dp));
143 error_unlock:
144         rtnl_unlock();
145 error_put:
146         dev_put(netdev_vport->dev);
147 error_free_vport:
148         ovs_vport_free(vport);
149 error:
150         return ERR_PTR(err);
151 }
152
153 static void free_port_rcu(struct rcu_head *rcu)
154 {
155         struct netdev_vport *netdev_vport = container_of(rcu,
156                                         struct netdev_vport, rcu);
157
158         dev_put(netdev_vport->dev);
159         ovs_vport_free(vport_from_priv(netdev_vport));
160 }
161
162 void ovs_netdev_detach_dev(struct vport *vport)
163 {
164         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
165
166         ASSERT_RTNL();
167         netdev_vport->dev->priv_flags &= ~IFF_OVS_DATAPATH;
168         netdev_rx_handler_unregister(netdev_vport->dev);
169         netdev_upper_dev_unlink(netdev_vport->dev,
170                                 netdev_master_upper_dev_get(netdev_vport->dev));
171         dev_set_promiscuity(netdev_vport->dev, -1);
172 }
173
174 static void netdev_destroy(struct vport *vport)
175 {
176         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
177
178         rtnl_lock();
179         if (ovs_netdev_get_vport(netdev_vport->dev))
180                 ovs_netdev_detach_dev(vport);
181         rtnl_unlock();
182
183         call_rcu(&netdev_vport->rcu, free_port_rcu);
184 }
185
186 const char *ovs_netdev_get_name(const struct vport *vport)
187 {
188         const struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
189         return netdev_vport->dev->name;
190 }
191
192 /* Must be called with rcu_read_lock. */
193 static void netdev_port_receive(struct vport *vport, struct sk_buff *skb)
194 {
195         if (unlikely(!vport))
196                 goto error;
197
198         if (unlikely(skb_warn_if_lro(skb)))
199                 goto error;
200
201         /* Make our own copy of the packet.  Otherwise we will mangle the
202          * packet for anyone who came before us (e.g. tcpdump via AF_PACKET).
203          * (No one comes after us, since we tell handle_bridge() that we took
204          * the packet.) */
205         skb = skb_share_check(skb, GFP_ATOMIC);
206         if (unlikely(!skb))
207                 return;
208
209         skb_push(skb, ETH_HLEN);
210         ovs_skb_postpush_rcsum(skb, skb->data, ETH_HLEN);
211
212         ovs_vport_receive(vport, skb, NULL);
213         return;
214
215 error:
216         kfree_skb(skb);
217 }
218
219 static unsigned int packet_length(const struct sk_buff *skb)
220 {
221         unsigned int length = skb->len - ETH_HLEN;
222
223         if (skb->protocol == htons(ETH_P_8021Q))
224                 length -= VLAN_HLEN;
225
226         return length;
227 }
228
229 static int netdev_send(struct vport *vport, struct sk_buff *skb)
230 {
231         struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
232         int mtu = netdev_vport->dev->mtu;
233         int len;
234
235         if (unlikely(packet_length(skb) > mtu && !skb_is_gso(skb))) {
236                 net_warn_ratelimited("%s: dropped over-mtu packet: %d > %d\n",
237                                      netdev_vport->dev->name,
238                                      packet_length(skb), mtu);
239                 goto drop;
240         }
241
242         skb->dev = netdev_vport->dev;
243         len = skb->len;
244         dev_queue_xmit(skb);
245
246         return len;
247
248 drop:
249         kfree_skb(skb);
250         return 0;
251 }
252
253 /* Returns null if this device is not attached to a datapath. */
254 struct vport *ovs_netdev_get_vport(struct net_device *dev)
255 {
256 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) || \
257     defined HAVE_RHEL_OVS_HOOK
258 #if IFF_OVS_DATAPATH != 0
259         if (likely(dev->priv_flags & IFF_OVS_DATAPATH))
260 #else
261         if (likely(rcu_access_pointer(dev->rx_handler) == netdev_frame_hook))
262 #endif
263 #ifdef HAVE_RHEL_OVS_HOOK
264                 return (struct vport *)rcu_dereference_rtnl(dev->ax25_ptr);
265 #else
266                 return (struct vport *)rcu_dereference_rtnl(dev->rx_handler_data);
267 #endif
268         else
269                 return NULL;
270 #else
271         return (struct vport *)rcu_dereference_rtnl(dev->br_port);
272 #endif
273 }
274
275 const struct vport_ops ovs_netdev_vport_ops = {
276         .type           = OVS_VPORT_TYPE_NETDEV,
277         .create         = netdev_create,
278         .destroy        = netdev_destroy,
279         .get_name       = ovs_netdev_get_name,
280         .send           = netdev_send,
281 };
282
283 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) && \
284     !defined HAVE_RHEL_OVS_HOOK
285 /*
286  * Enforces, mutual exclusion with the Linux bridge module, by declaring and
287  * exporting br_should_route_hook.  Because the bridge module also exports the
288  * same symbol, the module loader will refuse to load both modules at the same
289  * time (e.g. "bridge: exports duplicate symbol br_should_route_hook (owned by
290  * openvswitch)").
291  *
292  * Before Linux 2.6.36, Open vSwitch cannot safely coexist with the Linux
293  * bridge module, so openvswitch uses this macro in those versions.  In
294  * Linux 2.6.36 and later, Open vSwitch can coexist with the bridge module.
295  *
296  * The use of "typeof" here avoids the need to track changes in the type of
297  * br_should_route_hook over various kernel versions.
298  */
299 typeof(br_should_route_hook) br_should_route_hook;
300 EXPORT_SYMBOL(br_should_route_hook);
301 #endif