blob: 453f806afe6e159057aba84060d03fa30621b9a7 [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;
Pravin B Shelar9ba559d2014-11-06 06:44:27 -080062EXPORT_SYMBOL_GPL(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
Joe Stringer74ed7ab2015-01-21 16:42:52 -080068static const struct nla_policy flow_policy[];
69
stephen hemminger48e48a72014-07-16 11:25:52 -070070static const struct genl_multicast_group ovs_dp_flow_multicast_group = {
71 .name = OVS_FLOW_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070072};
73
stephen hemminger48e48a72014-07-16 11:25:52 -070074static const struct genl_multicast_group ovs_dp_datapath_multicast_group = {
75 .name = OVS_DATAPATH_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070076};
77
stephen hemminger48e48a72014-07-16 11:25:52 -070078static const struct genl_multicast_group ovs_dp_vport_multicast_group = {
79 .name = OVS_VPORT_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070080};
81
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070082/* Check if need to build a reply message.
83 * OVS userspace sets the NLM_F_ECHO flag if it needs the reply. */
Samuel Gauthier9b67aa42014-09-18 10:31:04 +020084static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
85 unsigned int group)
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070086{
87 return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
Johannes Bergf8403a22014-12-22 18:56:36 +010088 genl_has_listeners(family, genl_info_net(info), group);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070089}
90
Johannes Berg68eb5502013-11-19 15:19:38 +010091static void ovs_notify(struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +010092 struct sk_buff *skb, struct genl_info *info)
Thomas Grafed661182013-03-29 14:46:50 +010093{
Jiri Benc92c14d92015-09-22 18:56:43 +020094 genl_notify(family, skb, info, 0, 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}
Pravin B Shelar9ba559d2014-11-06 06:44:27 -0800134EXPORT_SYMBOL_GPL(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 *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800139 const struct sw_flow_key *,
William Tuf2a4d082016-06-10 11:49:33 -0700140 const struct dp_upcall_info *,
141 uint32_t cutlen);
Thomas Graf8055a892013-12-13 15:22:20 +0100142static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800143 const struct sw_flow_key *,
William Tuf2a4d082016-06-10 11:49:33 -0700144 const struct dp_upcall_info *,
145 uint32_t cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700146
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700147/* Must be called with rcu_read_lock. */
148static struct datapath *get_dp_rcu(struct net *net, int dp_ifindex)
Jesse Grossccb13522011-10-25 19:26:31 -0700149{
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700150 struct net_device *dev = dev_get_by_index_rcu(net, dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700151
Jesse Grossccb13522011-10-25 19:26:31 -0700152 if (dev) {
153 struct vport *vport = ovs_internal_dev_get_vport(dev);
154 if (vport)
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700155 return vport->dp;
Jesse Grossccb13522011-10-25 19:26:31 -0700156 }
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700157
158 return NULL;
159}
160
161/* The caller must hold either ovs_mutex or rcu_read_lock to keep the
162 * returned dp pointer valid.
163 */
164static inline struct datapath *get_dp(struct net *net, int dp_ifindex)
165{
166 struct datapath *dp;
167
168 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_ovsl_is_held());
169 rcu_read_lock();
170 dp = get_dp_rcu(net, dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700171 rcu_read_unlock();
172
173 return dp;
174}
175
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700176/* Must be called with rcu_read_lock or ovs_mutex. */
Andy Zhou971427f32014-09-15 19:37:25 -0700177const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700178{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700179 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Thomas Grafc9db9652015-07-21 10:44:05 +0200180 return ovs_vport_name(vport);
Jesse Grossccb13522011-10-25 19:26:31 -0700181}
182
Thomas Graf12eb18f2014-11-06 06:58:52 -0800183static int get_dpifindex(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700184{
185 struct vport *local;
186 int ifindex;
187
188 rcu_read_lock();
189
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700190 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700191 if (local)
Thomas Grafbe4ace62015-07-21 10:44:04 +0200192 ifindex = local->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700193 else
194 ifindex = 0;
195
196 rcu_read_unlock();
197
198 return ifindex;
199}
200
201static void destroy_dp_rcu(struct rcu_head *rcu)
202{
203 struct datapath *dp = container_of(rcu, struct datapath, rcu);
204
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700205 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700206 free_percpu(dp->stats_percpu);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700207 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -0700208 kfree(dp);
209}
210
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700211static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
212 u16 port_no)
213{
214 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
215}
216
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700217/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700218struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
219{
220 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700221 struct hlist_head *head;
222
223 head = vport_hash_bucket(dp, port_no);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800224 hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700225 if (vport->port_no == port_no)
226 return vport;
227 }
228 return NULL;
229}
230
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700231/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700232static struct vport *new_vport(const struct vport_parms *parms)
233{
234 struct vport *vport;
235
236 vport = ovs_vport_add(parms);
237 if (!IS_ERR(vport)) {
238 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700239 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700240
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700241 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700242 }
Jesse Grossccb13522011-10-25 19:26:31 -0700243 return vport;
244}
245
Jesse Grossccb13522011-10-25 19:26:31 -0700246void ovs_dp_detach_port(struct vport *p)
247{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700248 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700249
250 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700251 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700252
253 /* Then destroy it. */
254 ovs_vport_del(p);
255}
256
257/* Must be called with rcu_read_lock. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700258void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700259{
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700260 const struct vport *p = OVS_CB(skb)->input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700261 struct datapath *dp = p->dp;
262 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700263 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700264 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700265 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700266 u32 n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700267
Shan Wei404f2f12012-11-13 09:52:25 +0800268 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700269
Jesse Grossccb13522011-10-25 19:26:31 -0700270 /* Look up flow. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700271 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, &n_mask_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700272 if (unlikely(!flow)) {
273 struct dp_upcall_info upcall;
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700274 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700275
Neil McKeeccea7442015-05-26 20:59:43 -0700276 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700277 upcall.cmd = OVS_PACKET_CMD_MISS;
Alex Wang5cd667b2014-07-17 15:14:13 -0700278 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700279 upcall.mru = OVS_CB(skb)->mru;
William Tuf2a4d082016-06-10 11:49:33 -0700280 error = ovs_dp_upcall(dp, skb, key, &upcall, 0);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800281 if (unlikely(error))
282 kfree_skb(skb);
283 else
284 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700285 stats_counter = &stats->n_missed;
286 goto out;
287 }
288
Lorand Jakabd98612b2014-10-06 05:45:32 -0700289 ovs_flow_stats_update(flow, key->tp.flags, skb);
290 sf_acts = rcu_dereference(flow->sf_acts);
291 ovs_execute_actions(dp, skb, sf_acts, key);
Jesse Grossccb13522011-10-25 19:26:31 -0700292
Pravin B Shelare298e502013-10-29 17:22:21 -0700293 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700294
295out:
296 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800297 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700298 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700299 stats->n_mask_hit += n_mask_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800300 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700301}
302
Jesse Grossccb13522011-10-25 19:26:31 -0700303int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800304 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700305 const struct dp_upcall_info *upcall_info,
306 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700307{
308 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700309 int err;
310
Eric W. Biederman15e47302012-09-07 20:12:54 +0000311 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700312 err = -ENOTCONN;
313 goto err;
314 }
315
Jesse Grossccb13522011-10-25 19:26:31 -0700316 if (!skb_is_gso(skb))
William Tuf2a4d082016-06-10 11:49:33 -0700317 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700318 else
William Tuf2a4d082016-06-10 11:49:33 -0700319 err = queue_gso_packets(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700320 if (err)
321 goto err;
322
323 return 0;
324
325err:
Shan Wei404f2f12012-11-13 09:52:25 +0800326 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700327
WANG Congdf9d9fd2014-02-14 15:10:46 -0800328 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700329 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800330 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700331
332 return err;
333}
334
Thomas Graf8055a892013-12-13 15:22:20 +0100335static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800336 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700337 const struct dp_upcall_info *upcall_info,
338 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700339{
Ben Pfaffa1b5d0d2012-07-20 14:47:54 -0700340 unsigned short gso_type = skb_shinfo(skb)->gso_type;
Jesse Grossccb13522011-10-25 19:26:31 -0700341 struct sw_flow_key later_key;
342 struct sk_buff *segs, *nskb;
343 int err;
344
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +0300345 BUILD_BUG_ON(sizeof(*OVS_CB(skb)) > SKB_SGO_CB_OFFSET);
Thomas Graf09c5e602013-12-13 15:22:22 +0100346 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700347 if (IS_ERR(segs))
348 return PTR_ERR(segs);
Florian Westphal330966e2014-10-20 13:49:17 +0200349 if (segs == NULL)
350 return -EINVAL;
Jesse Grossccb13522011-10-25 19:26:31 -0700351
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800352 if (gso_type & SKB_GSO_UDP) {
353 /* The initial flow key extracted by ovs_flow_key_extract()
354 * in this case is for a first fragment, so we need to
355 * properly mark later fragments.
356 */
357 later_key = *key;
358 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
359 }
360
Jesse Grossccb13522011-10-25 19:26:31 -0700361 /* Queue all of the segments. */
362 skb = segs;
363 do {
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800364 if (gso_type & SKB_GSO_UDP && skb != segs)
365 key = &later_key;
366
William Tuf2a4d082016-06-10 11:49:33 -0700367 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700368 if (err)
369 break;
370
Jesse Grossccb13522011-10-25 19:26:31 -0700371 } while ((skb = skb->next));
372
373 /* Free all of the segments. */
374 skb = segs;
375 do {
376 nskb = skb->next;
377 if (err)
378 kfree_skb(skb);
379 else
380 consume_skb(skb);
381 } while ((skb = nskb));
382 return err;
383}
384
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800385static size_t upcall_msg_size(const struct dp_upcall_info *upcall_info,
Liping Zhang3c7af812017-08-16 13:30:07 +0800386 unsigned int hdrlen, int actions_attrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100387{
388 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100389 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
William Tub95e5922016-06-20 07:26:17 -0700390 + nla_total_size(ovs_key_attr_size()) /* OVS_PACKET_ATTR_KEY */
391 + nla_total_size(sizeof(unsigned int)); /* OVS_PACKET_ATTR_LEN */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100392
393 /* OVS_PACKET_ATTR_USERDATA */
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800394 if (upcall_info->userdata)
395 size += NLA_ALIGN(upcall_info->userdata->nla_len);
396
397 /* OVS_PACKET_ATTR_EGRESS_TUN_KEY */
398 if (upcall_info->egress_tun_info)
399 size += nla_total_size(ovs_tun_key_attr_size());
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100400
Neil McKeeccea7442015-05-26 20:59:43 -0700401 /* OVS_PACKET_ATTR_ACTIONS */
402 if (upcall_info->actions_len)
Liping Zhang3c7af812017-08-16 13:30:07 +0800403 size += nla_total_size(actions_attrlen);
Neil McKeeccea7442015-05-26 20:59:43 -0700404
Joe Stringer7f8a4362015-08-26 11:31:48 -0700405 /* OVS_PACKET_ATTR_MRU */
406 if (upcall_info->mru)
407 size += nla_total_size(sizeof(upcall_info->mru));
408
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100409 return size;
410}
411
Joe Stringer7f8a4362015-08-26 11:31:48 -0700412static void pad_packet(struct datapath *dp, struct sk_buff *skb)
413{
414 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
415 size_t plen = NLA_ALIGN(skb->len) - skb->len;
416
417 if (plen > 0)
418 memset(skb_put(skb, plen), 0, plen);
419 }
420}
421
Thomas Graf8055a892013-12-13 15:22:20 +0100422static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800423 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700424 const struct dp_upcall_info *upcall_info,
425 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700426{
427 struct ovs_header *upcall;
428 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800429 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700430 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100431 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100432 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100433 int err, dp_ifindex;
434
435 dp_ifindex = get_dpifindex(dp);
436 if (!dp_ifindex)
437 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700438
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100439 if (skb_vlan_tag_present(skb)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700440 nskb = skb_clone(skb, GFP_ATOMIC);
441 if (!nskb)
442 return -ENOMEM;
443
Jiri Pirko59682502014-11-19 14:04:59 +0100444 nskb = __vlan_hwaccel_push_inside(nskb);
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000445 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700446 return -ENOMEM;
447
Jesse Grossccb13522011-10-25 19:26:31 -0700448 skb = nskb;
449 }
450
451 if (nla_attr_size(skb->len) > USHRT_MAX) {
452 err = -EFBIG;
453 goto out;
454 }
455
Thomas Grafbda56f12013-12-13 15:22:21 +0100456 /* Complete checksum if needed */
457 if (skb->ip_summed == CHECKSUM_PARTIAL &&
458 (err = skb_checksum_help(skb)))
459 goto out;
460
461 /* Older versions of OVS user space enforce alignment of the last
462 * Netlink attribute to NLA_ALIGNTO which would require extensive
463 * padding logic. Only perform zerocopy if padding is not required.
464 */
465 if (dp->user_features & OVS_DP_F_UNALIGNED)
466 hlen = skb_zerocopy_headlen(skb);
467 else
468 hlen = skb->len;
469
Liping Zhang3c7af812017-08-16 13:30:07 +0800470 len = upcall_msg_size(upcall_info, hlen - cutlen,
471 OVS_CB(skb)->acts_origlen);
Florian Westphal551ddc02016-02-18 15:03:25 +0100472 user_skb = genlmsg_new(len, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700473 if (!user_skb) {
474 err = -ENOMEM;
475 goto out;
476 }
477
478 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
479 0, upcall_info->cmd);
480 upcall->dp_ifindex = dp_ifindex;
481
Joe Stringer5b4237b2015-01-21 16:42:48 -0800482 err = ovs_nla_put_key(key, key, OVS_PACKET_ATTR_KEY, false, user_skb);
Andy Zhouf53e3832014-07-17 15:17:44 -0700483 BUG_ON(err);
Jesse Grossccb13522011-10-25 19:26:31 -0700484
485 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800486 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
487 nla_len(upcall_info->userdata),
488 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700489
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800490 if (upcall_info->egress_tun_info) {
491 nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_EGRESS_TUN_KEY);
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700492 err = ovs_nla_put_tunnel_info(user_skb,
493 upcall_info->egress_tun_info);
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800494 BUG_ON(err);
495 nla_nest_end(user_skb, nla);
496 }
497
Neil McKeeccea7442015-05-26 20:59:43 -0700498 if (upcall_info->actions_len) {
499 nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_ACTIONS);
500 err = ovs_nla_put_actions(upcall_info->actions,
501 upcall_info->actions_len,
502 user_skb);
503 if (!err)
504 nla_nest_end(user_skb, nla);
505 else
506 nla_nest_cancel(user_skb, nla);
507 }
508
Joe Stringer7f8a4362015-08-26 11:31:48 -0700509 /* Add OVS_PACKET_ATTR_MRU */
510 if (upcall_info->mru) {
511 if (nla_put_u16(user_skb, OVS_PACKET_ATTR_MRU,
512 upcall_info->mru)) {
513 err = -ENOBUFS;
514 goto out;
515 }
516 pad_packet(dp, user_skb);
517 }
518
William Tub95e5922016-06-20 07:26:17 -0700519 /* Add OVS_PACKET_ATTR_LEN when packet is truncated */
520 if (cutlen > 0) {
521 if (nla_put_u32(user_skb, OVS_PACKET_ATTR_LEN,
522 skb->len)) {
523 err = -ENOBUFS;
524 goto out;
525 }
526 pad_packet(dp, user_skb);
527 }
528
Thomas Grafbda56f12013-12-13 15:22:21 +0100529 /* Only reserve room for attribute header, packet data is added
530 * in skb_zerocopy() */
531 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
532 err = -ENOBUFS;
533 goto out;
534 }
William Tuf2a4d082016-06-10 11:49:33 -0700535 nla->nla_len = nla_attr_size(skb->len - cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700536
William Tuf2a4d082016-06-10 11:49:33 -0700537 err = skb_zerocopy(user_skb, skb, skb->len - cutlen, hlen);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000538 if (err)
539 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700540
Thomas Grafaea0bb42014-01-14 16:27:49 +0000541 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700542 pad_packet(dp, user_skb);
Thomas Grafaea0bb42014-01-14 16:27:49 +0000543
Thomas Grafbda56f12013-12-13 15:22:21 +0100544 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
545
Thomas Graf8055a892013-12-13 15:22:20 +0100546 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800547 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700548out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000549 if (err)
550 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800551 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700552 kfree_skb(nskb);
553 return err;
554}
555
Jesse Grossccb13522011-10-25 19:26:31 -0700556static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
557{
558 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700559 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700560 struct nlattr **a = info->attrs;
561 struct sw_flow_actions *acts;
562 struct sk_buff *packet;
563 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700564 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700565 struct datapath *dp;
566 struct ethhdr *eth;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700567 struct vport *input_vport;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700568 u16 mru = 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700569 int len;
570 int err;
Thomas Graf1ba39802015-01-14 13:56:19 +0000571 bool log = !a[OVS_PACKET_ATTR_PROBE];
Jesse Grossccb13522011-10-25 19:26:31 -0700572
573 err = -EINVAL;
574 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100575 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700576 goto err;
577
578 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
579 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
580 err = -ENOMEM;
581 if (!packet)
582 goto err;
583 skb_reserve(packet, NET_IP_ALIGN);
584
Thomas Graf32686a92013-03-29 14:46:48 +0100585 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700586
587 skb_reset_mac_header(packet);
588 eth = eth_hdr(packet);
589
590 /* Normally, setting the skb 'protocol' field would be handled by a
591 * call to eth_type_trans(), but it assumes there's a sending
592 * device, which we may not have. */
Alexander Duyck6713fc92015-05-04 14:34:05 -0700593 if (eth_proto_is_802_3(eth->h_proto))
Jesse Grossccb13522011-10-25 19:26:31 -0700594 packet->protocol = eth->h_proto;
595 else
596 packet->protocol = htons(ETH_P_802_2);
597
Joe Stringer7f8a4362015-08-26 11:31:48 -0700598 /* Set packet's mru */
599 if (a[OVS_PACKET_ATTR_MRU]) {
600 mru = nla_get_u16(a[OVS_PACKET_ATTR_MRU]);
601 packet->ignore_df = 1;
602 }
603 OVS_CB(packet)->mru = mru;
604
Jesse Grossccb13522011-10-25 19:26:31 -0700605 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700606 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700607 err = PTR_ERR(flow);
608 if (IS_ERR(flow))
609 goto err_kfree_skb;
610
Joe Stringerc2ac6672015-08-26 11:31:52 -0700611 err = ovs_flow_key_extract_userspace(net, a[OVS_PACKET_ATTR_KEY],
612 packet, &flow->key, log);
Jesse Grossccb13522011-10-25 19:26:31 -0700613 if (err)
614 goto err_flow_free;
615
Joe Stringer7f8a4362015-08-26 11:31:48 -0700616 err = ovs_nla_copy_actions(net, a[OVS_PACKET_ATTR_ACTIONS],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800617 &flow->key, &acts, log);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700618 if (err)
619 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700620
Jesse Grossf5796682014-10-03 15:35:33 -0700621 rcu_assign_pointer(flow->sf_acts, acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700622 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800623 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700624
625 rcu_read_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700626 dp = get_dp_rcu(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700627 err = -ENODEV;
628 if (!dp)
629 goto err_unlock;
630
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700631 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
632 if (!input_vport)
633 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
634
635 if (!input_vport)
636 goto err_unlock;
637
Joe Stringer7f8a4362015-08-26 11:31:48 -0700638 packet->dev = input_vport->dev;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700639 OVS_CB(packet)->input_vport = input_vport;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700640 sf_acts = rcu_dereference(flow->sf_acts);
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700641
Jesse Grossccb13522011-10-25 19:26:31 -0700642 local_bh_disable();
Lorand Jakabd98612b2014-10-06 05:45:32 -0700643 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700644 local_bh_enable();
645 rcu_read_unlock();
646
Andy Zhou03f0d912013-08-07 20:01:00 -0700647 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700648 return err;
649
650err_unlock:
651 rcu_read_unlock();
652err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700653 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700654err_kfree_skb:
655 kfree_skb(packet);
656err:
657 return err;
658}
659
660static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100661 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700662 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
663 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
Thomas Graf1ba39802015-01-14 13:56:19 +0000664 [OVS_PACKET_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer7f8a4362015-08-26 11:31:48 -0700665 [OVS_PACKET_ATTR_MRU] = { .type = NLA_U16 },
Jesse Grossccb13522011-10-25 19:26:31 -0700666};
667
Johannes Berg4534de82013-11-14 17:14:46 +0100668static const struct genl_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700669 { .cmd = OVS_PACKET_CMD_EXECUTE,
Tycho Andersen4a926022016-02-05 09:20:52 -0700670 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -0700671 .policy = packet_policy,
672 .doit = ovs_packet_cmd_execute
673 }
674};
675
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700676static struct genl_family dp_packet_genl_family = {
677 .id = GENL_ID_GENERATE,
678 .hdrsize = sizeof(struct ovs_header),
679 .name = OVS_PACKET_FAMILY,
680 .version = OVS_PACKET_VERSION,
681 .maxattr = OVS_PACKET_ATTR_MAX,
682 .netnsok = true,
683 .parallel_ops = true,
684 .ops = dp_packet_genl_ops,
685 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
686};
687
Thomas Graf12eb18f2014-11-06 06:58:52 -0800688static void get_dp_stats(const struct datapath *dp, struct ovs_dp_stats *stats,
Andy Zhou1bd71162013-10-22 10:42:46 -0700689 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700690{
691 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700692
Andy Zhou1bd71162013-10-22 10:42:46 -0700693 memset(mega_stats, 0, sizeof(*mega_stats));
694
Pravin B Shelarb637e492013-10-04 00:14:23 -0700695 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700696 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700697
698 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700699
Jesse Grossccb13522011-10-25 19:26:31 -0700700 for_each_possible_cpu(i) {
701 const struct dp_stats_percpu *percpu_stats;
702 struct dp_stats_percpu local_stats;
703 unsigned int start;
704
705 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
706
707 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700708 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700709 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700710 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700711
712 stats->n_hit += local_stats.n_hit;
713 stats->n_missed += local_stats.n_missed;
714 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700715 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700716 }
717}
718
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800719static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100720{
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800721 return ovs_identifier_is_ufid(sfid) &&
722 !(ufid_flags & OVS_UFID_F_OMIT_KEY);
723}
724
725static bool should_fill_mask(uint32_t ufid_flags)
726{
727 return !(ufid_flags & OVS_UFID_F_OMIT_MASK);
728}
729
730static bool should_fill_actions(uint32_t ufid_flags)
731{
732 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS);
733}
734
735static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts,
736 const struct sw_flow_id *sfid,
737 uint32_t ufid_flags)
738{
739 size_t len = NLMSG_ALIGN(sizeof(struct ovs_header));
740
741 /* OVS_FLOW_ATTR_UFID */
742 if (sfid && ovs_identifier_is_ufid(sfid))
743 len += nla_total_size(sfid->ufid_len);
744
745 /* OVS_FLOW_ATTR_KEY */
746 if (!sfid || should_fill_key(sfid, ufid_flags))
747 len += nla_total_size(ovs_key_attr_size());
748
749 /* OVS_FLOW_ATTR_MASK */
750 if (should_fill_mask(ufid_flags))
751 len += nla_total_size(ovs_key_attr_size());
752
753 /* OVS_FLOW_ATTR_ACTIONS */
754 if (should_fill_actions(ufid_flags))
Joe Stringer8e2fed12015-08-26 11:31:44 -0700755 len += nla_total_size(acts->orig_len);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800756
757 return len
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200758 + nla_total_size_64bit(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100759 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200760 + nla_total_size_64bit(8); /* OVS_FLOW_ATTR_USED */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100761}
762
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700763/* Called with ovs_mutex or RCU read lock. */
Joe Stringerca7105f2014-09-08 13:09:37 -0700764static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
765 struct sk_buff *skb)
766{
767 struct ovs_flow_stats stats;
768 __be16 tcp_flags;
769 unsigned long used;
Andy Zhou03f0d912013-08-07 20:01:00 -0700770
Pravin B Shelare298e502013-10-29 17:22:21 -0700771 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700772
David S. Miller028d6a62012-03-29 23:20:48 -0400773 if (used &&
Nicolas Dichtel0238b722016-04-25 10:25:17 +0200774 nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
775 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700776 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700777
David S. Miller028d6a62012-03-29 23:20:48 -0400778 if (stats.n_packets &&
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200779 nla_put_64bit(skb, OVS_FLOW_ATTR_STATS,
780 sizeof(struct ovs_flow_stats), &stats,
781 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700782 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700783
Pravin B Shelare298e502013-10-29 17:22:21 -0700784 if ((u8)ntohs(tcp_flags) &&
785 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
Joe Stringerca7105f2014-09-08 13:09:37 -0700786 return -EMSGSIZE;
787
788 return 0;
789}
790
791/* Called with ovs_mutex or RCU read lock. */
792static int ovs_flow_cmd_fill_actions(const struct sw_flow *flow,
793 struct sk_buff *skb, int skb_orig_len)
794{
795 struct nlattr *start;
796 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700797
798 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
799 * this is the first flow to be dumped into 'skb'. This is unusual for
800 * Netlink but individual action lists can be longer than
801 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
802 * The userspace caller can always fetch the actions separately if it
803 * really wants them. (Most userspace callers in fact don't care.)
804 *
805 * This can only fail for dump operations because the skb is always
806 * properly sized for single flows.
807 */
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700808 start = nla_nest_start(skb, OVS_FLOW_ATTR_ACTIONS);
809 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700810 const struct sw_flow_actions *sf_acts;
811
Jesse Gross663efa32013-12-03 10:58:53 -0800812 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700813 err = ovs_nla_put_actions(sf_acts->actions,
814 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700815
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700816 if (!err)
817 nla_nest_end(skb, start);
818 else {
819 if (skb_orig_len)
Joe Stringerca7105f2014-09-08 13:09:37 -0700820 return err;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700821
822 nla_nest_cancel(skb, start);
823 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700824 } else if (skb_orig_len) {
825 return -EMSGSIZE;
826 }
827
828 return 0;
829}
830
831/* Called with ovs_mutex or RCU read lock. */
832static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
833 struct sk_buff *skb, u32 portid,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800834 u32 seq, u32 flags, u8 cmd, u32 ufid_flags)
Joe Stringerca7105f2014-09-08 13:09:37 -0700835{
836 const int skb_orig_len = skb->len;
837 struct ovs_header *ovs_header;
838 int err;
839
840 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family,
841 flags, cmd);
842 if (!ovs_header)
843 return -EMSGSIZE;
844
845 ovs_header->dp_ifindex = dp_ifindex;
846
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800847 err = ovs_nla_put_identifier(flow, skb);
Joe Stringer5b4237b2015-01-21 16:42:48 -0800848 if (err)
849 goto error;
850
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800851 if (should_fill_key(&flow->id, ufid_flags)) {
852 err = ovs_nla_put_masked_key(flow, skb);
853 if (err)
854 goto error;
855 }
856
857 if (should_fill_mask(ufid_flags)) {
858 err = ovs_nla_put_mask(flow, skb);
859 if (err)
860 goto error;
861 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700862
863 err = ovs_flow_cmd_fill_stats(flow, skb);
864 if (err)
865 goto error;
866
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800867 if (should_fill_actions(ufid_flags)) {
868 err = ovs_flow_cmd_fill_actions(flow, skb, skb_orig_len);
869 if (err)
870 goto error;
871 }
Jesse Grossccb13522011-10-25 19:26:31 -0700872
Johannes Berg053c0952015-01-16 22:09:00 +0100873 genlmsg_end(skb, ovs_header);
874 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700875
Jesse Grossccb13522011-10-25 19:26:31 -0700876error:
877 genlmsg_cancel(skb, ovs_header);
878 return err;
879}
880
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700881/* May not be called with RCU read lock. */
882static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800883 const struct sw_flow_id *sfid,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700884 struct genl_info *info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800885 bool always,
886 uint32_t ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700887{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700888 struct sk_buff *skb;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800889 size_t len;
Jesse Grossccb13522011-10-25 19:26:31 -0700890
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200891 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700892 return NULL;
893
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800894 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags);
Florian Westphal551ddc02016-02-18 15:03:25 +0100895 skb = genlmsg_new(len, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700896 if (!skb)
897 return ERR_PTR(-ENOMEM);
898
899 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700900}
901
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700902/* Called with ovs_mutex. */
903static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
904 int dp_ifindex,
905 struct genl_info *info, u8 cmd,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800906 bool always, u32 ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700907{
908 struct sk_buff *skb;
909 int retval;
910
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800911 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts),
912 &flow->id, info, always, ufid_flags);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530913 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700914 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700915
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700916 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
917 info->snd_portid, info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800918 cmd, ufid_flags);
Jesse Grossccb13522011-10-25 19:26:31 -0700919 BUG_ON(retval < 0);
920 return skb;
921}
922
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700923static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700924{
Joe Stringer7f8a4362015-08-26 11:31:48 -0700925 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700926 struct nlattr **a = info->attrs;
927 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800928 struct sw_flow *flow = NULL, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700929 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700930 struct sk_buff *reply;
931 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700932 struct sw_flow_actions *acts;
933 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800934 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700935 int error;
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800936 bool log = !a[OVS_FLOW_ATTR_PROBE];
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700937
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700938 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700939 error = -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700940 if (!a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800941 OVS_NLERR(log, "Flow key attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700942 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700943 }
944 if (!a[OVS_FLOW_ATTR_ACTIONS]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800945 OVS_NLERR(log, "Flow actions attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700946 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700947 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700948
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700949 /* Most of the time we need to allocate a new flow, do it before
950 * locking.
951 */
952 new_flow = ovs_flow_alloc();
953 if (IS_ERR(new_flow)) {
954 error = PTR_ERR(new_flow);
955 goto error;
956 }
957
958 /* Extract key. */
pravin shelar22799942016-09-19 13:51:00 -0700959 ovs_match_init(&match, &new_flow->key, false, &mask);
Joe Stringerc2ac6672015-08-26 11:31:52 -0700960 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800961 a[OVS_FLOW_ATTR_MASK], log);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700962 if (error)
963 goto err_kfree_flow;
964
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800965 /* Extract flow identifier. */
966 error = ovs_nla_get_identifier(&new_flow->id, a[OVS_FLOW_ATTR_UFID],
pravin shelar190aa3e2016-09-19 13:50:59 -0700967 &new_flow->key, log);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800968 if (error)
969 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700970
pravin shelar190aa3e2016-09-19 13:50:59 -0700971 /* unmasked key is needed to match when ufid is not used. */
972 if (ovs_identifier_is_key(&new_flow->id))
973 match.key = new_flow->id.unmasked_key;
974
975 ovs_flow_mask_key(&new_flow->key, &new_flow->key, true, &mask);
976
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700977 /* Validate actions. */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700978 error = ovs_nla_copy_actions(net, a[OVS_FLOW_ATTR_ACTIONS],
979 &new_flow->key, &acts, log);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700980 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800981 OVS_NLERR(log, "Flow actions may not be safe on all matching packets.");
Pravin B Shelar2fdb9572014-10-19 11:19:51 -0700982 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700983 }
984
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800985 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false,
986 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700987 if (IS_ERR(reply)) {
988 error = PTR_ERR(reply);
989 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700990 }
991
992 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700993 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700994 if (unlikely(!dp)) {
995 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700996 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700997 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800998
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700999 /* Check if this is a duplicate flow */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001000 if (ovs_identifier_is_ufid(&new_flow->id))
1001 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &new_flow->id);
1002 if (!flow)
pravin shelar190aa3e2016-09-19 13:50:59 -07001003 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->key);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001004 if (likely(!flow)) {
1005 rcu_assign_pointer(new_flow->sf_acts, acts);
1006
1007 /* Put flow in bucket. */
1008 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
1009 if (unlikely(error)) {
1010 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001011 goto err_unlock_ovs;
1012 }
1013
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001014 if (unlikely(reply)) {
1015 error = ovs_flow_cmd_fill_info(new_flow,
1016 ovs_header->dp_ifindex,
1017 reply, info->snd_portid,
1018 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001019 OVS_FLOW_CMD_NEW,
1020 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001021 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001022 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001023 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001024 } else {
1025 struct sw_flow_actions *old_acts;
1026
1027 /* Bail out if we're not allowed to modify an existing flow.
1028 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1029 * because Generic Netlink treats the latter as a dump
1030 * request. We also accept NLM_F_EXCL in case that bug ever
1031 * gets fixed.
1032 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001033 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
1034 | NLM_F_EXCL))) {
1035 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001036 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001037 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001038 /* The flow identifier has to be the same for flow updates.
1039 * Look for any overlapping flow.
1040 */
1041 if (unlikely(!ovs_flow_cmp(flow, &match))) {
1042 if (ovs_identifier_is_key(&flow->id))
1043 flow = ovs_flow_tbl_lookup_exact(&dp->table,
1044 &match);
1045 else /* UFID matches but key is different */
1046 flow = NULL;
Alex Wang4a46b242014-06-30 20:30:29 -07001047 if (!flow) {
1048 error = -ENOENT;
1049 goto err_unlock_ovs;
1050 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001051 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001052 /* Update actions. */
1053 old_acts = ovsl_dereference(flow->sf_acts);
1054 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001055
1056 if (unlikely(reply)) {
1057 error = ovs_flow_cmd_fill_info(flow,
1058 ovs_header->dp_ifindex,
1059 reply, info->snd_portid,
1060 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001061 OVS_FLOW_CMD_NEW,
1062 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001063 BUG_ON(error < 0);
1064 }
1065 ovs_unlock();
1066
Thomas Graf34ae9322015-07-21 10:44:03 +02001067 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001068 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001069 }
1070
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001071 if (reply)
1072 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001073 return 0;
1074
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001075err_unlock_ovs:
1076 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001077 kfree_skb(reply);
1078err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001079 ovs_nla_free_flow_actions(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001080err_kfree_flow:
1081 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001082error:
1083 return error;
1084}
1085
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001086/* Factor out action copy to avoid "Wframe-larger-than=1024" warning. */
Joe Stringer7f8a4362015-08-26 11:31:48 -07001087static struct sw_flow_actions *get_flow_actions(struct net *net,
1088 const struct nlattr *a,
Jesse Gross6b205b22014-10-03 15:35:32 -07001089 const struct sw_flow_key *key,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001090 const struct sw_flow_mask *mask,
1091 bool log)
Jesse Gross6b205b22014-10-03 15:35:32 -07001092{
1093 struct sw_flow_actions *acts;
1094 struct sw_flow_key masked_key;
1095 int error;
1096
Jesse Grossae5f2fb2015-09-21 20:21:20 -07001097 ovs_flow_mask_key(&masked_key, key, true, mask);
Joe Stringer7f8a4362015-08-26 11:31:48 -07001098 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001099 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001100 OVS_NLERR(log,
1101 "Actions may not be safe on all matching packets");
Jesse Gross6b205b22014-10-03 15:35:32 -07001102 return ERR_PTR(error);
1103 }
1104
1105 return acts;
1106}
1107
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001108static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
1109{
Joe Stringer7f8a4362015-08-26 11:31:48 -07001110 struct net *net = sock_net(skb->sk);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001111 struct nlattr **a = info->attrs;
1112 struct ovs_header *ovs_header = info->userhdr;
Jesse Gross6b205b22014-10-03 15:35:32 -07001113 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001114 struct sw_flow *flow;
1115 struct sw_flow_mask mask;
1116 struct sk_buff *reply = NULL;
1117 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001118 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001119 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001120 struct sw_flow_id sfid;
1121 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001122 int error = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001123 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001124 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001125
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001126 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log);
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001127 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001128 ovs_match_init(&match, &key, true, &mask);
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001129 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1130 a[OVS_FLOW_ATTR_MASK], log);
1131 } else if (!ufid_present) {
1132 OVS_NLERR(log,
1133 "Flow set message rejected, Key attribute missing.");
1134 error = -EINVAL;
1135 }
Jesse Grossccb13522011-10-25 19:26:31 -07001136 if (error)
1137 goto error;
1138
1139 /* Validate actions. */
1140 if (a[OVS_FLOW_ATTR_ACTIONS]) {
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001141 if (!a[OVS_FLOW_ATTR_KEY]) {
1142 OVS_NLERR(log,
1143 "Flow key attribute not present in set flow.");
1144 error = -EINVAL;
1145 goto error;
1146 }
1147
Joe Stringer7f8a4362015-08-26 11:31:48 -07001148 acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], &key,
1149 &mask, log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001150 if (IS_ERR(acts)) {
1151 error = PTR_ERR(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001152 goto error;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001153 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001154
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001155 /* Can allocate before locking if have acts. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001156 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false,
1157 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001158 if (IS_ERR(reply)) {
1159 error = PTR_ERR(reply);
1160 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -07001161 }
Jesse Grossccb13522011-10-25 19:26:31 -07001162 }
1163
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001164 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -07001165 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001166 if (unlikely(!dp)) {
1167 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001168 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001169 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001170 /* Check that the flow exists. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001171 if (ufid_present)
1172 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &sfid);
1173 else
1174 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001175 if (unlikely(!flow)) {
1176 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001177 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001178 }
Alex Wang4a46b242014-06-30 20:30:29 -07001179
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001180 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001181 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001182 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001183 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001184
1185 if (unlikely(reply)) {
1186 error = ovs_flow_cmd_fill_info(flow,
1187 ovs_header->dp_ifindex,
1188 reply, info->snd_portid,
1189 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001190 OVS_FLOW_CMD_NEW,
1191 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001192 BUG_ON(error < 0);
1193 }
1194 } else {
1195 /* Could not alloc without acts before locking. */
1196 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001197 info, OVS_FLOW_CMD_NEW, false,
1198 ufid_flags);
1199
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301200 if (IS_ERR(reply)) {
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001201 error = PTR_ERR(reply);
1202 goto err_unlock_ovs;
1203 }
Jesse Grossccb13522011-10-25 19:26:31 -07001204 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001205
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001206 /* Clear stats. */
1207 if (a[OVS_FLOW_ATTR_CLEAR])
1208 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001209 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001210
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001211 if (reply)
1212 ovs_notify(&dp_flow_genl_family, reply, info);
1213 if (old_acts)
Thomas Graf34ae9322015-07-21 10:44:03 +02001214 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001215
Jesse Grossccb13522011-10-25 19:26:31 -07001216 return 0;
1217
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001218err_unlock_ovs:
1219 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001220 kfree_skb(reply);
1221err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001222 ovs_nla_free_flow_actions(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001223error:
1224 return error;
1225}
1226
1227static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1228{
1229 struct nlattr **a = info->attrs;
1230 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001231 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001232 struct sw_flow_key key;
1233 struct sk_buff *reply;
1234 struct sw_flow *flow;
1235 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001236 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001237 struct sw_flow_id ufid;
1238 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
1239 int err = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001240 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001241 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001242
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001243 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1244 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001245 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001246 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY], NULL,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001247 log);
1248 } else if (!ufid_present) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001249 OVS_NLERR(log,
1250 "Flow get message rejected, Key attribute missing.");
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001251 err = -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001252 }
Jesse Grossccb13522011-10-25 19:26:31 -07001253 if (err)
1254 return err;
1255
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001256 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001257 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001258 if (!dp) {
1259 err = -ENODEV;
1260 goto unlock;
1261 }
Jesse Grossccb13522011-10-25 19:26:31 -07001262
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001263 if (ufid_present)
1264 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1265 else
1266 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001267 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001268 err = -ENOENT;
1269 goto unlock;
1270 }
Jesse Grossccb13522011-10-25 19:26:31 -07001271
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001272 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001273 OVS_FLOW_CMD_NEW, true, ufid_flags);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001274 if (IS_ERR(reply)) {
1275 err = PTR_ERR(reply);
1276 goto unlock;
1277 }
Jesse Grossccb13522011-10-25 19:26:31 -07001278
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001279 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001280 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001281unlock:
1282 ovs_unlock();
1283 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001284}
1285
1286static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1287{
1288 struct nlattr **a = info->attrs;
1289 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001290 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001291 struct sw_flow_key key;
1292 struct sk_buff *reply;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001293 struct sw_flow *flow = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001294 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001295 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001296 struct sw_flow_id ufid;
1297 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001298 int err;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001299 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001300 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001301
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001302 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1303 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001304 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001305 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1306 NULL, log);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001307 if (unlikely(err))
1308 return err;
1309 }
1310
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001311 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001312 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001313 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001314 err = -ENODEV;
1315 goto unlock;
1316 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001317
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001318 if (unlikely(!a[OVS_FLOW_ATTR_KEY] && !ufid_present)) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001319 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001320 goto unlock;
1321 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001322
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001323 if (ufid_present)
1324 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1325 else
1326 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001327 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001328 err = -ENOENT;
1329 goto unlock;
1330 }
Jesse Grossccb13522011-10-25 19:26:31 -07001331
Pravin B Shelarb637e492013-10-04 00:14:23 -07001332 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001333 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001334
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001335 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001336 &flow->id, info, false, ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001337 if (likely(reply)) {
1338 if (likely(!IS_ERR(reply))) {
1339 rcu_read_lock(); /*To keep RCU checker happy. */
1340 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1341 reply, info->snd_portid,
1342 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001343 OVS_FLOW_CMD_DEL,
1344 ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001345 rcu_read_unlock();
1346 BUG_ON(err < 0);
1347
1348 ovs_notify(&dp_flow_genl_family, reply, info);
1349 } else {
1350 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1351 }
1352 }
1353
1354 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001355 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001356unlock:
1357 ovs_unlock();
1358 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001359}
1360
1361static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1362{
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001363 struct nlattr *a[__OVS_FLOW_ATTR_MAX];
Jesse Grossccb13522011-10-25 19:26:31 -07001364 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001365 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001366 struct datapath *dp;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001367 u32 ufid_flags;
1368 int err;
1369
1370 err = genlmsg_parse(cb->nlh, &dp_flow_genl_family, a,
1371 OVS_FLOW_ATTR_MAX, flow_policy);
1372 if (err)
1373 return err;
1374 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001375
Pravin B Shelard57170b2013-07-30 15:39:39 -07001376 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07001377 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001378 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001379 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001380 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001381 }
Jesse Grossccb13522011-10-25 19:26:31 -07001382
Pravin B Shelarb637e492013-10-04 00:14:23 -07001383 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001384 for (;;) {
1385 struct sw_flow *flow;
1386 u32 bucket, obj;
1387
1388 bucket = cb->args[0];
1389 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001390 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001391 if (!flow)
1392 break;
1393
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001394 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001395 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001396 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001397 OVS_FLOW_CMD_NEW, ufid_flags) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001398 break;
1399
1400 cb->args[0] = bucket;
1401 cb->args[1] = obj;
1402 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001403 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001404 return skb->len;
1405}
1406
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001407static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1408 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001409 [OVS_FLOW_ATTR_MASK] = { .type = NLA_NESTED },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001410 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1411 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001412 [OVS_FLOW_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001413 [OVS_FLOW_ATTR_UFID] = { .type = NLA_UNSPEC, .len = 1 },
1414 [OVS_FLOW_ATTR_UFID_FLAGS] = { .type = NLA_U32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001415};
1416
stephen hemminger48e48a72014-07-16 11:25:52 -07001417static const struct genl_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001418 { .cmd = OVS_FLOW_CMD_NEW,
Tycho Andersen4a926022016-02-05 09:20:52 -07001419 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001420 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001421 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001422 },
1423 { .cmd = OVS_FLOW_CMD_DEL,
Tycho Andersen4a926022016-02-05 09:20:52 -07001424 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001425 .policy = flow_policy,
1426 .doit = ovs_flow_cmd_del
1427 },
1428 { .cmd = OVS_FLOW_CMD_GET,
1429 .flags = 0, /* OK for unprivileged users. */
1430 .policy = flow_policy,
1431 .doit = ovs_flow_cmd_get,
1432 .dumpit = ovs_flow_cmd_dump
1433 },
1434 { .cmd = OVS_FLOW_CMD_SET,
Tycho Andersen4a926022016-02-05 09:20:52 -07001435 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001436 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001437 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001438 },
1439};
1440
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001441static struct genl_family dp_flow_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001442 .id = GENL_ID_GENERATE,
1443 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001444 .name = OVS_FLOW_FAMILY,
1445 .version = OVS_FLOW_VERSION,
1446 .maxattr = OVS_FLOW_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001447 .netnsok = true,
1448 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001449 .ops = dp_flow_genl_ops,
1450 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1451 .mcgrps = &ovs_dp_flow_multicast_group,
1452 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001453};
1454
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001455static size_t ovs_dp_cmd_msg_size(void)
1456{
1457 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1458
1459 msgsize += nla_total_size(IFNAMSIZ);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001460 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_stats));
1461 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001462 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001463
1464 return msgsize;
1465}
1466
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001467/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -07001468static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001469 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001470{
1471 struct ovs_header *ovs_header;
1472 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001473 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001474 int err;
1475
Eric W. Biederman15e47302012-09-07 20:12:54 +00001476 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001477 flags, cmd);
1478 if (!ovs_header)
1479 goto error;
1480
1481 ovs_header->dp_ifindex = get_dpifindex(dp);
1482
Jesse Grossccb13522011-10-25 19:26:31 -07001483 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001484 if (err)
1485 goto nla_put_failure;
1486
Andy Zhou1bd71162013-10-22 10:42:46 -07001487 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001488 if (nla_put_64bit(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1489 &dp_stats, OVS_DP_ATTR_PAD))
Andy Zhou1bd71162013-10-22 10:42:46 -07001490 goto nla_put_failure;
1491
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001492 if (nla_put_64bit(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1493 sizeof(struct ovs_dp_megaflow_stats),
1494 &dp_megaflow_stats, OVS_DP_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001495 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001496
Thomas Graf43d4be92013-12-13 15:22:18 +01001497 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1498 goto nla_put_failure;
1499
Johannes Berg053c0952015-01-16 22:09:00 +01001500 genlmsg_end(skb, ovs_header);
1501 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001502
1503nla_put_failure:
1504 genlmsg_cancel(skb, ovs_header);
1505error:
1506 return -EMSGSIZE;
1507}
1508
Florian Westphal263ea092016-02-18 15:03:26 +01001509static struct sk_buff *ovs_dp_cmd_alloc_info(void)
Jesse Grossccb13522011-10-25 19:26:31 -07001510{
Florian Westphal551ddc02016-02-18 15:03:25 +01001511 return genlmsg_new(ovs_dp_cmd_msg_size(), GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001512}
1513
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001514/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001515static struct datapath *lookup_datapath(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001516 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001517 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1518{
1519 struct datapath *dp;
1520
1521 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001522 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001523 else {
1524 struct vport *vport;
1525
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001526 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001527 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001528 }
1529 return dp ? dp : ERR_PTR(-ENODEV);
1530}
1531
Thomas Graf44da5ae2013-12-13 15:22:19 +01001532static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1533{
1534 struct datapath *dp;
1535
1536 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001537 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001538 return;
1539
1540 WARN(dp->user_features, "Dropping previously announced user features\n");
1541 dp->user_features = 0;
1542}
1543
Thomas Graf12eb18f2014-11-06 06:58:52 -08001544static void ovs_dp_change(struct datapath *dp, struct nlattr *a[])
Thomas Graf43d4be92013-12-13 15:22:18 +01001545{
1546 if (a[OVS_DP_ATTR_USER_FEATURES])
1547 dp->user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1548}
1549
Jesse Grossccb13522011-10-25 19:26:31 -07001550static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1551{
1552 struct nlattr **a = info->attrs;
1553 struct vport_parms parms;
1554 struct sk_buff *reply;
1555 struct datapath *dp;
1556 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001557 struct ovs_net *ovs_net;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001558 int err, i;
Jesse Grossccb13522011-10-25 19:26:31 -07001559
1560 err = -EINVAL;
1561 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1562 goto err;
1563
Florian Westphal263ea092016-02-18 15:03:26 +01001564 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001565 if (!reply)
1566 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001567
1568 err = -ENOMEM;
1569 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1570 if (dp == NULL)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001571 goto err_free_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001572
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -05001573 ovs_dp_set_net(dp, sock_net(skb->sk));
Jesse Grossccb13522011-10-25 19:26:31 -07001574
1575 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001576 err = ovs_flow_tbl_init(&dp->table);
1577 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001578 goto err_free_dp;
1579
WANG Cong1c213bd2014-02-13 11:46:28 -08001580 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -07001581 if (!dp->stats_percpu) {
1582 err = -ENOMEM;
1583 goto err_destroy_table;
1584 }
1585
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001586 dp->ports = kmalloc(DP_VPORT_HASH_BUCKETS * sizeof(struct hlist_head),
Pravin B Shelare6445712013-10-03 18:16:47 -07001587 GFP_KERNEL);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001588 if (!dp->ports) {
1589 err = -ENOMEM;
1590 goto err_destroy_percpu;
1591 }
1592
1593 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1594 INIT_HLIST_HEAD(&dp->ports[i]);
1595
Jesse Grossccb13522011-10-25 19:26:31 -07001596 /* Set up our datapath device. */
1597 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1598 parms.type = OVS_VPORT_TYPE_INTERNAL;
1599 parms.options = NULL;
1600 parms.dp = dp;
1601 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001602 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001603
Thomas Graf43d4be92013-12-13 15:22:18 +01001604 ovs_dp_change(dp, a);
1605
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001606 /* So far only local changes have been made, now need the lock. */
1607 ovs_lock();
1608
Jesse Grossccb13522011-10-25 19:26:31 -07001609 vport = new_vport(&parms);
1610 if (IS_ERR(vport)) {
1611 err = PTR_ERR(vport);
1612 if (err == -EBUSY)
1613 err = -EEXIST;
1614
Thomas Graf44da5ae2013-12-13 15:22:19 +01001615 if (err == -EEXIST) {
1616 /* An outdated user space instance that does not understand
1617 * the concept of user_features has attempted to create a new
1618 * datapath and is likely to reuse it. Drop all user features.
1619 */
1620 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1621 ovs_dp_reset_user_features(skb, info);
1622 }
1623
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001624 goto err_destroy_ports_array;
Jesse Grossccb13522011-10-25 19:26:31 -07001625 }
1626
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001627 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1628 info->snd_seq, 0, OVS_DP_CMD_NEW);
1629 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001630
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001631 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001632 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001633
1634 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001635
Johannes Berg2a94fe42013-11-19 15:19:39 +01001636 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001637 return 0;
1638
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001639err_destroy_ports_array:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001640 ovs_unlock();
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001641 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -07001642err_destroy_percpu:
1643 free_percpu(dp->stats_percpu);
1644err_destroy_table:
Pravin B Shelar9b996e52014-05-06 18:41:20 -07001645 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -07001646err_free_dp:
1647 kfree(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001648err_free_reply:
1649 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001650err:
1651 return err;
1652}
1653
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001654/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001655static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001656{
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001657 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001658
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001659 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1660 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001661 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001662
Sasha Levinb67bfe02013-02-27 17:06:00 -08001663 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001664 if (vport->port_no != OVSP_LOCAL)
1665 ovs_dp_detach_port(vport);
1666 }
Jesse Grossccb13522011-10-25 19:26:31 -07001667
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001668 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001669
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001670 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001671 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001672 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001673 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001674
Andy Zhoue80857c2014-01-21 09:31:04 -08001675 /* RCU destroy the flow table */
Jesse Grossccb13522011-10-25 19:26:31 -07001676 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001677}
1678
1679static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1680{
1681 struct sk_buff *reply;
1682 struct datapath *dp;
1683 int err;
1684
Florian Westphal263ea092016-02-18 15:03:26 +01001685 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001686 if (!reply)
1687 return -ENOMEM;
1688
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001689 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001690 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1691 err = PTR_ERR(dp);
1692 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001693 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001694
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001695 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1696 info->snd_seq, 0, OVS_DP_CMD_DEL);
1697 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001698
1699 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001700 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001701
Johannes Berg2a94fe42013-11-19 15:19:39 +01001702 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001703
1704 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001705
1706err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001707 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001708 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001709 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001710}
1711
1712static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1713{
1714 struct sk_buff *reply;
1715 struct datapath *dp;
1716 int err;
1717
Florian Westphal263ea092016-02-18 15:03:26 +01001718 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001719 if (!reply)
1720 return -ENOMEM;
1721
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001722 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001723 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001724 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001725 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001726 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001727
Thomas Graf43d4be92013-12-13 15:22:18 +01001728 ovs_dp_change(dp, info->attrs);
1729
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001730 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1731 info->snd_seq, 0, OVS_DP_CMD_NEW);
1732 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001733
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001734 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001735 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001736
1737 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001738
1739err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001740 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001741 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001742 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001743}
1744
1745static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1746{
1747 struct sk_buff *reply;
1748 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001749 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001750
Florian Westphal263ea092016-02-18 15:03:26 +01001751 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001752 if (!reply)
1753 return -ENOMEM;
1754
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001755 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001756 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001757 if (IS_ERR(dp)) {
1758 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001759 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001760 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001761 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1762 info->snd_seq, 0, OVS_DP_CMD_NEW);
1763 BUG_ON(err < 0);
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001764 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001765
Jesse Grossccb13522011-10-25 19:26:31 -07001766 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001767
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001768err_unlock_free:
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001769 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001770 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001771 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001772}
1773
1774static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1775{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001776 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001777 struct datapath *dp;
1778 int skip = cb->args[0];
1779 int i = 0;
1780
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001781 ovs_lock();
1782 list_for_each_entry(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001783 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001784 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001785 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1786 OVS_DP_CMD_NEW) < 0)
1787 break;
1788 i++;
1789 }
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001790 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001791
1792 cb->args[0] = i;
1793
1794 return skb->len;
1795}
1796
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001797static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1798 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1799 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1800 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1801};
1802
stephen hemminger48e48a72014-07-16 11:25:52 -07001803static const struct genl_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001804 { .cmd = OVS_DP_CMD_NEW,
Tycho Andersen4a926022016-02-05 09:20:52 -07001805 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001806 .policy = datapath_policy,
1807 .doit = ovs_dp_cmd_new
1808 },
1809 { .cmd = OVS_DP_CMD_DEL,
Tycho Andersen4a926022016-02-05 09:20:52 -07001810 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001811 .policy = datapath_policy,
1812 .doit = ovs_dp_cmd_del
1813 },
1814 { .cmd = OVS_DP_CMD_GET,
1815 .flags = 0, /* OK for unprivileged users. */
1816 .policy = datapath_policy,
1817 .doit = ovs_dp_cmd_get,
1818 .dumpit = ovs_dp_cmd_dump
1819 },
1820 { .cmd = OVS_DP_CMD_SET,
Tycho Andersen4a926022016-02-05 09:20:52 -07001821 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001822 .policy = datapath_policy,
1823 .doit = ovs_dp_cmd_set,
1824 },
1825};
1826
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001827static struct genl_family dp_datapath_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001828 .id = GENL_ID_GENERATE,
1829 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001830 .name = OVS_DATAPATH_FAMILY,
1831 .version = OVS_DATAPATH_VERSION,
1832 .maxattr = OVS_DP_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001833 .netnsok = true,
1834 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001835 .ops = dp_datapath_genl_ops,
1836 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1837 .mcgrps = &ovs_dp_datapath_multicast_group,
1838 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001839};
1840
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001841/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001842static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001843 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001844{
1845 struct ovs_header *ovs_header;
1846 struct ovs_vport_stats vport_stats;
1847 int err;
1848
Eric W. Biederman15e47302012-09-07 20:12:54 +00001849 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001850 flags, cmd);
1851 if (!ovs_header)
1852 return -EMSGSIZE;
1853
1854 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1855
David S. Miller028d6a62012-03-29 23:20:48 -04001856 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1857 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001858 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
Thomas Grafc9db9652015-07-21 10:44:05 +02001859 ovs_vport_name(vport)))
David S. Miller028d6a62012-03-29 23:20:48 -04001860 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001861
1862 ovs_vport_get_stats(vport, &vport_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001863 if (nla_put_64bit(skb, OVS_VPORT_ATTR_STATS,
1864 sizeof(struct ovs_vport_stats), &vport_stats,
1865 OVS_VPORT_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001866 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001867
Alex Wang5cd667b2014-07-17 15:14:13 -07001868 if (ovs_vport_get_upcall_portids(vport, skb))
1869 goto nla_put_failure;
1870
Jesse Grossccb13522011-10-25 19:26:31 -07001871 err = ovs_vport_get_options(vport, skb);
1872 if (err == -EMSGSIZE)
1873 goto error;
1874
Johannes Berg053c0952015-01-16 22:09:00 +01001875 genlmsg_end(skb, ovs_header);
1876 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001877
1878nla_put_failure:
1879 err = -EMSGSIZE;
1880error:
1881 genlmsg_cancel(skb, ovs_header);
1882 return err;
1883}
1884
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001885static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1886{
1887 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1888}
1889
1890/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001891struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, u32 portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001892 u32 seq, u8 cmd)
1893{
1894 struct sk_buff *skb;
1895 int retval;
1896
1897 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1898 if (!skb)
1899 return ERR_PTR(-ENOMEM);
1900
Eric W. Biederman15e47302012-09-07 20:12:54 +00001901 retval = ovs_vport_cmd_fill_info(vport, skb, portid, seq, 0, cmd);
Jesse Grossa9341512013-03-26 15:48:38 -07001902 BUG_ON(retval < 0);
1903
Jesse Grossccb13522011-10-25 19:26:31 -07001904 return skb;
1905}
1906
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001907/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001908static struct vport *lookup_vport(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001909 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001910 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1911{
1912 struct datapath *dp;
1913 struct vport *vport;
1914
1915 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001916 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001917 if (!vport)
1918 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08001919 if (ovs_header->dp_ifindex &&
1920 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1921 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001922 return vport;
1923 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1924 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1925
1926 if (port_no >= DP_MAX_PORTS)
1927 return ERR_PTR(-EFBIG);
1928
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001929 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001930 if (!dp)
1931 return ERR_PTR(-ENODEV);
1932
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001933 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001934 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08001935 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001936 return vport;
1937 } else
1938 return ERR_PTR(-EINVAL);
1939}
1940
Paolo Abeni3a927bc2016-02-26 10:45:39 +01001941/* Called with ovs_mutex */
1942static void update_headroom(struct datapath *dp)
1943{
1944 unsigned dev_headroom, max_headroom = 0;
1945 struct net_device *dev;
1946 struct vport *vport;
1947 int i;
1948
1949 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1950 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
1951 dev = vport->dev;
1952 dev_headroom = netdev_get_fwd_headroom(dev);
1953 if (dev_headroom > max_headroom)
1954 max_headroom = dev_headroom;
1955 }
1956 }
1957
1958 dp->max_headroom = max_headroom;
1959 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1960 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node)
1961 netdev_set_rx_headroom(vport->dev, max_headroom);
1962}
1963
Jesse Grossccb13522011-10-25 19:26:31 -07001964static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1965{
1966 struct nlattr **a = info->attrs;
1967 struct ovs_header *ovs_header = info->userhdr;
1968 struct vport_parms parms;
1969 struct sk_buff *reply;
1970 struct vport *vport;
1971 struct datapath *dp;
1972 u32 port_no;
1973 int err;
1974
Jesse Grossccb13522011-10-25 19:26:31 -07001975 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
1976 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001977 return -EINVAL;
1978
1979 port_no = a[OVS_VPORT_ATTR_PORT_NO]
1980 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
1981 if (port_no >= DP_MAX_PORTS)
1982 return -EFBIG;
1983
1984 reply = ovs_vport_cmd_alloc_info();
1985 if (!reply)
1986 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001987
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001988 ovs_lock();
Thomas Graf62b9c8d2014-10-22 17:29:06 +02001989restart:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001990 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001991 err = -ENODEV;
1992 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001993 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001994
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001995 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001996 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001997 err = -EBUSY;
1998 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001999 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002000 } else {
2001 for (port_no = 1; ; port_no++) {
2002 if (port_no >= DP_MAX_PORTS) {
2003 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002004 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002005 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002006 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002007 if (!vport)
2008 break;
2009 }
2010 }
2011
2012 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
2013 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
2014 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
2015 parms.dp = dp;
2016 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07002017 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07002018
2019 vport = new_vport(&parms);
2020 err = PTR_ERR(vport);
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002021 if (IS_ERR(vport)) {
2022 if (err == -EAGAIN)
2023 goto restart;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002024 goto exit_unlock_free;
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002025 }
Jesse Grossccb13522011-10-25 19:26:31 -07002026
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002027 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
2028 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002029
2030 if (netdev_get_fwd_headroom(vport->dev) > dp->max_headroom)
2031 update_headroom(dp);
2032 else
2033 netdev_set_rx_headroom(vport->dev, dp->max_headroom);
2034
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002035 BUG_ON(err < 0);
2036 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01002037
Johannes Berg2a94fe42013-11-19 15:19:39 +01002038 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002039 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002040
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002041exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002042 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002043 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002044 return err;
2045}
2046
2047static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
2048{
2049 struct nlattr **a = info->attrs;
2050 struct sk_buff *reply;
2051 struct vport *vport;
2052 int err;
2053
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002054 reply = ovs_vport_cmd_alloc_info();
2055 if (!reply)
2056 return -ENOMEM;
2057
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002058 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002059 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002060 err = PTR_ERR(vport);
2061 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002062 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002063
Jesse Grossccb13522011-10-25 19:26:31 -07002064 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07002065 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07002066 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002067 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07002068 }
2069
Jesse Grossf44f3402013-05-13 08:15:26 -07002070 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07002071 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07002072 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002073 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07002074 }
Jesse Grossa9341512013-03-26 15:48:38 -07002075
Alex Wang5cd667b2014-07-17 15:14:13 -07002076
2077 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
2078 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
2079
2080 err = ovs_vport_set_upcall_portids(vport, ids);
2081 if (err)
2082 goto exit_unlock_free;
2083 }
Jesse Grossccb13522011-10-25 19:26:31 -07002084
Jesse Grossa9341512013-03-26 15:48:38 -07002085 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
2086 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
2087 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002088
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002089 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01002090 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002091 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002092
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002093exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002094 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002095 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002096 return err;
2097}
2098
2099static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2100{
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002101 bool must_update_headroom = false;
Jesse Grossccb13522011-10-25 19:26:31 -07002102 struct nlattr **a = info->attrs;
2103 struct sk_buff *reply;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002104 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07002105 struct vport *vport;
2106 int err;
2107
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002108 reply = ovs_vport_cmd_alloc_info();
2109 if (!reply)
2110 return -ENOMEM;
2111
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002112 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002113 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002114 err = PTR_ERR(vport);
2115 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002116 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002117
2118 if (vport->port_no == OVSP_LOCAL) {
2119 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002120 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002121 }
2122
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002123 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
2124 info->snd_seq, 0, OVS_VPORT_CMD_DEL);
2125 BUG_ON(err < 0);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002126
2127 /* the vport deletion may trigger dp headroom update */
2128 dp = vport->dp;
2129 if (netdev_get_fwd_headroom(vport->dev) == dp->max_headroom)
2130 must_update_headroom = true;
2131 netdev_reset_rx_headroom(vport->dev);
Jesse Grossccb13522011-10-25 19:26:31 -07002132 ovs_dp_detach_port(vport);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002133
2134 if (must_update_headroom)
2135 update_headroom(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002136 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07002137
Johannes Berg2a94fe42013-11-19 15:19:39 +01002138 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002139 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002140
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002141exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002142 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002143 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002144 return err;
2145}
2146
2147static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2148{
2149 struct nlattr **a = info->attrs;
2150 struct ovs_header *ovs_header = info->userhdr;
2151 struct sk_buff *reply;
2152 struct vport *vport;
2153 int err;
2154
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002155 reply = ovs_vport_cmd_alloc_info();
2156 if (!reply)
2157 return -ENOMEM;
2158
Jesse Grossccb13522011-10-25 19:26:31 -07002159 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002160 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002161 err = PTR_ERR(vport);
2162 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002163 goto exit_unlock_free;
2164 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
2165 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
2166 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002167 rcu_read_unlock();
2168
2169 return genlmsg_reply(reply, info);
2170
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002171exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07002172 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002173 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002174 return err;
2175}
2176
2177static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2178{
2179 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2180 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002181 int bucket = cb->args[0], skip = cb->args[1];
2182 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002183
Jesse Grossccb13522011-10-25 19:26:31 -07002184 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07002185 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08002186 if (!dp) {
2187 rcu_read_unlock();
2188 return -ENODEV;
2189 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002190 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002191 struct vport *vport;
2192
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002193 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002194 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002195 if (j >= skip &&
2196 ovs_vport_cmd_fill_info(vport, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002197 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002198 cb->nlh->nlmsg_seq,
2199 NLM_F_MULTI,
2200 OVS_VPORT_CMD_NEW) < 0)
2201 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07002202
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002203 j++;
2204 }
2205 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002206 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002207out:
Jesse Grossccb13522011-10-25 19:26:31 -07002208 rcu_read_unlock();
2209
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002210 cb->args[0] = i;
2211 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07002212
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002213 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07002214}
2215
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002216static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
2217 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
2218 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
2219 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
2220 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
2221 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
2222 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
2223};
2224
stephen hemminger48e48a72014-07-16 11:25:52 -07002225static const struct genl_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07002226 { .cmd = OVS_VPORT_CMD_NEW,
Tycho Andersen4a926022016-02-05 09:20:52 -07002227 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002228 .policy = vport_policy,
2229 .doit = ovs_vport_cmd_new
2230 },
2231 { .cmd = OVS_VPORT_CMD_DEL,
Tycho Andersen4a926022016-02-05 09:20:52 -07002232 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002233 .policy = vport_policy,
2234 .doit = ovs_vport_cmd_del
2235 },
2236 { .cmd = OVS_VPORT_CMD_GET,
2237 .flags = 0, /* OK for unprivileged users. */
2238 .policy = vport_policy,
2239 .doit = ovs_vport_cmd_get,
2240 .dumpit = ovs_vport_cmd_dump
2241 },
2242 { .cmd = OVS_VPORT_CMD_SET,
Tycho Andersen4a926022016-02-05 09:20:52 -07002243 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002244 .policy = vport_policy,
2245 .doit = ovs_vport_cmd_set,
2246 },
2247};
2248
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002249struct genl_family dp_vport_genl_family = {
2250 .id = GENL_ID_GENERATE,
2251 .hdrsize = sizeof(struct ovs_header),
2252 .name = OVS_VPORT_FAMILY,
2253 .version = OVS_VPORT_VERSION,
2254 .maxattr = OVS_VPORT_ATTR_MAX,
2255 .netnsok = true,
2256 .parallel_ops = true,
2257 .ops = dp_vport_genl_ops,
2258 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
2259 .mcgrps = &ovs_dp_vport_multicast_group,
2260 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07002261};
2262
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002263static struct genl_family * const dp_genl_families[] = {
2264 &dp_datapath_genl_family,
2265 &dp_vport_genl_family,
2266 &dp_flow_genl_family,
2267 &dp_packet_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07002268};
2269
2270static void dp_unregister_genl(int n_families)
2271{
2272 int i;
2273
2274 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002275 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002276}
2277
2278static int dp_register_genl(void)
2279{
Jesse Grossccb13522011-10-25 19:26:31 -07002280 int err;
2281 int i;
2282
Jesse Grossccb13522011-10-25 19:26:31 -07002283 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002284
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002285 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002286 if (err)
2287 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002288 }
2289
2290 return 0;
2291
2292error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002293 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002294 return err;
2295}
2296
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002297static int __net_init ovs_init_net(struct net *net)
2298{
2299 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2300
2301 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002302 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Joe Stringerc2ac6672015-08-26 11:31:52 -07002303 ovs_ct_init(net);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002304 return 0;
2305}
2306
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002307static void __net_exit list_vports_from_net(struct net *net, struct net *dnet,
2308 struct list_head *head)
2309{
2310 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2311 struct datapath *dp;
2312
2313 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2314 int i;
2315
2316 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2317 struct vport *vport;
2318
2319 hlist_for_each_entry(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002320 if (vport->ops->type != OVS_VPORT_TYPE_INTERNAL)
2321 continue;
2322
Thomas Grafbe4ace62015-07-21 10:44:04 +02002323 if (dev_net(vport->dev) == dnet)
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002324 list_add(&vport->detach_list, head);
2325 }
2326 }
2327 }
2328}
2329
2330static void __net_exit ovs_exit_net(struct net *dnet)
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002331{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002332 struct datapath *dp, *dp_next;
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002333 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id);
2334 struct vport *vport, *vport_next;
2335 struct net *net;
2336 LIST_HEAD(head);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002337
Joe Stringerc2ac6672015-08-26 11:31:52 -07002338 ovs_ct_exit(dnet);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002339 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002340 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2341 __dp_destroy(dp);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002342
2343 rtnl_lock();
2344 for_each_net(net)
2345 list_vports_from_net(net, dnet, &head);
2346 rtnl_unlock();
2347
2348 /* Detach all vports from given namespace. */
2349 list_for_each_entry_safe(vport, vport_next, &head, detach_list) {
2350 list_del(&vport->detach_list);
2351 ovs_dp_detach_port(vport);
2352 }
2353
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002354 ovs_unlock();
2355
2356 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002357}
2358
2359static struct pernet_operations ovs_net_ops = {
2360 .init = ovs_init_net,
2361 .exit = ovs_exit_net,
2362 .id = &ovs_net_id,
2363 .size = sizeof(struct ovs_net),
2364};
2365
Jesse Grossccb13522011-10-25 19:26:31 -07002366static int __init dp_init(void)
2367{
Jesse Grossccb13522011-10-25 19:26:31 -07002368 int err;
2369
YOSHIFUJI Hideaki / 吉藤英明3523b292013-01-09 07:19:55 +00002370 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002371
2372 pr_info("Open vSwitch switching datapath\n");
2373
Andy Zhou971427f32014-09-15 19:37:25 -07002374 err = action_fifos_init();
Jesse Grossccb13522011-10-25 19:26:31 -07002375 if (err)
2376 goto error;
2377
Andy Zhou971427f32014-09-15 19:37:25 -07002378 err = ovs_internal_dev_rtnl_link_register();
2379 if (err)
2380 goto error_action_fifos_exit;
2381
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002382 err = ovs_flow_init();
2383 if (err)
2384 goto error_unreg_rtnl_link;
2385
Jesse Grossccb13522011-10-25 19:26:31 -07002386 err = ovs_vport_init();
2387 if (err)
2388 goto error_flow_exit;
2389
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002390 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002391 if (err)
2392 goto error_vport_exit;
2393
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002394 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2395 if (err)
2396 goto error_netns_exit;
2397
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002398 err = ovs_netdev_init();
2399 if (err)
2400 goto error_unreg_notifier;
2401
Jesse Grossccb13522011-10-25 19:26:31 -07002402 err = dp_register_genl();
2403 if (err < 0)
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002404 goto error_unreg_netdev;
Jesse Grossccb13522011-10-25 19:26:31 -07002405
Jesse Grossccb13522011-10-25 19:26:31 -07002406 return 0;
2407
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002408error_unreg_netdev:
2409 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002410error_unreg_notifier:
2411 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002412error_netns_exit:
2413 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002414error_vport_exit:
2415 ovs_vport_exit();
2416error_flow_exit:
2417 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002418error_unreg_rtnl_link:
2419 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002420error_action_fifos_exit:
2421 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002422error:
2423 return err;
2424}
2425
2426static void dp_cleanup(void)
2427{
Jesse Grossccb13522011-10-25 19:26:31 -07002428 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002429 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002430 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002431 unregister_pernet_device(&ovs_net_ops);
2432 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002433 ovs_vport_exit();
2434 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002435 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002436 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002437}
2438
2439module_init(dp_init);
2440module_exit(dp_cleanup);
2441
2442MODULE_DESCRIPTION("Open vSwitch switching datapath");
2443MODULE_LICENSE("GPL");
Thadeu Lima de Souza Cascardoed227092016-09-09 17:42:30 -03002444MODULE_ALIAS_GENL_FAMILY(OVS_DATAPATH_FAMILY);
2445MODULE_ALIAS_GENL_FAMILY(OVS_VPORT_FAMILY);
2446MODULE_ALIAS_GENL_FAMILY(OVS_FLOW_FAMILY);
2447MODULE_ALIAS_GENL_FAMILY(OVS_PACKET_FAMILY);