2 * Copyright (c) 2007-2012 Nicira, Inc.
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.
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.
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
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
34 #include "vport-internal_dev.h"
35 #include "vport-netdev.h"
37 static void netdev_port_receive(struct vport *vport, struct sk_buff *skb);
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)
43 struct sk_buff *skb = *pskb;
46 if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
47 return RX_HANDLER_PASS;
49 vport = ovs_netdev_get_vport(skb->dev);
51 netdev_port_receive(vport, skb);
53 return RX_HANDLER_CONSUMED;
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)
62 if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
65 vport = ovs_netdev_get_vport(skb->dev);
67 netdev_port_receive(vport, skb);
71 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32)
73 * Used as br_handle_frame_hook. (Cannot run bridge at the same time, even on
74 * different set of devices!)
76 /* Called with rcu_read_lock and bottom-halves disabled. */
77 static struct sk_buff *netdev_frame_hook(struct net_bridge_port *p,
80 netdev_port_receive((struct vport *)p, skb);
87 static struct net_device *get_dpdev(struct datapath *dp)
91 local = ovs_vport_ovsl(dp, OVSP_LOCAL);
93 return netdev_vport_priv(local)->dev;
96 static struct vport *netdev_create(const struct vport_parms *parms)
99 struct netdev_vport *netdev_vport;
102 vport = ovs_vport_alloc(sizeof(struct netdev_vport),
103 &ovs_netdev_vport_ops, parms);
105 err = PTR_ERR(vport);
109 netdev_vport = netdev_vport_priv(vport);
111 netdev_vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), parms->name);
112 if (!netdev_vport->dev) {
114 goto error_free_vport;
117 if (netdev_vport->dev->flags & IFF_LOOPBACK ||
118 netdev_vport->dev->type != ARPHRD_ETHER ||
119 ovs_is_internal_dev(netdev_vport->dev)) {
125 err = netdev_master_upper_dev_link(netdev_vport->dev,
126 get_dpdev(vport->dp));
130 err = netdev_rx_handler_register(netdev_vport->dev, netdev_frame_hook,
133 goto error_master_upper_dev_unlink;
135 dev_set_promiscuity(netdev_vport->dev, 1);
136 netdev_vport->dev->priv_flags |= IFF_OVS_DATAPATH;
141 error_master_upper_dev_unlink:
142 netdev_upper_dev_unlink(netdev_vport->dev, get_dpdev(vport->dp));
146 dev_put(netdev_vport->dev);
148 ovs_vport_free(vport);
153 static void free_port_rcu(struct rcu_head *rcu)
155 struct netdev_vport *netdev_vport = container_of(rcu,
156 struct netdev_vport, rcu);
158 dev_put(netdev_vport->dev);
159 ovs_vport_free(vport_from_priv(netdev_vport));
162 void ovs_netdev_detach_dev(struct vport *vport)
164 struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
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);
174 static void netdev_destroy(struct vport *vport)
176 struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
179 if (ovs_netdev_get_vport(netdev_vport->dev))
180 ovs_netdev_detach_dev(vport);
183 call_rcu(&netdev_vport->rcu, free_port_rcu);
186 const char *ovs_netdev_get_name(const struct vport *vport)
188 const struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
189 return netdev_vport->dev->name;
192 /* Must be called with rcu_read_lock. */
193 static void netdev_port_receive(struct vport *vport, struct sk_buff *skb)
195 if (unlikely(!vport))
198 if (unlikely(skb_warn_if_lro(skb)))
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
205 skb = skb_share_check(skb, GFP_ATOMIC);
209 skb_push(skb, ETH_HLEN);
210 ovs_skb_postpush_rcsum(skb, skb->data, ETH_HLEN);
212 ovs_vport_receive(vport, skb, NULL);
219 static unsigned int packet_length(const struct sk_buff *skb)
221 unsigned int length = skb->len - ETH_HLEN;
223 if (skb->protocol == htons(ETH_P_8021Q))
229 static int netdev_send(struct vport *vport, struct sk_buff *skb)
231 struct netdev_vport *netdev_vport = netdev_vport_priv(vport);
232 int mtu = netdev_vport->dev->mtu;
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);
242 skb->dev = netdev_vport->dev;
253 /* Returns null if this device is not attached to a datapath. */
254 struct vport *ovs_netdev_get_vport(struct net_device *dev)
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))
261 if (likely(rcu_access_pointer(dev->rx_handler) == netdev_frame_hook))
263 #ifdef HAVE_RHEL_OVS_HOOK
264 return (struct vport *)rcu_dereference_rtnl(dev->ax25_ptr);
266 return (struct vport *)rcu_dereference_rtnl(dev->rx_handler_data);
271 return (struct vport *)rcu_dereference_rtnl(dev->br_port);
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,
283 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) && \
284 !defined HAVE_RHEL_OVS_HOOK
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
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.
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.
299 typeof(br_should_route_hook) br_should_route_hook;
300 EXPORT_SYMBOL(br_should_route_hook);