blob: f18302f3204900d5f3ba20f2ff99423682c324d8 [file] [log] [blame]
Jesse Grossccb13522011-10-25 19:26:31 -07001/*
Ben Pfaffad552002014-05-06 16:48:38 -07002 * Copyright (c) 2007-2014 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/init.h>
22#include <linux/module.h>
23#include <linux/if_arp.h>
24#include <linux/if_vlan.h>
25#include <linux/in.h>
26#include <linux/ip.h>
27#include <linux/jhash.h>
28#include <linux/delay.h>
29#include <linux/time.h>
30#include <linux/etherdevice.h>
31#include <linux/genetlink.h>
32#include <linux/kernel.h>
33#include <linux/kthread.h>
34#include <linux/mutex.h>
35#include <linux/percpu.h>
36#include <linux/rcupdate.h>
37#include <linux/tcp.h>
38#include <linux/udp.h>
Jesse Grossccb13522011-10-25 19:26:31 -070039#include <linux/ethtool.h>
40#include <linux/wait.h>
Jesse Grossccb13522011-10-25 19:26:31 -070041#include <asm/div64.h>
42#include <linux/highmem.h>
43#include <linux/netfilter_bridge.h>
44#include <linux/netfilter_ipv4.h>
45#include <linux/inetdevice.h>
46#include <linux/list.h>
47#include <linux/openvswitch.h>
48#include <linux/rculist.h>
49#include <linux/dmi.h>
Jesse Grossccb13522011-10-25 19:26:31 -070050#include <net/genetlink.h>
Pravin B Shelar46df7b82012-02-22 19:58:59 -080051#include <net/net_namespace.h>
52#include <net/netns/generic.h>
Jesse Grossccb13522011-10-25 19:26:31 -070053
54#include "datapath.h"
55#include "flow.h"
Andy Zhoue80857c2014-01-21 09:31:04 -080056#include "flow_table.h"
Pravin B Shelare6445712013-10-03 18:16:47 -070057#include "flow_netlink.h"
Jesse Grossccb13522011-10-25 19:26:31 -070058#include "vport-internal_dev.h"
Thomas Grafcff63a52013-04-29 13:06:41 +000059#include "vport-netdev.h"
Jesse Grossccb13522011-10-25 19:26:31 -070060
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070061int ovs_net_id __read_mostly;
Thomas Graf62b9c8d2014-10-22 17:29:06 +020062EXPORT_SYMBOL(ovs_net_id);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070063
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070064static struct genl_family dp_packet_genl_family;
65static struct genl_family dp_flow_genl_family;
66static struct genl_family dp_datapath_genl_family;
67
stephen hemminger48e48a72014-07-16 11:25:52 -070068static const struct genl_multicast_group ovs_dp_flow_multicast_group = {
69 .name = OVS_FLOW_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070070};
71
stephen hemminger48e48a72014-07-16 11:25:52 -070072static const struct genl_multicast_group ovs_dp_datapath_multicast_group = {
73 .name = OVS_DATAPATH_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070074};
75
stephen hemminger48e48a72014-07-16 11:25:52 -070076static const struct genl_multicast_group ovs_dp_vport_multicast_group = {
77 .name = OVS_VPORT_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070078};
79
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070080/* Check if need to build a reply message.
81 * OVS userspace sets the NLM_F_ECHO flag if it needs the reply. */
Samuel Gauthier9b67aa42014-09-18 10:31:04 +020082static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
83 unsigned int group)
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070084{
85 return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
Samuel Gauthier9b67aa42014-09-18 10:31:04 +020086 genl_has_listeners(family, genl_info_net(info)->genl_sock,
87 group);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070088}
89
Johannes Berg68eb5502013-11-19 15:19:38 +010090static void ovs_notify(struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +010091 struct sk_buff *skb, struct genl_info *info)
Thomas Grafed661182013-03-29 14:46:50 +010092{
Johannes Berg68eb5502013-11-19 15:19:38 +010093 genl_notify(family, skb, genl_info_net(info), info->snd_portid,
Johannes Berg2a94fe42013-11-19 15:19:39 +010094 0, info->nlhdr, GFP_KERNEL);
Thomas Grafed661182013-03-29 14:46:50 +010095}
96
Pravin B Shelar46df7b82012-02-22 19:58:59 -080097/**
Jesse Grossccb13522011-10-25 19:26:31 -070098 * DOC: Locking:
99 *
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700100 * All writes e.g. Writes to device state (add/remove datapath, port, set
101 * operations on vports, etc.), Writes to other state (flow table
102 * modifications, set miscellaneous datapath parameters, etc.) are protected
103 * by ovs_lock.
Jesse Grossccb13522011-10-25 19:26:31 -0700104 *
105 * Reads are protected by RCU.
106 *
107 * There are a few special cases (mostly stats) that have their own
108 * synchronization but they nest under all of above and don't interact with
109 * each other.
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700110 *
111 * The RTNL lock nests inside ovs_mutex.
Jesse Grossccb13522011-10-25 19:26:31 -0700112 */
113
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700114static DEFINE_MUTEX(ovs_mutex);
115
116void ovs_lock(void)
117{
118 mutex_lock(&ovs_mutex);
119}
120
121void ovs_unlock(void)
122{
123 mutex_unlock(&ovs_mutex);
124}
125
126#ifdef CONFIG_LOCKDEP
127int lockdep_ovsl_is_held(void)
128{
129 if (debug_locks)
130 return lockdep_is_held(&ovs_mutex);
131 else
132 return 1;
133}
David S. Miller2c6c49d2014-10-28 17:27:23 -0400134EXPORT_SYMBOL(lockdep_ovsl_is_held);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700135#endif
136
Jesse Grossccb13522011-10-25 19:26:31 -0700137static struct vport *new_vport(const struct vport_parms *);
Thomas Graf8055a892013-12-13 15:22:20 +0100138static int queue_gso_packets(struct datapath *dp, struct sk_buff *,
Jesse Grossccb13522011-10-25 19:26:31 -0700139 const struct dp_upcall_info *);
Thomas Graf8055a892013-12-13 15:22:20 +0100140static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
Jesse Grossccb13522011-10-25 19:26:31 -0700141 const struct dp_upcall_info *);
142
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700143/* Must be called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800144static struct datapath *get_dp(struct net *net, int dp_ifindex)
Jesse Grossccb13522011-10-25 19:26:31 -0700145{
146 struct datapath *dp = NULL;
147 struct net_device *dev;
148
149 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800150 dev = dev_get_by_index_rcu(net, dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700151 if (dev) {
152 struct vport *vport = ovs_internal_dev_get_vport(dev);
153 if (vport)
154 dp = vport->dp;
155 }
156 rcu_read_unlock();
157
158 return dp;
159}
160
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700161/* Must be called with rcu_read_lock or ovs_mutex. */
Andy Zhou971427f32014-09-15 19:37:25 -0700162const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700163{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700164 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700165 return vport->ops->get_name(vport);
166}
167
168static int get_dpifindex(struct datapath *dp)
169{
170 struct vport *local;
171 int ifindex;
172
173 rcu_read_lock();
174
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700175 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700176 if (local)
Thomas Grafcff63a52013-04-29 13:06:41 +0000177 ifindex = netdev_vport_priv(local)->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700178 else
179 ifindex = 0;
180
181 rcu_read_unlock();
182
183 return ifindex;
184}
185
186static void destroy_dp_rcu(struct rcu_head *rcu)
187{
188 struct datapath *dp = container_of(rcu, struct datapath, rcu);
189
Jesse Grossccb13522011-10-25 19:26:31 -0700190 free_percpu(dp->stats_percpu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800191 release_net(ovs_dp_get_net(dp));
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700192 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -0700193 kfree(dp);
194}
195
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700196static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
197 u16 port_no)
198{
199 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
200}
201
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700202/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700203struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
204{
205 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700206 struct hlist_head *head;
207
208 head = vport_hash_bucket(dp, port_no);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800209 hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700210 if (vport->port_no == port_no)
211 return vport;
212 }
213 return NULL;
214}
215
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700216/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700217static struct vport *new_vport(const struct vport_parms *parms)
218{
219 struct vport *vport;
220
221 vport = ovs_vport_add(parms);
222 if (!IS_ERR(vport)) {
223 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700224 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700225
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700226 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700227 }
Jesse Grossccb13522011-10-25 19:26:31 -0700228 return vport;
229}
230
Jesse Grossccb13522011-10-25 19:26:31 -0700231void ovs_dp_detach_port(struct vport *p)
232{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700233 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700234
235 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700236 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700237
238 /* Then destroy it. */
239 ovs_vport_del(p);
240}
241
242/* Must be called with rcu_read_lock. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700243void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700244{
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700245 const struct vport *p = OVS_CB(skb)->input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700246 struct datapath *dp = p->dp;
247 struct sw_flow *flow;
248 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700249 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700250 u32 n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700251
Shan Wei404f2f12012-11-13 09:52:25 +0800252 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700253
Jesse Grossccb13522011-10-25 19:26:31 -0700254 /* Look up flow. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700255 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, &n_mask_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700256 if (unlikely(!flow)) {
257 struct dp_upcall_info upcall;
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700258 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700259
260 upcall.cmd = OVS_PACKET_CMD_MISS;
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700261 upcall.key = key;
Jesse Grossccb13522011-10-25 19:26:31 -0700262 upcall.userdata = NULL;
Alex Wang5cd667b2014-07-17 15:14:13 -0700263 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800264 error = ovs_dp_upcall(dp, skb, &upcall);
265 if (unlikely(error))
266 kfree_skb(skb);
267 else
268 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700269 stats_counter = &stats->n_missed;
270 goto out;
271 }
272
273 OVS_CB(skb)->flow = flow;
274
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700275 ovs_flow_stats_update(OVS_CB(skb)->flow, key->tp.flags, skb);
276 ovs_execute_actions(dp, skb, key);
Pravin B Shelare298e502013-10-29 17:22:21 -0700277 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700278
279out:
280 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800281 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700282 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700283 stats->n_mask_hit += n_mask_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800284 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700285}
286
Jesse Grossccb13522011-10-25 19:26:31 -0700287int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800288 const struct dp_upcall_info *upcall_info)
Jesse Grossccb13522011-10-25 19:26:31 -0700289{
290 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700291 int err;
292
Eric W. Biederman15e47302012-09-07 20:12:54 +0000293 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700294 err = -ENOTCONN;
295 goto err;
296 }
297
Jesse Grossccb13522011-10-25 19:26:31 -0700298 if (!skb_is_gso(skb))
Thomas Graf8055a892013-12-13 15:22:20 +0100299 err = queue_userspace_packet(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700300 else
Thomas Graf8055a892013-12-13 15:22:20 +0100301 err = queue_gso_packets(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700302 if (err)
303 goto err;
304
305 return 0;
306
307err:
Shan Wei404f2f12012-11-13 09:52:25 +0800308 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700309
WANG Congdf9d9fd2014-02-14 15:10:46 -0800310 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700311 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800312 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700313
314 return err;
315}
316
Thomas Graf8055a892013-12-13 15:22:20 +0100317static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Jesse Grossccb13522011-10-25 19:26:31 -0700318 const struct dp_upcall_info *upcall_info)
319{
Ben Pfaffa1b5d0d2012-07-20 14:47:54 -0700320 unsigned short gso_type = skb_shinfo(skb)->gso_type;
Jesse Grossccb13522011-10-25 19:26:31 -0700321 struct dp_upcall_info later_info;
322 struct sw_flow_key later_key;
323 struct sk_buff *segs, *nskb;
324 int err;
325
Thomas Graf09c5e602013-12-13 15:22:22 +0100326 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700327 if (IS_ERR(segs))
328 return PTR_ERR(segs);
Florian Westphal330966e2014-10-20 13:49:17 +0200329 if (segs == NULL)
330 return -EINVAL;
Jesse Grossccb13522011-10-25 19:26:31 -0700331
332 /* Queue all of the segments. */
333 skb = segs;
334 do {
Thomas Graf8055a892013-12-13 15:22:20 +0100335 err = queue_userspace_packet(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700336 if (err)
337 break;
338
Ben Pfaffa1b5d0d2012-07-20 14:47:54 -0700339 if (skb == segs && gso_type & SKB_GSO_UDP) {
Jesse Grossccb13522011-10-25 19:26:31 -0700340 /* The initial flow key extracted by ovs_flow_extract()
341 * in this case is for a first fragment, so we need to
342 * properly mark later fragments.
343 */
344 later_key = *upcall_info->key;
345 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
346
347 later_info = *upcall_info;
348 later_info.key = &later_key;
349 upcall_info = &later_info;
350 }
351 } while ((skb = skb->next));
352
353 /* Free all of the segments. */
354 skb = segs;
355 do {
356 nskb = skb->next;
357 if (err)
358 kfree_skb(skb);
359 else
360 consume_skb(skb);
361 } while ((skb = nskb));
362 return err;
363}
364
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100365static size_t key_attr_size(void)
366{
367 return nla_total_size(4) /* OVS_KEY_ATTR_PRIORITY */
Pravin B Shelar7d5437c2013-06-17 17:50:18 -0700368 + nla_total_size(0) /* OVS_KEY_ATTR_TUNNEL */
369 + nla_total_size(8) /* OVS_TUNNEL_KEY_ATTR_ID */
370 + nla_total_size(4) /* OVS_TUNNEL_KEY_ATTR_IPV4_SRC */
371 + nla_total_size(4) /* OVS_TUNNEL_KEY_ATTR_IPV4_DST */
372 + nla_total_size(1) /* OVS_TUNNEL_KEY_ATTR_TOS */
373 + nla_total_size(1) /* OVS_TUNNEL_KEY_ATTR_TTL */
374 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT */
375 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_CSUM */
Jesse Gross67fa0342014-10-03 15:35:30 -0700376 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_OAM */
Jesse Grossf5796682014-10-03 15:35:33 -0700377 + nla_total_size(256) /* OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100378 + nla_total_size(4) /* OVS_KEY_ATTR_IN_PORT */
379 + nla_total_size(4) /* OVS_KEY_ATTR_SKB_MARK */
380 + nla_total_size(12) /* OVS_KEY_ATTR_ETHERNET */
381 + nla_total_size(2) /* OVS_KEY_ATTR_ETHERTYPE */
382 + nla_total_size(4) /* OVS_KEY_ATTR_8021Q */
383 + nla_total_size(0) /* OVS_KEY_ATTR_ENCAP */
384 + nla_total_size(2) /* OVS_KEY_ATTR_ETHERTYPE */
385 + nla_total_size(40) /* OVS_KEY_ATTR_IPV6 */
386 + nla_total_size(2) /* OVS_KEY_ATTR_ICMPV6 */
387 + nla_total_size(28); /* OVS_KEY_ATTR_ND */
388}
389
Thomas Grafbda56f12013-12-13 15:22:21 +0100390static size_t upcall_msg_size(const struct nlattr *userdata,
391 unsigned int hdrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100392{
393 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100394 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100395 + nla_total_size(key_attr_size()); /* OVS_PACKET_ATTR_KEY */
396
397 /* OVS_PACKET_ATTR_USERDATA */
398 if (userdata)
399 size += NLA_ALIGN(userdata->nla_len);
400
401 return size;
402}
403
Thomas Graf8055a892013-12-13 15:22:20 +0100404static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Jesse Grossccb13522011-10-25 19:26:31 -0700405 const struct dp_upcall_info *upcall_info)
406{
407 struct ovs_header *upcall;
408 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800409 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700410 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100411 struct genl_info info = {
Thomas Graf8055a892013-12-13 15:22:20 +0100412 .dst_sk = ovs_dp_get_net(dp)->genl_sock,
Thomas Graf795449d2013-11-30 13:21:32 +0100413 .snd_portid = upcall_info->portid,
414 };
415 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100416 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100417 int err, dp_ifindex;
418
419 dp_ifindex = get_dpifindex(dp);
420 if (!dp_ifindex)
421 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700422
423 if (vlan_tx_tag_present(skb)) {
424 nskb = skb_clone(skb, GFP_ATOMIC);
425 if (!nskb)
426 return -ENOMEM;
427
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000428 nskb = __vlan_put_tag(nskb, nskb->vlan_proto, vlan_tx_tag_get(nskb));
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000429 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700430 return -ENOMEM;
431
432 nskb->vlan_tci = 0;
433 skb = nskb;
434 }
435
436 if (nla_attr_size(skb->len) > USHRT_MAX) {
437 err = -EFBIG;
438 goto out;
439 }
440
Thomas Grafbda56f12013-12-13 15:22:21 +0100441 /* Complete checksum if needed */
442 if (skb->ip_summed == CHECKSUM_PARTIAL &&
443 (err = skb_checksum_help(skb)))
444 goto out;
445
446 /* Older versions of OVS user space enforce alignment of the last
447 * Netlink attribute to NLA_ALIGNTO which would require extensive
448 * padding logic. Only perform zerocopy if padding is not required.
449 */
450 if (dp->user_features & OVS_DP_F_UNALIGNED)
451 hlen = skb_zerocopy_headlen(skb);
452 else
453 hlen = skb->len;
454
455 len = upcall_msg_size(upcall_info->userdata, hlen);
Thomas Graf795449d2013-11-30 13:21:32 +0100456 user_skb = genlmsg_new_unicast(len, &info, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700457 if (!user_skb) {
458 err = -ENOMEM;
459 goto out;
460 }
461
462 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
463 0, upcall_info->cmd);
464 upcall->dp_ifindex = dp_ifindex;
465
466 nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_KEY);
Andy Zhouf53e3832014-07-17 15:17:44 -0700467 err = ovs_nla_put_flow(upcall_info->key, upcall_info->key, user_skb);
468 BUG_ON(err);
Jesse Grossccb13522011-10-25 19:26:31 -0700469 nla_nest_end(user_skb, nla);
470
471 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800472 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
473 nla_len(upcall_info->userdata),
474 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700475
Thomas Grafbda56f12013-12-13 15:22:21 +0100476 /* Only reserve room for attribute header, packet data is added
477 * in skb_zerocopy() */
478 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
479 err = -ENOBUFS;
480 goto out;
481 }
482 nla->nla_len = nla_attr_size(skb->len);
Jesse Grossccb13522011-10-25 19:26:31 -0700483
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000484 err = skb_zerocopy(user_skb, skb, skb->len, hlen);
485 if (err)
486 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700487
Thomas Grafaea0bb42014-01-14 16:27:49 +0000488 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
489 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
490 size_t plen = NLA_ALIGN(user_skb->len) - user_skb->len;
491
492 if (plen > 0)
493 memset(skb_put(user_skb, plen), 0, plen);
494 }
495
Thomas Grafbda56f12013-12-13 15:22:21 +0100496 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
497
Thomas Graf8055a892013-12-13 15:22:20 +0100498 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800499 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700500out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000501 if (err)
502 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800503 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700504 kfree_skb(nskb);
505 return err;
506}
507
Jesse Grossccb13522011-10-25 19:26:31 -0700508static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
509{
510 struct ovs_header *ovs_header = info->userhdr;
511 struct nlattr **a = info->attrs;
512 struct sw_flow_actions *acts;
513 struct sk_buff *packet;
514 struct sw_flow *flow;
515 struct datapath *dp;
516 struct ethhdr *eth;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700517 struct vport *input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700518 int len;
519 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700520
521 err = -EINVAL;
522 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100523 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700524 goto err;
525
526 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
527 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
528 err = -ENOMEM;
529 if (!packet)
530 goto err;
531 skb_reserve(packet, NET_IP_ALIGN);
532
Thomas Graf32686a92013-03-29 14:46:48 +0100533 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700534
535 skb_reset_mac_header(packet);
536 eth = eth_hdr(packet);
537
538 /* Normally, setting the skb 'protocol' field would be handled by a
539 * call to eth_type_trans(), but it assumes there's a sending
540 * device, which we may not have. */
Simon Hormane5c5d222013-03-28 13:38:25 +0900541 if (ntohs(eth->h_proto) >= ETH_P_802_3_MIN)
Jesse Grossccb13522011-10-25 19:26:31 -0700542 packet->protocol = eth->h_proto;
543 else
544 packet->protocol = htons(ETH_P_802_2);
545
546 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700547 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700548 err = PTR_ERR(flow);
549 if (IS_ERR(flow))
550 goto err_kfree_skb;
551
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700552 err = ovs_flow_key_extract_userspace(a[OVS_PACKET_ATTR_KEY], packet,
553 &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700554 if (err)
555 goto err_flow_free;
556
Pravin B Shelare6445712013-10-03 18:16:47 -0700557 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_PACKET_ATTR_ACTIONS]));
Jesse Grossccb13522011-10-25 19:26:31 -0700558 err = PTR_ERR(acts);
559 if (IS_ERR(acts))
560 goto err_flow_free;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700561
Pravin B Shelare6445712013-10-03 18:16:47 -0700562 err = ovs_nla_copy_actions(a[OVS_PACKET_ATTR_ACTIONS],
563 &flow->key, 0, &acts);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700564 if (err)
565 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700566
Jesse Grossf5796682014-10-03 15:35:33 -0700567 rcu_assign_pointer(flow->sf_acts, acts);
568
569 OVS_CB(packet)->egress_tun_info = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700570 OVS_CB(packet)->flow = flow;
571 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800572 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700573
574 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800575 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700576 err = -ENODEV;
577 if (!dp)
578 goto err_unlock;
579
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700580 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
581 if (!input_vport)
582 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
583
584 if (!input_vport)
585 goto err_unlock;
586
587 OVS_CB(packet)->input_vport = input_vport;
588
Jesse Grossccb13522011-10-25 19:26:31 -0700589 local_bh_disable();
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -0700590 err = ovs_execute_actions(dp, packet, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700591 local_bh_enable();
592 rcu_read_unlock();
593
Andy Zhou03f0d912013-08-07 20:01:00 -0700594 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700595 return err;
596
597err_unlock:
598 rcu_read_unlock();
599err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700600 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700601err_kfree_skb:
602 kfree_skb(packet);
603err:
604 return err;
605}
606
607static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100608 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700609 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
610 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
611};
612
Johannes Berg4534de82013-11-14 17:14:46 +0100613static const struct genl_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700614 { .cmd = OVS_PACKET_CMD_EXECUTE,
615 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
616 .policy = packet_policy,
617 .doit = ovs_packet_cmd_execute
618 }
619};
620
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700621static struct genl_family dp_packet_genl_family = {
622 .id = GENL_ID_GENERATE,
623 .hdrsize = sizeof(struct ovs_header),
624 .name = OVS_PACKET_FAMILY,
625 .version = OVS_PACKET_VERSION,
626 .maxattr = OVS_PACKET_ATTR_MAX,
627 .netnsok = true,
628 .parallel_ops = true,
629 .ops = dp_packet_genl_ops,
630 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
631};
632
Andy Zhou1bd71162013-10-22 10:42:46 -0700633static void get_dp_stats(struct datapath *dp, struct ovs_dp_stats *stats,
634 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700635{
636 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700637
Andy Zhou1bd71162013-10-22 10:42:46 -0700638 memset(mega_stats, 0, sizeof(*mega_stats));
639
Pravin B Shelarb637e492013-10-04 00:14:23 -0700640 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700641 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700642
643 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700644
Jesse Grossccb13522011-10-25 19:26:31 -0700645 for_each_possible_cpu(i) {
646 const struct dp_stats_percpu *percpu_stats;
647 struct dp_stats_percpu local_stats;
648 unsigned int start;
649
650 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
651
652 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700653 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700654 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700655 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700656
657 stats->n_hit += local_stats.n_hit;
658 stats->n_missed += local_stats.n_missed;
659 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700660 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700661 }
662}
663
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100664static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts)
665{
666 return NLMSG_ALIGN(sizeof(struct ovs_header))
667 + nla_total_size(key_attr_size()) /* OVS_FLOW_ATTR_KEY */
Andy Zhou03f0d912013-08-07 20:01:00 -0700668 + nla_total_size(key_attr_size()) /* OVS_FLOW_ATTR_MASK */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100669 + nla_total_size(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
670 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
671 + nla_total_size(8) /* OVS_FLOW_ATTR_USED */
672 + nla_total_size(acts->actions_len); /* OVS_FLOW_ATTR_ACTIONS */
673}
674
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700675/* Called with ovs_mutex or RCU read lock. */
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700676static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000677 struct sk_buff *skb, u32 portid,
Jesse Grossccb13522011-10-25 19:26:31 -0700678 u32 seq, u32 flags, u8 cmd)
679{
680 const int skb_orig_len = skb->len;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700681 struct nlattr *start;
Jesse Grossccb13522011-10-25 19:26:31 -0700682 struct ovs_flow_stats stats;
Pravin B Shelare298e502013-10-29 17:22:21 -0700683 __be16 tcp_flags;
684 unsigned long used;
Jesse Grossccb13522011-10-25 19:26:31 -0700685 struct ovs_header *ovs_header;
686 struct nlattr *nla;
Jesse Grossccb13522011-10-25 19:26:31 -0700687 int err;
688
Eric W. Biederman15e47302012-09-07 20:12:54 +0000689 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family, flags, cmd);
Jesse Grossccb13522011-10-25 19:26:31 -0700690 if (!ovs_header)
691 return -EMSGSIZE;
692
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700693 ovs_header->dp_ifindex = dp_ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700694
Andy Zhou03f0d912013-08-07 20:01:00 -0700695 /* Fill flow key. */
Jesse Grossccb13522011-10-25 19:26:31 -0700696 nla = nla_nest_start(skb, OVS_FLOW_ATTR_KEY);
697 if (!nla)
698 goto nla_put_failure;
Andy Zhou03f0d912013-08-07 20:01:00 -0700699
Pravin B Shelare6445712013-10-03 18:16:47 -0700700 err = ovs_nla_put_flow(&flow->unmasked_key, &flow->unmasked_key, skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700701 if (err)
702 goto error;
703 nla_nest_end(skb, nla);
704
Andy Zhou03f0d912013-08-07 20:01:00 -0700705 nla = nla_nest_start(skb, OVS_FLOW_ATTR_MASK);
706 if (!nla)
707 goto nla_put_failure;
708
Pravin B Shelare6445712013-10-03 18:16:47 -0700709 err = ovs_nla_put_flow(&flow->key, &flow->mask->key, skb);
Andy Zhou03f0d912013-08-07 20:01:00 -0700710 if (err)
711 goto error;
712
713 nla_nest_end(skb, nla);
714
Pravin B Shelare298e502013-10-29 17:22:21 -0700715 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700716
David S. Miller028d6a62012-03-29 23:20:48 -0400717 if (used &&
718 nla_put_u64(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used)))
719 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700720
David S. Miller028d6a62012-03-29 23:20:48 -0400721 if (stats.n_packets &&
Pravin B Shelare298e502013-10-29 17:22:21 -0700722 nla_put(skb, OVS_FLOW_ATTR_STATS, sizeof(struct ovs_flow_stats), &stats))
David S. Miller028d6a62012-03-29 23:20:48 -0400723 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700724
Pravin B Shelare298e502013-10-29 17:22:21 -0700725 if ((u8)ntohs(tcp_flags) &&
726 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
David S. Miller028d6a62012-03-29 23:20:48 -0400727 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700728
729 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
730 * this is the first flow to be dumped into 'skb'. This is unusual for
731 * Netlink but individual action lists can be longer than
732 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
733 * The userspace caller can always fetch the actions separately if it
734 * really wants them. (Most userspace callers in fact don't care.)
735 *
736 * This can only fail for dump operations because the skb is always
737 * properly sized for single flows.
738 */
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700739 start = nla_nest_start(skb, OVS_FLOW_ATTR_ACTIONS);
740 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700741 const struct sw_flow_actions *sf_acts;
742
Jesse Gross663efa32013-12-03 10:58:53 -0800743 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700744 err = ovs_nla_put_actions(sf_acts->actions,
745 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700746
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700747 if (!err)
748 nla_nest_end(skb, start);
749 else {
750 if (skb_orig_len)
751 goto error;
752
753 nla_nest_cancel(skb, start);
754 }
755 } else if (skb_orig_len)
756 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700757
758 return genlmsg_end(skb, ovs_header);
759
760nla_put_failure:
761 err = -EMSGSIZE;
762error:
763 genlmsg_cancel(skb, ovs_header);
764 return err;
765}
766
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700767/* May not be called with RCU read lock. */
768static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700769 struct genl_info *info,
770 bool always)
Jesse Grossccb13522011-10-25 19:26:31 -0700771{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700772 struct sk_buff *skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700773
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200774 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700775 return NULL;
776
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700777 skb = genlmsg_new_unicast(ovs_flow_cmd_msg_size(acts), info, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700778 if (!skb)
779 return ERR_PTR(-ENOMEM);
780
781 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700782}
783
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700784/* Called with ovs_mutex. */
785static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
786 int dp_ifindex,
787 struct genl_info *info, u8 cmd,
788 bool always)
Jesse Grossccb13522011-10-25 19:26:31 -0700789{
790 struct sk_buff *skb;
791 int retval;
792
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700793 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts), info,
794 always);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530795 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700796 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700797
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700798 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
799 info->snd_portid, info->snd_seq, 0,
800 cmd);
Jesse Grossccb13522011-10-25 19:26:31 -0700801 BUG_ON(retval < 0);
802 return skb;
803}
804
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700805static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700806{
807 struct nlattr **a = info->attrs;
808 struct ovs_header *ovs_header = info->userhdr;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700809 struct sw_flow *flow, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700810 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700811 struct sk_buff *reply;
812 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700813 struct sw_flow_actions *acts;
814 struct sw_flow_match match;
815 int error;
816
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700817 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700818 error = -EINVAL;
819 if (!a[OVS_FLOW_ATTR_KEY])
820 goto error;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700821 if (!a[OVS_FLOW_ATTR_ACTIONS])
822 goto error;
823
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700824 /* Most of the time we need to allocate a new flow, do it before
825 * locking.
826 */
827 new_flow = ovs_flow_alloc();
828 if (IS_ERR(new_flow)) {
829 error = PTR_ERR(new_flow);
830 goto error;
831 }
832
833 /* Extract key. */
834 ovs_match_init(&match, &new_flow->unmasked_key, &mask);
835 error = ovs_nla_get_match(&match,
836 a[OVS_FLOW_ATTR_KEY], a[OVS_FLOW_ATTR_MASK]);
837 if (error)
838 goto err_kfree_flow;
839
840 ovs_flow_mask_key(&new_flow->key, &new_flow->unmasked_key, &mask);
841
842 /* Validate actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700843 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_FLOW_ATTR_ACTIONS]));
844 error = PTR_ERR(acts);
845 if (IS_ERR(acts))
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700846 goto err_kfree_flow;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700847
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700848 error = ovs_nla_copy_actions(a[OVS_FLOW_ATTR_ACTIONS], &new_flow->key,
849 0, &acts);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700850 if (error) {
851 OVS_NLERR("Flow actions may not be safe on all matching packets.\n");
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700852 goto err_kfree_acts;
853 }
854
855 reply = ovs_flow_cmd_alloc_info(acts, info, false);
856 if (IS_ERR(reply)) {
857 error = PTR_ERR(reply);
858 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700859 }
860
861 ovs_lock();
862 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700863 if (unlikely(!dp)) {
864 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700865 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700866 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700867 /* Check if this is a duplicate flow */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700868 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->unmasked_key);
869 if (likely(!flow)) {
870 rcu_assign_pointer(new_flow->sf_acts, acts);
871
872 /* Put flow in bucket. */
873 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
874 if (unlikely(error)) {
875 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700876 goto err_unlock_ovs;
877 }
878
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700879 if (unlikely(reply)) {
880 error = ovs_flow_cmd_fill_info(new_flow,
881 ovs_header->dp_ifindex,
882 reply, info->snd_portid,
883 info->snd_seq, 0,
884 OVS_FLOW_CMD_NEW);
885 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700886 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700887 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700888 } else {
889 struct sw_flow_actions *old_acts;
890
891 /* Bail out if we're not allowed to modify an existing flow.
892 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
893 * because Generic Netlink treats the latter as a dump
894 * request. We also accept NLM_F_EXCL in case that bug ever
895 * gets fixed.
896 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700897 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
898 | NLM_F_EXCL))) {
899 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700900 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700901 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700902 /* The unmasked key has to be the same for flow updates. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700903 if (unlikely(!ovs_flow_cmp_unmasked_key(flow, &match))) {
Alex Wang4a46b242014-06-30 20:30:29 -0700904 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
905 if (!flow) {
906 error = -ENOENT;
907 goto err_unlock_ovs;
908 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700909 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700910 /* Update actions. */
911 old_acts = ovsl_dereference(flow->sf_acts);
912 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700913
914 if (unlikely(reply)) {
915 error = ovs_flow_cmd_fill_info(flow,
916 ovs_header->dp_ifindex,
917 reply, info->snd_portid,
918 info->snd_seq, 0,
919 OVS_FLOW_CMD_NEW);
920 BUG_ON(error < 0);
921 }
922 ovs_unlock();
923
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700924 ovs_nla_free_flow_actions(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700925 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700926 }
927
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700928 if (reply)
929 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700930 return 0;
931
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700932err_unlock_ovs:
933 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700934 kfree_skb(reply);
935err_kfree_acts:
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700936 kfree(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700937err_kfree_flow:
938 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700939error:
940 return error;
941}
942
Jesse Gross6b205b22014-10-03 15:35:32 -0700943static struct sw_flow_actions *get_flow_actions(const struct nlattr *a,
944 const struct sw_flow_key *key,
945 const struct sw_flow_mask *mask)
946{
947 struct sw_flow_actions *acts;
948 struct sw_flow_key masked_key;
949 int error;
950
951 acts = ovs_nla_alloc_flow_actions(nla_len(a));
952 if (IS_ERR(acts))
953 return acts;
954
955 ovs_flow_mask_key(&masked_key, key, mask);
956 error = ovs_nla_copy_actions(a, &masked_key, 0, &acts);
957 if (error) {
958 OVS_NLERR("Flow actions may not be safe on all matching packets.\n");
959 kfree(acts);
960 return ERR_PTR(error);
961 }
962
963 return acts;
964}
965
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700966static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
967{
968 struct nlattr **a = info->attrs;
969 struct ovs_header *ovs_header = info->userhdr;
Jesse Gross6b205b22014-10-03 15:35:32 -0700970 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700971 struct sw_flow *flow;
972 struct sw_flow_mask mask;
973 struct sk_buff *reply = NULL;
974 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700975 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -0700976 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -0700977 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700978
979 /* Extract key. */
980 error = -EINVAL;
981 if (!a[OVS_FLOW_ATTR_KEY])
982 goto error;
Andy Zhou03f0d912013-08-07 20:01:00 -0700983
984 ovs_match_init(&match, &key, &mask);
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700985 error = ovs_nla_get_match(&match,
Pravin B Shelare6445712013-10-03 18:16:47 -0700986 a[OVS_FLOW_ATTR_KEY], a[OVS_FLOW_ATTR_MASK]);
Jesse Grossccb13522011-10-25 19:26:31 -0700987 if (error)
988 goto error;
989
990 /* Validate actions. */
991 if (a[OVS_FLOW_ATTR_ACTIONS]) {
Jesse Gross6b205b22014-10-03 15:35:32 -0700992 acts = get_flow_actions(a[OVS_FLOW_ATTR_ACTIONS], &key, &mask);
993 if (IS_ERR(acts)) {
994 error = PTR_ERR(acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700995 goto error;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700996 }
997 }
998
999 /* Can allocate before locking if have acts. */
1000 if (acts) {
1001 reply = ovs_flow_cmd_alloc_info(acts, info, false);
1002 if (IS_ERR(reply)) {
1003 error = PTR_ERR(reply);
1004 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -07001005 }
Jesse Grossccb13522011-10-25 19:26:31 -07001006 }
1007
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001008 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001009 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001010 if (unlikely(!dp)) {
1011 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001012 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001013 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001014 /* Check that the flow exists. */
Alex Wang4a46b242014-06-30 20:30:29 -07001015 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001016 if (unlikely(!flow)) {
1017 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001018 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001019 }
Alex Wang4a46b242014-06-30 20:30:29 -07001020
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001021 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001022 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001023 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001024 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001025
1026 if (unlikely(reply)) {
1027 error = ovs_flow_cmd_fill_info(flow,
1028 ovs_header->dp_ifindex,
1029 reply, info->snd_portid,
1030 info->snd_seq, 0,
1031 OVS_FLOW_CMD_NEW);
1032 BUG_ON(error < 0);
1033 }
1034 } else {
1035 /* Could not alloc without acts before locking. */
1036 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
1037 info, OVS_FLOW_CMD_NEW, false);
1038 if (unlikely(IS_ERR(reply))) {
1039 error = PTR_ERR(reply);
1040 goto err_unlock_ovs;
1041 }
Jesse Grossccb13522011-10-25 19:26:31 -07001042 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001043
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001044 /* Clear stats. */
1045 if (a[OVS_FLOW_ATTR_CLEAR])
1046 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001047 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001048
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001049 if (reply)
1050 ovs_notify(&dp_flow_genl_family, reply, info);
1051 if (old_acts)
1052 ovs_nla_free_flow_actions(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001053
Jesse Grossccb13522011-10-25 19:26:31 -07001054 return 0;
1055
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001056err_unlock_ovs:
1057 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001058 kfree_skb(reply);
1059err_kfree_acts:
Pravin B Shelar74f84a52013-06-17 17:50:12 -07001060 kfree(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001061error:
1062 return error;
1063}
1064
1065static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1066{
1067 struct nlattr **a = info->attrs;
1068 struct ovs_header *ovs_header = info->userhdr;
1069 struct sw_flow_key key;
1070 struct sk_buff *reply;
1071 struct sw_flow *flow;
1072 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001073 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -07001074 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001075
Andy Zhou03f0d912013-08-07 20:01:00 -07001076 if (!a[OVS_FLOW_ATTR_KEY]) {
1077 OVS_NLERR("Flow get message rejected, Key attribute missing.\n");
Jesse Grossccb13522011-10-25 19:26:31 -07001078 return -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001079 }
1080
1081 ovs_match_init(&match, &key, NULL);
Jarno Rajahalme23dabf82014-03-27 12:35:23 -07001082 err = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY], NULL);
Jesse Grossccb13522011-10-25 19:26:31 -07001083 if (err)
1084 return err;
1085
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001086 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001087 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001088 if (!dp) {
1089 err = -ENODEV;
1090 goto unlock;
1091 }
Jesse Grossccb13522011-10-25 19:26:31 -07001092
Alex Wang4a46b242014-06-30 20:30:29 -07001093 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
1094 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001095 err = -ENOENT;
1096 goto unlock;
1097 }
Jesse Grossccb13522011-10-25 19:26:31 -07001098
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001099 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
1100 OVS_FLOW_CMD_NEW, true);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001101 if (IS_ERR(reply)) {
1102 err = PTR_ERR(reply);
1103 goto unlock;
1104 }
Jesse Grossccb13522011-10-25 19:26:31 -07001105
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001106 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001107 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001108unlock:
1109 ovs_unlock();
1110 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001111}
1112
1113static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1114{
1115 struct nlattr **a = info->attrs;
1116 struct ovs_header *ovs_header = info->userhdr;
1117 struct sw_flow_key key;
1118 struct sk_buff *reply;
1119 struct sw_flow *flow;
1120 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001121 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -07001122 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001123
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001124 if (likely(a[OVS_FLOW_ATTR_KEY])) {
1125 ovs_match_init(&match, &key, NULL);
1126 err = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY], NULL);
1127 if (unlikely(err))
1128 return err;
1129 }
1130
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001131 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001132 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001133 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001134 err = -ENODEV;
1135 goto unlock;
1136 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001137
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001138 if (unlikely(!a[OVS_FLOW_ATTR_KEY])) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001139 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001140 goto unlock;
1141 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001142
Alex Wang4a46b242014-06-30 20:30:29 -07001143 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
1144 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001145 err = -ENOENT;
1146 goto unlock;
1147 }
Jesse Grossccb13522011-10-25 19:26:31 -07001148
Pravin B Shelarb637e492013-10-04 00:14:23 -07001149 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001150 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001151
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001152 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
1153 info, false);
1154 if (likely(reply)) {
1155 if (likely(!IS_ERR(reply))) {
1156 rcu_read_lock(); /*To keep RCU checker happy. */
1157 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1158 reply, info->snd_portid,
1159 info->snd_seq, 0,
1160 OVS_FLOW_CMD_DEL);
1161 rcu_read_unlock();
1162 BUG_ON(err < 0);
1163
1164 ovs_notify(&dp_flow_genl_family, reply, info);
1165 } else {
1166 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1167 }
1168 }
1169
1170 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001171 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001172unlock:
1173 ovs_unlock();
1174 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001175}
1176
1177static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1178{
1179 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001180 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001181 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07001182
Pravin B Shelard57170b2013-07-30 15:39:39 -07001183 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001184 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001185 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001186 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001187 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001188 }
Jesse Grossccb13522011-10-25 19:26:31 -07001189
Pravin B Shelarb637e492013-10-04 00:14:23 -07001190 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001191 for (;;) {
1192 struct sw_flow *flow;
1193 u32 bucket, obj;
1194
1195 bucket = cb->args[0];
1196 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001197 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001198 if (!flow)
1199 break;
1200
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001201 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001202 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001203 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1204 OVS_FLOW_CMD_NEW) < 0)
1205 break;
1206
1207 cb->args[0] = bucket;
1208 cb->args[1] = obj;
1209 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001210 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001211 return skb->len;
1212}
1213
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001214static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1215 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
1216 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1217 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
1218};
1219
stephen hemminger48e48a72014-07-16 11:25:52 -07001220static const struct genl_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001221 { .cmd = OVS_FLOW_CMD_NEW,
1222 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1223 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001224 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001225 },
1226 { .cmd = OVS_FLOW_CMD_DEL,
1227 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1228 .policy = flow_policy,
1229 .doit = ovs_flow_cmd_del
1230 },
1231 { .cmd = OVS_FLOW_CMD_GET,
1232 .flags = 0, /* OK for unprivileged users. */
1233 .policy = flow_policy,
1234 .doit = ovs_flow_cmd_get,
1235 .dumpit = ovs_flow_cmd_dump
1236 },
1237 { .cmd = OVS_FLOW_CMD_SET,
1238 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1239 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001240 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001241 },
1242};
1243
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001244static struct genl_family dp_flow_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001245 .id = GENL_ID_GENERATE,
1246 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001247 .name = OVS_FLOW_FAMILY,
1248 .version = OVS_FLOW_VERSION,
1249 .maxattr = OVS_FLOW_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001250 .netnsok = true,
1251 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001252 .ops = dp_flow_genl_ops,
1253 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1254 .mcgrps = &ovs_dp_flow_multicast_group,
1255 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001256};
1257
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001258static size_t ovs_dp_cmd_msg_size(void)
1259{
1260 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1261
1262 msgsize += nla_total_size(IFNAMSIZ);
1263 msgsize += nla_total_size(sizeof(struct ovs_dp_stats));
Andy Zhou1bd71162013-10-22 10:42:46 -07001264 msgsize += nla_total_size(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001265 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001266
1267 return msgsize;
1268}
1269
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001270/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001271static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001272 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001273{
1274 struct ovs_header *ovs_header;
1275 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001276 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001277 int err;
1278
Eric W. Biederman15e47302012-09-07 20:12:54 +00001279 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001280 flags, cmd);
1281 if (!ovs_header)
1282 goto error;
1283
1284 ovs_header->dp_ifindex = get_dpifindex(dp);
1285
Jesse Grossccb13522011-10-25 19:26:31 -07001286 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001287 if (err)
1288 goto nla_put_failure;
1289
Andy Zhou1bd71162013-10-22 10:42:46 -07001290 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
1291 if (nla_put(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1292 &dp_stats))
1293 goto nla_put_failure;
1294
1295 if (nla_put(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1296 sizeof(struct ovs_dp_megaflow_stats),
1297 &dp_megaflow_stats))
David S. Miller028d6a62012-03-29 23:20:48 -04001298 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001299
Thomas Graf43d4be92013-12-13 15:22:18 +01001300 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1301 goto nla_put_failure;
1302
Jesse Grossccb13522011-10-25 19:26:31 -07001303 return genlmsg_end(skb, ovs_header);
1304
1305nla_put_failure:
1306 genlmsg_cancel(skb, ovs_header);
1307error:
1308 return -EMSGSIZE;
1309}
1310
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001311static struct sk_buff *ovs_dp_cmd_alloc_info(struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -07001312{
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001313 return genlmsg_new_unicast(ovs_dp_cmd_msg_size(), info, GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001314}
1315
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001316/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001317static struct datapath *lookup_datapath(struct net *net,
1318 struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001319 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1320{
1321 struct datapath *dp;
1322
1323 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001324 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001325 else {
1326 struct vport *vport;
1327
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001328 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001329 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001330 }
1331 return dp ? dp : ERR_PTR(-ENODEV);
1332}
1333
Thomas Graf44da5ae2013-12-13 15:22:19 +01001334static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1335{
1336 struct datapath *dp;
1337
1338 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001339 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001340 return;
1341
1342 WARN(dp->user_features, "Dropping previously announced user features\n");
1343 dp->user_features = 0;
1344}
1345
Thomas Graf43d4be92013-12-13 15:22:18 +01001346static void ovs_dp_change(struct datapath *dp, struct nlattr **a)
1347{
1348 if (a[OVS_DP_ATTR_USER_FEATURES])
1349 dp->user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1350}
1351
Jesse Grossccb13522011-10-25 19:26:31 -07001352static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1353{
1354 struct nlattr **a = info->attrs;
1355 struct vport_parms parms;
1356 struct sk_buff *reply;
1357 struct datapath *dp;
1358 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001359 struct ovs_net *ovs_net;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001360 int err, i;
Jesse Grossccb13522011-10-25 19:26:31 -07001361
1362 err = -EINVAL;
1363 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1364 goto err;
1365
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001366 reply = ovs_dp_cmd_alloc_info(info);
1367 if (!reply)
1368 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001369
1370 err = -ENOMEM;
1371 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1372 if (dp == NULL)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001373 goto err_free_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001374
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001375 ovs_dp_set_net(dp, hold_net(sock_net(skb->sk)));
Jesse Grossccb13522011-10-25 19:26:31 -07001376
1377 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001378 err = ovs_flow_tbl_init(&dp->table);
1379 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001380 goto err_free_dp;
1381
WANG Cong1c213bd2014-02-13 11:46:28 -08001382 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -07001383 if (!dp->stats_percpu) {
1384 err = -ENOMEM;
1385 goto err_destroy_table;
1386 }
1387
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001388 dp->ports = kmalloc(DP_VPORT_HASH_BUCKETS * sizeof(struct hlist_head),
Pravin B Shelare6445712013-10-03 18:16:47 -07001389 GFP_KERNEL);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001390 if (!dp->ports) {
1391 err = -ENOMEM;
1392 goto err_destroy_percpu;
1393 }
1394
1395 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1396 INIT_HLIST_HEAD(&dp->ports[i]);
1397
Jesse Grossccb13522011-10-25 19:26:31 -07001398 /* Set up our datapath device. */
1399 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1400 parms.type = OVS_VPORT_TYPE_INTERNAL;
1401 parms.options = NULL;
1402 parms.dp = dp;
1403 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001404 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001405
Thomas Graf43d4be92013-12-13 15:22:18 +01001406 ovs_dp_change(dp, a);
1407
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001408 /* So far only local changes have been made, now need the lock. */
1409 ovs_lock();
1410
Jesse Grossccb13522011-10-25 19:26:31 -07001411 vport = new_vport(&parms);
1412 if (IS_ERR(vport)) {
1413 err = PTR_ERR(vport);
1414 if (err == -EBUSY)
1415 err = -EEXIST;
1416
Thomas Graf44da5ae2013-12-13 15:22:19 +01001417 if (err == -EEXIST) {
1418 /* An outdated user space instance that does not understand
1419 * the concept of user_features has attempted to create a new
1420 * datapath and is likely to reuse it. Drop all user features.
1421 */
1422 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1423 ovs_dp_reset_user_features(skb, info);
1424 }
1425
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001426 goto err_destroy_ports_array;
Jesse Grossccb13522011-10-25 19:26:31 -07001427 }
1428
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001429 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1430 info->snd_seq, 0, OVS_DP_CMD_NEW);
1431 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001432
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001433 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001434 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001435
1436 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001437
Johannes Berg2a94fe42013-11-19 15:19:39 +01001438 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001439 return 0;
1440
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001441err_destroy_ports_array:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001442 ovs_unlock();
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001443 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -07001444err_destroy_percpu:
1445 free_percpu(dp->stats_percpu);
1446err_destroy_table:
Andy Zhoue80857c2014-01-21 09:31:04 -08001447 ovs_flow_tbl_destroy(&dp->table, false);
Jesse Grossccb13522011-10-25 19:26:31 -07001448err_free_dp:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001449 release_net(ovs_dp_get_net(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001450 kfree(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001451err_free_reply:
1452 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001453err:
1454 return err;
1455}
1456
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001457/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001458static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001459{
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001460 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001461
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001462 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1463 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001464 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001465
Sasha Levinb67bfe02013-02-27 17:06:00 -08001466 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001467 if (vport->port_no != OVSP_LOCAL)
1468 ovs_dp_detach_port(vport);
1469 }
Jesse Grossccb13522011-10-25 19:26:31 -07001470
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001471 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001472
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001473 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001474 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001475 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001476 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001477
Andy Zhoue80857c2014-01-21 09:31:04 -08001478 /* RCU destroy the flow table */
1479 ovs_flow_tbl_destroy(&dp->table, true);
1480
Jesse Grossccb13522011-10-25 19:26:31 -07001481 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001482}
1483
1484static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1485{
1486 struct sk_buff *reply;
1487 struct datapath *dp;
1488 int err;
1489
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001490 reply = ovs_dp_cmd_alloc_info(info);
1491 if (!reply)
1492 return -ENOMEM;
1493
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001494 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001495 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1496 err = PTR_ERR(dp);
1497 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001498 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001499
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001500 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1501 info->snd_seq, 0, OVS_DP_CMD_DEL);
1502 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001503
1504 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001505 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001506
Johannes Berg2a94fe42013-11-19 15:19:39 +01001507 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001508
1509 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001510
1511err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001512 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001513 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001514 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001515}
1516
1517static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1518{
1519 struct sk_buff *reply;
1520 struct datapath *dp;
1521 int err;
1522
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001523 reply = ovs_dp_cmd_alloc_info(info);
1524 if (!reply)
1525 return -ENOMEM;
1526
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001527 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001528 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001529 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001530 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001531 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001532
Thomas Graf43d4be92013-12-13 15:22:18 +01001533 ovs_dp_change(dp, info->attrs);
1534
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001535 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1536 info->snd_seq, 0, OVS_DP_CMD_NEW);
1537 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001538
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001539 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001540 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001541
1542 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001543
1544err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001545 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001546 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001547 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001548}
1549
1550static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1551{
1552 struct sk_buff *reply;
1553 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001554 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001555
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001556 reply = ovs_dp_cmd_alloc_info(info);
1557 if (!reply)
1558 return -ENOMEM;
1559
1560 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001561 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001562 if (IS_ERR(dp)) {
1563 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001564 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001565 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001566 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1567 info->snd_seq, 0, OVS_DP_CMD_NEW);
1568 BUG_ON(err < 0);
1569 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001570
Jesse Grossccb13522011-10-25 19:26:31 -07001571 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001572
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001573err_unlock_free:
1574 rcu_read_unlock();
1575 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001576 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001577}
1578
1579static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1580{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001581 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001582 struct datapath *dp;
1583 int skip = cb->args[0];
1584 int i = 0;
1585
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001586 rcu_read_lock();
1587 list_for_each_entry_rcu(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001588 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001589 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001590 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1591 OVS_DP_CMD_NEW) < 0)
1592 break;
1593 i++;
1594 }
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001595 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001596
1597 cb->args[0] = i;
1598
1599 return skb->len;
1600}
1601
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001602static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1603 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1604 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1605 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1606};
1607
stephen hemminger48e48a72014-07-16 11:25:52 -07001608static const struct genl_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001609 { .cmd = OVS_DP_CMD_NEW,
1610 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1611 .policy = datapath_policy,
1612 .doit = ovs_dp_cmd_new
1613 },
1614 { .cmd = OVS_DP_CMD_DEL,
1615 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1616 .policy = datapath_policy,
1617 .doit = ovs_dp_cmd_del
1618 },
1619 { .cmd = OVS_DP_CMD_GET,
1620 .flags = 0, /* OK for unprivileged users. */
1621 .policy = datapath_policy,
1622 .doit = ovs_dp_cmd_get,
1623 .dumpit = ovs_dp_cmd_dump
1624 },
1625 { .cmd = OVS_DP_CMD_SET,
1626 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1627 .policy = datapath_policy,
1628 .doit = ovs_dp_cmd_set,
1629 },
1630};
1631
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001632static struct genl_family dp_datapath_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001633 .id = GENL_ID_GENERATE,
1634 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001635 .name = OVS_DATAPATH_FAMILY,
1636 .version = OVS_DATAPATH_VERSION,
1637 .maxattr = OVS_DP_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001638 .netnsok = true,
1639 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001640 .ops = dp_datapath_genl_ops,
1641 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1642 .mcgrps = &ovs_dp_datapath_multicast_group,
1643 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001644};
1645
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001646/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001647static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001648 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001649{
1650 struct ovs_header *ovs_header;
1651 struct ovs_vport_stats vport_stats;
1652 int err;
1653
Eric W. Biederman15e47302012-09-07 20:12:54 +00001654 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001655 flags, cmd);
1656 if (!ovs_header)
1657 return -EMSGSIZE;
1658
1659 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1660
David S. Miller028d6a62012-03-29 23:20:48 -04001661 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1662 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001663 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
1664 vport->ops->get_name(vport)))
David S. Miller028d6a62012-03-29 23:20:48 -04001665 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001666
1667 ovs_vport_get_stats(vport, &vport_stats);
David S. Miller028d6a62012-03-29 23:20:48 -04001668 if (nla_put(skb, OVS_VPORT_ATTR_STATS, sizeof(struct ovs_vport_stats),
1669 &vport_stats))
1670 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001671
Alex Wang5cd667b2014-07-17 15:14:13 -07001672 if (ovs_vport_get_upcall_portids(vport, skb))
1673 goto nla_put_failure;
1674
Jesse Grossccb13522011-10-25 19:26:31 -07001675 err = ovs_vport_get_options(vport, skb);
1676 if (err == -EMSGSIZE)
1677 goto error;
1678
1679 return genlmsg_end(skb, ovs_header);
1680
1681nla_put_failure:
1682 err = -EMSGSIZE;
1683error:
1684 genlmsg_cancel(skb, ovs_header);
1685 return err;
1686}
1687
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001688static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1689{
1690 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1691}
1692
1693/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001694struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, u32 portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001695 u32 seq, u8 cmd)
1696{
1697 struct sk_buff *skb;
1698 int retval;
1699
1700 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1701 if (!skb)
1702 return ERR_PTR(-ENOMEM);
1703
Eric W. Biederman15e47302012-09-07 20:12:54 +00001704 retval = ovs_vport_cmd_fill_info(vport, skb, portid, seq, 0, cmd);
Jesse Grossa9341512013-03-26 15:48:38 -07001705 BUG_ON(retval < 0);
1706
Jesse Grossccb13522011-10-25 19:26:31 -07001707 return skb;
1708}
1709
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001710/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001711static struct vport *lookup_vport(struct net *net,
1712 struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001713 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1714{
1715 struct datapath *dp;
1716 struct vport *vport;
1717
1718 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001719 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001720 if (!vport)
1721 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08001722 if (ovs_header->dp_ifindex &&
1723 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1724 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001725 return vport;
1726 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1727 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1728
1729 if (port_no >= DP_MAX_PORTS)
1730 return ERR_PTR(-EFBIG);
1731
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001732 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001733 if (!dp)
1734 return ERR_PTR(-ENODEV);
1735
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001736 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001737 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08001738 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001739 return vport;
1740 } else
1741 return ERR_PTR(-EINVAL);
1742}
1743
1744static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1745{
1746 struct nlattr **a = info->attrs;
1747 struct ovs_header *ovs_header = info->userhdr;
1748 struct vport_parms parms;
1749 struct sk_buff *reply;
1750 struct vport *vport;
1751 struct datapath *dp;
1752 u32 port_no;
1753 int err;
1754
Jesse Grossccb13522011-10-25 19:26:31 -07001755 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
1756 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001757 return -EINVAL;
1758
1759 port_no = a[OVS_VPORT_ATTR_PORT_NO]
1760 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
1761 if (port_no >= DP_MAX_PORTS)
1762 return -EFBIG;
1763
1764 reply = ovs_vport_cmd_alloc_info();
1765 if (!reply)
1766 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001767
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001768 ovs_lock();
Thomas Graf62b9c8d2014-10-22 17:29:06 +02001769restart:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001770 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001771 err = -ENODEV;
1772 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001773 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001774
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001775 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001776 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001777 err = -EBUSY;
1778 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001779 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001780 } else {
1781 for (port_no = 1; ; port_no++) {
1782 if (port_no >= DP_MAX_PORTS) {
1783 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001784 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001785 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001786 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001787 if (!vport)
1788 break;
1789 }
1790 }
1791
1792 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
1793 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1794 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
1795 parms.dp = dp;
1796 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07001797 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001798
1799 vport = new_vport(&parms);
1800 err = PTR_ERR(vport);
Thomas Graf62b9c8d2014-10-22 17:29:06 +02001801 if (IS_ERR(vport)) {
1802 if (err == -EAGAIN)
1803 goto restart;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001804 goto exit_unlock_free;
Thomas Graf62b9c8d2014-10-22 17:29:06 +02001805 }
Jesse Grossccb13522011-10-25 19:26:31 -07001806
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001807 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1808 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1809 BUG_ON(err < 0);
1810 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01001811
Johannes Berg2a94fe42013-11-19 15:19:39 +01001812 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001813 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001814
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001815exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001816 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001817 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001818 return err;
1819}
1820
1821static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
1822{
1823 struct nlattr **a = info->attrs;
1824 struct sk_buff *reply;
1825 struct vport *vport;
1826 int err;
1827
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001828 reply = ovs_vport_cmd_alloc_info();
1829 if (!reply)
1830 return -ENOMEM;
1831
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001832 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001833 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001834 err = PTR_ERR(vport);
1835 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001836 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001837
Jesse Grossccb13522011-10-25 19:26:31 -07001838 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07001839 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07001840 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001841 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07001842 }
1843
Jesse Grossf44f3402013-05-13 08:15:26 -07001844 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07001845 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07001846 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001847 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07001848 }
Jesse Grossa9341512013-03-26 15:48:38 -07001849
Alex Wang5cd667b2014-07-17 15:14:13 -07001850
1851 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
1852 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
1853
1854 err = ovs_vport_set_upcall_portids(vport, ids);
1855 if (err)
1856 goto exit_unlock_free;
1857 }
Jesse Grossccb13522011-10-25 19:26:31 -07001858
Jesse Grossa9341512013-03-26 15:48:38 -07001859 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1860 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1861 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001862
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001863 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001864 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001865 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001866
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001867exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001868 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001869 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001870 return err;
1871}
1872
1873static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
1874{
1875 struct nlattr **a = info->attrs;
1876 struct sk_buff *reply;
1877 struct vport *vport;
1878 int err;
1879
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001880 reply = ovs_vport_cmd_alloc_info();
1881 if (!reply)
1882 return -ENOMEM;
1883
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001884 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001885 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001886 err = PTR_ERR(vport);
1887 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001888 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001889
1890 if (vport->port_no == OVSP_LOCAL) {
1891 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001892 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001893 }
1894
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001895 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1896 info->snd_seq, 0, OVS_VPORT_CMD_DEL);
1897 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001898 ovs_dp_detach_port(vport);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001899 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001900
Johannes Berg2a94fe42013-11-19 15:19:39 +01001901 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001902 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001903
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001904exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001905 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001906 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001907 return err;
1908}
1909
1910static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
1911{
1912 struct nlattr **a = info->attrs;
1913 struct ovs_header *ovs_header = info->userhdr;
1914 struct sk_buff *reply;
1915 struct vport *vport;
1916 int err;
1917
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001918 reply = ovs_vport_cmd_alloc_info();
1919 if (!reply)
1920 return -ENOMEM;
1921
Jesse Grossccb13522011-10-25 19:26:31 -07001922 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001923 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001924 err = PTR_ERR(vport);
1925 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001926 goto exit_unlock_free;
1927 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1928 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1929 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001930 rcu_read_unlock();
1931
1932 return genlmsg_reply(reply, info);
1933
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001934exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07001935 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001936 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001937 return err;
1938}
1939
1940static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1941{
1942 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
1943 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001944 int bucket = cb->args[0], skip = cb->args[1];
1945 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001946
Jesse Grossccb13522011-10-25 19:26:31 -07001947 rcu_read_lock();
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08001948 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1949 if (!dp) {
1950 rcu_read_unlock();
1951 return -ENODEV;
1952 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001953 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07001954 struct vport *vport;
1955
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001956 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001957 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001958 if (j >= skip &&
1959 ovs_vport_cmd_fill_info(vport, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001960 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001961 cb->nlh->nlmsg_seq,
1962 NLM_F_MULTI,
1963 OVS_VPORT_CMD_NEW) < 0)
1964 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07001965
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001966 j++;
1967 }
1968 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001969 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001970out:
Jesse Grossccb13522011-10-25 19:26:31 -07001971 rcu_read_unlock();
1972
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001973 cb->args[0] = i;
1974 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07001975
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001976 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07001977}
1978
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001979static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
1980 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1981 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
1982 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
1983 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
1984 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1985 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
1986};
1987
stephen hemminger48e48a72014-07-16 11:25:52 -07001988static const struct genl_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001989 { .cmd = OVS_VPORT_CMD_NEW,
1990 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1991 .policy = vport_policy,
1992 .doit = ovs_vport_cmd_new
1993 },
1994 { .cmd = OVS_VPORT_CMD_DEL,
1995 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1996 .policy = vport_policy,
1997 .doit = ovs_vport_cmd_del
1998 },
1999 { .cmd = OVS_VPORT_CMD_GET,
2000 .flags = 0, /* OK for unprivileged users. */
2001 .policy = vport_policy,
2002 .doit = ovs_vport_cmd_get,
2003 .dumpit = ovs_vport_cmd_dump
2004 },
2005 { .cmd = OVS_VPORT_CMD_SET,
2006 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
2007 .policy = vport_policy,
2008 .doit = ovs_vport_cmd_set,
2009 },
2010};
2011
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002012struct genl_family dp_vport_genl_family = {
2013 .id = GENL_ID_GENERATE,
2014 .hdrsize = sizeof(struct ovs_header),
2015 .name = OVS_VPORT_FAMILY,
2016 .version = OVS_VPORT_VERSION,
2017 .maxattr = OVS_VPORT_ATTR_MAX,
2018 .netnsok = true,
2019 .parallel_ops = true,
2020 .ops = dp_vport_genl_ops,
2021 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
2022 .mcgrps = &ovs_dp_vport_multicast_group,
2023 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07002024};
2025
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002026static struct genl_family * const dp_genl_families[] = {
2027 &dp_datapath_genl_family,
2028 &dp_vport_genl_family,
2029 &dp_flow_genl_family,
2030 &dp_packet_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07002031};
2032
2033static void dp_unregister_genl(int n_families)
2034{
2035 int i;
2036
2037 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002038 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002039}
2040
2041static int dp_register_genl(void)
2042{
Jesse Grossccb13522011-10-25 19:26:31 -07002043 int err;
2044 int i;
2045
Jesse Grossccb13522011-10-25 19:26:31 -07002046 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002047
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002048 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002049 if (err)
2050 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002051 }
2052
2053 return 0;
2054
2055error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002056 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002057 return err;
2058}
2059
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002060static int __net_init ovs_init_net(struct net *net)
2061{
2062 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2063
2064 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002065 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002066 return 0;
2067}
2068
2069static void __net_exit ovs_exit_net(struct net *net)
2070{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002071 struct datapath *dp, *dp_next;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002072 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002073
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002074 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002075 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2076 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002077 ovs_unlock();
2078
2079 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002080}
2081
2082static struct pernet_operations ovs_net_ops = {
2083 .init = ovs_init_net,
2084 .exit = ovs_exit_net,
2085 .id = &ovs_net_id,
2086 .size = sizeof(struct ovs_net),
2087};
2088
Jesse Grossccb13522011-10-25 19:26:31 -07002089static int __init dp_init(void)
2090{
Jesse Grossccb13522011-10-25 19:26:31 -07002091 int err;
2092
YOSHIFUJI Hideaki / 吉藤英明3523b292013-01-09 07:19:55 +00002093 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002094
2095 pr_info("Open vSwitch switching datapath\n");
2096
Andy Zhou971427f32014-09-15 19:37:25 -07002097 err = action_fifos_init();
Jesse Grossccb13522011-10-25 19:26:31 -07002098 if (err)
2099 goto error;
2100
Andy Zhou971427f32014-09-15 19:37:25 -07002101 err = ovs_internal_dev_rtnl_link_register();
2102 if (err)
2103 goto error_action_fifos_exit;
2104
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002105 err = ovs_flow_init();
2106 if (err)
2107 goto error_unreg_rtnl_link;
2108
Jesse Grossccb13522011-10-25 19:26:31 -07002109 err = ovs_vport_init();
2110 if (err)
2111 goto error_flow_exit;
2112
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002113 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002114 if (err)
2115 goto error_vport_exit;
2116
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002117 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2118 if (err)
2119 goto error_netns_exit;
2120
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002121 err = ovs_netdev_init();
2122 if (err)
2123 goto error_unreg_notifier;
2124
Jesse Grossccb13522011-10-25 19:26:31 -07002125 err = dp_register_genl();
2126 if (err < 0)
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002127 goto error_unreg_netdev;
Jesse Grossccb13522011-10-25 19:26:31 -07002128
Jesse Grossccb13522011-10-25 19:26:31 -07002129 return 0;
2130
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002131error_unreg_netdev:
2132 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002133error_unreg_notifier:
2134 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002135error_netns_exit:
2136 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002137error_vport_exit:
2138 ovs_vport_exit();
2139error_flow_exit:
2140 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002141error_unreg_rtnl_link:
2142 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002143error_action_fifos_exit:
2144 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002145error:
2146 return err;
2147}
2148
2149static void dp_cleanup(void)
2150{
Jesse Grossccb13522011-10-25 19:26:31 -07002151 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002152 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002153 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002154 unregister_pernet_device(&ovs_net_ops);
2155 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002156 ovs_vport_exit();
2157 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002158 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002159 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002160}
2161
2162module_init(dp_init);
2163module_exit(dp_cleanup);
2164
2165MODULE_DESCRIPTION("Open vSwitch switching datapath");
2166MODULE_LICENSE("GPL");