Merge tag 'pci-v6.16-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci
[linux-block.git] / net / openvswitch / vport-netdev.c
CommitLineData
c9422999 1// SPDX-License-Identifier: GPL-2.0-only
ccb1352e 2/*
caf2ee14 3 * Copyright (c) 2007-2012 Nicira, Inc.
ccb1352e
JG
4 */
5
6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
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>
2537b4dd 15#include <linux/openvswitch.h>
dcc38c03 16#include <linux/export.h>
ccb1352e 17
614732ea
TG
18#include <net/ip_tunnels.h>
19#include <net/rtnetlink.h>
ccb1352e
JG
20
21#include "datapath.h"
614732ea 22#include "vport.h"
ccb1352e
JG
23#include "vport-internal_dev.h"
24#include "vport-netdev.h"
25
62b9c8d0
TG
26static struct vport_ops ovs_netdev_vport_ops;
27
ccb1352e 28/* Must be called with rcu_read_lock. */
8c876639 29static void netdev_port_receive(struct sk_buff *skb)
ccb1352e 30{
8c876639
PS
31 struct vport *vport;
32
33 vport = ovs_netdev_get_vport(skb->dev);
d9d59089
JG
34 if (unlikely(!vport))
35 goto error;
36
37 if (unlikely(skb_warn_if_lro(skb)))
38 goto error;
ccb1352e
JG
39
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).
d176ca2a 42 */
ccb1352e
JG
43 skb = skb_share_check(skb, GFP_ATOMIC);
44 if (unlikely(!skb))
45 return;
46
7d42e84e
CJ
47 if (skb->dev->type == ARPHRD_ETHER)
48 skb_push_rcsum(skb, ETH_HLEN);
49
61adedf3 50 ovs_vport_receive(vport, skb, skb_tunnel_info(skb));
d9d59089 51 return;
d9d59089
JG
52error:
53 kfree_skb(skb);
ccb1352e
JG
54}
55
56/* Called with rcu_read_lock and bottom-halves disabled. */
57static rx_handler_result_t netdev_frame_hook(struct sk_buff **pskb)
58{
59 struct sk_buff *skb = *pskb;
ccb1352e
JG
60
61 if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
62 return RX_HANDLER_PASS;
63
8c876639 64 netdev_port_receive(skb);
ccb1352e
JG
65 return RX_HANDLER_CONSUMED;
66}
67
12eb18f7 68static struct net_device *get_dpdev(const struct datapath *dp)
2537b4dd
JP
69{
70 struct vport *local;
71
72 local = ovs_vport_ovsl(dp, OVSP_LOCAL);
be4ace6e 73 return local->dev;
2537b4dd
JP
74}
75
dcc38c03 76struct vport *ovs_netdev_link(struct vport *vport, const char *name)
ccb1352e 77{
ccb1352e
JG
78 int err;
79
be4ace6e 80 vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), name);
66270920
JG
81 if (!vport->dev) {
82 err = -ENODEV;
83 goto error_free_vport;
84 }
2540088b
JG
85 /* Ensure that the device exists and that the provided
86 * name is not one of its aliases.
87 */
66270920 88 if (strcmp(name, ovs_vport_name(vport))) {
ccb1352e 89 err = -ENODEV;
66270920 90 goto error_put;
ccb1352e 91 }
e7c8ab84 92 netdev_tracker_alloc(vport->dev, &vport->dev_tracker, GFP_KERNEL);
be4ace6e 93 if (vport->dev->flags & IFF_LOOPBACK ||
217ac77a
JB
94 (vport->dev->type != ARPHRD_ETHER &&
95 vport->dev->type != ARPHRD_NONE) ||
be4ace6e 96 ovs_is_internal_dev(vport->dev)) {
ccb1352e
JG
97 err = -EINVAL;
98 goto error_put;
99 }
100
8e4e1713 101 rtnl_lock();
be4ace6e 102 err = netdev_master_upper_dev_link(vport->dev,
42ab19ee
DA
103 get_dpdev(vport->dp),
104 NULL, NULL, NULL);
2537b4dd
JP
105 if (err)
106 goto error_unlock;
107
be4ace6e 108 err = netdev_rx_handler_register(vport->dev, netdev_frame_hook,
ccb1352e
JG
109 vport);
110 if (err)
2537b4dd 111 goto error_master_upper_dev_unlink;
ccb1352e 112
be4ace6e
TG
113 dev_disable_lro(vport->dev);
114 dev_set_promiscuity(vport->dev, 1);
115 vport->dev->priv_flags |= IFF_OVS_DATAPATH;
8e4e1713 116 rtnl_unlock();
ccb1352e
JG
117
118 return vport;
119
2537b4dd 120error_master_upper_dev_unlink:
be4ace6e 121 netdev_upper_dev_unlink(vport->dev, get_dpdev(vport->dp));
8e4e1713
PS
122error_unlock:
123 rtnl_unlock();
ccb1352e 124error_put:
d62607c3 125 netdev_put(vport->dev, &vport->dev_tracker);
ccb1352e
JG
126error_free_vport:
127 ovs_vport_free(vport);
ccb1352e
JG
128 return ERR_PTR(err);
129}
dcc38c03 130EXPORT_SYMBOL_GPL(ovs_netdev_link);
ccb1352e 131
be4ace6e
TG
132static struct vport *netdev_create(const struct vport_parms *parms)
133{
134 struct vport *vport;
135
136 vport = ovs_vport_alloc(0, &ovs_netdev_vport_ops, parms);
137 if (IS_ERR(vport))
138 return vport;
139
dcc38c03 140 return ovs_netdev_link(vport, parms->name);
be4ace6e
TG
141}
142
a9020fde 143static void vport_netdev_free(struct rcu_head *rcu)
92eb1d47 144{
be4ace6e 145 struct vport *vport = container_of(rcu, struct vport, rcu);
92eb1d47 146
d62607c3 147 netdev_put(vport->dev, &vport->dev_tracker);
be4ace6e 148 ovs_vport_free(vport);
92eb1d47
JG
149}
150
b07c2651 151void ovs_netdev_detach_dev(struct vport *vport)
ccb1352e 152{
b07c2651 153 ASSERT_RTNL();
be4ace6e
TG
154 vport->dev->priv_flags &= ~IFF_OVS_DATAPATH;
155 netdev_rx_handler_unregister(vport->dev);
156 netdev_upper_dev_unlink(vport->dev,
157 netdev_master_upper_dev_get(vport->dev));
158 dev_set_promiscuity(vport->dev, -1);
b07c2651
AS
159}
160
161static void netdev_destroy(struct vport *vport)
162{
b07c2651 163 rtnl_lock();
44e37259 164 if (netif_is_ovs_port(vport->dev))
b07c2651 165 ovs_netdev_detach_dev(vport);
8e4e1713 166 rtnl_unlock();
ccb1352e 167
a9020fde 168 call_rcu(&vport->rcu, vport_netdev_free);
ccb1352e
JG
169}
170
a9020fde
PS
171void ovs_netdev_tunnel_destroy(struct vport *vport)
172{
173 rtnl_lock();
44e37259 174 if (netif_is_ovs_port(vport->dev))
a9020fde
PS
175 ovs_netdev_detach_dev(vport);
176
13175303
PA
177 /* We can be invoked by both explicit vport deletion and
178 * underlying netdev deregistration; delete the link only
179 * if it's not already shutting down.
180 */
181 if (vport->dev->reg_state == NETREG_REGISTERED)
f3a63cce 182 rtnl_delete_link(vport->dev, 0, NULL);
d62607c3 183 netdev_put(vport->dev, &vport->dev_tracker);
a9020fde
PS
184 vport->dev = NULL;
185 rtnl_unlock();
186
187 call_rcu(&vport->rcu, vport_netdev_free);
188}
189EXPORT_SYMBOL_GPL(ovs_netdev_tunnel_destroy);
190
ccb1352e
JG
191/* Returns null if this device is not attached to a datapath. */
192struct vport *ovs_netdev_get_vport(struct net_device *dev)
193{
44e37259 194 if (likely(netif_is_ovs_port(dev)))
ccb1352e
JG
195 return (struct vport *)
196 rcu_dereference_rtnl(dev->rx_handler_data);
197 else
198 return NULL;
199}
200
62b9c8d0 201static struct vport_ops ovs_netdev_vport_ops = {
ccb1352e
JG
202 .type = OVS_VPORT_TYPE_NETDEV,
203 .create = netdev_create,
204 .destroy = netdev_destroy,
aec15924 205 .send = dev_queue_xmit,
ccb1352e 206};
62b9c8d0
TG
207
208int __init ovs_netdev_init(void)
209{
dcc38c03 210 return ovs_vport_ops_register(&ovs_netdev_vport_ops);
62b9c8d0
TG
211}
212
213void ovs_netdev_exit(void)
214{
215 ovs_vport_ops_unregister(&ovs_netdev_vport_ops);
216}