blob: dc9ff936722102264d3fd1631d0f886928ee9b7f [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"
Andy Zhou96fbc132017-11-10 12:09:42 -080058#include "meter.h"
Jesse Grossccb13522011-10-25 19:26:31 -070059#include "vport-internal_dev.h"
Thomas Grafcff63a52013-04-29 13:06:41 +000060#include "vport-netdev.h"
Jesse Grossccb13522011-10-25 19:26:31 -070061
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030062unsigned int ovs_net_id __read_mostly;
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}
134#endif
135
Jesse Grossccb13522011-10-25 19:26:31 -0700136static struct vport *new_vport(const struct vport_parms *);
Thomas Graf8055a892013-12-13 15:22:20 +0100137static int queue_gso_packets(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800138 const struct sw_flow_key *,
William Tuf2a4d082016-06-10 11:49:33 -0700139 const struct dp_upcall_info *,
140 uint32_t cutlen);
Thomas Graf8055a892013-12-13 15:22:20 +0100141static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800142 const struct sw_flow_key *,
William Tuf2a4d082016-06-10 11:49:33 -0700143 const struct dp_upcall_info *,
144 uint32_t cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700145
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700146/* Must be called with rcu_read_lock or ovs_mutex. */
Andy Zhou971427f32014-09-15 19:37:25 -0700147const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700148{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700149 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Thomas Grafc9db9652015-07-21 10:44:05 +0200150 return ovs_vport_name(vport);
Jesse Grossccb13522011-10-25 19:26:31 -0700151}
152
Thomas Graf12eb18f2014-11-06 06:58:52 -0800153static int get_dpifindex(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700154{
155 struct vport *local;
156 int ifindex;
157
158 rcu_read_lock();
159
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700160 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700161 if (local)
Thomas Grafbe4ace62015-07-21 10:44:04 +0200162 ifindex = local->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700163 else
164 ifindex = 0;
165
166 rcu_read_unlock();
167
168 return ifindex;
169}
170
171static void destroy_dp_rcu(struct rcu_head *rcu)
172{
173 struct datapath *dp = container_of(rcu, struct datapath, rcu);
174
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700175 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700176 free_percpu(dp->stats_percpu);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700177 kfree(dp->ports);
Andy Zhou96fbc132017-11-10 12:09:42 -0800178 ovs_meters_exit(dp);
Jesse Grossccb13522011-10-25 19:26:31 -0700179 kfree(dp);
180}
181
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700182static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
183 u16 port_no)
184{
185 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
186}
187
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700188/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700189struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
190{
191 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700192 struct hlist_head *head;
193
194 head = vport_hash_bucket(dp, port_no);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800195 hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700196 if (vport->port_no == port_no)
197 return vport;
198 }
199 return NULL;
200}
201
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700202/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700203static struct vport *new_vport(const struct vport_parms *parms)
204{
205 struct vport *vport;
206
207 vport = ovs_vport_add(parms);
208 if (!IS_ERR(vport)) {
209 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700210 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700211
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700212 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700213 }
Jesse Grossccb13522011-10-25 19:26:31 -0700214 return vport;
215}
216
Jesse Grossccb13522011-10-25 19:26:31 -0700217void ovs_dp_detach_port(struct vport *p)
218{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700219 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700220
221 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700222 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700223
224 /* Then destroy it. */
225 ovs_vport_del(p);
226}
227
228/* Must be called with rcu_read_lock. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700229void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700230{
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700231 const struct vport *p = OVS_CB(skb)->input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700232 struct datapath *dp = p->dp;
233 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700234 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700235 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700236 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700237 u32 n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700238
Shan Wei404f2f12012-11-13 09:52:25 +0800239 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700240
Jesse Grossccb13522011-10-25 19:26:31 -0700241 /* Look up flow. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700242 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, &n_mask_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700243 if (unlikely(!flow)) {
244 struct dp_upcall_info upcall;
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700245 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700246
Neil McKeeccea7442015-05-26 20:59:43 -0700247 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700248 upcall.cmd = OVS_PACKET_CMD_MISS;
Alex Wang5cd667b2014-07-17 15:14:13 -0700249 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700250 upcall.mru = OVS_CB(skb)->mru;
William Tuf2a4d082016-06-10 11:49:33 -0700251 error = ovs_dp_upcall(dp, skb, key, &upcall, 0);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800252 if (unlikely(error))
253 kfree_skb(skb);
254 else
255 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700256 stats_counter = &stats->n_missed;
257 goto out;
258 }
259
Lorand Jakabd98612b2014-10-06 05:45:32 -0700260 ovs_flow_stats_update(flow, key->tp.flags, skb);
261 sf_acts = rcu_dereference(flow->sf_acts);
262 ovs_execute_actions(dp, skb, sf_acts, key);
Jesse Grossccb13522011-10-25 19:26:31 -0700263
Pravin B Shelare298e502013-10-29 17:22:21 -0700264 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700265
266out:
267 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800268 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700269 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700270 stats->n_mask_hit += n_mask_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800271 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700272}
273
Jesse Grossccb13522011-10-25 19:26:31 -0700274int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800275 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700276 const struct dp_upcall_info *upcall_info,
277 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700278{
279 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700280 int err;
281
Eric W. Biederman15e47302012-09-07 20:12:54 +0000282 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700283 err = -ENOTCONN;
284 goto err;
285 }
286
Jesse Grossccb13522011-10-25 19:26:31 -0700287 if (!skb_is_gso(skb))
William Tuf2a4d082016-06-10 11:49:33 -0700288 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700289 else
William Tuf2a4d082016-06-10 11:49:33 -0700290 err = queue_gso_packets(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700291 if (err)
292 goto err;
293
294 return 0;
295
296err:
Shan Wei404f2f12012-11-13 09:52:25 +0800297 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700298
WANG Congdf9d9fd2014-02-14 15:10:46 -0800299 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700300 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800301 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700302
303 return err;
304}
305
Thomas Graf8055a892013-12-13 15:22:20 +0100306static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800307 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700308 const struct dp_upcall_info *upcall_info,
309 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700310{
Gustavo A. R. Silva27341662017-11-25 13:14:40 -0600311 unsigned int gso_type = skb_shinfo(skb)->gso_type;
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500312 struct sw_flow_key later_key;
Jesse Grossccb13522011-10-25 19:26:31 -0700313 struct sk_buff *segs, *nskb;
314 int err;
315
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +0300316 BUILD_BUG_ON(sizeof(*OVS_CB(skb)) > SKB_SGO_CB_OFFSET);
Thomas Graf09c5e602013-12-13 15:22:22 +0100317 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700318 if (IS_ERR(segs))
319 return PTR_ERR(segs);
Florian Westphal330966e2014-10-20 13:49:17 +0200320 if (segs == NULL)
321 return -EINVAL;
Jesse Grossccb13522011-10-25 19:26:31 -0700322
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500323 if (gso_type & SKB_GSO_UDP) {
324 /* The initial flow key extracted by ovs_flow_key_extract()
325 * in this case is for a first fragment, so we need to
326 * properly mark later fragments.
327 */
328 later_key = *key;
329 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
330 }
331
Jesse Grossccb13522011-10-25 19:26:31 -0700332 /* Queue all of the segments. */
333 skb = segs;
334 do {
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500335 if (gso_type & SKB_GSO_UDP && skb != segs)
336 key = &later_key;
337
William Tuf2a4d082016-06-10 11:49:33 -0700338 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700339 if (err)
340 break;
341
Jesse Grossccb13522011-10-25 19:26:31 -0700342 } while ((skb = skb->next));
343
344 /* Free all of the segments. */
345 skb = segs;
346 do {
347 nskb = skb->next;
348 if (err)
349 kfree_skb(skb);
350 else
351 consume_skb(skb);
352 } while ((skb = nskb));
353 return err;
354}
355
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800356static size_t upcall_msg_size(const struct dp_upcall_info *upcall_info,
Liping Zhang494bea32017-08-16 13:30:07 +0800357 unsigned int hdrlen, int actions_attrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100358{
359 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100360 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
William Tub95e5922016-06-20 07:26:17 -0700361 + nla_total_size(ovs_key_attr_size()) /* OVS_PACKET_ATTR_KEY */
362 + nla_total_size(sizeof(unsigned int)); /* OVS_PACKET_ATTR_LEN */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100363
364 /* OVS_PACKET_ATTR_USERDATA */
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800365 if (upcall_info->userdata)
366 size += NLA_ALIGN(upcall_info->userdata->nla_len);
367
368 /* OVS_PACKET_ATTR_EGRESS_TUN_KEY */
369 if (upcall_info->egress_tun_info)
370 size += nla_total_size(ovs_tun_key_attr_size());
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100371
Neil McKeeccea7442015-05-26 20:59:43 -0700372 /* OVS_PACKET_ATTR_ACTIONS */
373 if (upcall_info->actions_len)
Liping Zhang494bea32017-08-16 13:30:07 +0800374 size += nla_total_size(actions_attrlen);
Neil McKeeccea7442015-05-26 20:59:43 -0700375
Joe Stringer7f8a4362015-08-26 11:31:48 -0700376 /* OVS_PACKET_ATTR_MRU */
377 if (upcall_info->mru)
378 size += nla_total_size(sizeof(upcall_info->mru));
379
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100380 return size;
381}
382
Joe Stringer7f8a4362015-08-26 11:31:48 -0700383static void pad_packet(struct datapath *dp, struct sk_buff *skb)
384{
385 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
386 size_t plen = NLA_ALIGN(skb->len) - skb->len;
387
388 if (plen > 0)
Johannes Bergb080db52017-06-16 14:29:19 +0200389 skb_put_zero(skb, plen);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700390 }
391}
392
Thomas Graf8055a892013-12-13 15:22:20 +0100393static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800394 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700395 const struct dp_upcall_info *upcall_info,
396 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700397{
398 struct ovs_header *upcall;
399 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800400 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700401 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100402 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100403 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100404 int err, dp_ifindex;
405
406 dp_ifindex = get_dpifindex(dp);
407 if (!dp_ifindex)
408 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700409
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100410 if (skb_vlan_tag_present(skb)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700411 nskb = skb_clone(skb, GFP_ATOMIC);
412 if (!nskb)
413 return -ENOMEM;
414
Jiri Pirko59682502014-11-19 14:04:59 +0100415 nskb = __vlan_hwaccel_push_inside(nskb);
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000416 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700417 return -ENOMEM;
418
Jesse Grossccb13522011-10-25 19:26:31 -0700419 skb = nskb;
420 }
421
422 if (nla_attr_size(skb->len) > USHRT_MAX) {
423 err = -EFBIG;
424 goto out;
425 }
426
Thomas Grafbda56f12013-12-13 15:22:21 +0100427 /* Complete checksum if needed */
428 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Davide Caratti75293902017-05-18 15:44:42 +0200429 (err = skb_csum_hwoffload_help(skb, 0)))
Thomas Grafbda56f12013-12-13 15:22:21 +0100430 goto out;
431
432 /* Older versions of OVS user space enforce alignment of the last
433 * Netlink attribute to NLA_ALIGNTO which would require extensive
434 * padding logic. Only perform zerocopy if padding is not required.
435 */
436 if (dp->user_features & OVS_DP_F_UNALIGNED)
437 hlen = skb_zerocopy_headlen(skb);
438 else
439 hlen = skb->len;
440
Liping Zhang494bea32017-08-16 13:30:07 +0800441 len = upcall_msg_size(upcall_info, hlen - cutlen,
442 OVS_CB(skb)->acts_origlen);
Florian Westphal551ddc02016-02-18 15:03:25 +0100443 user_skb = genlmsg_new(len, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700444 if (!user_skb) {
445 err = -ENOMEM;
446 goto out;
447 }
448
449 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
450 0, upcall_info->cmd);
Kangjie Lu6f198932019-03-14 23:20:16 -0500451 if (!upcall) {
452 err = -EINVAL;
453 goto out;
454 }
Jesse Grossccb13522011-10-25 19:26:31 -0700455 upcall->dp_ifindex = dp_ifindex;
456
Joe Stringer5b4237b2015-01-21 16:42:48 -0800457 err = ovs_nla_put_key(key, key, OVS_PACKET_ATTR_KEY, false, user_skb);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400458 if (err)
459 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700460
461 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800462 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
463 nla_len(upcall_info->userdata),
464 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700465
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800466 if (upcall_info->egress_tun_info) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200467 nla = nla_nest_start_noflag(user_skb,
468 OVS_PACKET_ATTR_EGRESS_TUN_KEY);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500469 if (!nla) {
470 err = -EMSGSIZE;
471 goto out;
472 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700473 err = ovs_nla_put_tunnel_info(user_skb,
474 upcall_info->egress_tun_info);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400475 if (err)
476 goto out;
477
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800478 nla_nest_end(user_skb, nla);
479 }
480
Neil McKeeccea7442015-05-26 20:59:43 -0700481 if (upcall_info->actions_len) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200482 nla = nla_nest_start_noflag(user_skb, OVS_PACKET_ATTR_ACTIONS);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500483 if (!nla) {
484 err = -EMSGSIZE;
485 goto out;
486 }
Neil McKeeccea7442015-05-26 20:59:43 -0700487 err = ovs_nla_put_actions(upcall_info->actions,
488 upcall_info->actions_len,
489 user_skb);
490 if (!err)
491 nla_nest_end(user_skb, nla);
492 else
493 nla_nest_cancel(user_skb, nla);
494 }
495
Joe Stringer7f8a4362015-08-26 11:31:48 -0700496 /* Add OVS_PACKET_ATTR_MRU */
497 if (upcall_info->mru) {
498 if (nla_put_u16(user_skb, OVS_PACKET_ATTR_MRU,
499 upcall_info->mru)) {
500 err = -ENOBUFS;
501 goto out;
502 }
503 pad_packet(dp, user_skb);
504 }
505
William Tub95e5922016-06-20 07:26:17 -0700506 /* Add OVS_PACKET_ATTR_LEN when packet is truncated */
507 if (cutlen > 0) {
508 if (nla_put_u32(user_skb, OVS_PACKET_ATTR_LEN,
509 skb->len)) {
510 err = -ENOBUFS;
511 goto out;
512 }
513 pad_packet(dp, user_skb);
514 }
515
Thomas Grafbda56f12013-12-13 15:22:21 +0100516 /* Only reserve room for attribute header, packet data is added
517 * in skb_zerocopy() */
518 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
519 err = -ENOBUFS;
520 goto out;
521 }
William Tuf2a4d082016-06-10 11:49:33 -0700522 nla->nla_len = nla_attr_size(skb->len - cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700523
William Tuf2a4d082016-06-10 11:49:33 -0700524 err = skb_zerocopy(user_skb, skb, skb->len - cutlen, hlen);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000525 if (err)
526 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700527
Thomas Grafaea0bb42014-01-14 16:27:49 +0000528 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700529 pad_packet(dp, user_skb);
Thomas Grafaea0bb42014-01-14 16:27:49 +0000530
Thomas Grafbda56f12013-12-13 15:22:21 +0100531 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
532
Thomas Graf8055a892013-12-13 15:22:20 +0100533 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800534 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700535out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000536 if (err)
537 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800538 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700539 kfree_skb(nskb);
540 return err;
541}
542
Jesse Grossccb13522011-10-25 19:26:31 -0700543static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
544{
545 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700546 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700547 struct nlattr **a = info->attrs;
548 struct sw_flow_actions *acts;
549 struct sk_buff *packet;
550 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700551 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700552 struct datapath *dp;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700553 struct vport *input_vport;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700554 u16 mru = 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700555 int len;
556 int err;
Thomas Graf1ba39802015-01-14 13:56:19 +0000557 bool log = !a[OVS_PACKET_ATTR_PROBE];
Jesse Grossccb13522011-10-25 19:26:31 -0700558
559 err = -EINVAL;
560 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100561 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700562 goto err;
563
564 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
565 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
566 err = -ENOMEM;
567 if (!packet)
568 goto err;
569 skb_reserve(packet, NET_IP_ALIGN);
570
Thomas Graf32686a92013-03-29 14:46:48 +0100571 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700572
Joe Stringer7f8a4362015-08-26 11:31:48 -0700573 /* Set packet's mru */
574 if (a[OVS_PACKET_ATTR_MRU]) {
575 mru = nla_get_u16(a[OVS_PACKET_ATTR_MRU]);
576 packet->ignore_df = 1;
577 }
578 OVS_CB(packet)->mru = mru;
579
Jesse Grossccb13522011-10-25 19:26:31 -0700580 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700581 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700582 err = PTR_ERR(flow);
583 if (IS_ERR(flow))
584 goto err_kfree_skb;
585
Joe Stringerc2ac6672015-08-26 11:31:52 -0700586 err = ovs_flow_key_extract_userspace(net, a[OVS_PACKET_ATTR_KEY],
587 packet, &flow->key, log);
Jesse Grossccb13522011-10-25 19:26:31 -0700588 if (err)
589 goto err_flow_free;
590
Joe Stringer7f8a4362015-08-26 11:31:48 -0700591 err = ovs_nla_copy_actions(net, a[OVS_PACKET_ATTR_ACTIONS],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800592 &flow->key, &acts, log);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700593 if (err)
594 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700595
Jesse Grossf5796682014-10-03 15:35:33 -0700596 rcu_assign_pointer(flow->sf_acts, acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700597 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800598 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700599
600 rcu_read_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700601 dp = get_dp_rcu(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700602 err = -ENODEV;
603 if (!dp)
604 goto err_unlock;
605
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700606 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
607 if (!input_vport)
608 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
609
610 if (!input_vport)
611 goto err_unlock;
612
Joe Stringer7f8a4362015-08-26 11:31:48 -0700613 packet->dev = input_vport->dev;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700614 OVS_CB(packet)->input_vport = input_vport;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700615 sf_acts = rcu_dereference(flow->sf_acts);
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700616
Jesse Grossccb13522011-10-25 19:26:31 -0700617 local_bh_disable();
Lorand Jakabd98612b2014-10-06 05:45:32 -0700618 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700619 local_bh_enable();
620 rcu_read_unlock();
621
Andy Zhou03f0d912013-08-07 20:01:00 -0700622 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700623 return err;
624
625err_unlock:
626 rcu_read_unlock();
627err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700628 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700629err_kfree_skb:
630 kfree_skb(packet);
631err:
632 return err;
633}
634
635static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100636 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700637 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
638 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
Thomas Graf1ba39802015-01-14 13:56:19 +0000639 [OVS_PACKET_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer7f8a4362015-08-26 11:31:48 -0700640 [OVS_PACKET_ATTR_MRU] = { .type = NLA_U16 },
Jesse Grossccb13522011-10-25 19:26:31 -0700641};
642
Johannes Berg4534de82013-11-14 17:14:46 +0100643static const struct genl_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700644 { .cmd = OVS_PACKET_CMD_EXECUTE,
Johannes Bergef6243a2019-04-26 14:07:31 +0200645 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -0700646 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -0700647 .doit = ovs_packet_cmd_execute
648 }
649};
650
Johannes Berg56989f62016-10-24 14:40:05 +0200651static struct genl_family dp_packet_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700652 .hdrsize = sizeof(struct ovs_header),
653 .name = OVS_PACKET_FAMILY,
654 .version = OVS_PACKET_VERSION,
655 .maxattr = OVS_PACKET_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100656 .policy = packet_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700657 .netnsok = true,
658 .parallel_ops = true,
659 .ops = dp_packet_genl_ops,
660 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
Johannes Berg489111e2016-10-24 14:40:03 +0200661 .module = THIS_MODULE,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700662};
663
Thomas Graf12eb18f2014-11-06 06:58:52 -0800664static void get_dp_stats(const struct datapath *dp, struct ovs_dp_stats *stats,
Andy Zhou1bd71162013-10-22 10:42:46 -0700665 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700666{
667 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700668
Andy Zhou1bd71162013-10-22 10:42:46 -0700669 memset(mega_stats, 0, sizeof(*mega_stats));
670
Pravin B Shelarb637e492013-10-04 00:14:23 -0700671 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700672 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700673
674 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700675
Jesse Grossccb13522011-10-25 19:26:31 -0700676 for_each_possible_cpu(i) {
677 const struct dp_stats_percpu *percpu_stats;
678 struct dp_stats_percpu local_stats;
679 unsigned int start;
680
681 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
682
683 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700684 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700685 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700686 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700687
688 stats->n_hit += local_stats.n_hit;
689 stats->n_missed += local_stats.n_missed;
690 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700691 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700692 }
693}
694
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800695static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100696{
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800697 return ovs_identifier_is_ufid(sfid) &&
698 !(ufid_flags & OVS_UFID_F_OMIT_KEY);
699}
700
701static bool should_fill_mask(uint32_t ufid_flags)
702{
703 return !(ufid_flags & OVS_UFID_F_OMIT_MASK);
704}
705
706static bool should_fill_actions(uint32_t ufid_flags)
707{
708 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS);
709}
710
711static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts,
712 const struct sw_flow_id *sfid,
713 uint32_t ufid_flags)
714{
715 size_t len = NLMSG_ALIGN(sizeof(struct ovs_header));
716
717 /* OVS_FLOW_ATTR_UFID */
718 if (sfid && ovs_identifier_is_ufid(sfid))
719 len += nla_total_size(sfid->ufid_len);
720
721 /* OVS_FLOW_ATTR_KEY */
722 if (!sfid || should_fill_key(sfid, ufid_flags))
723 len += nla_total_size(ovs_key_attr_size());
724
725 /* OVS_FLOW_ATTR_MASK */
726 if (should_fill_mask(ufid_flags))
727 len += nla_total_size(ovs_key_attr_size());
728
729 /* OVS_FLOW_ATTR_ACTIONS */
730 if (should_fill_actions(ufid_flags))
Joe Stringer8e2fed12015-08-26 11:31:44 -0700731 len += nla_total_size(acts->orig_len);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800732
733 return len
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200734 + nla_total_size_64bit(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100735 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200736 + nla_total_size_64bit(8); /* OVS_FLOW_ATTR_USED */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100737}
738
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700739/* Called with ovs_mutex or RCU read lock. */
Joe Stringerca7105f2014-09-08 13:09:37 -0700740static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
741 struct sk_buff *skb)
742{
743 struct ovs_flow_stats stats;
744 __be16 tcp_flags;
745 unsigned long used;
Andy Zhou03f0d912013-08-07 20:01:00 -0700746
Pravin B Shelare298e502013-10-29 17:22:21 -0700747 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700748
David S. Miller028d6a62012-03-29 23:20:48 -0400749 if (used &&
Nicolas Dichtel0238b722016-04-25 10:25:17 +0200750 nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
751 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700752 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700753
David S. Miller028d6a62012-03-29 23:20:48 -0400754 if (stats.n_packets &&
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200755 nla_put_64bit(skb, OVS_FLOW_ATTR_STATS,
756 sizeof(struct ovs_flow_stats), &stats,
757 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700758 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700759
Pravin B Shelare298e502013-10-29 17:22:21 -0700760 if ((u8)ntohs(tcp_flags) &&
761 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
Joe Stringerca7105f2014-09-08 13:09:37 -0700762 return -EMSGSIZE;
763
764 return 0;
765}
766
767/* Called with ovs_mutex or RCU read lock. */
768static int ovs_flow_cmd_fill_actions(const struct sw_flow *flow,
769 struct sk_buff *skb, int skb_orig_len)
770{
771 struct nlattr *start;
772 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700773
774 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
775 * this is the first flow to be dumped into 'skb'. This is unusual for
776 * Netlink but individual action lists can be longer than
777 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
778 * The userspace caller can always fetch the actions separately if it
779 * really wants them. (Most userspace callers in fact don't care.)
780 *
781 * This can only fail for dump operations because the skb is always
782 * properly sized for single flows.
783 */
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200784 start = nla_nest_start_noflag(skb, OVS_FLOW_ATTR_ACTIONS);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700785 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700786 const struct sw_flow_actions *sf_acts;
787
Jesse Gross663efa32013-12-03 10:58:53 -0800788 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700789 err = ovs_nla_put_actions(sf_acts->actions,
790 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700791
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700792 if (!err)
793 nla_nest_end(skb, start);
794 else {
795 if (skb_orig_len)
Joe Stringerca7105f2014-09-08 13:09:37 -0700796 return err;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700797
798 nla_nest_cancel(skb, start);
799 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700800 } else if (skb_orig_len) {
801 return -EMSGSIZE;
802 }
803
804 return 0;
805}
806
807/* Called with ovs_mutex or RCU read lock. */
808static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
809 struct sk_buff *skb, u32 portid,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800810 u32 seq, u32 flags, u8 cmd, u32 ufid_flags)
Joe Stringerca7105f2014-09-08 13:09:37 -0700811{
812 const int skb_orig_len = skb->len;
813 struct ovs_header *ovs_header;
814 int err;
815
816 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family,
817 flags, cmd);
818 if (!ovs_header)
819 return -EMSGSIZE;
820
821 ovs_header->dp_ifindex = dp_ifindex;
822
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800823 err = ovs_nla_put_identifier(flow, skb);
Joe Stringer5b4237b2015-01-21 16:42:48 -0800824 if (err)
825 goto error;
826
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800827 if (should_fill_key(&flow->id, ufid_flags)) {
828 err = ovs_nla_put_masked_key(flow, skb);
829 if (err)
830 goto error;
831 }
832
833 if (should_fill_mask(ufid_flags)) {
834 err = ovs_nla_put_mask(flow, skb);
835 if (err)
836 goto error;
837 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700838
839 err = ovs_flow_cmd_fill_stats(flow, skb);
840 if (err)
841 goto error;
842
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800843 if (should_fill_actions(ufid_flags)) {
844 err = ovs_flow_cmd_fill_actions(flow, skb, skb_orig_len);
845 if (err)
846 goto error;
847 }
Jesse Grossccb13522011-10-25 19:26:31 -0700848
Johannes Berg053c0952015-01-16 22:09:00 +0100849 genlmsg_end(skb, ovs_header);
850 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700851
Jesse Grossccb13522011-10-25 19:26:31 -0700852error:
853 genlmsg_cancel(skb, ovs_header);
854 return err;
855}
856
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700857/* May not be called with RCU read lock. */
858static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800859 const struct sw_flow_id *sfid,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700860 struct genl_info *info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800861 bool always,
862 uint32_t ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700863{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700864 struct sk_buff *skb;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800865 size_t len;
Jesse Grossccb13522011-10-25 19:26:31 -0700866
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200867 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700868 return NULL;
869
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800870 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags);
Florian Westphal551ddc02016-02-18 15:03:25 +0100871 skb = genlmsg_new(len, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700872 if (!skb)
873 return ERR_PTR(-ENOMEM);
874
875 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700876}
877
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700878/* Called with ovs_mutex. */
879static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
880 int dp_ifindex,
881 struct genl_info *info, u8 cmd,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800882 bool always, u32 ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700883{
884 struct sk_buff *skb;
885 int retval;
886
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800887 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts),
888 &flow->id, info, always, ufid_flags);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530889 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700890 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700891
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700892 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
893 info->snd_portid, info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800894 cmd, ufid_flags);
Jesse Grossccb13522011-10-25 19:26:31 -0700895 BUG_ON(retval < 0);
896 return skb;
897}
898
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700899static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700900{
Joe Stringer7f8a4362015-08-26 11:31:48 -0700901 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700902 struct nlattr **a = info->attrs;
903 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800904 struct sw_flow *flow = NULL, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700905 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700906 struct sk_buff *reply;
907 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700908 struct sw_flow_actions *acts;
909 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800910 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700911 int error;
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800912 bool log = !a[OVS_FLOW_ATTR_PROBE];
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700913
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700914 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700915 error = -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700916 if (!a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800917 OVS_NLERR(log, "Flow key attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700918 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700919 }
920 if (!a[OVS_FLOW_ATTR_ACTIONS]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800921 OVS_NLERR(log, "Flow actions attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700922 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700923 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700924
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700925 /* Most of the time we need to allocate a new flow, do it before
926 * locking.
927 */
928 new_flow = ovs_flow_alloc();
929 if (IS_ERR(new_flow)) {
930 error = PTR_ERR(new_flow);
931 goto error;
932 }
933
934 /* Extract key. */
pravin shelar22799942016-09-19 13:51:00 -0700935 ovs_match_init(&match, &new_flow->key, false, &mask);
Joe Stringerc2ac6672015-08-26 11:31:52 -0700936 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800937 a[OVS_FLOW_ATTR_MASK], log);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700938 if (error)
939 goto err_kfree_flow;
940
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800941 /* Extract flow identifier. */
942 error = ovs_nla_get_identifier(&new_flow->id, a[OVS_FLOW_ATTR_UFID],
pravin shelar190aa3e72016-09-19 13:50:59 -0700943 &new_flow->key, log);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800944 if (error)
945 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700946
pravin shelar190aa3e72016-09-19 13:50:59 -0700947 /* unmasked key is needed to match when ufid is not used. */
948 if (ovs_identifier_is_key(&new_flow->id))
949 match.key = new_flow->id.unmasked_key;
950
951 ovs_flow_mask_key(&new_flow->key, &new_flow->key, true, &mask);
952
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700953 /* Validate actions. */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700954 error = ovs_nla_copy_actions(net, a[OVS_FLOW_ATTR_ACTIONS],
955 &new_flow->key, &acts, log);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700956 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800957 OVS_NLERR(log, "Flow actions may not be safe on all matching packets.");
Pravin B Shelar2fdb9572014-10-19 11:19:51 -0700958 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700959 }
960
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800961 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false,
962 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700963 if (IS_ERR(reply)) {
964 error = PTR_ERR(reply);
965 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700966 }
967
968 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700969 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700970 if (unlikely(!dp)) {
971 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700972 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700973 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800974
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700975 /* Check if this is a duplicate flow */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800976 if (ovs_identifier_is_ufid(&new_flow->id))
977 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &new_flow->id);
978 if (!flow)
pravin shelar190aa3e72016-09-19 13:50:59 -0700979 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->key);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700980 if (likely(!flow)) {
981 rcu_assign_pointer(new_flow->sf_acts, acts);
982
983 /* Put flow in bucket. */
984 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
985 if (unlikely(error)) {
986 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700987 goto err_unlock_ovs;
988 }
989
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700990 if (unlikely(reply)) {
991 error = ovs_flow_cmd_fill_info(new_flow,
992 ovs_header->dp_ifindex,
993 reply, info->snd_portid,
994 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800995 OVS_FLOW_CMD_NEW,
996 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700997 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700998 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700999 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001000 } else {
1001 struct sw_flow_actions *old_acts;
1002
1003 /* Bail out if we're not allowed to modify an existing flow.
1004 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1005 * because Generic Netlink treats the latter as a dump
1006 * request. We also accept NLM_F_EXCL in case that bug ever
1007 * gets fixed.
1008 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001009 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
1010 | NLM_F_EXCL))) {
1011 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001012 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001013 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001014 /* The flow identifier has to be the same for flow updates.
1015 * Look for any overlapping flow.
1016 */
1017 if (unlikely(!ovs_flow_cmp(flow, &match))) {
1018 if (ovs_identifier_is_key(&flow->id))
1019 flow = ovs_flow_tbl_lookup_exact(&dp->table,
1020 &match);
1021 else /* UFID matches but key is different */
1022 flow = NULL;
Alex Wang4a46b242014-06-30 20:30:29 -07001023 if (!flow) {
1024 error = -ENOENT;
1025 goto err_unlock_ovs;
1026 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001027 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001028 /* Update actions. */
1029 old_acts = ovsl_dereference(flow->sf_acts);
1030 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001031
1032 if (unlikely(reply)) {
1033 error = ovs_flow_cmd_fill_info(flow,
1034 ovs_header->dp_ifindex,
1035 reply, info->snd_portid,
1036 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001037 OVS_FLOW_CMD_NEW,
1038 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001039 BUG_ON(error < 0);
1040 }
1041 ovs_unlock();
1042
Thomas Graf34ae9322015-07-21 10:44:03 +02001043 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001044 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001045 }
1046
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001047 if (reply)
1048 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001049 return 0;
1050
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001051err_unlock_ovs:
1052 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001053 kfree_skb(reply);
1054err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001055 ovs_nla_free_flow_actions(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001056err_kfree_flow:
1057 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001058error:
1059 return error;
1060}
1061
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001062/* Factor out action copy to avoid "Wframe-larger-than=1024" warning. */
Joe Stringer7f8a4362015-08-26 11:31:48 -07001063static struct sw_flow_actions *get_flow_actions(struct net *net,
1064 const struct nlattr *a,
Jesse Gross6b205b22014-10-03 15:35:32 -07001065 const struct sw_flow_key *key,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001066 const struct sw_flow_mask *mask,
1067 bool log)
Jesse Gross6b205b22014-10-03 15:35:32 -07001068{
1069 struct sw_flow_actions *acts;
1070 struct sw_flow_key masked_key;
1071 int error;
1072
Jesse Grossae5f2fb2015-09-21 20:21:20 -07001073 ovs_flow_mask_key(&masked_key, key, true, mask);
Joe Stringer7f8a4362015-08-26 11:31:48 -07001074 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001075 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001076 OVS_NLERR(log,
1077 "Actions may not be safe on all matching packets");
Jesse Gross6b205b22014-10-03 15:35:32 -07001078 return ERR_PTR(error);
1079 }
1080
1081 return acts;
1082}
1083
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001084/* Factor out match-init and action-copy to avoid
1085 * "Wframe-larger-than=1024" warning. Because mask is only
1086 * used to get actions, we new a function to save some
1087 * stack space.
1088 *
1089 * If there are not key and action attrs, we return 0
1090 * directly. In the case, the caller will also not use the
1091 * match as before. If there is action attr, we try to get
1092 * actions and save them to *acts. Before returning from
1093 * the function, we reset the match->mask pointer. Because
1094 * we should not to return match object with dangling reference
1095 * to mask.
1096 * */
1097static int ovs_nla_init_match_and_action(struct net *net,
1098 struct sw_flow_match *match,
1099 struct sw_flow_key *key,
1100 struct nlattr **a,
1101 struct sw_flow_actions **acts,
1102 bool log)
1103{
1104 struct sw_flow_mask mask;
1105 int error = 0;
1106
1107 if (a[OVS_FLOW_ATTR_KEY]) {
1108 ovs_match_init(match, key, true, &mask);
1109 error = ovs_nla_get_match(net, match, a[OVS_FLOW_ATTR_KEY],
1110 a[OVS_FLOW_ATTR_MASK], log);
1111 if (error)
1112 goto error;
1113 }
1114
1115 if (a[OVS_FLOW_ATTR_ACTIONS]) {
1116 if (!a[OVS_FLOW_ATTR_KEY]) {
1117 OVS_NLERR(log,
1118 "Flow key attribute not present in set flow.");
Christophe JAILLET5829e622017-09-11 21:56:20 +02001119 error = -EINVAL;
1120 goto error;
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001121 }
1122
1123 *acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], key,
1124 &mask, log);
1125 if (IS_ERR(*acts)) {
1126 error = PTR_ERR(*acts);
1127 goto error;
1128 }
1129 }
1130
1131 /* On success, error is 0. */
1132error:
1133 match->mask = NULL;
1134 return error;
1135}
1136
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001137static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
1138{
Joe Stringer7f8a4362015-08-26 11:31:48 -07001139 struct net *net = sock_net(skb->sk);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001140 struct nlattr **a = info->attrs;
1141 struct ovs_header *ovs_header = info->userhdr;
Jesse Gross6b205b22014-10-03 15:35:32 -07001142 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001143 struct sw_flow *flow;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001144 struct sk_buff *reply = NULL;
1145 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001146 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001147 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001148 struct sw_flow_id sfid;
1149 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001150 int error = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001151 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001152 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001153
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001154 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log);
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001155 if (!a[OVS_FLOW_ATTR_KEY] && !ufid_present) {
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001156 OVS_NLERR(log,
1157 "Flow set message rejected, Key attribute missing.");
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001158 return -EINVAL;
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001159 }
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001160
1161 error = ovs_nla_init_match_and_action(net, &match, &key, a,
1162 &acts, log);
Jesse Grossccb13522011-10-25 19:26:31 -07001163 if (error)
1164 goto error;
1165
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001166 if (acts) {
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001167 /* Can allocate before locking if have acts. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001168 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false,
1169 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001170 if (IS_ERR(reply)) {
1171 error = PTR_ERR(reply);
1172 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -07001173 }
Jesse Grossccb13522011-10-25 19:26:31 -07001174 }
1175
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001176 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -07001177 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001178 if (unlikely(!dp)) {
1179 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001180 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001181 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001182 /* Check that the flow exists. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001183 if (ufid_present)
1184 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &sfid);
1185 else
1186 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001187 if (unlikely(!flow)) {
1188 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001189 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001190 }
Alex Wang4a46b242014-06-30 20:30:29 -07001191
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001192 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001193 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001194 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001195 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001196
1197 if (unlikely(reply)) {
1198 error = ovs_flow_cmd_fill_info(flow,
1199 ovs_header->dp_ifindex,
1200 reply, info->snd_portid,
1201 info->snd_seq, 0,
Yifeng Sun804fe102018-09-26 11:40:14 -07001202 OVS_FLOW_CMD_SET,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001203 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001204 BUG_ON(error < 0);
1205 }
1206 } else {
1207 /* Could not alloc without acts before locking. */
1208 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
Yifeng Sun804fe102018-09-26 11:40:14 -07001209 info, OVS_FLOW_CMD_SET, false,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001210 ufid_flags);
1211
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301212 if (IS_ERR(reply)) {
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001213 error = PTR_ERR(reply);
1214 goto err_unlock_ovs;
1215 }
Jesse Grossccb13522011-10-25 19:26:31 -07001216 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001217
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001218 /* Clear stats. */
1219 if (a[OVS_FLOW_ATTR_CLEAR])
1220 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001221 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001222
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001223 if (reply)
1224 ovs_notify(&dp_flow_genl_family, reply, info);
1225 if (old_acts)
Thomas Graf34ae9322015-07-21 10:44:03 +02001226 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001227
Jesse Grossccb13522011-10-25 19:26:31 -07001228 return 0;
1229
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001230err_unlock_ovs:
1231 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001232 kfree_skb(reply);
1233err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001234 ovs_nla_free_flow_actions(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001235error:
1236 return error;
1237}
1238
1239static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1240{
1241 struct nlattr **a = info->attrs;
1242 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001243 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001244 struct sw_flow_key key;
1245 struct sk_buff *reply;
1246 struct sw_flow *flow;
1247 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001248 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001249 struct sw_flow_id ufid;
1250 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
1251 int err = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001252 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001253 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001254
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001255 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1256 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001257 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001258 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY], NULL,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001259 log);
1260 } else if (!ufid_present) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001261 OVS_NLERR(log,
1262 "Flow get message rejected, Key attribute missing.");
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001263 err = -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001264 }
Jesse Grossccb13522011-10-25 19:26:31 -07001265 if (err)
1266 return err;
1267
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001268 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001269 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001270 if (!dp) {
1271 err = -ENODEV;
1272 goto unlock;
1273 }
Jesse Grossccb13522011-10-25 19:26:31 -07001274
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001275 if (ufid_present)
1276 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1277 else
1278 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001279 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001280 err = -ENOENT;
1281 goto unlock;
1282 }
Jesse Grossccb13522011-10-25 19:26:31 -07001283
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001284 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
Yifeng Sun804fe102018-09-26 11:40:14 -07001285 OVS_FLOW_CMD_GET, true, ufid_flags);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001286 if (IS_ERR(reply)) {
1287 err = PTR_ERR(reply);
1288 goto unlock;
1289 }
Jesse Grossccb13522011-10-25 19:26:31 -07001290
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001291 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001292 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001293unlock:
1294 ovs_unlock();
1295 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001296}
1297
1298static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1299{
1300 struct nlattr **a = info->attrs;
1301 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001302 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001303 struct sw_flow_key key;
1304 struct sk_buff *reply;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001305 struct sw_flow *flow = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001306 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001307 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001308 struct sw_flow_id ufid;
1309 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001310 int err;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001311 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001312 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001313
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001314 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1315 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001316 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001317 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1318 NULL, log);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001319 if (unlikely(err))
1320 return err;
1321 }
1322
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001323 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001324 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001325 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001326 err = -ENODEV;
1327 goto unlock;
1328 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001329
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001330 if (unlikely(!a[OVS_FLOW_ATTR_KEY] && !ufid_present)) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001331 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001332 goto unlock;
1333 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001334
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001335 if (ufid_present)
1336 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1337 else
1338 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001339 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001340 err = -ENOENT;
1341 goto unlock;
1342 }
Jesse Grossccb13522011-10-25 19:26:31 -07001343
Pravin B Shelarb637e492013-10-04 00:14:23 -07001344 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001345 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001346
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001347 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001348 &flow->id, info, false, ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001349 if (likely(reply)) {
1350 if (likely(!IS_ERR(reply))) {
1351 rcu_read_lock(); /*To keep RCU checker happy. */
1352 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1353 reply, info->snd_portid,
1354 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001355 OVS_FLOW_CMD_DEL,
1356 ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001357 rcu_read_unlock();
1358 BUG_ON(err < 0);
1359
1360 ovs_notify(&dp_flow_genl_family, reply, info);
1361 } else {
1362 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1363 }
1364 }
1365
1366 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001367 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001368unlock:
1369 ovs_unlock();
1370 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001371}
1372
1373static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1374{
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001375 struct nlattr *a[__OVS_FLOW_ATTR_MAX];
Jesse Grossccb13522011-10-25 19:26:31 -07001376 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001377 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001378 struct datapath *dp;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001379 u32 ufid_flags;
1380 int err;
1381
Johannes Berg8cb08172019-04-26 14:07:28 +02001382 err = genlmsg_parse_deprecated(cb->nlh, &dp_flow_genl_family, a,
1383 OVS_FLOW_ATTR_MAX, flow_policy, NULL);
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001384 if (err)
1385 return err;
1386 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001387
Pravin B Shelard57170b2013-07-30 15:39:39 -07001388 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07001389 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001390 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001391 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001392 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001393 }
Jesse Grossccb13522011-10-25 19:26:31 -07001394
Pravin B Shelarb637e492013-10-04 00:14:23 -07001395 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001396 for (;;) {
1397 struct sw_flow *flow;
1398 u32 bucket, obj;
1399
1400 bucket = cb->args[0];
1401 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001402 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001403 if (!flow)
1404 break;
1405
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001406 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001407 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001408 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001409 OVS_FLOW_CMD_GET, ufid_flags) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001410 break;
1411
1412 cb->args[0] = bucket;
1413 cb->args[1] = obj;
1414 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001415 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001416 return skb->len;
1417}
1418
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001419static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1420 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001421 [OVS_FLOW_ATTR_MASK] = { .type = NLA_NESTED },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001422 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1423 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001424 [OVS_FLOW_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001425 [OVS_FLOW_ATTR_UFID] = { .type = NLA_UNSPEC, .len = 1 },
1426 [OVS_FLOW_ATTR_UFID_FLAGS] = { .type = NLA_U32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001427};
1428
stephen hemminger48e48a72014-07-16 11:25:52 -07001429static const struct genl_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001430 { .cmd = OVS_FLOW_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001431 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001432 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001433 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001434 },
1435 { .cmd = OVS_FLOW_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001436 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001437 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001438 .doit = ovs_flow_cmd_del
1439 },
1440 { .cmd = OVS_FLOW_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001441 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001442 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001443 .doit = ovs_flow_cmd_get,
1444 .dumpit = ovs_flow_cmd_dump
1445 },
1446 { .cmd = OVS_FLOW_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001447 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001448 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001449 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001450 },
1451};
1452
Johannes Berg56989f62016-10-24 14:40:05 +02001453static struct genl_family dp_flow_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001454 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001455 .name = OVS_FLOW_FAMILY,
1456 .version = OVS_FLOW_VERSION,
1457 .maxattr = OVS_FLOW_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001458 .policy = flow_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001459 .netnsok = true,
1460 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001461 .ops = dp_flow_genl_ops,
1462 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1463 .mcgrps = &ovs_dp_flow_multicast_group,
1464 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001465 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001466};
1467
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001468static size_t ovs_dp_cmd_msg_size(void)
1469{
1470 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1471
1472 msgsize += nla_total_size(IFNAMSIZ);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001473 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_stats));
1474 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001475 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001476
1477 return msgsize;
1478}
1479
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001480/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -07001481static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001482 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001483{
1484 struct ovs_header *ovs_header;
1485 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001486 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001487 int err;
1488
Eric W. Biederman15e47302012-09-07 20:12:54 +00001489 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001490 flags, cmd);
1491 if (!ovs_header)
1492 goto error;
1493
1494 ovs_header->dp_ifindex = get_dpifindex(dp);
1495
Jesse Grossccb13522011-10-25 19:26:31 -07001496 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001497 if (err)
1498 goto nla_put_failure;
1499
Andy Zhou1bd71162013-10-22 10:42:46 -07001500 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001501 if (nla_put_64bit(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1502 &dp_stats, OVS_DP_ATTR_PAD))
Andy Zhou1bd71162013-10-22 10:42:46 -07001503 goto nla_put_failure;
1504
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001505 if (nla_put_64bit(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1506 sizeof(struct ovs_dp_megaflow_stats),
1507 &dp_megaflow_stats, OVS_DP_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001508 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001509
Thomas Graf43d4be92013-12-13 15:22:18 +01001510 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1511 goto nla_put_failure;
1512
Johannes Berg053c0952015-01-16 22:09:00 +01001513 genlmsg_end(skb, ovs_header);
1514 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001515
1516nla_put_failure:
1517 genlmsg_cancel(skb, ovs_header);
1518error:
1519 return -EMSGSIZE;
1520}
1521
Florian Westphal263ea092016-02-18 15:03:26 +01001522static struct sk_buff *ovs_dp_cmd_alloc_info(void)
Jesse Grossccb13522011-10-25 19:26:31 -07001523{
Florian Westphal551ddc02016-02-18 15:03:25 +01001524 return genlmsg_new(ovs_dp_cmd_msg_size(), GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001525}
1526
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001527/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001528static struct datapath *lookup_datapath(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001529 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001530 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1531{
1532 struct datapath *dp;
1533
1534 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001535 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001536 else {
1537 struct vport *vport;
1538
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001539 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001540 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001541 }
1542 return dp ? dp : ERR_PTR(-ENODEV);
1543}
1544
Thomas Graf44da5ae2013-12-13 15:22:19 +01001545static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1546{
1547 struct datapath *dp;
1548
1549 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001550 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001551 return;
1552
1553 WARN(dp->user_features, "Dropping previously announced user features\n");
1554 dp->user_features = 0;
1555}
1556
Thomas Graf12eb18f2014-11-06 06:58:52 -08001557static void ovs_dp_change(struct datapath *dp, struct nlattr *a[])
Thomas Graf43d4be92013-12-13 15:22:18 +01001558{
1559 if (a[OVS_DP_ATTR_USER_FEATURES])
1560 dp->user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1561}
1562
Jesse Grossccb13522011-10-25 19:26:31 -07001563static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1564{
1565 struct nlattr **a = info->attrs;
1566 struct vport_parms parms;
1567 struct sk_buff *reply;
1568 struct datapath *dp;
1569 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001570 struct ovs_net *ovs_net;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001571 int err, i;
Jesse Grossccb13522011-10-25 19:26:31 -07001572
1573 err = -EINVAL;
1574 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1575 goto err;
1576
Florian Westphal263ea092016-02-18 15:03:26 +01001577 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001578 if (!reply)
1579 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001580
1581 err = -ENOMEM;
1582 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1583 if (dp == NULL)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001584 goto err_free_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001585
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -05001586 ovs_dp_set_net(dp, sock_net(skb->sk));
Jesse Grossccb13522011-10-25 19:26:31 -07001587
1588 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001589 err = ovs_flow_tbl_init(&dp->table);
1590 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001591 goto err_free_dp;
1592
WANG Cong1c213bd2014-02-13 11:46:28 -08001593 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -07001594 if (!dp->stats_percpu) {
1595 err = -ENOMEM;
1596 goto err_destroy_table;
1597 }
1598
Kees Cook6da2ec52018-06-12 13:55:00 -07001599 dp->ports = kmalloc_array(DP_VPORT_HASH_BUCKETS,
1600 sizeof(struct hlist_head),
1601 GFP_KERNEL);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001602 if (!dp->ports) {
1603 err = -ENOMEM;
1604 goto err_destroy_percpu;
1605 }
1606
1607 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1608 INIT_HLIST_HEAD(&dp->ports[i]);
1609
Andy Zhou96fbc132017-11-10 12:09:42 -08001610 err = ovs_meters_init(dp);
1611 if (err)
1612 goto err_destroy_ports_array;
1613
Jesse Grossccb13522011-10-25 19:26:31 -07001614 /* Set up our datapath device. */
1615 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1616 parms.type = OVS_VPORT_TYPE_INTERNAL;
1617 parms.options = NULL;
1618 parms.dp = dp;
1619 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001620 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001621
Thomas Graf43d4be92013-12-13 15:22:18 +01001622 ovs_dp_change(dp, a);
1623
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001624 /* So far only local changes have been made, now need the lock. */
1625 ovs_lock();
1626
Jesse Grossccb13522011-10-25 19:26:31 -07001627 vport = new_vport(&parms);
1628 if (IS_ERR(vport)) {
1629 err = PTR_ERR(vport);
1630 if (err == -EBUSY)
1631 err = -EEXIST;
1632
Thomas Graf44da5ae2013-12-13 15:22:19 +01001633 if (err == -EEXIST) {
1634 /* An outdated user space instance that does not understand
1635 * the concept of user_features has attempted to create a new
1636 * datapath and is likely to reuse it. Drop all user features.
1637 */
1638 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1639 ovs_dp_reset_user_features(skb, info);
1640 }
1641
Andy Zhou96fbc132017-11-10 12:09:42 -08001642 goto err_destroy_meters;
Jesse Grossccb13522011-10-25 19:26:31 -07001643 }
1644
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001645 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1646 info->snd_seq, 0, OVS_DP_CMD_NEW);
1647 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001648
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001649 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001650 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001651
1652 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001653
Johannes Berg2a94fe42013-11-19 15:19:39 +01001654 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001655 return 0;
1656
Andy Zhou96fbc132017-11-10 12:09:42 -08001657err_destroy_meters:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001658 ovs_unlock();
Andy Zhou96fbc132017-11-10 12:09:42 -08001659 ovs_meters_exit(dp);
1660err_destroy_ports_array:
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001661 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -07001662err_destroy_percpu:
1663 free_percpu(dp->stats_percpu);
1664err_destroy_table:
Pravin B Shelar9b996e52014-05-06 18:41:20 -07001665 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -07001666err_free_dp:
1667 kfree(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001668err_free_reply:
1669 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001670err:
1671 return err;
1672}
1673
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001674/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001675static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001676{
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001677 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001678
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001679 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1680 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001681 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001682
Sasha Levinb67bfe02013-02-27 17:06:00 -08001683 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001684 if (vport->port_no != OVSP_LOCAL)
1685 ovs_dp_detach_port(vport);
1686 }
Jesse Grossccb13522011-10-25 19:26:31 -07001687
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001688 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001689
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001690 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001691 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001692 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001693 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001694
Andy Zhoue80857c2014-01-21 09:31:04 -08001695 /* RCU destroy the flow table */
Jesse Grossccb13522011-10-25 19:26:31 -07001696 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001697}
1698
1699static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1700{
1701 struct sk_buff *reply;
1702 struct datapath *dp;
1703 int err;
1704
Florian Westphal263ea092016-02-18 15:03:26 +01001705 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001706 if (!reply)
1707 return -ENOMEM;
1708
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001709 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001710 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1711 err = PTR_ERR(dp);
1712 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001713 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001714
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001715 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1716 info->snd_seq, 0, OVS_DP_CMD_DEL);
1717 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001718
1719 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001720 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001721
Johannes Berg2a94fe42013-11-19 15:19:39 +01001722 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001723
1724 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001725
1726err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001727 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001728 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001729 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001730}
1731
1732static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1733{
1734 struct sk_buff *reply;
1735 struct datapath *dp;
1736 int err;
1737
Florian Westphal263ea092016-02-18 15:03:26 +01001738 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001739 if (!reply)
1740 return -ENOMEM;
1741
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001742 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001743 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001744 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001745 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001746 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001747
Thomas Graf43d4be92013-12-13 15:22:18 +01001748 ovs_dp_change(dp, info->attrs);
1749
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001750 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001751 info->snd_seq, 0, OVS_DP_CMD_SET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001752 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001753
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001754 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001755 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001756
1757 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001758
1759err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001760 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001761 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001762 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001763}
1764
1765static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1766{
1767 struct sk_buff *reply;
1768 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001769 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001770
Florian Westphal263ea092016-02-18 15:03:26 +01001771 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001772 if (!reply)
1773 return -ENOMEM;
1774
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001775 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001776 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001777 if (IS_ERR(dp)) {
1778 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001779 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001780 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001781 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001782 info->snd_seq, 0, OVS_DP_CMD_GET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001783 BUG_ON(err < 0);
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001784 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001785
Jesse Grossccb13522011-10-25 19:26:31 -07001786 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001787
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001788err_unlock_free:
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001789 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001790 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001791 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001792}
1793
1794static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1795{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001796 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001797 struct datapath *dp;
1798 int skip = cb->args[0];
1799 int i = 0;
1800
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001801 ovs_lock();
1802 list_for_each_entry(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001803 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001804 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001805 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001806 OVS_DP_CMD_GET) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001807 break;
1808 i++;
1809 }
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001810 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001811
1812 cb->args[0] = i;
1813
1814 return skb->len;
1815}
1816
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001817static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1818 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1819 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1820 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1821};
1822
stephen hemminger48e48a72014-07-16 11:25:52 -07001823static const struct genl_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001824 { .cmd = OVS_DP_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001825 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001826 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001827 .doit = ovs_dp_cmd_new
1828 },
1829 { .cmd = OVS_DP_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001830 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001831 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001832 .doit = ovs_dp_cmd_del
1833 },
1834 { .cmd = OVS_DP_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001835 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001836 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001837 .doit = ovs_dp_cmd_get,
1838 .dumpit = ovs_dp_cmd_dump
1839 },
1840 { .cmd = OVS_DP_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001841 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001842 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001843 .doit = ovs_dp_cmd_set,
1844 },
1845};
1846
Johannes Berg56989f62016-10-24 14:40:05 +02001847static struct genl_family dp_datapath_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001848 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001849 .name = OVS_DATAPATH_FAMILY,
1850 .version = OVS_DATAPATH_VERSION,
1851 .maxattr = OVS_DP_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001852 .policy = datapath_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001853 .netnsok = true,
1854 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001855 .ops = dp_datapath_genl_ops,
1856 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1857 .mcgrps = &ovs_dp_datapath_multicast_group,
1858 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001859 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001860};
1861
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001862/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001863static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Jiri Benc9354d452017-11-02 17:04:37 -02001864 struct net *net, u32 portid, u32 seq,
1865 u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001866{
1867 struct ovs_header *ovs_header;
1868 struct ovs_vport_stats vport_stats;
1869 int err;
1870
Eric W. Biederman15e47302012-09-07 20:12:54 +00001871 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001872 flags, cmd);
1873 if (!ovs_header)
1874 return -EMSGSIZE;
1875
1876 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1877
David S. Miller028d6a62012-03-29 23:20:48 -04001878 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1879 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001880 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
Jiri Benc9354d452017-11-02 17:04:37 -02001881 ovs_vport_name(vport)) ||
1882 nla_put_u32(skb, OVS_VPORT_ATTR_IFINDEX, vport->dev->ifindex))
David S. Miller028d6a62012-03-29 23:20:48 -04001883 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001884
Jiri Benc9354d452017-11-02 17:04:37 -02001885 if (!net_eq(net, dev_net(vport->dev))) {
1886 int id = peernet2id_alloc(net, dev_net(vport->dev));
1887
1888 if (nla_put_s32(skb, OVS_VPORT_ATTR_NETNSID, id))
1889 goto nla_put_failure;
1890 }
1891
Jesse Grossccb13522011-10-25 19:26:31 -07001892 ovs_vport_get_stats(vport, &vport_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001893 if (nla_put_64bit(skb, OVS_VPORT_ATTR_STATS,
1894 sizeof(struct ovs_vport_stats), &vport_stats,
1895 OVS_VPORT_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001896 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001897
Alex Wang5cd667b2014-07-17 15:14:13 -07001898 if (ovs_vport_get_upcall_portids(vport, skb))
1899 goto nla_put_failure;
1900
Jesse Grossccb13522011-10-25 19:26:31 -07001901 err = ovs_vport_get_options(vport, skb);
1902 if (err == -EMSGSIZE)
1903 goto error;
1904
Johannes Berg053c0952015-01-16 22:09:00 +01001905 genlmsg_end(skb, ovs_header);
1906 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001907
1908nla_put_failure:
1909 err = -EMSGSIZE;
1910error:
1911 genlmsg_cancel(skb, ovs_header);
1912 return err;
1913}
1914
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001915static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1916{
1917 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1918}
1919
1920/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Jiri Benc9354d452017-11-02 17:04:37 -02001921struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, struct net *net,
1922 u32 portid, u32 seq, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001923{
1924 struct sk_buff *skb;
1925 int retval;
1926
1927 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1928 if (!skb)
1929 return ERR_PTR(-ENOMEM);
1930
Jiri Benc9354d452017-11-02 17:04:37 -02001931 retval = ovs_vport_cmd_fill_info(vport, skb, net, portid, seq, 0, cmd);
Jesse Grossa9341512013-03-26 15:48:38 -07001932 BUG_ON(retval < 0);
1933
Jesse Grossccb13522011-10-25 19:26:31 -07001934 return skb;
1935}
1936
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001937/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001938static struct vport *lookup_vport(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001939 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001940 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1941{
1942 struct datapath *dp;
1943 struct vport *vport;
1944
Jiri Benc9354d452017-11-02 17:04:37 -02001945 if (a[OVS_VPORT_ATTR_IFINDEX])
1946 return ERR_PTR(-EOPNOTSUPP);
Jesse Grossccb13522011-10-25 19:26:31 -07001947 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001948 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001949 if (!vport)
1950 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08001951 if (ovs_header->dp_ifindex &&
1952 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1953 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001954 return vport;
1955 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1956 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1957
1958 if (port_no >= DP_MAX_PORTS)
1959 return ERR_PTR(-EFBIG);
1960
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001961 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001962 if (!dp)
1963 return ERR_PTR(-ENODEV);
1964
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001965 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001966 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08001967 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001968 return vport;
1969 } else
1970 return ERR_PTR(-EINVAL);
Jiri Benc9354d452017-11-02 17:04:37 -02001971
Jesse Grossccb13522011-10-25 19:26:31 -07001972}
1973
Paolo Abeni3a927bc2016-02-26 10:45:39 +01001974/* Called with ovs_mutex */
1975static void update_headroom(struct datapath *dp)
1976{
1977 unsigned dev_headroom, max_headroom = 0;
1978 struct net_device *dev;
1979 struct vport *vport;
1980 int i;
1981
1982 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1983 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
1984 dev = vport->dev;
1985 dev_headroom = netdev_get_fwd_headroom(dev);
1986 if (dev_headroom > max_headroom)
1987 max_headroom = dev_headroom;
1988 }
1989 }
1990
1991 dp->max_headroom = max_headroom;
1992 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1993 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node)
1994 netdev_set_rx_headroom(vport->dev, max_headroom);
1995}
1996
Jesse Grossccb13522011-10-25 19:26:31 -07001997static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1998{
1999 struct nlattr **a = info->attrs;
2000 struct ovs_header *ovs_header = info->userhdr;
2001 struct vport_parms parms;
2002 struct sk_buff *reply;
2003 struct vport *vport;
2004 struct datapath *dp;
2005 u32 port_no;
2006 int err;
2007
Jesse Grossccb13522011-10-25 19:26:31 -07002008 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
2009 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002010 return -EINVAL;
Jiri Benc9354d452017-11-02 17:04:37 -02002011 if (a[OVS_VPORT_ATTR_IFINDEX])
2012 return -EOPNOTSUPP;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002013
2014 port_no = a[OVS_VPORT_ATTR_PORT_NO]
2015 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
2016 if (port_no >= DP_MAX_PORTS)
2017 return -EFBIG;
2018
2019 reply = ovs_vport_cmd_alloc_info();
2020 if (!reply)
2021 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07002022
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002023 ovs_lock();
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002024restart:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002025 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002026 err = -ENODEV;
2027 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002028 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002029
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002030 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002031 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002032 err = -EBUSY;
2033 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002034 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002035 } else {
2036 for (port_no = 1; ; port_no++) {
2037 if (port_no >= DP_MAX_PORTS) {
2038 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002039 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002040 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002041 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002042 if (!vport)
2043 break;
2044 }
2045 }
2046
2047 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
2048 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
2049 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
2050 parms.dp = dp;
2051 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07002052 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07002053
2054 vport = new_vport(&parms);
2055 err = PTR_ERR(vport);
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002056 if (IS_ERR(vport)) {
2057 if (err == -EAGAIN)
2058 goto restart;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002059 goto exit_unlock_free;
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002060 }
Jesse Grossccb13522011-10-25 19:26:31 -07002061
Jiri Benc9354d452017-11-02 17:04:37 -02002062 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2063 info->snd_portid, info->snd_seq, 0,
2064 OVS_VPORT_CMD_NEW);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002065
2066 if (netdev_get_fwd_headroom(vport->dev) > dp->max_headroom)
2067 update_headroom(dp);
2068 else
2069 netdev_set_rx_headroom(vport->dev, dp->max_headroom);
2070
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002071 BUG_ON(err < 0);
2072 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01002073
Johannes Berg2a94fe42013-11-19 15:19:39 +01002074 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002075 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002076
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002077exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002078 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002079 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002080 return err;
2081}
2082
2083static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
2084{
2085 struct nlattr **a = info->attrs;
2086 struct sk_buff *reply;
2087 struct vport *vport;
2088 int err;
2089
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002090 reply = ovs_vport_cmd_alloc_info();
2091 if (!reply)
2092 return -ENOMEM;
2093
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002094 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002095 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002096 err = PTR_ERR(vport);
2097 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002098 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002099
Jesse Grossccb13522011-10-25 19:26:31 -07002100 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07002101 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07002102 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002103 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07002104 }
2105
Jesse Grossf44f3402013-05-13 08:15:26 -07002106 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07002107 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07002108 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002109 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07002110 }
Jesse Grossa9341512013-03-26 15:48:38 -07002111
Alex Wang5cd667b2014-07-17 15:14:13 -07002112
2113 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
2114 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
2115
2116 err = ovs_vport_set_upcall_portids(vport, ids);
2117 if (err)
2118 goto exit_unlock_free;
2119 }
Jesse Grossccb13522011-10-25 19:26:31 -07002120
Jiri Benc9354d452017-11-02 17:04:37 -02002121 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2122 info->snd_portid, info->snd_seq, 0,
Yifeng Sun804fe102018-09-26 11:40:14 -07002123 OVS_VPORT_CMD_SET);
Jesse Grossa9341512013-03-26 15:48:38 -07002124 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002125
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002126 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01002127 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002128 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002129
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002130exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002131 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002132 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002133 return err;
2134}
2135
2136static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2137{
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002138 bool must_update_headroom = false;
Jesse Grossccb13522011-10-25 19:26:31 -07002139 struct nlattr **a = info->attrs;
2140 struct sk_buff *reply;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002141 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07002142 struct vport *vport;
2143 int err;
2144
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002145 reply = ovs_vport_cmd_alloc_info();
2146 if (!reply)
2147 return -ENOMEM;
2148
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002149 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002150 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002151 err = PTR_ERR(vport);
2152 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002153 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002154
2155 if (vport->port_no == OVSP_LOCAL) {
2156 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002157 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002158 }
2159
Jiri Benc9354d452017-11-02 17:04:37 -02002160 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2161 info->snd_portid, info->snd_seq, 0,
2162 OVS_VPORT_CMD_DEL);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002163 BUG_ON(err < 0);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002164
2165 /* the vport deletion may trigger dp headroom update */
2166 dp = vport->dp;
2167 if (netdev_get_fwd_headroom(vport->dev) == dp->max_headroom)
2168 must_update_headroom = true;
2169 netdev_reset_rx_headroom(vport->dev);
Jesse Grossccb13522011-10-25 19:26:31 -07002170 ovs_dp_detach_port(vport);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002171
2172 if (must_update_headroom)
2173 update_headroom(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002174 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07002175
Johannes Berg2a94fe42013-11-19 15:19:39 +01002176 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002177 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002178
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002179exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002180 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002181 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002182 return err;
2183}
2184
2185static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2186{
2187 struct nlattr **a = info->attrs;
2188 struct ovs_header *ovs_header = info->userhdr;
2189 struct sk_buff *reply;
2190 struct vport *vport;
2191 int err;
2192
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002193 reply = ovs_vport_cmd_alloc_info();
2194 if (!reply)
2195 return -ENOMEM;
2196
Jesse Grossccb13522011-10-25 19:26:31 -07002197 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002198 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002199 err = PTR_ERR(vport);
2200 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002201 goto exit_unlock_free;
Jiri Benc9354d452017-11-02 17:04:37 -02002202 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2203 info->snd_portid, info->snd_seq, 0,
Yifeng Sun804fe102018-09-26 11:40:14 -07002204 OVS_VPORT_CMD_GET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002205 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002206 rcu_read_unlock();
2207
2208 return genlmsg_reply(reply, info);
2209
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002210exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07002211 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002212 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002213 return err;
2214}
2215
2216static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2217{
2218 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2219 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002220 int bucket = cb->args[0], skip = cb->args[1];
2221 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002222
Jesse Grossccb13522011-10-25 19:26:31 -07002223 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07002224 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08002225 if (!dp) {
2226 rcu_read_unlock();
2227 return -ENODEV;
2228 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002229 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002230 struct vport *vport;
2231
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002232 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002233 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002234 if (j >= skip &&
2235 ovs_vport_cmd_fill_info(vport, skb,
Jiri Benc9354d452017-11-02 17:04:37 -02002236 sock_net(skb->sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002237 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002238 cb->nlh->nlmsg_seq,
2239 NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07002240 OVS_VPORT_CMD_GET) < 0)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002241 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07002242
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002243 j++;
2244 }
2245 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002246 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002247out:
Jesse Grossccb13522011-10-25 19:26:31 -07002248 rcu_read_unlock();
2249
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002250 cb->args[0] = i;
2251 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07002252
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002253 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07002254}
2255
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002256static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
2257 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
2258 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
2259 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
2260 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
2261 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
2262 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
Jiri Benc9354d452017-11-02 17:04:37 -02002263 [OVS_VPORT_ATTR_IFINDEX] = { .type = NLA_U32 },
2264 [OVS_VPORT_ATTR_NETNSID] = { .type = NLA_S32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002265};
2266
stephen hemminger48e48a72014-07-16 11:25:52 -07002267static const struct genl_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07002268 { .cmd = OVS_VPORT_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02002269 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002270 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002271 .doit = ovs_vport_cmd_new
2272 },
2273 { .cmd = OVS_VPORT_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02002274 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002275 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002276 .doit = ovs_vport_cmd_del
2277 },
2278 { .cmd = OVS_VPORT_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002279 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07002280 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07002281 .doit = ovs_vport_cmd_get,
2282 .dumpit = ovs_vport_cmd_dump
2283 },
2284 { .cmd = OVS_VPORT_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002285 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002286 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002287 .doit = ovs_vport_cmd_set,
2288 },
2289};
2290
Johannes Berg56989f62016-10-24 14:40:05 +02002291struct genl_family dp_vport_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002292 .hdrsize = sizeof(struct ovs_header),
2293 .name = OVS_VPORT_FAMILY,
2294 .version = OVS_VPORT_VERSION,
2295 .maxattr = OVS_VPORT_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01002296 .policy = vport_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002297 .netnsok = true,
2298 .parallel_ops = true,
2299 .ops = dp_vport_genl_ops,
2300 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
2301 .mcgrps = &ovs_dp_vport_multicast_group,
2302 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02002303 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07002304};
2305
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002306static struct genl_family * const dp_genl_families[] = {
2307 &dp_datapath_genl_family,
2308 &dp_vport_genl_family,
2309 &dp_flow_genl_family,
2310 &dp_packet_genl_family,
Andy Zhou96fbc132017-11-10 12:09:42 -08002311 &dp_meter_genl_family,
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002312#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
2313 &dp_ct_limit_genl_family,
2314#endif
Jesse Grossccb13522011-10-25 19:26:31 -07002315};
2316
2317static void dp_unregister_genl(int n_families)
2318{
2319 int i;
2320
2321 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002322 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002323}
2324
Johannes Berg56989f62016-10-24 14:40:05 +02002325static int __init dp_register_genl(void)
Jesse Grossccb13522011-10-25 19:26:31 -07002326{
Jesse Grossccb13522011-10-25 19:26:31 -07002327 int err;
2328 int i;
2329
Jesse Grossccb13522011-10-25 19:26:31 -07002330 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002331
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002332 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002333 if (err)
2334 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002335 }
2336
2337 return 0;
2338
2339error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002340 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002341 return err;
2342}
2343
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002344static int __net_init ovs_init_net(struct net *net)
2345{
2346 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2347
2348 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002349 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002350 return ovs_ct_init(net);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002351}
2352
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002353static void __net_exit list_vports_from_net(struct net *net, struct net *dnet,
2354 struct list_head *head)
2355{
2356 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2357 struct datapath *dp;
2358
2359 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2360 int i;
2361
2362 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2363 struct vport *vport;
2364
2365 hlist_for_each_entry(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002366 if (vport->ops->type != OVS_VPORT_TYPE_INTERNAL)
2367 continue;
2368
Thomas Grafbe4ace62015-07-21 10:44:04 +02002369 if (dev_net(vport->dev) == dnet)
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002370 list_add(&vport->detach_list, head);
2371 }
2372 }
2373 }
2374}
2375
2376static void __net_exit ovs_exit_net(struct net *dnet)
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002377{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002378 struct datapath *dp, *dp_next;
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002379 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id);
2380 struct vport *vport, *vport_next;
2381 struct net *net;
2382 LIST_HEAD(head);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002383
Joe Stringerc2ac6672015-08-26 11:31:52 -07002384 ovs_ct_exit(dnet);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002385 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002386 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2387 __dp_destroy(dp);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002388
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002389 down_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002390 for_each_net(net)
2391 list_vports_from_net(net, dnet, &head);
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002392 up_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002393
2394 /* Detach all vports from given namespace. */
2395 list_for_each_entry_safe(vport, vport_next, &head, detach_list) {
2396 list_del(&vport->detach_list);
2397 ovs_dp_detach_port(vport);
2398 }
2399
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002400 ovs_unlock();
2401
2402 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002403}
2404
2405static struct pernet_operations ovs_net_ops = {
2406 .init = ovs_init_net,
2407 .exit = ovs_exit_net,
2408 .id = &ovs_net_id,
2409 .size = sizeof(struct ovs_net),
2410};
2411
Jesse Grossccb13522011-10-25 19:26:31 -07002412static int __init dp_init(void)
2413{
Jesse Grossccb13522011-10-25 19:26:31 -07002414 int err;
2415
YOSHIFUJI Hideaki / 吉藤英明3523b292013-01-09 07:19:55 +00002416 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002417
2418 pr_info("Open vSwitch switching datapath\n");
2419
Andy Zhou971427f32014-09-15 19:37:25 -07002420 err = action_fifos_init();
Jesse Grossccb13522011-10-25 19:26:31 -07002421 if (err)
2422 goto error;
2423
Andy Zhou971427f32014-09-15 19:37:25 -07002424 err = ovs_internal_dev_rtnl_link_register();
2425 if (err)
2426 goto error_action_fifos_exit;
2427
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002428 err = ovs_flow_init();
2429 if (err)
2430 goto error_unreg_rtnl_link;
2431
Jesse Grossccb13522011-10-25 19:26:31 -07002432 err = ovs_vport_init();
2433 if (err)
2434 goto error_flow_exit;
2435
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002436 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002437 if (err)
2438 goto error_vport_exit;
2439
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002440 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2441 if (err)
2442 goto error_netns_exit;
2443
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002444 err = ovs_netdev_init();
2445 if (err)
2446 goto error_unreg_notifier;
2447
Jesse Grossccb13522011-10-25 19:26:31 -07002448 err = dp_register_genl();
2449 if (err < 0)
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002450 goto error_unreg_netdev;
Jesse Grossccb13522011-10-25 19:26:31 -07002451
Jesse Grossccb13522011-10-25 19:26:31 -07002452 return 0;
2453
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002454error_unreg_netdev:
2455 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002456error_unreg_notifier:
2457 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002458error_netns_exit:
2459 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002460error_vport_exit:
2461 ovs_vport_exit();
2462error_flow_exit:
2463 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002464error_unreg_rtnl_link:
2465 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002466error_action_fifos_exit:
2467 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002468error:
2469 return err;
2470}
2471
2472static void dp_cleanup(void)
2473{
Jesse Grossccb13522011-10-25 19:26:31 -07002474 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002475 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002476 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002477 unregister_pernet_device(&ovs_net_ops);
2478 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002479 ovs_vport_exit();
2480 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002481 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002482 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002483}
2484
2485module_init(dp_init);
2486module_exit(dp_cleanup);
2487
2488MODULE_DESCRIPTION("Open vSwitch switching datapath");
2489MODULE_LICENSE("GPL");
Thadeu Lima de Souza Cascardoed227092016-09-09 17:42:30 -03002490MODULE_ALIAS_GENL_FAMILY(OVS_DATAPATH_FAMILY);
2491MODULE_ALIAS_GENL_FAMILY(OVS_VPORT_FAMILY);
2492MODULE_ALIAS_GENL_FAMILY(OVS_FLOW_FAMILY);
2493MODULE_ALIAS_GENL_FAMILY(OVS_PACKET_FAMILY);
Andy Zhou96fbc132017-11-10 12:09:42 -08002494MODULE_ALIAS_GENL_FAMILY(OVS_METER_FAMILY);
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002495MODULE_ALIAS_GENL_FAMILY(OVS_CT_LIMIT_FAMILY);