blob: 67ad08320886bac67071eb2e3d87531733b2ab9f [file] [log] [blame]
Thomas Gleixnerc9422992019-05-29 07:12:43 -07001// SPDX-License-Identifier: GPL-2.0-only
Jesse Grossccb13522011-10-25 19:26:31 -07002/*
Ben Pfaffad552002014-05-06 16:48:38 -07003 * Copyright (c) 2007-2014 Nicira, Inc.
Jesse Grossccb13522011-10-25 19:26:31 -07004 */
5
6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
8#include <linux/init.h>
9#include <linux/module.h>
10#include <linux/if_arp.h>
11#include <linux/if_vlan.h>
12#include <linux/in.h>
13#include <linux/ip.h>
14#include <linux/jhash.h>
15#include <linux/delay.h>
16#include <linux/time.h>
17#include <linux/etherdevice.h>
18#include <linux/genetlink.h>
19#include <linux/kernel.h>
20#include <linux/kthread.h>
21#include <linux/mutex.h>
22#include <linux/percpu.h>
23#include <linux/rcupdate.h>
24#include <linux/tcp.h>
25#include <linux/udp.h>
Jesse Grossccb13522011-10-25 19:26:31 -070026#include <linux/ethtool.h>
27#include <linux/wait.h>
Jesse Grossccb13522011-10-25 19:26:31 -070028#include <asm/div64.h>
29#include <linux/highmem.h>
30#include <linux/netfilter_bridge.h>
31#include <linux/netfilter_ipv4.h>
32#include <linux/inetdevice.h>
33#include <linux/list.h>
34#include <linux/openvswitch.h>
35#include <linux/rculist.h>
36#include <linux/dmi.h>
Jesse Grossccb13522011-10-25 19:26:31 -070037#include <net/genetlink.h>
Pravin B Shelar46df7b82012-02-22 19:58:59 -080038#include <net/net_namespace.h>
39#include <net/netns/generic.h>
Jesse Grossccb13522011-10-25 19:26:31 -070040
41#include "datapath.h"
42#include "flow.h"
Andy Zhoue80857c2014-01-21 09:31:04 -080043#include "flow_table.h"
Pravin B Shelare6445712013-10-03 18:16:47 -070044#include "flow_netlink.h"
Andy Zhou96fbc132017-11-10 12:09:42 -080045#include "meter.h"
Aaron Conolec4ab7b52021-06-22 10:02:33 -040046#include "openvswitch_trace.h"
Jesse Grossccb13522011-10-25 19:26:31 -070047#include "vport-internal_dev.h"
Thomas Grafcff63a52013-04-29 13:06:41 +000048#include "vport-netdev.h"
Jesse Grossccb13522011-10-25 19:26:31 -070049
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030050unsigned int ovs_net_id __read_mostly;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070051
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070052static struct genl_family dp_packet_genl_family;
53static struct genl_family dp_flow_genl_family;
54static struct genl_family dp_datapath_genl_family;
55
Joe Stringer74ed7ab2015-01-21 16:42:52 -080056static const struct nla_policy flow_policy[];
57
stephen hemminger48e48a72014-07-16 11:25:52 -070058static const struct genl_multicast_group ovs_dp_flow_multicast_group = {
59 .name = OVS_FLOW_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070060};
61
stephen hemminger48e48a72014-07-16 11:25:52 -070062static const struct genl_multicast_group ovs_dp_datapath_multicast_group = {
63 .name = OVS_DATAPATH_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070064};
65
stephen hemminger48e48a72014-07-16 11:25:52 -070066static const struct genl_multicast_group ovs_dp_vport_multicast_group = {
67 .name = OVS_VPORT_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070068};
69
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070070/* Check if need to build a reply message.
71 * OVS userspace sets the NLM_F_ECHO flag if it needs the reply. */
Samuel Gauthier9b67aa42014-09-18 10:31:04 +020072static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
73 unsigned int group)
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070074{
75 return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
Johannes Bergf8403a22014-12-22 18:56:36 +010076 genl_has_listeners(family, genl_info_net(info), group);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070077}
78
Johannes Berg68eb5502013-11-19 15:19:38 +010079static void ovs_notify(struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +010080 struct sk_buff *skb, struct genl_info *info)
Thomas Grafed661182013-03-29 14:46:50 +010081{
Jiri Benc92c14d92015-09-22 18:56:43 +020082 genl_notify(family, skb, info, 0, GFP_KERNEL);
Thomas Grafed661182013-03-29 14:46:50 +010083}
84
Pravin B Shelar46df7b82012-02-22 19:58:59 -080085/**
Jesse Grossccb13522011-10-25 19:26:31 -070086 * DOC: Locking:
87 *
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070088 * All writes e.g. Writes to device state (add/remove datapath, port, set
89 * operations on vports, etc.), Writes to other state (flow table
90 * modifications, set miscellaneous datapath parameters, etc.) are protected
91 * by ovs_lock.
Jesse Grossccb13522011-10-25 19:26:31 -070092 *
93 * Reads are protected by RCU.
94 *
95 * There are a few special cases (mostly stats) that have their own
96 * synchronization but they nest under all of above and don't interact with
97 * each other.
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070098 *
99 * The RTNL lock nests inside ovs_mutex.
Jesse Grossccb13522011-10-25 19:26:31 -0700100 */
101
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700102static DEFINE_MUTEX(ovs_mutex);
103
104void ovs_lock(void)
105{
106 mutex_lock(&ovs_mutex);
107}
108
109void ovs_unlock(void)
110{
111 mutex_unlock(&ovs_mutex);
112}
113
114#ifdef CONFIG_LOCKDEP
115int lockdep_ovsl_is_held(void)
116{
117 if (debug_locks)
118 return lockdep_is_held(&ovs_mutex);
119 else
120 return 1;
121}
122#endif
123
Jesse Grossccb13522011-10-25 19:26:31 -0700124static struct vport *new_vport(const struct vport_parms *);
Thomas Graf8055a892013-12-13 15:22:20 +0100125static int queue_gso_packets(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800126 const struct sw_flow_key *,
William Tuf2a4d082016-06-10 11:49:33 -0700127 const struct dp_upcall_info *,
128 uint32_t cutlen);
Thomas Graf8055a892013-12-13 15:22:20 +0100129static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800130 const struct sw_flow_key *,
William Tuf2a4d082016-06-10 11:49:33 -0700131 const struct dp_upcall_info *,
132 uint32_t cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700133
Eelco Chaudroneac87c42020-07-15 14:09:28 +0200134static void ovs_dp_masks_rebalance(struct work_struct *work);
135
Mark Grayb83d23a2021-07-15 08:27:54 -0400136static int ovs_dp_set_upcall_portids(struct datapath *, const struct nlattr *);
137
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700138/* Must be called with rcu_read_lock or ovs_mutex. */
Andy Zhou971427f32014-09-15 19:37:25 -0700139const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700140{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700141 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Thomas Grafc9db9652015-07-21 10:44:05 +0200142 return ovs_vport_name(vport);
Jesse Grossccb13522011-10-25 19:26:31 -0700143}
144
Thomas Graf12eb18f2014-11-06 06:58:52 -0800145static int get_dpifindex(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700146{
147 struct vport *local;
148 int ifindex;
149
150 rcu_read_lock();
151
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700152 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700153 if (local)
Thomas Grafbe4ace62015-07-21 10:44:04 +0200154 ifindex = local->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700155 else
156 ifindex = 0;
157
158 rcu_read_unlock();
159
160 return ifindex;
161}
162
163static void destroy_dp_rcu(struct rcu_head *rcu)
164{
165 struct datapath *dp = container_of(rcu, struct datapath, rcu);
166
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700167 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700168 free_percpu(dp->stats_percpu);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700169 kfree(dp->ports);
Andy Zhou96fbc132017-11-10 12:09:42 -0800170 ovs_meters_exit(dp);
Mark Gray076999e2021-07-23 10:24:14 -0400171 kfree(rcu_dereference_raw(dp->upcall_portids));
Jesse Grossccb13522011-10-25 19:26:31 -0700172 kfree(dp);
173}
174
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700175static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
176 u16 port_no)
177{
178 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
179}
180
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700181/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700182struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
183{
184 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700185 struct hlist_head *head;
186
187 head = vport_hash_bucket(dp, port_no);
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +0530188 hlist_for_each_entry_rcu(vport, head, dp_hash_node,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +0800189 lockdep_ovsl_is_held()) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700190 if (vport->port_no == port_no)
191 return vport;
192 }
193 return NULL;
194}
195
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700196/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700197static struct vport *new_vport(const struct vport_parms *parms)
198{
199 struct vport *vport;
200
201 vport = ovs_vport_add(parms);
202 if (!IS_ERR(vport)) {
203 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700204 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700205
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700206 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700207 }
Jesse Grossccb13522011-10-25 19:26:31 -0700208 return vport;
209}
210
Jesse Grossccb13522011-10-25 19:26:31 -0700211void ovs_dp_detach_port(struct vport *p)
212{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700213 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700214
215 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700216 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700217
218 /* Then destroy it. */
219 ovs_vport_del(p);
220}
221
222/* Must be called with rcu_read_lock. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700223void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700224{
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700225 const struct vport *p = OVS_CB(skb)->input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700226 struct datapath *dp = p->dp;
227 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700228 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700229 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700230 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700231 u32 n_mask_hit;
Eelco Chaudron9d2f6272020-07-31 14:20:56 +0200232 u32 n_cache_hit;
Yifeng Sunaa733662019-08-04 19:56:11 -0700233 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700234
Shan Wei404f2f12012-11-13 09:52:25 +0800235 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700236
Jesse Grossccb13522011-10-25 19:26:31 -0700237 /* Look up flow. */
Tonghao Zhang04b7d132019-11-01 22:23:45 +0800238 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, skb_get_hash(skb),
Eelco Chaudron9d2f6272020-07-31 14:20:56 +0200239 &n_mask_hit, &n_cache_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700240 if (unlikely(!flow)) {
241 struct dp_upcall_info upcall;
242
Neil McKeeccea7442015-05-26 20:59:43 -0700243 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700244 upcall.cmd = OVS_PACKET_CMD_MISS;
Mark Grayb83d23a2021-07-15 08:27:54 -0400245
246 if (dp->user_features & OVS_DP_F_DISPATCH_UPCALL_PER_CPU)
Mark Gray784dcfa2021-07-23 10:24:13 -0400247 upcall.portid =
248 ovs_dp_get_upcall_portid(dp, smp_processor_id());
Mark Grayb83d23a2021-07-15 08:27:54 -0400249 else
250 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
251
Joe Stringer7f8a4362015-08-26 11:31:48 -0700252 upcall.mru = OVS_CB(skb)->mru;
William Tuf2a4d082016-06-10 11:49:33 -0700253 error = ovs_dp_upcall(dp, skb, key, &upcall, 0);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800254 if (unlikely(error))
255 kfree_skb(skb);
256 else
257 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700258 stats_counter = &stats->n_missed;
259 goto out;
260 }
261
Lorand Jakabd98612b2014-10-06 05:45:32 -0700262 ovs_flow_stats_update(flow, key->tp.flags, skb);
263 sf_acts = rcu_dereference(flow->sf_acts);
Yifeng Sunaa733662019-08-04 19:56:11 -0700264 error = ovs_execute_actions(dp, skb, sf_acts, key);
265 if (unlikely(error))
266 net_dbg_ratelimited("ovs: action execution error on datapath %s: %d\n",
Tonghao Zhangcf3266a2020-09-01 20:26:12 +0800267 ovs_dp_name(dp), error);
Jesse Grossccb13522011-10-25 19:26:31 -0700268
Pravin B Shelare298e502013-10-29 17:22:21 -0700269 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700270
271out:
272 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800273 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700274 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700275 stats->n_mask_hit += n_mask_hit;
Eelco Chaudron9d2f6272020-07-31 14:20:56 +0200276 stats->n_cache_hit += n_cache_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800277 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700278}
279
Jesse Grossccb13522011-10-25 19:26:31 -0700280int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800281 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700282 const struct dp_upcall_info *upcall_info,
283 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700284{
285 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700286 int err;
287
Aaron Conolec4ab7b52021-06-22 10:02:33 -0400288 if (trace_ovs_dp_upcall_enabled())
289 trace_ovs_dp_upcall(dp, skb, key, upcall_info);
290
Eric W. Biederman15e47302012-09-07 20:12:54 +0000291 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700292 err = -ENOTCONN;
293 goto err;
294 }
295
Jesse Grossccb13522011-10-25 19:26:31 -0700296 if (!skb_is_gso(skb))
William Tuf2a4d082016-06-10 11:49:33 -0700297 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700298 else
William Tuf2a4d082016-06-10 11:49:33 -0700299 err = queue_gso_packets(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700300 if (err)
301 goto err;
302
303 return 0;
304
305err:
Shan Wei404f2f12012-11-13 09:52:25 +0800306 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700307
WANG Congdf9d9fd2014-02-14 15:10:46 -0800308 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700309 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800310 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700311
312 return err;
313}
314
Thomas Graf8055a892013-12-13 15:22:20 +0100315static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800316 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700317 const struct dp_upcall_info *upcall_info,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +0800318 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700319{
Gustavo A. R. Silva27341662017-11-25 13:14:40 -0600320 unsigned int gso_type = skb_shinfo(skb)->gso_type;
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500321 struct sw_flow_key later_key;
Jesse Grossccb13522011-10-25 19:26:31 -0700322 struct sk_buff *segs, *nskb;
323 int err;
324
Cambda Zhua08e7fd2020-03-26 15:33:14 +0800325 BUILD_BUG_ON(sizeof(*OVS_CB(skb)) > SKB_GSO_CB_OFFSET);
Thomas Graf09c5e602013-12-13 15:22:22 +0100326 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700327 if (IS_ERR(segs))
328 return PTR_ERR(segs);
Florian Westphal330966e2014-10-20 13:49:17 +0200329 if (segs == NULL)
330 return -EINVAL;
Jesse Grossccb13522011-10-25 19:26:31 -0700331
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500332 if (gso_type & SKB_GSO_UDP) {
333 /* The initial flow key extracted by ovs_flow_key_extract()
334 * in this case is for a first fragment, so we need to
335 * properly mark later fragments.
336 */
337 later_key = *key;
338 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
339 }
340
Jesse Grossccb13522011-10-25 19:26:31 -0700341 /* Queue all of the segments. */
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500342 skb_list_walk_safe(segs, skb, nskb) {
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500343 if (gso_type & SKB_GSO_UDP && skb != segs)
344 key = &later_key;
345
William Tuf2a4d082016-06-10 11:49:33 -0700346 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700347 if (err)
348 break;
349
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500350 }
Jesse Grossccb13522011-10-25 19:26:31 -0700351
352 /* Free all of the segments. */
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500353 skb_list_walk_safe(segs, skb, nskb) {
Jesse Grossccb13522011-10-25 19:26:31 -0700354 if (err)
355 kfree_skb(skb);
356 else
357 consume_skb(skb);
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500358 }
Jesse Grossccb13522011-10-25 19:26:31 -0700359 return err;
360}
361
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800362static size_t upcall_msg_size(const struct dp_upcall_info *upcall_info,
Liping Zhang494bea32017-08-16 13:30:07 +0800363 unsigned int hdrlen, int actions_attrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100364{
365 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100366 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
William Tub95e5922016-06-20 07:26:17 -0700367 + nla_total_size(ovs_key_attr_size()) /* OVS_PACKET_ATTR_KEY */
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800368 + nla_total_size(sizeof(unsigned int)) /* OVS_PACKET_ATTR_LEN */
369 + nla_total_size(sizeof(u64)); /* OVS_PACKET_ATTR_HASH */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100370
371 /* OVS_PACKET_ATTR_USERDATA */
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800372 if (upcall_info->userdata)
373 size += NLA_ALIGN(upcall_info->userdata->nla_len);
374
375 /* OVS_PACKET_ATTR_EGRESS_TUN_KEY */
376 if (upcall_info->egress_tun_info)
377 size += nla_total_size(ovs_tun_key_attr_size());
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100378
Neil McKeeccea7442015-05-26 20:59:43 -0700379 /* OVS_PACKET_ATTR_ACTIONS */
380 if (upcall_info->actions_len)
Liping Zhang494bea32017-08-16 13:30:07 +0800381 size += nla_total_size(actions_attrlen);
Neil McKeeccea7442015-05-26 20:59:43 -0700382
Joe Stringer7f8a4362015-08-26 11:31:48 -0700383 /* OVS_PACKET_ATTR_MRU */
384 if (upcall_info->mru)
385 size += nla_total_size(sizeof(upcall_info->mru));
386
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100387 return size;
388}
389
Joe Stringer7f8a4362015-08-26 11:31:48 -0700390static void pad_packet(struct datapath *dp, struct sk_buff *skb)
391{
392 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
393 size_t plen = NLA_ALIGN(skb->len) - skb->len;
394
395 if (plen > 0)
Johannes Bergb080db52017-06-16 14:29:19 +0200396 skb_put_zero(skb, plen);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700397 }
398}
399
Thomas Graf8055a892013-12-13 15:22:20 +0100400static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800401 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700402 const struct dp_upcall_info *upcall_info,
403 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700404{
405 struct ovs_header *upcall;
406 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800407 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700408 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100409 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100410 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100411 int err, dp_ifindex;
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800412 u64 hash;
Thomas Graf8055a892013-12-13 15:22:20 +0100413
414 dp_ifindex = get_dpifindex(dp);
415 if (!dp_ifindex)
416 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700417
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100418 if (skb_vlan_tag_present(skb)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700419 nskb = skb_clone(skb, GFP_ATOMIC);
420 if (!nskb)
421 return -ENOMEM;
422
Jiri Pirko59682502014-11-19 14:04:59 +0100423 nskb = __vlan_hwaccel_push_inside(nskb);
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000424 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700425 return -ENOMEM;
426
Jesse Grossccb13522011-10-25 19:26:31 -0700427 skb = nskb;
428 }
429
430 if (nla_attr_size(skb->len) > USHRT_MAX) {
431 err = -EFBIG;
432 goto out;
433 }
434
Thomas Grafbda56f12013-12-13 15:22:21 +0100435 /* Complete checksum if needed */
436 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Davide Caratti75293902017-05-18 15:44:42 +0200437 (err = skb_csum_hwoffload_help(skb, 0)))
Thomas Grafbda56f12013-12-13 15:22:21 +0100438 goto out;
439
440 /* Older versions of OVS user space enforce alignment of the last
441 * Netlink attribute to NLA_ALIGNTO which would require extensive
442 * padding logic. Only perform zerocopy if padding is not required.
443 */
444 if (dp->user_features & OVS_DP_F_UNALIGNED)
445 hlen = skb_zerocopy_headlen(skb);
446 else
447 hlen = skb->len;
448
Liping Zhang494bea32017-08-16 13:30:07 +0800449 len = upcall_msg_size(upcall_info, hlen - cutlen,
450 OVS_CB(skb)->acts_origlen);
Florian Westphal551ddc02016-02-18 15:03:25 +0100451 user_skb = genlmsg_new(len, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700452 if (!user_skb) {
453 err = -ENOMEM;
454 goto out;
455 }
456
457 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
458 0, upcall_info->cmd);
Kangjie Lu6f198932019-03-14 23:20:16 -0500459 if (!upcall) {
460 err = -EINVAL;
461 goto out;
462 }
Jesse Grossccb13522011-10-25 19:26:31 -0700463 upcall->dp_ifindex = dp_ifindex;
464
Joe Stringer5b4237b2015-01-21 16:42:48 -0800465 err = ovs_nla_put_key(key, key, OVS_PACKET_ATTR_KEY, false, user_skb);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400466 if (err)
467 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700468
469 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800470 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
471 nla_len(upcall_info->userdata),
472 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700473
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800474 if (upcall_info->egress_tun_info) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200475 nla = nla_nest_start_noflag(user_skb,
476 OVS_PACKET_ATTR_EGRESS_TUN_KEY);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500477 if (!nla) {
478 err = -EMSGSIZE;
479 goto out;
480 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700481 err = ovs_nla_put_tunnel_info(user_skb,
482 upcall_info->egress_tun_info);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400483 if (err)
484 goto out;
485
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800486 nla_nest_end(user_skb, nla);
487 }
488
Neil McKeeccea7442015-05-26 20:59:43 -0700489 if (upcall_info->actions_len) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200490 nla = nla_nest_start_noflag(user_skb, OVS_PACKET_ATTR_ACTIONS);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500491 if (!nla) {
492 err = -EMSGSIZE;
493 goto out;
494 }
Neil McKeeccea7442015-05-26 20:59:43 -0700495 err = ovs_nla_put_actions(upcall_info->actions,
496 upcall_info->actions_len,
497 user_skb);
498 if (!err)
499 nla_nest_end(user_skb, nla);
500 else
501 nla_nest_cancel(user_skb, nla);
502 }
503
Joe Stringer7f8a4362015-08-26 11:31:48 -0700504 /* Add OVS_PACKET_ATTR_MRU */
Tonghao Zhang61ca5332019-11-14 23:51:08 +0800505 if (upcall_info->mru &&
506 nla_put_u16(user_skb, OVS_PACKET_ATTR_MRU, upcall_info->mru)) {
507 err = -ENOBUFS;
508 goto out;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700509 }
510
William Tub95e5922016-06-20 07:26:17 -0700511 /* Add OVS_PACKET_ATTR_LEN when packet is truncated */
Tonghao Zhang61ca5332019-11-14 23:51:08 +0800512 if (cutlen > 0 &&
513 nla_put_u32(user_skb, OVS_PACKET_ATTR_LEN, skb->len)) {
514 err = -ENOBUFS;
515 goto out;
William Tub95e5922016-06-20 07:26:17 -0700516 }
517
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800518 /* Add OVS_PACKET_ATTR_HASH */
519 hash = skb_get_hash_raw(skb);
520 if (skb->sw_hash)
521 hash |= OVS_PACKET_HASH_SW_BIT;
522
523 if (skb->l4_hash)
524 hash |= OVS_PACKET_HASH_L4_BIT;
525
526 if (nla_put(user_skb, OVS_PACKET_ATTR_HASH, sizeof (u64), &hash)) {
527 err = -ENOBUFS;
528 goto out;
529 }
530
Thomas Grafbda56f12013-12-13 15:22:21 +0100531 /* Only reserve room for attribute header, packet data is added
532 * in skb_zerocopy() */
533 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
534 err = -ENOBUFS;
535 goto out;
536 }
William Tuf2a4d082016-06-10 11:49:33 -0700537 nla->nla_len = nla_attr_size(skb->len - cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700538
William Tuf2a4d082016-06-10 11:49:33 -0700539 err = skb_zerocopy(user_skb, skb, skb->len - cutlen, hlen);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000540 if (err)
541 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700542
Thomas Grafaea0bb42014-01-14 16:27:49 +0000543 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700544 pad_packet(dp, user_skb);
Thomas Grafaea0bb42014-01-14 16:27:49 +0000545
Thomas Grafbda56f12013-12-13 15:22:21 +0100546 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
547
Thomas Graf8055a892013-12-13 15:22:20 +0100548 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800549 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700550out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000551 if (err)
552 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800553 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700554 kfree_skb(nskb);
555 return err;
556}
557
Jesse Grossccb13522011-10-25 19:26:31 -0700558static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
559{
560 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700561 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700562 struct nlattr **a = info->attrs;
563 struct sw_flow_actions *acts;
564 struct sk_buff *packet;
565 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700566 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700567 struct datapath *dp;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700568 struct vport *input_vport;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700569 u16 mru = 0;
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800570 u64 hash;
Jesse Grossccb13522011-10-25 19:26:31 -0700571 int len;
572 int err;
Thomas Graf1ba39802015-01-14 13:56:19 +0000573 bool log = !a[OVS_PACKET_ATTR_PROBE];
Jesse Grossccb13522011-10-25 19:26:31 -0700574
575 err = -EINVAL;
576 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100577 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700578 goto err;
579
580 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
581 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
582 err = -ENOMEM;
583 if (!packet)
584 goto err;
585 skb_reserve(packet, NET_IP_ALIGN);
586
Thomas Graf32686a92013-03-29 14:46:48 +0100587 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700588
Joe Stringer7f8a4362015-08-26 11:31:48 -0700589 /* Set packet's mru */
590 if (a[OVS_PACKET_ATTR_MRU]) {
591 mru = nla_get_u16(a[OVS_PACKET_ATTR_MRU]);
592 packet->ignore_df = 1;
593 }
594 OVS_CB(packet)->mru = mru;
595
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800596 if (a[OVS_PACKET_ATTR_HASH]) {
597 hash = nla_get_u64(a[OVS_PACKET_ATTR_HASH]);
598
599 __skb_set_hash(packet, hash & 0xFFFFFFFFULL,
600 !!(hash & OVS_PACKET_HASH_SW_BIT),
601 !!(hash & OVS_PACKET_HASH_L4_BIT));
602 }
603
Jesse Grossccb13522011-10-25 19:26:31 -0700604 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700605 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700606 err = PTR_ERR(flow);
607 if (IS_ERR(flow))
608 goto err_kfree_skb;
609
Joe Stringerc2ac6672015-08-26 11:31:52 -0700610 err = ovs_flow_key_extract_userspace(net, a[OVS_PACKET_ATTR_KEY],
611 packet, &flow->key, log);
Jesse Grossccb13522011-10-25 19:26:31 -0700612 if (err)
613 goto err_flow_free;
614
Joe Stringer7f8a4362015-08-26 11:31:48 -0700615 err = ovs_nla_copy_actions(net, a[OVS_PACKET_ATTR_ACTIONS],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800616 &flow->key, &acts, log);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700617 if (err)
618 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700619
Jesse Grossf5796682014-10-03 15:35:33 -0700620 rcu_assign_pointer(flow->sf_acts, acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700621 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800622 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700623
624 rcu_read_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700625 dp = get_dp_rcu(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700626 err = -ENODEV;
627 if (!dp)
628 goto err_unlock;
629
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700630 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
631 if (!input_vport)
632 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
633
634 if (!input_vport)
635 goto err_unlock;
636
Joe Stringer7f8a4362015-08-26 11:31:48 -0700637 packet->dev = input_vport->dev;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700638 OVS_CB(packet)->input_vport = input_vport;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700639 sf_acts = rcu_dereference(flow->sf_acts);
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700640
Jesse Grossccb13522011-10-25 19:26:31 -0700641 local_bh_disable();
Lorand Jakabd98612b2014-10-06 05:45:32 -0700642 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700643 local_bh_enable();
644 rcu_read_unlock();
645
Andy Zhou03f0d912013-08-07 20:01:00 -0700646 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700647 return err;
648
649err_unlock:
650 rcu_read_unlock();
651err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700652 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700653err_kfree_skb:
654 kfree_skb(packet);
655err:
656 return err;
657}
658
659static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100660 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700661 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
662 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
Thomas Graf1ba39802015-01-14 13:56:19 +0000663 [OVS_PACKET_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer7f8a4362015-08-26 11:31:48 -0700664 [OVS_PACKET_ATTR_MRU] = { .type = NLA_U16 },
Jakub Kicinskib5ab1f12020-03-02 21:05:18 -0800665 [OVS_PACKET_ATTR_HASH] = { .type = NLA_U64 },
Jesse Grossccb13522011-10-25 19:26:31 -0700666};
667
Jakub Kicinski66a9b922020-10-02 14:49:54 -0700668static const struct genl_small_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700669 { .cmd = OVS_PACKET_CMD_EXECUTE,
Johannes Bergef6243a2019-04-26 14:07:31 +0200670 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -0700671 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -0700672 .doit = ovs_packet_cmd_execute
673 }
674};
675
Johannes Berg56989f62016-10-24 14:40:05 +0200676static struct genl_family dp_packet_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700677 .hdrsize = sizeof(struct ovs_header),
678 .name = OVS_PACKET_FAMILY,
679 .version = OVS_PACKET_VERSION,
680 .maxattr = OVS_PACKET_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100681 .policy = packet_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700682 .netnsok = true,
683 .parallel_ops = true,
Jakub Kicinski66a9b922020-10-02 14:49:54 -0700684 .small_ops = dp_packet_genl_ops,
685 .n_small_ops = ARRAY_SIZE(dp_packet_genl_ops),
Johannes Berg489111e2016-10-24 14:40:03 +0200686 .module = THIS_MODULE,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700687};
688
Thomas Graf12eb18f2014-11-06 06:58:52 -0800689static void get_dp_stats(const struct datapath *dp, struct ovs_dp_stats *stats,
Andy Zhou1bd71162013-10-22 10:42:46 -0700690 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700691{
692 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700693
Andy Zhou1bd71162013-10-22 10:42:46 -0700694 memset(mega_stats, 0, sizeof(*mega_stats));
695
Pravin B Shelarb637e492013-10-04 00:14:23 -0700696 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700697 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700698
699 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700700
Jesse Grossccb13522011-10-25 19:26:31 -0700701 for_each_possible_cpu(i) {
702 const struct dp_stats_percpu *percpu_stats;
703 struct dp_stats_percpu local_stats;
704 unsigned int start;
705
706 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
707
708 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700709 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700710 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700711 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700712
713 stats->n_hit += local_stats.n_hit;
714 stats->n_missed += local_stats.n_missed;
715 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700716 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Eelco Chaudron9d2f6272020-07-31 14:20:56 +0200717 mega_stats->n_cache_hit += local_stats.n_cache_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700718 }
719}
720
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800721static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100722{
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800723 return ovs_identifier_is_ufid(sfid) &&
724 !(ufid_flags & OVS_UFID_F_OMIT_KEY);
725}
726
727static bool should_fill_mask(uint32_t ufid_flags)
728{
729 return !(ufid_flags & OVS_UFID_F_OMIT_MASK);
730}
731
732static bool should_fill_actions(uint32_t ufid_flags)
733{
734 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS);
735}
736
737static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts,
738 const struct sw_flow_id *sfid,
739 uint32_t ufid_flags)
740{
741 size_t len = NLMSG_ALIGN(sizeof(struct ovs_header));
742
Paolo Abeni4e81c0b2019-11-26 12:55:50 +0100743 /* OVS_FLOW_ATTR_UFID, or unmasked flow key as fallback
744 * see ovs_nla_put_identifier()
745 */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800746 if (sfid && ovs_identifier_is_ufid(sfid))
747 len += nla_total_size(sfid->ufid_len);
Paolo Abeni4e81c0b2019-11-26 12:55:50 +0100748 else
749 len += nla_total_size(ovs_key_attr_size());
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800750
751 /* OVS_FLOW_ATTR_KEY */
752 if (!sfid || should_fill_key(sfid, ufid_flags))
753 len += nla_total_size(ovs_key_attr_size());
754
755 /* OVS_FLOW_ATTR_MASK */
756 if (should_fill_mask(ufid_flags))
757 len += nla_total_size(ovs_key_attr_size());
758
759 /* OVS_FLOW_ATTR_ACTIONS */
760 if (should_fill_actions(ufid_flags))
Joe Stringer8e2fed12015-08-26 11:31:44 -0700761 len += nla_total_size(acts->orig_len);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800762
763 return len
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200764 + nla_total_size_64bit(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100765 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200766 + nla_total_size_64bit(8); /* OVS_FLOW_ATTR_USED */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100767}
768
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700769/* Called with ovs_mutex or RCU read lock. */
Joe Stringerca7105f2014-09-08 13:09:37 -0700770static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
771 struct sk_buff *skb)
772{
773 struct ovs_flow_stats stats;
774 __be16 tcp_flags;
775 unsigned long used;
Andy Zhou03f0d912013-08-07 20:01:00 -0700776
Pravin B Shelare298e502013-10-29 17:22:21 -0700777 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700778
David S. Miller028d6a62012-03-29 23:20:48 -0400779 if (used &&
Nicolas Dichtel0238b722016-04-25 10:25:17 +0200780 nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
781 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700782 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700783
David S. Miller028d6a62012-03-29 23:20:48 -0400784 if (stats.n_packets &&
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200785 nla_put_64bit(skb, OVS_FLOW_ATTR_STATS,
786 sizeof(struct ovs_flow_stats), &stats,
787 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700788 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700789
Pravin B Shelare298e502013-10-29 17:22:21 -0700790 if ((u8)ntohs(tcp_flags) &&
791 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
Joe Stringerca7105f2014-09-08 13:09:37 -0700792 return -EMSGSIZE;
793
794 return 0;
795}
796
797/* Called with ovs_mutex or RCU read lock. */
798static int ovs_flow_cmd_fill_actions(const struct sw_flow *flow,
799 struct sk_buff *skb, int skb_orig_len)
800{
801 struct nlattr *start;
802 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700803
804 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
805 * this is the first flow to be dumped into 'skb'. This is unusual for
806 * Netlink but individual action lists can be longer than
807 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
808 * The userspace caller can always fetch the actions separately if it
809 * really wants them. (Most userspace callers in fact don't care.)
810 *
811 * This can only fail for dump operations because the skb is always
812 * properly sized for single flows.
813 */
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200814 start = nla_nest_start_noflag(skb, OVS_FLOW_ATTR_ACTIONS);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700815 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700816 const struct sw_flow_actions *sf_acts;
817
Jesse Gross663efa32013-12-03 10:58:53 -0800818 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700819 err = ovs_nla_put_actions(sf_acts->actions,
820 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700821
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700822 if (!err)
823 nla_nest_end(skb, start);
824 else {
825 if (skb_orig_len)
Joe Stringerca7105f2014-09-08 13:09:37 -0700826 return err;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700827
828 nla_nest_cancel(skb, start);
829 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700830 } else if (skb_orig_len) {
831 return -EMSGSIZE;
832 }
833
834 return 0;
835}
836
837/* Called with ovs_mutex or RCU read lock. */
838static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
839 struct sk_buff *skb, u32 portid,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800840 u32 seq, u32 flags, u8 cmd, u32 ufid_flags)
Joe Stringerca7105f2014-09-08 13:09:37 -0700841{
842 const int skb_orig_len = skb->len;
843 struct ovs_header *ovs_header;
844 int err;
845
846 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family,
847 flags, cmd);
848 if (!ovs_header)
849 return -EMSGSIZE;
850
851 ovs_header->dp_ifindex = dp_ifindex;
852
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800853 err = ovs_nla_put_identifier(flow, skb);
Joe Stringer5b4237b2015-01-21 16:42:48 -0800854 if (err)
855 goto error;
856
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800857 if (should_fill_key(&flow->id, ufid_flags)) {
858 err = ovs_nla_put_masked_key(flow, skb);
859 if (err)
860 goto error;
861 }
862
863 if (should_fill_mask(ufid_flags)) {
864 err = ovs_nla_put_mask(flow, skb);
865 if (err)
866 goto error;
867 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700868
869 err = ovs_flow_cmd_fill_stats(flow, skb);
870 if (err)
871 goto error;
872
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800873 if (should_fill_actions(ufid_flags)) {
874 err = ovs_flow_cmd_fill_actions(flow, skb, skb_orig_len);
875 if (err)
876 goto error;
877 }
Jesse Grossccb13522011-10-25 19:26:31 -0700878
Johannes Berg053c0952015-01-16 22:09:00 +0100879 genlmsg_end(skb, ovs_header);
880 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700881
Jesse Grossccb13522011-10-25 19:26:31 -0700882error:
883 genlmsg_cancel(skb, ovs_header);
884 return err;
885}
886
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700887/* May not be called with RCU read lock. */
888static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800889 const struct sw_flow_id *sfid,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700890 struct genl_info *info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800891 bool always,
892 uint32_t ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700893{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700894 struct sk_buff *skb;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800895 size_t len;
Jesse Grossccb13522011-10-25 19:26:31 -0700896
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200897 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700898 return NULL;
899
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800900 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags);
Florian Westphal551ddc02016-02-18 15:03:25 +0100901 skb = genlmsg_new(len, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700902 if (!skb)
903 return ERR_PTR(-ENOMEM);
904
905 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700906}
907
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700908/* Called with ovs_mutex. */
909static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
910 int dp_ifindex,
911 struct genl_info *info, u8 cmd,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800912 bool always, u32 ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700913{
914 struct sk_buff *skb;
915 int retval;
916
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800917 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts),
918 &flow->id, info, always, ufid_flags);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530919 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700920 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700921
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700922 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
923 info->snd_portid, info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800924 cmd, ufid_flags);
Paolo Abeni8ffeb03f2019-12-01 18:41:24 +0100925 if (WARN_ON_ONCE(retval < 0)) {
926 kfree_skb(skb);
927 skb = ERR_PTR(retval);
928 }
Jesse Grossccb13522011-10-25 19:26:31 -0700929 return skb;
930}
931
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700932static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700933{
Joe Stringer7f8a4362015-08-26 11:31:48 -0700934 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700935 struct nlattr **a = info->attrs;
936 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800937 struct sw_flow *flow = NULL, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700938 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700939 struct sk_buff *reply;
940 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700941 struct sw_flow_actions *acts;
942 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800943 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700944 int error;
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800945 bool log = !a[OVS_FLOW_ATTR_PROBE];
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700946
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700947 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700948 error = -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700949 if (!a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800950 OVS_NLERR(log, "Flow key attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700951 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700952 }
953 if (!a[OVS_FLOW_ATTR_ACTIONS]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800954 OVS_NLERR(log, "Flow actions attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700955 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700956 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700957
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700958 /* Most of the time we need to allocate a new flow, do it before
959 * locking.
960 */
961 new_flow = ovs_flow_alloc();
962 if (IS_ERR(new_flow)) {
963 error = PTR_ERR(new_flow);
964 goto error;
965 }
966
967 /* Extract key. */
pravin shelar22799942016-09-19 13:51:00 -0700968 ovs_match_init(&match, &new_flow->key, false, &mask);
Joe Stringerc2ac6672015-08-26 11:31:52 -0700969 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800970 a[OVS_FLOW_ATTR_MASK], log);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700971 if (error)
972 goto err_kfree_flow;
973
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800974 /* Extract flow identifier. */
975 error = ovs_nla_get_identifier(&new_flow->id, a[OVS_FLOW_ATTR_UFID],
pravin shelar190aa3e72016-09-19 13:50:59 -0700976 &new_flow->key, log);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800977 if (error)
978 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700979
pravin shelar190aa3e72016-09-19 13:50:59 -0700980 /* unmasked key is needed to match when ufid is not used. */
981 if (ovs_identifier_is_key(&new_flow->id))
982 match.key = new_flow->id.unmasked_key;
983
984 ovs_flow_mask_key(&new_flow->key, &new_flow->key, true, &mask);
985
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700986 /* Validate actions. */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700987 error = ovs_nla_copy_actions(net, a[OVS_FLOW_ATTR_ACTIONS],
988 &new_flow->key, &acts, log);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700989 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800990 OVS_NLERR(log, "Flow actions may not be safe on all matching packets.");
Pravin B Shelar2fdb9572014-10-19 11:19:51 -0700991 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700992 }
993
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800994 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false,
995 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700996 if (IS_ERR(reply)) {
997 error = PTR_ERR(reply);
998 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700999 }
1000
1001 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -07001002 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001003 if (unlikely(!dp)) {
1004 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001005 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001006 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001007
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001008 /* Check if this is a duplicate flow */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001009 if (ovs_identifier_is_ufid(&new_flow->id))
1010 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &new_flow->id);
1011 if (!flow)
pravin shelar190aa3e72016-09-19 13:50:59 -07001012 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->key);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001013 if (likely(!flow)) {
1014 rcu_assign_pointer(new_flow->sf_acts, acts);
1015
1016 /* Put flow in bucket. */
1017 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
1018 if (unlikely(error)) {
1019 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001020 goto err_unlock_ovs;
1021 }
1022
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001023 if (unlikely(reply)) {
1024 error = ovs_flow_cmd_fill_info(new_flow,
1025 ovs_header->dp_ifindex,
1026 reply, info->snd_portid,
1027 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001028 OVS_FLOW_CMD_NEW,
1029 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001030 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001031 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001032 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001033 } else {
1034 struct sw_flow_actions *old_acts;
1035
1036 /* Bail out if we're not allowed to modify an existing flow.
1037 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1038 * because Generic Netlink treats the latter as a dump
1039 * request. We also accept NLM_F_EXCL in case that bug ever
1040 * gets fixed.
1041 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001042 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
1043 | NLM_F_EXCL))) {
1044 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001045 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001046 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001047 /* The flow identifier has to be the same for flow updates.
1048 * Look for any overlapping flow.
1049 */
1050 if (unlikely(!ovs_flow_cmp(flow, &match))) {
1051 if (ovs_identifier_is_key(&flow->id))
1052 flow = ovs_flow_tbl_lookup_exact(&dp->table,
1053 &match);
1054 else /* UFID matches but key is different */
1055 flow = NULL;
Alex Wang4a46b242014-06-30 20:30:29 -07001056 if (!flow) {
1057 error = -ENOENT;
1058 goto err_unlock_ovs;
1059 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001060 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001061 /* Update actions. */
1062 old_acts = ovsl_dereference(flow->sf_acts);
1063 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001064
1065 if (unlikely(reply)) {
1066 error = ovs_flow_cmd_fill_info(flow,
1067 ovs_header->dp_ifindex,
1068 reply, info->snd_portid,
1069 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001070 OVS_FLOW_CMD_NEW,
1071 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001072 BUG_ON(error < 0);
1073 }
1074 ovs_unlock();
1075
Thomas Graf34ae9322015-07-21 10:44:03 +02001076 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001077 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001078 }
1079
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001080 if (reply)
1081 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001082 return 0;
1083
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001084err_unlock_ovs:
1085 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001086 kfree_skb(reply);
1087err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001088 ovs_nla_free_flow_actions(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001089err_kfree_flow:
1090 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001091error:
1092 return error;
1093}
1094
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001095/* Factor out action copy to avoid "Wframe-larger-than=1024" warning. */
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001096static noinline_for_stack
1097struct sw_flow_actions *get_flow_actions(struct net *net,
1098 const struct nlattr *a,
1099 const struct sw_flow_key *key,
1100 const struct sw_flow_mask *mask,
1101 bool log)
Jesse Gross6b205b22014-10-03 15:35:32 -07001102{
1103 struct sw_flow_actions *acts;
1104 struct sw_flow_key masked_key;
1105 int error;
1106
Jesse Grossae5f2fb2015-09-21 20:21:20 -07001107 ovs_flow_mask_key(&masked_key, key, true, mask);
Joe Stringer7f8a4362015-08-26 11:31:48 -07001108 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001109 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001110 OVS_NLERR(log,
1111 "Actions may not be safe on all matching packets");
Jesse Gross6b205b22014-10-03 15:35:32 -07001112 return ERR_PTR(error);
1113 }
1114
1115 return acts;
1116}
1117
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001118/* Factor out match-init and action-copy to avoid
1119 * "Wframe-larger-than=1024" warning. Because mask is only
1120 * used to get actions, we new a function to save some
1121 * stack space.
1122 *
1123 * If there are not key and action attrs, we return 0
1124 * directly. In the case, the caller will also not use the
1125 * match as before. If there is action attr, we try to get
1126 * actions and save them to *acts. Before returning from
1127 * the function, we reset the match->mask pointer. Because
1128 * we should not to return match object with dangling reference
1129 * to mask.
1130 * */
Arnd Bergmann26063792019-07-22 17:00:01 +02001131static noinline_for_stack int
1132ovs_nla_init_match_and_action(struct net *net,
1133 struct sw_flow_match *match,
1134 struct sw_flow_key *key,
1135 struct nlattr **a,
1136 struct sw_flow_actions **acts,
1137 bool log)
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001138{
1139 struct sw_flow_mask mask;
1140 int error = 0;
1141
1142 if (a[OVS_FLOW_ATTR_KEY]) {
1143 ovs_match_init(match, key, true, &mask);
1144 error = ovs_nla_get_match(net, match, a[OVS_FLOW_ATTR_KEY],
1145 a[OVS_FLOW_ATTR_MASK], log);
1146 if (error)
1147 goto error;
1148 }
1149
1150 if (a[OVS_FLOW_ATTR_ACTIONS]) {
1151 if (!a[OVS_FLOW_ATTR_KEY]) {
1152 OVS_NLERR(log,
1153 "Flow key attribute not present in set flow.");
Christophe JAILLET5829e622017-09-11 21:56:20 +02001154 error = -EINVAL;
1155 goto error;
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001156 }
1157
1158 *acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], key,
1159 &mask, log);
1160 if (IS_ERR(*acts)) {
1161 error = PTR_ERR(*acts);
1162 goto error;
1163 }
1164 }
1165
1166 /* On success, error is 0. */
1167error:
1168 match->mask = NULL;
1169 return error;
1170}
1171
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001172static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
1173{
Joe Stringer7f8a4362015-08-26 11:31:48 -07001174 struct net *net = sock_net(skb->sk);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001175 struct nlattr **a = info->attrs;
1176 struct ovs_header *ovs_header = info->userhdr;
Jesse Gross6b205b22014-10-03 15:35:32 -07001177 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001178 struct sw_flow *flow;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001179 struct sk_buff *reply = NULL;
1180 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001181 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001182 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001183 struct sw_flow_id sfid;
1184 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001185 int error = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001186 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001187 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001188
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001189 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log);
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001190 if (!a[OVS_FLOW_ATTR_KEY] && !ufid_present) {
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001191 OVS_NLERR(log,
1192 "Flow set message rejected, Key attribute missing.");
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001193 return -EINVAL;
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001194 }
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001195
1196 error = ovs_nla_init_match_and_action(net, &match, &key, a,
1197 &acts, log);
Jesse Grossccb13522011-10-25 19:26:31 -07001198 if (error)
1199 goto error;
1200
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001201 if (acts) {
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001202 /* Can allocate before locking if have acts. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001203 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false,
1204 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001205 if (IS_ERR(reply)) {
1206 error = PTR_ERR(reply);
1207 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -07001208 }
Jesse Grossccb13522011-10-25 19:26:31 -07001209 }
1210
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001211 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -07001212 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001213 if (unlikely(!dp)) {
1214 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001215 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001216 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001217 /* Check that the flow exists. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001218 if (ufid_present)
1219 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &sfid);
1220 else
1221 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001222 if (unlikely(!flow)) {
1223 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001224 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001225 }
Alex Wang4a46b242014-06-30 20:30:29 -07001226
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001227 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001228 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001229 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001230 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001231
1232 if (unlikely(reply)) {
1233 error = ovs_flow_cmd_fill_info(flow,
1234 ovs_header->dp_ifindex,
1235 reply, info->snd_portid,
1236 info->snd_seq, 0,
Yifeng Sun804fe102018-09-26 11:40:14 -07001237 OVS_FLOW_CMD_SET,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001238 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001239 BUG_ON(error < 0);
1240 }
1241 } else {
1242 /* Could not alloc without acts before locking. */
1243 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
Yifeng Sun804fe102018-09-26 11:40:14 -07001244 info, OVS_FLOW_CMD_SET, false,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001245 ufid_flags);
1246
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301247 if (IS_ERR(reply)) {
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001248 error = PTR_ERR(reply);
1249 goto err_unlock_ovs;
1250 }
Jesse Grossccb13522011-10-25 19:26:31 -07001251 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001252
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001253 /* Clear stats. */
1254 if (a[OVS_FLOW_ATTR_CLEAR])
1255 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001256 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001257
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001258 if (reply)
1259 ovs_notify(&dp_flow_genl_family, reply, info);
1260 if (old_acts)
Thomas Graf34ae9322015-07-21 10:44:03 +02001261 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001262
Jesse Grossccb13522011-10-25 19:26:31 -07001263 return 0;
1264
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001265err_unlock_ovs:
1266 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001267 kfree_skb(reply);
1268err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001269 ovs_nla_free_flow_actions(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001270error:
1271 return error;
1272}
1273
1274static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1275{
1276 struct nlattr **a = info->attrs;
1277 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001278 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001279 struct sw_flow_key key;
1280 struct sk_buff *reply;
1281 struct sw_flow *flow;
1282 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001283 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001284 struct sw_flow_id ufid;
1285 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
1286 int err = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001287 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001288 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001289
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001290 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1291 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001292 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001293 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY], NULL,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001294 log);
1295 } else if (!ufid_present) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001296 OVS_NLERR(log,
1297 "Flow get message rejected, Key attribute missing.");
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001298 err = -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001299 }
Jesse Grossccb13522011-10-25 19:26:31 -07001300 if (err)
1301 return err;
1302
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001303 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001304 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001305 if (!dp) {
1306 err = -ENODEV;
1307 goto unlock;
1308 }
Jesse Grossccb13522011-10-25 19:26:31 -07001309
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001310 if (ufid_present)
1311 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1312 else
1313 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001314 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001315 err = -ENOENT;
1316 goto unlock;
1317 }
Jesse Grossccb13522011-10-25 19:26:31 -07001318
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001319 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
Yifeng Sun804fe102018-09-26 11:40:14 -07001320 OVS_FLOW_CMD_GET, true, ufid_flags);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001321 if (IS_ERR(reply)) {
1322 err = PTR_ERR(reply);
1323 goto unlock;
1324 }
Jesse Grossccb13522011-10-25 19:26:31 -07001325
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001326 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001327 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001328unlock:
1329 ovs_unlock();
1330 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001331}
1332
1333static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1334{
1335 struct nlattr **a = info->attrs;
1336 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001337 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001338 struct sw_flow_key key;
1339 struct sk_buff *reply;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001340 struct sw_flow *flow = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001341 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001342 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001343 struct sw_flow_id ufid;
1344 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001345 int err;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001346 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001347 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001348
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001349 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1350 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001351 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001352 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1353 NULL, log);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001354 if (unlikely(err))
1355 return err;
1356 }
1357
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001358 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001359 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001360 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001361 err = -ENODEV;
1362 goto unlock;
1363 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001364
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001365 if (unlikely(!a[OVS_FLOW_ATTR_KEY] && !ufid_present)) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001366 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001367 goto unlock;
1368 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001369
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001370 if (ufid_present)
1371 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1372 else
1373 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001374 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001375 err = -ENOENT;
1376 goto unlock;
1377 }
Jesse Grossccb13522011-10-25 19:26:31 -07001378
Pravin B Shelarb637e492013-10-04 00:14:23 -07001379 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001380 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001381
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001382 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001383 &flow->id, info, false, ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001384 if (likely(reply)) {
Enrico Weigeltb90f5aa2019-06-05 23:06:40 +02001385 if (!IS_ERR(reply)) {
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001386 rcu_read_lock(); /*To keep RCU checker happy. */
1387 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1388 reply, info->snd_portid,
1389 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001390 OVS_FLOW_CMD_DEL,
1391 ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001392 rcu_read_unlock();
Paolo Abeni8a574f82019-12-01 18:41:25 +01001393 if (WARN_ON_ONCE(err < 0)) {
1394 kfree_skb(reply);
1395 goto out_free;
1396 }
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001397
1398 ovs_notify(&dp_flow_genl_family, reply, info);
1399 } else {
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001400 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0,
1401 PTR_ERR(reply));
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001402 }
1403 }
1404
Paolo Abeni8a574f82019-12-01 18:41:25 +01001405out_free:
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001406 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001407 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001408unlock:
1409 ovs_unlock();
1410 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001411}
1412
1413static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1414{
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001415 struct nlattr *a[__OVS_FLOW_ATTR_MAX];
Jesse Grossccb13522011-10-25 19:26:31 -07001416 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001417 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001418 struct datapath *dp;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001419 u32 ufid_flags;
1420 int err;
1421
Johannes Berg8cb08172019-04-26 14:07:28 +02001422 err = genlmsg_parse_deprecated(cb->nlh, &dp_flow_genl_family, a,
1423 OVS_FLOW_ATTR_MAX, flow_policy, NULL);
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001424 if (err)
1425 return err;
1426 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001427
Pravin B Shelard57170b2013-07-30 15:39:39 -07001428 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07001429 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001430 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001431 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001432 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001433 }
Jesse Grossccb13522011-10-25 19:26:31 -07001434
Pravin B Shelarb637e492013-10-04 00:14:23 -07001435 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001436 for (;;) {
1437 struct sw_flow *flow;
1438 u32 bucket, obj;
1439
1440 bucket = cb->args[0];
1441 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001442 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001443 if (!flow)
1444 break;
1445
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001446 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001447 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001448 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001449 OVS_FLOW_CMD_GET, ufid_flags) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001450 break;
1451
1452 cb->args[0] = bucket;
1453 cb->args[1] = obj;
1454 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001455 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001456 return skb->len;
1457}
1458
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001459static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1460 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001461 [OVS_FLOW_ATTR_MASK] = { .type = NLA_NESTED },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001462 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1463 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001464 [OVS_FLOW_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001465 [OVS_FLOW_ATTR_UFID] = { .type = NLA_UNSPEC, .len = 1 },
1466 [OVS_FLOW_ATTR_UFID_FLAGS] = { .type = NLA_U32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001467};
1468
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001469static const struct genl_small_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001470 { .cmd = OVS_FLOW_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001471 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001472 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001473 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001474 },
1475 { .cmd = OVS_FLOW_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001476 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001477 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001478 .doit = ovs_flow_cmd_del
1479 },
1480 { .cmd = OVS_FLOW_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001481 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001482 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001483 .doit = ovs_flow_cmd_get,
1484 .dumpit = ovs_flow_cmd_dump
1485 },
1486 { .cmd = OVS_FLOW_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001487 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001488 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001489 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001490 },
1491};
1492
Johannes Berg56989f62016-10-24 14:40:05 +02001493static struct genl_family dp_flow_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001494 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001495 .name = OVS_FLOW_FAMILY,
1496 .version = OVS_FLOW_VERSION,
1497 .maxattr = OVS_FLOW_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001498 .policy = flow_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001499 .netnsok = true,
1500 .parallel_ops = true,
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001501 .small_ops = dp_flow_genl_ops,
1502 .n_small_ops = ARRAY_SIZE(dp_flow_genl_ops),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001503 .mcgrps = &ovs_dp_flow_multicast_group,
1504 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001505 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001506};
1507
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001508static size_t ovs_dp_cmd_msg_size(void)
1509{
1510 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1511
1512 msgsize += nla_total_size(IFNAMSIZ);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001513 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_stats));
1514 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001515 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Eelco Chaudron9bf24f52020-07-31 14:21:34 +02001516 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_MASKS_CACHE_SIZE */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001517
1518 return msgsize;
1519}
1520
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001521/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -07001522static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001523 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001524{
1525 struct ovs_header *ovs_header;
1526 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001527 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001528 int err;
1529
Eric W. Biederman15e47302012-09-07 20:12:54 +00001530 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001531 flags, cmd);
Jesse Grossccb13522011-10-25 19:26:31 -07001532 if (!ovs_header)
1533 goto error;
1534
1535 ovs_header->dp_ifindex = get_dpifindex(dp);
1536
Jesse Grossccb13522011-10-25 19:26:31 -07001537 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001538 if (err)
1539 goto nla_put_failure;
1540
Andy Zhou1bd71162013-10-22 10:42:46 -07001541 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001542 if (nla_put_64bit(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1543 &dp_stats, OVS_DP_ATTR_PAD))
Andy Zhou1bd71162013-10-22 10:42:46 -07001544 goto nla_put_failure;
1545
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001546 if (nla_put_64bit(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1547 sizeof(struct ovs_dp_megaflow_stats),
1548 &dp_megaflow_stats, OVS_DP_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001549 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001550
Thomas Graf43d4be92013-12-13 15:22:18 +01001551 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1552 goto nla_put_failure;
1553
Eelco Chaudron9bf24f52020-07-31 14:21:34 +02001554 if (nla_put_u32(skb, OVS_DP_ATTR_MASKS_CACHE_SIZE,
1555 ovs_flow_tbl_masks_cache_size(&dp->table)))
1556 goto nla_put_failure;
1557
Johannes Berg053c0952015-01-16 22:09:00 +01001558 genlmsg_end(skb, ovs_header);
1559 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001560
1561nla_put_failure:
1562 genlmsg_cancel(skb, ovs_header);
1563error:
1564 return -EMSGSIZE;
1565}
1566
Florian Westphal263ea092016-02-18 15:03:26 +01001567static struct sk_buff *ovs_dp_cmd_alloc_info(void)
Jesse Grossccb13522011-10-25 19:26:31 -07001568{
Florian Westphal551ddc02016-02-18 15:03:25 +01001569 return genlmsg_new(ovs_dp_cmd_msg_size(), GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001570}
1571
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001572/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001573static struct datapath *lookup_datapath(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001574 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001575 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1576{
1577 struct datapath *dp;
1578
1579 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001580 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001581 else {
1582 struct vport *vport;
1583
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001584 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001585 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001586 }
1587 return dp ? dp : ERR_PTR(-ENODEV);
1588}
1589
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001590static void ovs_dp_reset_user_features(struct sk_buff *skb,
1591 struct genl_info *info)
Thomas Graf44da5ae2013-12-13 15:22:19 +01001592{
1593 struct datapath *dp;
1594
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001595 dp = lookup_datapath(sock_net(skb->sk), info->userhdr,
1596 info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001597 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001598 return;
1599
1600 WARN(dp->user_features, "Dropping previously announced user features\n");
1601 dp->user_features = 0;
1602}
1603
Paul Blakey95a72332019-09-04 16:56:37 +03001604DEFINE_STATIC_KEY_FALSE(tc_recirc_sharing_support);
1605
Mark Grayb83d23a2021-07-15 08:27:54 -04001606static int ovs_dp_set_upcall_portids(struct datapath *dp,
1607 const struct nlattr *ids)
1608{
1609 struct dp_nlsk_pids *old, *dp_nlsk_pids;
1610
1611 if (!nla_len(ids) || nla_len(ids) % sizeof(u32))
1612 return -EINVAL;
1613
1614 old = ovsl_dereference(dp->upcall_portids);
1615
1616 dp_nlsk_pids = kmalloc(sizeof(*dp_nlsk_pids) + nla_len(ids),
1617 GFP_KERNEL);
1618 if (!dp_nlsk_pids)
1619 return -ENOMEM;
1620
1621 dp_nlsk_pids->n_pids = nla_len(ids) / sizeof(u32);
1622 nla_memcpy(dp_nlsk_pids->pids, ids, nla_len(ids));
1623
1624 rcu_assign_pointer(dp->upcall_portids, dp_nlsk_pids);
1625
1626 kfree_rcu(old, rcu);
1627
1628 return 0;
1629}
1630
1631u32 ovs_dp_get_upcall_portid(const struct datapath *dp, uint32_t cpu_id)
1632{
1633 struct dp_nlsk_pids *dp_nlsk_pids;
1634
1635 dp_nlsk_pids = rcu_dereference(dp->upcall_portids);
1636
1637 if (dp_nlsk_pids) {
1638 if (cpu_id < dp_nlsk_pids->n_pids) {
1639 return dp_nlsk_pids->pids[cpu_id];
Mark Gray784dcfa2021-07-23 10:24:13 -04001640 } else if (dp_nlsk_pids->n_pids > 0 &&
1641 cpu_id >= dp_nlsk_pids->n_pids) {
1642 /* If the number of netlink PIDs is mismatched with
1643 * the number of CPUs as seen by the kernel, log this
1644 * and send the upcall to an arbitrary socket (0) in
1645 * order to not drop packets
Mark Grayb83d23a2021-07-15 08:27:54 -04001646 */
1647 pr_info_ratelimited("cpu_id mismatch with handler threads");
Mark Gray784dcfa2021-07-23 10:24:13 -04001648 return dp_nlsk_pids->pids[cpu_id %
1649 dp_nlsk_pids->n_pids];
Mark Grayb83d23a2021-07-15 08:27:54 -04001650 } else {
1651 return 0;
1652 }
1653 } else {
1654 return 0;
1655 }
1656}
1657
Paul Blakey95a72332019-09-04 16:56:37 +03001658static int ovs_dp_change(struct datapath *dp, struct nlattr *a[])
Thomas Graf43d4be92013-12-13 15:22:18 +01001659{
Paul Blakey95a72332019-09-04 16:56:37 +03001660 u32 user_features = 0;
Mark Grayb83d23a2021-07-15 08:27:54 -04001661 int err;
Paul Blakey95a72332019-09-04 16:56:37 +03001662
1663 if (a[OVS_DP_ATTR_USER_FEATURES]) {
1664 user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1665
1666 if (user_features & ~(OVS_DP_F_VPORT_PIDS |
1667 OVS_DP_F_UNALIGNED |
Mark Grayb83d23a2021-07-15 08:27:54 -04001668 OVS_DP_F_TC_RECIRC_SHARING |
1669 OVS_DP_F_DISPATCH_UPCALL_PER_CPU))
Paul Blakey95a72332019-09-04 16:56:37 +03001670 return -EOPNOTSUPP;
1671
1672#if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
1673 if (user_features & OVS_DP_F_TC_RECIRC_SHARING)
1674 return -EOPNOTSUPP;
1675#endif
1676 }
1677
Eelco Chaudron9bf24f52020-07-31 14:21:34 +02001678 if (a[OVS_DP_ATTR_MASKS_CACHE_SIZE]) {
1679 int err;
1680 u32 cache_size;
1681
1682 cache_size = nla_get_u32(a[OVS_DP_ATTR_MASKS_CACHE_SIZE]);
1683 err = ovs_flow_tbl_masks_cache_resize(&dp->table, cache_size);
1684 if (err)
1685 return err;
1686 }
1687
Paul Blakey95a72332019-09-04 16:56:37 +03001688 dp->user_features = user_features;
1689
Mark Grayb83d23a2021-07-15 08:27:54 -04001690 if (dp->user_features & OVS_DP_F_DISPATCH_UPCALL_PER_CPU &&
1691 a[OVS_DP_ATTR_PER_CPU_PIDS]) {
1692 /* Upcall Netlink Port IDs have been updated */
1693 err = ovs_dp_set_upcall_portids(dp,
1694 a[OVS_DP_ATTR_PER_CPU_PIDS]);
1695 if (err)
1696 return err;
1697 }
1698
Paul Blakey95a72332019-09-04 16:56:37 +03001699 if (dp->user_features & OVS_DP_F_TC_RECIRC_SHARING)
1700 static_branch_enable(&tc_recirc_sharing_support);
1701 else
1702 static_branch_disable(&tc_recirc_sharing_support);
1703
1704 return 0;
Thomas Graf43d4be92013-12-13 15:22:18 +01001705}
1706
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001707static int ovs_dp_stats_init(struct datapath *dp)
1708{
1709 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
1710 if (!dp->stats_percpu)
1711 return -ENOMEM;
1712
1713 return 0;
1714}
1715
1716static int ovs_dp_vport_init(struct datapath *dp)
1717{
1718 int i;
1719
1720 dp->ports = kmalloc_array(DP_VPORT_HASH_BUCKETS,
1721 sizeof(struct hlist_head),
1722 GFP_KERNEL);
1723 if (!dp->ports)
1724 return -ENOMEM;
1725
1726 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1727 INIT_HLIST_HEAD(&dp->ports[i]);
1728
1729 return 0;
1730}
1731
Jesse Grossccb13522011-10-25 19:26:31 -07001732static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1733{
1734 struct nlattr **a = info->attrs;
1735 struct vport_parms parms;
1736 struct sk_buff *reply;
1737 struct datapath *dp;
1738 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001739 struct ovs_net *ovs_net;
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001740 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001741
1742 err = -EINVAL;
1743 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1744 goto err;
1745
Florian Westphal263ea092016-02-18 15:03:26 +01001746 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001747 if (!reply)
1748 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001749
1750 err = -ENOMEM;
1751 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1752 if (dp == NULL)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001753 goto err_destroy_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001754
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -05001755 ovs_dp_set_net(dp, sock_net(skb->sk));
Jesse Grossccb13522011-10-25 19:26:31 -07001756
1757 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001758 err = ovs_flow_tbl_init(&dp->table);
1759 if (err)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001760 goto err_destroy_dp;
Jesse Grossccb13522011-10-25 19:26:31 -07001761
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001762 err = ovs_dp_stats_init(dp);
1763 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001764 goto err_destroy_table;
Jesse Grossccb13522011-10-25 19:26:31 -07001765
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001766 err = ovs_dp_vport_init(dp);
1767 if (err)
1768 goto err_destroy_stats;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001769
Andy Zhou96fbc132017-11-10 12:09:42 -08001770 err = ovs_meters_init(dp);
1771 if (err)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001772 goto err_destroy_ports;
Andy Zhou96fbc132017-11-10 12:09:42 -08001773
Jesse Grossccb13522011-10-25 19:26:31 -07001774 /* Set up our datapath device. */
1775 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1776 parms.type = OVS_VPORT_TYPE_INTERNAL;
1777 parms.options = NULL;
1778 parms.dp = dp;
1779 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001780 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001781
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001782 /* So far only local changes have been made, now need the lock. */
1783 ovs_lock();
1784
Eelco Chaudronfea07a42020-11-03 09:25:49 +01001785 err = ovs_dp_change(dp, a);
1786 if (err)
1787 goto err_unlock_and_destroy_meters;
1788
Jesse Grossccb13522011-10-25 19:26:31 -07001789 vport = new_vport(&parms);
1790 if (IS_ERR(vport)) {
1791 err = PTR_ERR(vport);
1792 if (err == -EBUSY)
1793 err = -EEXIST;
1794
Thomas Graf44da5ae2013-12-13 15:22:19 +01001795 if (err == -EEXIST) {
1796 /* An outdated user space instance that does not understand
1797 * the concept of user_features has attempted to create a new
1798 * datapath and is likely to reuse it. Drop all user features.
1799 */
1800 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1801 ovs_dp_reset_user_features(skb, info);
1802 }
1803
Eelco Chaudronfea07a42020-11-03 09:25:49 +01001804 goto err_unlock_and_destroy_meters;
Jesse Grossccb13522011-10-25 19:26:31 -07001805 }
1806
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001807 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1808 info->snd_seq, 0, OVS_DP_CMD_NEW);
1809 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001810
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001811 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001812 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001813
1814 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001815
Johannes Berg2a94fe42013-11-19 15:19:39 +01001816 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001817 return 0;
1818
Eelco Chaudronfea07a42020-11-03 09:25:49 +01001819err_unlock_and_destroy_meters:
1820 ovs_unlock();
Andy Zhou96fbc132017-11-10 12:09:42 -08001821 ovs_meters_exit(dp);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001822err_destroy_ports:
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001823 kfree(dp->ports);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001824err_destroy_stats:
Jesse Grossccb13522011-10-25 19:26:31 -07001825 free_percpu(dp->stats_percpu);
1826err_destroy_table:
Pravin B Shelar9b996e52014-05-06 18:41:20 -07001827 ovs_flow_tbl_destroy(&dp->table);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001828err_destroy_dp:
Jesse Grossccb13522011-10-25 19:26:31 -07001829 kfree(dp);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001830err_destroy_reply:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001831 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001832err:
1833 return err;
1834}
1835
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001836/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001837static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001838{
Tonghao Zhang1f3a0902020-08-12 17:56:39 +08001839 struct flow_table *table = &dp->table;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001840 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001841
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001842 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1843 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001844 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001845
Sasha Levinb67bfe02013-02-27 17:06:00 -08001846 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001847 if (vport->port_no != OVSP_LOCAL)
1848 ovs_dp_detach_port(vport);
1849 }
Jesse Grossccb13522011-10-25 19:26:31 -07001850
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001851 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001852
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001853 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001854 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001855 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001856 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001857
Tonghao Zhang1f3a0902020-08-12 17:56:39 +08001858 /* Flush sw_flow in the tables. RCU cb only releases resource
1859 * such as dp, ports and tables. That may avoid some issues
1860 * such as RCU usage warning.
1861 */
1862 table_instance_flow_flush(table, ovsl_dereference(table->ti),
1863 ovsl_dereference(table->ufid_ti));
1864
1865 /* RCU destroy the ports, meters and flow tables. */
Jesse Grossccb13522011-10-25 19:26:31 -07001866 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001867}
1868
1869static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1870{
1871 struct sk_buff *reply;
1872 struct datapath *dp;
1873 int err;
1874
Florian Westphal263ea092016-02-18 15:03:26 +01001875 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001876 if (!reply)
1877 return -ENOMEM;
1878
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001879 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001880 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1881 err = PTR_ERR(dp);
1882 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001883 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001884
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001885 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1886 info->snd_seq, 0, OVS_DP_CMD_DEL);
1887 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001888
1889 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001890 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001891
Johannes Berg2a94fe42013-11-19 15:19:39 +01001892 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001893
1894 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001895
1896err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001897 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001898 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001899 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001900}
1901
1902static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1903{
1904 struct sk_buff *reply;
1905 struct datapath *dp;
1906 int err;
1907
Florian Westphal263ea092016-02-18 15:03:26 +01001908 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001909 if (!reply)
1910 return -ENOMEM;
1911
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001912 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001913 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001914 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001915 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001916 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001917
Paul Blakey95a72332019-09-04 16:56:37 +03001918 err = ovs_dp_change(dp, info->attrs);
1919 if (err)
1920 goto err_unlock_free;
Thomas Graf43d4be92013-12-13 15:22:18 +01001921
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001922 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001923 info->snd_seq, 0, OVS_DP_CMD_SET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001924 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001925
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001926 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001927 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001928
1929 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001930
1931err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001932 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001933 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001934 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001935}
1936
1937static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1938{
1939 struct sk_buff *reply;
1940 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001941 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001942
Florian Westphal263ea092016-02-18 15:03:26 +01001943 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001944 if (!reply)
1945 return -ENOMEM;
1946
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001947 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001948 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001949 if (IS_ERR(dp)) {
1950 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001951 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001952 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001953 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001954 info->snd_seq, 0, OVS_DP_CMD_GET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001955 BUG_ON(err < 0);
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001956 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001957
Jesse Grossccb13522011-10-25 19:26:31 -07001958 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001959
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001960err_unlock_free:
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001961 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001962 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001963 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001964}
1965
1966static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1967{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001968 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001969 struct datapath *dp;
1970 int skip = cb->args[0];
1971 int i = 0;
1972
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001973 ovs_lock();
1974 list_for_each_entry(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001975 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001976 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001977 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001978 OVS_DP_CMD_GET) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001979 break;
1980 i++;
1981 }
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001982 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001983
1984 cb->args[0] = i;
1985
1986 return skb->len;
1987}
1988
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001989static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1990 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1991 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1992 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
Eelco Chaudron9bf24f52020-07-31 14:21:34 +02001993 [OVS_DP_ATTR_MASKS_CACHE_SIZE] = NLA_POLICY_RANGE(NLA_U32, 0,
1994 PCPU_MIN_UNIT_SIZE / sizeof(struct mask_cache_entry)),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001995};
1996
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001997static const struct genl_small_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001998 { .cmd = OVS_DP_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001999 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002000 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002001 .doit = ovs_dp_cmd_new
2002 },
2003 { .cmd = OVS_DP_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02002004 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002005 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002006 .doit = ovs_dp_cmd_del
2007 },
2008 { .cmd = OVS_DP_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002009 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07002010 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07002011 .doit = ovs_dp_cmd_get,
2012 .dumpit = ovs_dp_cmd_dump
2013 },
2014 { .cmd = OVS_DP_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002015 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002016 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002017 .doit = ovs_dp_cmd_set,
2018 },
2019};
2020
Johannes Berg56989f62016-10-24 14:40:05 +02002021static struct genl_family dp_datapath_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07002022 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002023 .name = OVS_DATAPATH_FAMILY,
2024 .version = OVS_DATAPATH_VERSION,
2025 .maxattr = OVS_DP_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01002026 .policy = datapath_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00002027 .netnsok = true,
2028 .parallel_ops = true,
Jakub Kicinski66a9b922020-10-02 14:49:54 -07002029 .small_ops = dp_datapath_genl_ops,
2030 .n_small_ops = ARRAY_SIZE(dp_datapath_genl_ops),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002031 .mcgrps = &ovs_dp_datapath_multicast_group,
2032 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02002033 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07002034};
2035
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002036/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07002037static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Jiri Benc9354d452017-11-02 17:04:37 -02002038 struct net *net, u32 portid, u32 seq,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002039 u32 flags, u8 cmd, gfp_t gfp)
Jesse Grossccb13522011-10-25 19:26:31 -07002040{
2041 struct ovs_header *ovs_header;
2042 struct ovs_vport_stats vport_stats;
2043 int err;
2044
Eric W. Biederman15e47302012-09-07 20:12:54 +00002045 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07002046 flags, cmd);
2047 if (!ovs_header)
2048 return -EMSGSIZE;
2049
2050 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
2051
David S. Miller028d6a62012-03-29 23:20:48 -04002052 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
2053 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07002054 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
Jiri Benc9354d452017-11-02 17:04:37 -02002055 ovs_vport_name(vport)) ||
2056 nla_put_u32(skb, OVS_VPORT_ATTR_IFINDEX, vport->dev->ifindex))
David S. Miller028d6a62012-03-29 23:20:48 -04002057 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07002058
Jiri Benc9354d452017-11-02 17:04:37 -02002059 if (!net_eq(net, dev_net(vport->dev))) {
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002060 int id = peernet2id_alloc(net, dev_net(vport->dev), gfp);
Jiri Benc9354d452017-11-02 17:04:37 -02002061
2062 if (nla_put_s32(skb, OVS_VPORT_ATTR_NETNSID, id))
2063 goto nla_put_failure;
2064 }
2065
Jesse Grossccb13522011-10-25 19:26:31 -07002066 ovs_vport_get_stats(vport, &vport_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02002067 if (nla_put_64bit(skb, OVS_VPORT_ATTR_STATS,
2068 sizeof(struct ovs_vport_stats), &vport_stats,
2069 OVS_VPORT_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04002070 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07002071
Alex Wang5cd667b2014-07-17 15:14:13 -07002072 if (ovs_vport_get_upcall_portids(vport, skb))
2073 goto nla_put_failure;
2074
Jesse Grossccb13522011-10-25 19:26:31 -07002075 err = ovs_vport_get_options(vport, skb);
2076 if (err == -EMSGSIZE)
2077 goto error;
2078
Johannes Berg053c0952015-01-16 22:09:00 +01002079 genlmsg_end(skb, ovs_header);
2080 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002081
2082nla_put_failure:
2083 err = -EMSGSIZE;
2084error:
2085 genlmsg_cancel(skb, ovs_header);
2086 return err;
2087}
2088
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002089static struct sk_buff *ovs_vport_cmd_alloc_info(void)
2090{
2091 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2092}
2093
2094/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Jiri Benc9354d452017-11-02 17:04:37 -02002095struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, struct net *net,
2096 u32 portid, u32 seq, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07002097{
2098 struct sk_buff *skb;
2099 int retval;
2100
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002101 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07002102 if (!skb)
2103 return ERR_PTR(-ENOMEM);
2104
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002105 retval = ovs_vport_cmd_fill_info(vport, skb, net, portid, seq, 0, cmd,
2106 GFP_KERNEL);
Jesse Grossa9341512013-03-26 15:48:38 -07002107 BUG_ON(retval < 0);
2108
Jesse Grossccb13522011-10-25 19:26:31 -07002109 return skb;
2110}
2111
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002112/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002113static struct vport *lookup_vport(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08002114 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07002115 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
2116{
2117 struct datapath *dp;
2118 struct vport *vport;
2119
Jiri Benc9354d452017-11-02 17:04:37 -02002120 if (a[OVS_VPORT_ATTR_IFINDEX])
2121 return ERR_PTR(-EOPNOTSUPP);
Jesse Grossccb13522011-10-25 19:26:31 -07002122 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002123 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07002124 if (!vport)
2125 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08002126 if (ovs_header->dp_ifindex &&
2127 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
2128 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07002129 return vport;
2130 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
2131 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
2132
2133 if (port_no >= DP_MAX_PORTS)
2134 return ERR_PTR(-EFBIG);
2135
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002136 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002137 if (!dp)
2138 return ERR_PTR(-ENODEV);
2139
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002140 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002141 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08002142 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07002143 return vport;
2144 } else
2145 return ERR_PTR(-EINVAL);
Jiri Benc9354d452017-11-02 17:04:37 -02002146
Jesse Grossccb13522011-10-25 19:26:31 -07002147}
2148
Taehee Yoo6b660c42019-07-06 01:08:09 +09002149static unsigned int ovs_get_max_headroom(struct datapath *dp)
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002150{
Taehee Yoo6b660c42019-07-06 01:08:09 +09002151 unsigned int dev_headroom, max_headroom = 0;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002152 struct net_device *dev;
2153 struct vport *vport;
2154 int i;
2155
2156 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +05302157 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002158 lockdep_ovsl_is_held()) {
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002159 dev = vport->dev;
2160 dev_headroom = netdev_get_fwd_headroom(dev);
2161 if (dev_headroom > max_headroom)
2162 max_headroom = dev_headroom;
2163 }
2164 }
2165
Taehee Yoo6b660c42019-07-06 01:08:09 +09002166 return max_headroom;
2167}
2168
2169/* Called with ovs_mutex */
2170static void ovs_update_headroom(struct datapath *dp, unsigned int new_headroom)
2171{
2172 struct vport *vport;
2173 int i;
2174
2175 dp->max_headroom = new_headroom;
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002176 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +05302177 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002178 lockdep_ovsl_is_held())
Taehee Yoo6b660c42019-07-06 01:08:09 +09002179 netdev_set_rx_headroom(vport->dev, new_headroom);
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002180 }
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002181}
2182
Jesse Grossccb13522011-10-25 19:26:31 -07002183static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
2184{
2185 struct nlattr **a = info->attrs;
2186 struct ovs_header *ovs_header = info->userhdr;
2187 struct vport_parms parms;
2188 struct sk_buff *reply;
2189 struct vport *vport;
2190 struct datapath *dp;
Taehee Yoo6b660c42019-07-06 01:08:09 +09002191 unsigned int new_headroom;
Jesse Grossccb13522011-10-25 19:26:31 -07002192 u32 port_no;
2193 int err;
2194
Jesse Grossccb13522011-10-25 19:26:31 -07002195 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
2196 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002197 return -EINVAL;
Jiri Benc9354d452017-11-02 17:04:37 -02002198 if (a[OVS_VPORT_ATTR_IFINDEX])
2199 return -EOPNOTSUPP;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002200
2201 port_no = a[OVS_VPORT_ATTR_PORT_NO]
2202 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
2203 if (port_no >= DP_MAX_PORTS)
2204 return -EFBIG;
2205
2206 reply = ovs_vport_cmd_alloc_info();
2207 if (!reply)
2208 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07002209
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002210 ovs_lock();
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002211restart:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002212 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002213 err = -ENODEV;
2214 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002215 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002216
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002217 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002218 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002219 err = -EBUSY;
2220 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002221 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002222 } else {
2223 for (port_no = 1; ; port_no++) {
2224 if (port_no >= DP_MAX_PORTS) {
2225 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002226 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002227 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002228 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002229 if (!vport)
2230 break;
2231 }
2232 }
2233
2234 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
2235 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
2236 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
2237 parms.dp = dp;
2238 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07002239 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07002240
2241 vport = new_vport(&parms);
2242 err = PTR_ERR(vport);
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002243 if (IS_ERR(vport)) {
2244 if (err == -EAGAIN)
2245 goto restart;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002246 goto exit_unlock_free;
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002247 }
Jesse Grossccb13522011-10-25 19:26:31 -07002248
Jiri Benc9354d452017-11-02 17:04:37 -02002249 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2250 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002251 OVS_VPORT_CMD_NEW, GFP_KERNEL);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002252
Taehee Yoo6b660c42019-07-06 01:08:09 +09002253 new_headroom = netdev_get_fwd_headroom(vport->dev);
2254
2255 if (new_headroom > dp->max_headroom)
2256 ovs_update_headroom(dp, new_headroom);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002257 else
2258 netdev_set_rx_headroom(vport->dev, dp->max_headroom);
2259
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002260 BUG_ON(err < 0);
2261 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01002262
Johannes Berg2a94fe42013-11-19 15:19:39 +01002263 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002264 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002265
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002266exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002267 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002268 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002269 return err;
2270}
2271
2272static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
2273{
2274 struct nlattr **a = info->attrs;
2275 struct sk_buff *reply;
2276 struct vport *vport;
2277 int err;
2278
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002279 reply = ovs_vport_cmd_alloc_info();
2280 if (!reply)
2281 return -ENOMEM;
2282
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002283 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002284 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002285 err = PTR_ERR(vport);
2286 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002287 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002288
Jesse Grossccb13522011-10-25 19:26:31 -07002289 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07002290 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07002291 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002292 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07002293 }
2294
Jesse Grossf44f3402013-05-13 08:15:26 -07002295 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07002296 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07002297 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002298 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07002299 }
Jesse Grossa9341512013-03-26 15:48:38 -07002300
Alex Wang5cd667b2014-07-17 15:14:13 -07002301
2302 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
2303 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
2304
2305 err = ovs_vport_set_upcall_portids(vport, ids);
2306 if (err)
2307 goto exit_unlock_free;
2308 }
Jesse Grossccb13522011-10-25 19:26:31 -07002309
Jiri Benc9354d452017-11-02 17:04:37 -02002310 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2311 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002312 OVS_VPORT_CMD_SET, GFP_KERNEL);
Jesse Grossa9341512013-03-26 15:48:38 -07002313 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002314
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002315 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01002316 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002317 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002318
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002319exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002320 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002321 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002322 return err;
2323}
2324
2325static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2326{
Taehee Yoo6b660c42019-07-06 01:08:09 +09002327 bool update_headroom = false;
Jesse Grossccb13522011-10-25 19:26:31 -07002328 struct nlattr **a = info->attrs;
2329 struct sk_buff *reply;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002330 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07002331 struct vport *vport;
Taehee Yoo6b660c42019-07-06 01:08:09 +09002332 unsigned int new_headroom;
Jesse Grossccb13522011-10-25 19:26:31 -07002333 int err;
2334
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002335 reply = ovs_vport_cmd_alloc_info();
2336 if (!reply)
2337 return -ENOMEM;
2338
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002339 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002340 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002341 err = PTR_ERR(vport);
2342 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002343 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002344
2345 if (vport->port_no == OVSP_LOCAL) {
2346 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002347 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002348 }
2349
Jiri Benc9354d452017-11-02 17:04:37 -02002350 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2351 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002352 OVS_VPORT_CMD_DEL, GFP_KERNEL);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002353 BUG_ON(err < 0);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002354
2355 /* the vport deletion may trigger dp headroom update */
2356 dp = vport->dp;
2357 if (netdev_get_fwd_headroom(vport->dev) == dp->max_headroom)
Taehee Yoo6b660c42019-07-06 01:08:09 +09002358 update_headroom = true;
2359
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002360 netdev_reset_rx_headroom(vport->dev);
Jesse Grossccb13522011-10-25 19:26:31 -07002361 ovs_dp_detach_port(vport);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002362
Taehee Yoo6b660c42019-07-06 01:08:09 +09002363 if (update_headroom) {
2364 new_headroom = ovs_get_max_headroom(dp);
2365
2366 if (new_headroom < dp->max_headroom)
2367 ovs_update_headroom(dp, new_headroom);
2368 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002369 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07002370
Johannes Berg2a94fe42013-11-19 15:19:39 +01002371 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002372 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002373
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002374exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002375 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002376 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002377 return err;
2378}
2379
2380static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2381{
2382 struct nlattr **a = info->attrs;
2383 struct ovs_header *ovs_header = info->userhdr;
2384 struct sk_buff *reply;
2385 struct vport *vport;
2386 int err;
2387
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002388 reply = ovs_vport_cmd_alloc_info();
2389 if (!reply)
2390 return -ENOMEM;
2391
Jesse Grossccb13522011-10-25 19:26:31 -07002392 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002393 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002394 err = PTR_ERR(vport);
2395 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002396 goto exit_unlock_free;
Jiri Benc9354d452017-11-02 17:04:37 -02002397 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2398 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002399 OVS_VPORT_CMD_GET, GFP_ATOMIC);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002400 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002401 rcu_read_unlock();
2402
2403 return genlmsg_reply(reply, info);
2404
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002405exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07002406 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002407 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002408 return err;
2409}
2410
2411static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2412{
2413 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2414 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002415 int bucket = cb->args[0], skip = cb->args[1];
2416 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002417
Jesse Grossccb13522011-10-25 19:26:31 -07002418 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07002419 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08002420 if (!dp) {
2421 rcu_read_unlock();
2422 return -ENODEV;
2423 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002424 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002425 struct vport *vport;
2426
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002427 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002428 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002429 if (j >= skip &&
2430 ovs_vport_cmd_fill_info(vport, skb,
Jiri Benc9354d452017-11-02 17:04:37 -02002431 sock_net(skb->sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002432 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002433 cb->nlh->nlmsg_seq,
2434 NLM_F_MULTI,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002435 OVS_VPORT_CMD_GET,
2436 GFP_ATOMIC) < 0)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002437 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07002438
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002439 j++;
2440 }
2441 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002442 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002443out:
Jesse Grossccb13522011-10-25 19:26:31 -07002444 rcu_read_unlock();
2445
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002446 cb->args[0] = i;
2447 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07002448
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002449 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07002450}
2451
Eelco Chaudroneac87c42020-07-15 14:09:28 +02002452static void ovs_dp_masks_rebalance(struct work_struct *work)
2453{
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002454 struct ovs_net *ovs_net = container_of(work, struct ovs_net,
2455 masks_rebalance.work);
2456 struct datapath *dp;
Eelco Chaudroneac87c42020-07-15 14:09:28 +02002457
2458 ovs_lock();
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002459
2460 list_for_each_entry(dp, &ovs_net->dps, list_node)
2461 ovs_flow_masks_rebalance(&dp->table);
2462
Eelco Chaudroneac87c42020-07-15 14:09:28 +02002463 ovs_unlock();
2464
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002465 schedule_delayed_work(&ovs_net->masks_rebalance,
Eelco Chaudroneac87c42020-07-15 14:09:28 +02002466 msecs_to_jiffies(DP_MASKS_REBALANCE_INTERVAL));
2467}
2468
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002469static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
2470 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
2471 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
2472 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
2473 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
Li RongQingea8564c2019-09-24 19:11:52 +08002474 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_UNSPEC },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002475 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
Jiri Benc9354d452017-11-02 17:04:37 -02002476 [OVS_VPORT_ATTR_IFINDEX] = { .type = NLA_U32 },
2477 [OVS_VPORT_ATTR_NETNSID] = { .type = NLA_S32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002478};
2479
Jakub Kicinski66a9b922020-10-02 14:49:54 -07002480static const struct genl_small_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07002481 { .cmd = OVS_VPORT_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02002482 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002483 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002484 .doit = ovs_vport_cmd_new
2485 },
2486 { .cmd = OVS_VPORT_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02002487 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002488 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002489 .doit = ovs_vport_cmd_del
2490 },
2491 { .cmd = OVS_VPORT_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002492 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07002493 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07002494 .doit = ovs_vport_cmd_get,
2495 .dumpit = ovs_vport_cmd_dump
2496 },
2497 { .cmd = OVS_VPORT_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002498 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002499 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002500 .doit = ovs_vport_cmd_set,
2501 },
2502};
2503
Johannes Berg56989f62016-10-24 14:40:05 +02002504struct genl_family dp_vport_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002505 .hdrsize = sizeof(struct ovs_header),
2506 .name = OVS_VPORT_FAMILY,
2507 .version = OVS_VPORT_VERSION,
2508 .maxattr = OVS_VPORT_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01002509 .policy = vport_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002510 .netnsok = true,
2511 .parallel_ops = true,
Jakub Kicinski66a9b922020-10-02 14:49:54 -07002512 .small_ops = dp_vport_genl_ops,
2513 .n_small_ops = ARRAY_SIZE(dp_vport_genl_ops),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002514 .mcgrps = &ovs_dp_vport_multicast_group,
2515 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02002516 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07002517};
2518
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002519static struct genl_family * const dp_genl_families[] = {
2520 &dp_datapath_genl_family,
2521 &dp_vport_genl_family,
2522 &dp_flow_genl_family,
2523 &dp_packet_genl_family,
Andy Zhou96fbc132017-11-10 12:09:42 -08002524 &dp_meter_genl_family,
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002525#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
2526 &dp_ct_limit_genl_family,
2527#endif
Jesse Grossccb13522011-10-25 19:26:31 -07002528};
2529
2530static void dp_unregister_genl(int n_families)
2531{
2532 int i;
2533
2534 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002535 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002536}
2537
Johannes Berg56989f62016-10-24 14:40:05 +02002538static int __init dp_register_genl(void)
Jesse Grossccb13522011-10-25 19:26:31 -07002539{
Jesse Grossccb13522011-10-25 19:26:31 -07002540 int err;
2541 int i;
2542
Jesse Grossccb13522011-10-25 19:26:31 -07002543 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002544
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002545 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002546 if (err)
2547 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002548 }
2549
2550 return 0;
2551
2552error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002553 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002554 return err;
2555}
2556
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002557static int __net_init ovs_init_net(struct net *net)
2558{
2559 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
Eelco Chaudrone0afe912020-08-31 11:57:57 +02002560 int err;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002561
2562 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002563 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002564 INIT_DELAYED_WORK(&ovs_net->masks_rebalance, ovs_dp_masks_rebalance);
Eelco Chaudrone0afe912020-08-31 11:57:57 +02002565
2566 err = ovs_ct_init(net);
2567 if (err)
2568 return err;
2569
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002570 schedule_delayed_work(&ovs_net->masks_rebalance,
2571 msecs_to_jiffies(DP_MASKS_REBALANCE_INTERVAL));
Eelco Chaudrone0afe912020-08-31 11:57:57 +02002572 return 0;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002573}
2574
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002575static void __net_exit list_vports_from_net(struct net *net, struct net *dnet,
2576 struct list_head *head)
2577{
2578 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2579 struct datapath *dp;
2580
2581 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2582 int i;
2583
2584 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2585 struct vport *vport;
2586
2587 hlist_for_each_entry(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002588 if (vport->ops->type != OVS_VPORT_TYPE_INTERNAL)
2589 continue;
2590
Thomas Grafbe4ace62015-07-21 10:44:04 +02002591 if (dev_net(vport->dev) == dnet)
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002592 list_add(&vport->detach_list, head);
2593 }
2594 }
2595 }
2596}
2597
2598static void __net_exit ovs_exit_net(struct net *dnet)
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002599{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002600 struct datapath *dp, *dp_next;
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002601 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id);
2602 struct vport *vport, *vport_next;
2603 struct net *net;
2604 LIST_HEAD(head);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002605
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002606 ovs_lock();
Tonghao Zhang27de77c2020-04-17 02:57:31 +08002607
2608 ovs_ct_exit(dnet);
2609
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002610 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2611 __dp_destroy(dp);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002612
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002613 down_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002614 for_each_net(net)
2615 list_vports_from_net(net, dnet, &head);
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002616 up_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002617
2618 /* Detach all vports from given namespace. */
2619 list_for_each_entry_safe(vport, vport_next, &head, detach_list) {
2620 list_del(&vport->detach_list);
2621 ovs_dp_detach_port(vport);
2622 }
2623
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002624 ovs_unlock();
2625
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002626 cancel_delayed_work_sync(&ovs_net->masks_rebalance);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002627 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002628}
2629
2630static struct pernet_operations ovs_net_ops = {
2631 .init = ovs_init_net,
2632 .exit = ovs_exit_net,
2633 .id = &ovs_net_id,
2634 .size = sizeof(struct ovs_net),
2635};
2636
Jesse Grossccb13522011-10-25 19:26:31 -07002637static int __init dp_init(void)
2638{
Jesse Grossccb13522011-10-25 19:26:31 -07002639 int err;
2640
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002641 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) >
2642 sizeof_field(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002643
2644 pr_info("Open vSwitch switching datapath\n");
2645
Andy Zhou971427f32014-09-15 19:37:25 -07002646 err = action_fifos_init();
Jesse Grossccb13522011-10-25 19:26:31 -07002647 if (err)
2648 goto error;
2649
Andy Zhou971427f32014-09-15 19:37:25 -07002650 err = ovs_internal_dev_rtnl_link_register();
2651 if (err)
2652 goto error_action_fifos_exit;
2653
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002654 err = ovs_flow_init();
2655 if (err)
2656 goto error_unreg_rtnl_link;
2657
Jesse Grossccb13522011-10-25 19:26:31 -07002658 err = ovs_vport_init();
2659 if (err)
2660 goto error_flow_exit;
2661
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002662 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002663 if (err)
2664 goto error_vport_exit;
2665
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002666 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2667 if (err)
2668 goto error_netns_exit;
2669
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002670 err = ovs_netdev_init();
2671 if (err)
2672 goto error_unreg_notifier;
2673
Jesse Grossccb13522011-10-25 19:26:31 -07002674 err = dp_register_genl();
2675 if (err < 0)
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002676 goto error_unreg_netdev;
Jesse Grossccb13522011-10-25 19:26:31 -07002677
Jesse Grossccb13522011-10-25 19:26:31 -07002678 return 0;
2679
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002680error_unreg_netdev:
2681 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002682error_unreg_notifier:
2683 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002684error_netns_exit:
2685 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002686error_vport_exit:
2687 ovs_vport_exit();
2688error_flow_exit:
2689 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002690error_unreg_rtnl_link:
2691 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002692error_action_fifos_exit:
2693 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002694error:
2695 return err;
2696}
2697
2698static void dp_cleanup(void)
2699{
Jesse Grossccb13522011-10-25 19:26:31 -07002700 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002701 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002702 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002703 unregister_pernet_device(&ovs_net_ops);
2704 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002705 ovs_vport_exit();
2706 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002707 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002708 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002709}
2710
2711module_init(dp_init);
2712module_exit(dp_cleanup);
2713
2714MODULE_DESCRIPTION("Open vSwitch switching datapath");
2715MODULE_LICENSE("GPL");
Thadeu Lima de Souza Cascardoed227092016-09-09 17:42:30 -03002716MODULE_ALIAS_GENL_FAMILY(OVS_DATAPATH_FAMILY);
2717MODULE_ALIAS_GENL_FAMILY(OVS_VPORT_FAMILY);
2718MODULE_ALIAS_GENL_FAMILY(OVS_FLOW_FAMILY);
2719MODULE_ALIAS_GENL_FAMILY(OVS_PACKET_FAMILY);
Andy Zhou96fbc132017-11-10 12:09:42 -08002720MODULE_ALIAS_GENL_FAMILY(OVS_METER_FAMILY);
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002721MODULE_ALIAS_GENL_FAMILY(OVS_CT_LIMIT_FAMILY);