1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2007-2012 Nicira, Inc.
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8 #include <linux/if_arp.h>
9 #include <linux/if_bridge.h>
10 #include <linux/if_vlan.h>
11 #include <linux/kernel.h>
12 #include <linux/llc.h>
13 #include <linux/rtnetlink.h>
14 #include <linux/skbuff.h>
15 #include <linux/openvswitch.h>
16 #include <linux/export.h>
18 #include <net/ip_tunnels.h>
19 #include <net/rtnetlink.h>
23 #include "vport-internal_dev.h"
24 #include "vport-netdev.h"
26 static struct vport_ops ovs_netdev_vport_ops;
28 /* Must be called with rcu_read_lock. */
29 static void netdev_port_receive(struct sk_buff *skb)
33 vport = ovs_netdev_get_vport(skb->dev);
37 if (unlikely(skb_warn_if_lro(skb)))
40 /* Make our own copy of the packet. Otherwise we will mangle the
41 * packet for anyone who came before us (e.g. tcpdump via AF_PACKET).
43 skb = skb_share_check(skb, GFP_ATOMIC);
47 if (skb->dev->type == ARPHRD_ETHER)
48 skb_push_rcsum(skb, ETH_HLEN);
50 ovs_vport_receive(vport, skb, skb_tunnel_info(skb));
56 /* Called with rcu_read_lock and bottom-halves disabled. */
57 static rx_handler_result_t netdev_frame_hook(struct sk_buff **pskb)
59 struct sk_buff *skb = *pskb;
61 if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
62 return RX_HANDLER_PASS;
64 netdev_port_receive(skb);
65 return RX_HANDLER_CONSUMED;
68 static struct net_device *get_dpdev(const struct datapath *dp)
72 local = ovs_vport_ovsl(dp, OVSP_LOCAL);
76 struct vport *ovs_netdev_link(struct vport *vport, const char *name)
80 vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), name);
83 goto error_free_vport;
86 if (vport->dev->flags & IFF_LOOPBACK ||
87 (vport->dev->type != ARPHRD_ETHER &&
88 vport->dev->type != ARPHRD_NONE) ||
89 ovs_is_internal_dev(vport->dev)) {
95 err = netdev_master_upper_dev_link(vport->dev,
101 err = netdev_rx_handler_register(vport->dev, netdev_frame_hook,
104 goto error_master_upper_dev_unlink;
106 dev_disable_lro(vport->dev);
107 dev_set_promiscuity(vport->dev, 1);
108 vport->dev->priv_flags |= IFF_OVS_DATAPATH;
113 error_master_upper_dev_unlink:
114 netdev_upper_dev_unlink(vport->dev, get_dpdev(vport->dp));
120 ovs_vport_free(vport);
123 EXPORT_SYMBOL_GPL(ovs_netdev_link);
125 static struct vport *netdev_create(const struct vport_parms *parms)
129 vport = ovs_vport_alloc(0, &ovs_netdev_vport_ops, parms);
133 return ovs_netdev_link(vport, parms->name);
136 static void vport_netdev_free(struct rcu_head *rcu)
138 struct vport *vport = container_of(rcu, struct vport, rcu);
142 ovs_vport_free(vport);
145 void ovs_netdev_detach_dev(struct vport *vport)
148 vport->dev->priv_flags &= ~IFF_OVS_DATAPATH;
149 netdev_rx_handler_unregister(vport->dev);
150 netdev_upper_dev_unlink(vport->dev,
151 netdev_master_upper_dev_get(vport->dev));
152 dev_set_promiscuity(vport->dev, -1);
155 static void netdev_destroy(struct vport *vport)
158 if (netif_is_ovs_port(vport->dev))
159 ovs_netdev_detach_dev(vport);
162 call_rcu(&vport->rcu, vport_netdev_free);
165 void ovs_netdev_tunnel_destroy(struct vport *vport)
168 if (netif_is_ovs_port(vport->dev))
169 ovs_netdev_detach_dev(vport);
171 /* We can be invoked by both explicit vport deletion and
172 * underlying netdev deregistration; delete the link only
173 * if it's not already shutting down.
175 if (vport->dev->reg_state == NETREG_REGISTERED)
176 rtnl_delete_link(vport->dev);
181 call_rcu(&vport->rcu, vport_netdev_free);
183 EXPORT_SYMBOL_GPL(ovs_netdev_tunnel_destroy);
185 /* Returns null if this device is not attached to a datapath. */
186 struct vport *ovs_netdev_get_vport(struct net_device *dev)
188 if (likely(netif_is_ovs_port(dev)))
189 return (struct vport *)
190 rcu_dereference_rtnl(dev->rx_handler_data);
195 static struct vport_ops ovs_netdev_vport_ops = {
196 .type = OVS_VPORT_TYPE_NETDEV,
197 .create = netdev_create,
198 .destroy = netdev_destroy,
199 .send = dev_queue_xmit,
202 int __init ovs_netdev_init(void)
204 return ovs_vport_ops_register(&ovs_netdev_vport_ops);
207 void ovs_netdev_exit(void)
209 ovs_vport_ops_unregister(&ovs_netdev_vport_ops);