blob: 4b70aaa4a746d8815b08d784dfa7147f7fb75601 [file] [log] [blame]
Jesse Grossccb13522011-10-25 19:26:31 -07001/*
Raju Subramaniancaf2ee12012-05-03 18:55:23 -07002 * Copyright (c) 2007-2012 Nicira, Inc.
Jesse Grossccb13522011-10-25 19:26:31 -07003 *
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>
Jiri Pirko2537b4d2013-07-26 14:01:54 +020028#include <linux/openvswitch.h>
Thomas Grafdcc38c02015-07-29 13:52:06 +020029#include <linux/export.h>
Jesse Grossccb13522011-10-25 19:26:31 -070030
Thomas Graf614732e2015-07-21 10:44:06 +020031#include <net/ip_tunnels.h>
32#include <net/rtnetlink.h>
Jesse Grossccb13522011-10-25 19:26:31 -070033
34#include "datapath.h"
Thomas Graf614732e2015-07-21 10:44:06 +020035#include "vport.h"
Jesse Grossccb13522011-10-25 19:26:31 -070036#include "vport-internal_dev.h"
37#include "vport-netdev.h"
38
Thomas Graf62b9c8d2014-10-22 17:29:06 +020039static struct vport_ops ovs_netdev_vport_ops;
40
Jesse Grossccb13522011-10-25 19:26:31 -070041/* Must be called with rcu_read_lock. */
42static void netdev_port_receive(struct vport *vport, struct sk_buff *skb)
43{
Jesse Grossd9d59082013-01-21 23:57:26 -080044 if (unlikely(!vport))
45 goto error;
46
47 if (unlikely(skb_warn_if_lro(skb)))
48 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -070049
50 /* Make our own copy of the packet. Otherwise we will mangle the
51 * packet for anyone who came before us (e.g. tcpdump via AF_PACKET).
Cong Wangd176ca22013-02-22 19:41:26 +080052 */
Jesse Grossccb13522011-10-25 19:26:31 -070053 skb = skb_share_check(skb, GFP_ATOMIC);
54 if (unlikely(!skb))
55 return;
56
57 skb_push(skb, ETH_HLEN);
Pravin B Shelarb34df5e2013-06-13 11:11:44 -070058 ovs_skb_postpush_rcsum(skb, skb->data, ETH_HLEN);
59
Thomas Graf597798e2015-07-23 13:04:44 +020060 ovs_vport_receive(vport, skb, skb_tunnel_info(skb, AF_INET));
Jesse Grossd9d59082013-01-21 23:57:26 -080061 return;
62
63error:
64 kfree_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -070065}
66
67/* Called with rcu_read_lock and bottom-halves disabled. */
68static rx_handler_result_t netdev_frame_hook(struct sk_buff **pskb)
69{
70 struct sk_buff *skb = *pskb;
71 struct vport *vport;
72
73 if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
74 return RX_HANDLER_PASS;
75
76 vport = ovs_netdev_get_vport(skb->dev);
77
78 netdev_port_receive(vport, skb);
79
80 return RX_HANDLER_CONSUMED;
81}
82
Thomas Graf12eb18f2014-11-06 06:58:52 -080083static struct net_device *get_dpdev(const struct datapath *dp)
Jiri Pirko2537b4d2013-07-26 14:01:54 +020084{
85 struct vport *local;
86
87 local = ovs_vport_ovsl(dp, OVSP_LOCAL);
88 BUG_ON(!local);
Thomas Grafbe4ace62015-07-21 10:44:04 +020089 return local->dev;
Jiri Pirko2537b4d2013-07-26 14:01:54 +020090}
91
Thomas Grafdcc38c02015-07-29 13:52:06 +020092struct vport *ovs_netdev_link(struct vport *vport, const char *name)
Jesse Grossccb13522011-10-25 19:26:31 -070093{
Jesse Grossccb13522011-10-25 19:26:31 -070094 int err;
95
Thomas Grafbe4ace62015-07-21 10:44:04 +020096 vport->dev = dev_get_by_name(ovs_dp_get_net(vport->dp), name);
97 if (!vport->dev) {
Jesse Grossccb13522011-10-25 19:26:31 -070098 err = -ENODEV;
99 goto error_free_vport;
100 }
101
Thomas Grafbe4ace62015-07-21 10:44:04 +0200102 if (vport->dev->flags & IFF_LOOPBACK ||
103 vport->dev->type != ARPHRD_ETHER ||
104 ovs_is_internal_dev(vport->dev)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700105 err = -EINVAL;
106 goto error_put;
107 }
108
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700109 rtnl_lock();
Thomas Grafbe4ace62015-07-21 10:44:04 +0200110 err = netdev_master_upper_dev_link(vport->dev,
Jiri Pirko2537b4d2013-07-26 14:01:54 +0200111 get_dpdev(vport->dp));
112 if (err)
113 goto error_unlock;
114
Thomas Grafbe4ace62015-07-21 10:44:04 +0200115 err = netdev_rx_handler_register(vport->dev, netdev_frame_hook,
Jesse Grossccb13522011-10-25 19:26:31 -0700116 vport);
117 if (err)
Jiri Pirko2537b4d2013-07-26 14:01:54 +0200118 goto error_master_upper_dev_unlink;
Jesse Grossccb13522011-10-25 19:26:31 -0700119
Thomas Grafbe4ace62015-07-21 10:44:04 +0200120 dev_disable_lro(vport->dev);
121 dev_set_promiscuity(vport->dev, 1);
122 vport->dev->priv_flags |= IFF_OVS_DATAPATH;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700123 rtnl_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -0700124
125 return vport;
126
Jiri Pirko2537b4d2013-07-26 14:01:54 +0200127error_master_upper_dev_unlink:
Thomas Grafbe4ace62015-07-21 10:44:04 +0200128 netdev_upper_dev_unlink(vport->dev, get_dpdev(vport->dp));
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700129error_unlock:
130 rtnl_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -0700131error_put:
Thomas Grafbe4ace62015-07-21 10:44:04 +0200132 dev_put(vport->dev);
Jesse Grossccb13522011-10-25 19:26:31 -0700133error_free_vport:
134 ovs_vport_free(vport);
Jesse Grossccb13522011-10-25 19:26:31 -0700135 return ERR_PTR(err);
136}
Thomas Grafdcc38c02015-07-29 13:52:06 +0200137EXPORT_SYMBOL_GPL(ovs_netdev_link);
Jesse Grossccb13522011-10-25 19:26:31 -0700138
Thomas Grafbe4ace62015-07-21 10:44:04 +0200139static struct vport *netdev_create(const struct vport_parms *parms)
140{
141 struct vport *vport;
142
143 vport = ovs_vport_alloc(0, &ovs_netdev_vport_ops, parms);
144 if (IS_ERR(vport))
145 return vport;
146
Thomas Grafdcc38c02015-07-29 13:52:06 +0200147 return ovs_netdev_link(vport, parms->name);
Thomas Grafbe4ace62015-07-21 10:44:04 +0200148}
149
Pravin B Shelara9020fd2015-08-07 23:51:33 -0700150static void vport_netdev_free(struct rcu_head *rcu)
Jesse Gross92eb1d42012-11-28 14:01:52 -0800151{
Thomas Grafbe4ace62015-07-21 10:44:04 +0200152 struct vport *vport = container_of(rcu, struct vport, rcu);
Jesse Gross92eb1d42012-11-28 14:01:52 -0800153
Thomas Graf614732e2015-07-21 10:44:06 +0200154 if (vport->dev)
155 dev_put(vport->dev);
Thomas Grafbe4ace62015-07-21 10:44:04 +0200156 ovs_vport_free(vport);
Jesse Gross92eb1d42012-11-28 14:01:52 -0800157}
158
Alexei Starovoitovb07c2652013-10-15 14:54:11 -0700159void ovs_netdev_detach_dev(struct vport *vport)
160{
Alexei Starovoitovb07c2652013-10-15 14:54:11 -0700161 ASSERT_RTNL();
Thomas Grafbe4ace62015-07-21 10:44:04 +0200162 vport->dev->priv_flags &= ~IFF_OVS_DATAPATH;
163 netdev_rx_handler_unregister(vport->dev);
164 netdev_upper_dev_unlink(vport->dev,
165 netdev_master_upper_dev_get(vport->dev));
166 dev_set_promiscuity(vport->dev, -1);
Alexei Starovoitovb07c2652013-10-15 14:54:11 -0700167}
Thomas Grafdcc38c02015-07-29 13:52:06 +0200168EXPORT_SYMBOL_GPL(ovs_netdev_detach_dev);
Alexei Starovoitovb07c2652013-10-15 14:54:11 -0700169
Jesse Grossccb13522011-10-25 19:26:31 -0700170static void netdev_destroy(struct vport *vport)
171{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700172 rtnl_lock();
Thomas Grafbe4ace62015-07-21 10:44:04 +0200173 if (vport->dev->priv_flags & IFF_OVS_DATAPATH)
Alexei Starovoitovb07c2652013-10-15 14:54:11 -0700174 ovs_netdev_detach_dev(vport);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700175 rtnl_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -0700176
Pravin B Shelara9020fd2015-08-07 23:51:33 -0700177 call_rcu(&vport->rcu, vport_netdev_free);
Jesse Grossccb13522011-10-25 19:26:31 -0700178}
179
Pravin B Shelara9020fd2015-08-07 23:51:33 -0700180void ovs_netdev_tunnel_destroy(struct vport *vport)
181{
182 rtnl_lock();
183 if (vport->dev->priv_flags & IFF_OVS_DATAPATH)
184 ovs_netdev_detach_dev(vport);
185
186 /* Early release so we can unregister the device */
187 dev_put(vport->dev);
188 rtnl_delete_link(vport->dev);
189 vport->dev = NULL;
190 rtnl_unlock();
191
192 call_rcu(&vport->rcu, vport_netdev_free);
193}
194EXPORT_SYMBOL_GPL(ovs_netdev_tunnel_destroy);
195
Eric Dumazet95c96172012-04-15 05:58:06 +0000196static unsigned int packet_length(const struct sk_buff *skb)
Jesse Grossccb13522011-10-25 19:26:31 -0700197{
Eric Dumazet95c96172012-04-15 05:58:06 +0000198 unsigned int length = skb->len - ETH_HLEN;
Jesse Grossccb13522011-10-25 19:26:31 -0700199
200 if (skb->protocol == htons(ETH_P_8021Q))
201 length -= VLAN_HLEN;
202
203 return length;
204}
205
Thomas Grafdcc38c02015-07-29 13:52:06 +0200206int ovs_netdev_send(struct vport *vport, struct sk_buff *skb)
Jesse Grossccb13522011-10-25 19:26:31 -0700207{
Thomas Grafbe4ace62015-07-21 10:44:04 +0200208 int mtu = vport->dev->mtu;
Jesse Grossccb13522011-10-25 19:26:31 -0700209 int len;
210
211 if (unlikely(packet_length(skb) > mtu && !skb_is_gso(skb))) {
Joe Perchese87cc472012-05-13 21:56:26 +0000212 net_warn_ratelimited("%s: dropped over-mtu packet: %d > %d\n",
Thomas Grafbe4ace62015-07-21 10:44:04 +0200213 vport->dev->name,
Joe Perchese87cc472012-05-13 21:56:26 +0000214 packet_length(skb), mtu);
Pravin B Shelar91b75142013-05-13 08:22:34 -0700215 goto drop;
Jesse Grossccb13522011-10-25 19:26:31 -0700216 }
217
Thomas Grafbe4ace62015-07-21 10:44:04 +0200218 skb->dev = vport->dev;
Jesse Grossccb13522011-10-25 19:26:31 -0700219 len = skb->len;
220 dev_queue_xmit(skb);
221
222 return len;
223
Pravin B Shelar91b75142013-05-13 08:22:34 -0700224drop:
Jesse Grossccb13522011-10-25 19:26:31 -0700225 kfree_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700226 return 0;
227}
Thomas Grafdcc38c02015-07-29 13:52:06 +0200228EXPORT_SYMBOL_GPL(ovs_netdev_send);
Jesse Grossccb13522011-10-25 19:26:31 -0700229
230/* Returns null if this device is not attached to a datapath. */
231struct vport *ovs_netdev_get_vport(struct net_device *dev)
232{
233 if (likely(dev->priv_flags & IFF_OVS_DATAPATH))
234 return (struct vport *)
235 rcu_dereference_rtnl(dev->rx_handler_data);
236 else
237 return NULL;
238}
239
Thomas Graf62b9c8d2014-10-22 17:29:06 +0200240static struct vport_ops ovs_netdev_vport_ops = {
Jesse Grossccb13522011-10-25 19:26:31 -0700241 .type = OVS_VPORT_TYPE_NETDEV,
242 .create = netdev_create,
243 .destroy = netdev_destroy,
Thomas Grafdcc38c02015-07-29 13:52:06 +0200244 .send = ovs_netdev_send,
Jesse Grossccb13522011-10-25 19:26:31 -0700245};
Thomas Graf62b9c8d2014-10-22 17:29:06 +0200246
247int __init ovs_netdev_init(void)
248{
Thomas Grafdcc38c02015-07-29 13:52:06 +0200249 return ovs_vport_ops_register(&ovs_netdev_vport_ops);
Thomas Graf62b9c8d2014-10-22 17:29:06 +0200250}
251
252void ovs_netdev_exit(void)
253{
254 ovs_vport_ops_unregister(&ovs_netdev_vport_ops);
255}