blob: bc164b35e67d827c2f99a0877851a095f22f958f [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
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700136/* Must be called with rcu_read_lock or ovs_mutex. */
Andy Zhou971427f32014-09-15 19:37:25 -0700137const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700138{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700139 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Thomas Grafc9db9652015-07-21 10:44:05 +0200140 return ovs_vport_name(vport);
Jesse Grossccb13522011-10-25 19:26:31 -0700141}
142
Thomas Graf12eb18f2014-11-06 06:58:52 -0800143static int get_dpifindex(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700144{
145 struct vport *local;
146 int ifindex;
147
148 rcu_read_lock();
149
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700150 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700151 if (local)
Thomas Grafbe4ace62015-07-21 10:44:04 +0200152 ifindex = local->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700153 else
154 ifindex = 0;
155
156 rcu_read_unlock();
157
158 return ifindex;
159}
160
161static void destroy_dp_rcu(struct rcu_head *rcu)
162{
163 struct datapath *dp = container_of(rcu, struct datapath, rcu);
164
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700165 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700166 free_percpu(dp->stats_percpu);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700167 kfree(dp->ports);
Andy Zhou96fbc132017-11-10 12:09:42 -0800168 ovs_meters_exit(dp);
Jesse Grossccb13522011-10-25 19:26:31 -0700169 kfree(dp);
170}
171
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700172static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
173 u16 port_no)
174{
175 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
176}
177
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700178/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700179struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
180{
181 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700182 struct hlist_head *head;
183
184 head = vport_hash_bucket(dp, port_no);
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +0530185 hlist_for_each_entry_rcu(vport, head, dp_hash_node,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +0800186 lockdep_ovsl_is_held()) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700187 if (vport->port_no == port_no)
188 return vport;
189 }
190 return NULL;
191}
192
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700193/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700194static struct vport *new_vport(const struct vport_parms *parms)
195{
196 struct vport *vport;
197
198 vport = ovs_vport_add(parms);
199 if (!IS_ERR(vport)) {
200 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700201 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700202
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700203 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700204 }
Jesse Grossccb13522011-10-25 19:26:31 -0700205 return vport;
206}
207
Jesse Grossccb13522011-10-25 19:26:31 -0700208void ovs_dp_detach_port(struct vport *p)
209{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700210 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700211
212 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700213 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700214
215 /* Then destroy it. */
216 ovs_vport_del(p);
217}
218
219/* Must be called with rcu_read_lock. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700220void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700221{
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700222 const struct vport *p = OVS_CB(skb)->input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700223 struct datapath *dp = p->dp;
224 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700225 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700226 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700227 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700228 u32 n_mask_hit;
Eelco Chaudron9d2f6272020-07-31 14:20:56 +0200229 u32 n_cache_hit;
Yifeng Sunaa733662019-08-04 19:56:11 -0700230 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700231
Shan Wei404f2f12012-11-13 09:52:25 +0800232 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700233
Jesse Grossccb13522011-10-25 19:26:31 -0700234 /* Look up flow. */
Tonghao Zhang04b7d132019-11-01 22:23:45 +0800235 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, skb_get_hash(skb),
Eelco Chaudron9d2f6272020-07-31 14:20:56 +0200236 &n_mask_hit, &n_cache_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700237 if (unlikely(!flow)) {
238 struct dp_upcall_info upcall;
239
Neil McKeeccea7442015-05-26 20:59:43 -0700240 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700241 upcall.cmd = OVS_PACKET_CMD_MISS;
Alex Wang5cd667b2014-07-17 15:14:13 -0700242 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700243 upcall.mru = OVS_CB(skb)->mru;
William Tuf2a4d082016-06-10 11:49:33 -0700244 error = ovs_dp_upcall(dp, skb, key, &upcall, 0);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800245 if (unlikely(error))
246 kfree_skb(skb);
247 else
248 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700249 stats_counter = &stats->n_missed;
250 goto out;
251 }
252
Lorand Jakabd98612b2014-10-06 05:45:32 -0700253 ovs_flow_stats_update(flow, key->tp.flags, skb);
254 sf_acts = rcu_dereference(flow->sf_acts);
Yifeng Sunaa733662019-08-04 19:56:11 -0700255 error = ovs_execute_actions(dp, skb, sf_acts, key);
256 if (unlikely(error))
257 net_dbg_ratelimited("ovs: action execution error on datapath %s: %d\n",
Tonghao Zhangcf3266a2020-09-01 20:26:12 +0800258 ovs_dp_name(dp), error);
Jesse Grossccb13522011-10-25 19:26:31 -0700259
Pravin B Shelare298e502013-10-29 17:22:21 -0700260 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700261
262out:
263 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800264 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700265 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700266 stats->n_mask_hit += n_mask_hit;
Eelco Chaudron9d2f6272020-07-31 14:20:56 +0200267 stats->n_cache_hit += n_cache_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800268 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700269}
270
Jesse Grossccb13522011-10-25 19:26:31 -0700271int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800272 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700273 const struct dp_upcall_info *upcall_info,
274 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700275{
276 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700277 int err;
278
Aaron Conolec4ab7b52021-06-22 10:02:33 -0400279 if (trace_ovs_dp_upcall_enabled())
280 trace_ovs_dp_upcall(dp, skb, key, upcall_info);
281
Eric W. Biederman15e47302012-09-07 20:12:54 +0000282 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700283 err = -ENOTCONN;
284 goto err;
285 }
286
Jesse Grossccb13522011-10-25 19:26:31 -0700287 if (!skb_is_gso(skb))
William Tuf2a4d082016-06-10 11:49:33 -0700288 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700289 else
William Tuf2a4d082016-06-10 11:49:33 -0700290 err = queue_gso_packets(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700291 if (err)
292 goto err;
293
294 return 0;
295
296err:
Shan Wei404f2f12012-11-13 09:52:25 +0800297 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700298
WANG Congdf9d9fd2014-02-14 15:10:46 -0800299 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700300 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800301 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700302
303 return err;
304}
305
Thomas Graf8055a892013-12-13 15:22:20 +0100306static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800307 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700308 const struct dp_upcall_info *upcall_info,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +0800309 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700310{
Gustavo A. R. Silva27341662017-11-25 13:14:40 -0600311 unsigned int gso_type = skb_shinfo(skb)->gso_type;
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500312 struct sw_flow_key later_key;
Jesse Grossccb13522011-10-25 19:26:31 -0700313 struct sk_buff *segs, *nskb;
314 int err;
315
Cambda Zhua08e7fd2020-03-26 15:33:14 +0800316 BUILD_BUG_ON(sizeof(*OVS_CB(skb)) > SKB_GSO_CB_OFFSET);
Thomas Graf09c5e602013-12-13 15:22:22 +0100317 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700318 if (IS_ERR(segs))
319 return PTR_ERR(segs);
Florian Westphal330966e2014-10-20 13:49:17 +0200320 if (segs == NULL)
321 return -EINVAL;
Jesse Grossccb13522011-10-25 19:26:31 -0700322
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500323 if (gso_type & SKB_GSO_UDP) {
324 /* The initial flow key extracted by ovs_flow_key_extract()
325 * in this case is for a first fragment, so we need to
326 * properly mark later fragments.
327 */
328 later_key = *key;
329 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
330 }
331
Jesse Grossccb13522011-10-25 19:26:31 -0700332 /* Queue all of the segments. */
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500333 skb_list_walk_safe(segs, skb, nskb) {
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500334 if (gso_type & SKB_GSO_UDP && skb != segs)
335 key = &later_key;
336
William Tuf2a4d082016-06-10 11:49:33 -0700337 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700338 if (err)
339 break;
340
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500341 }
Jesse Grossccb13522011-10-25 19:26:31 -0700342
343 /* Free all of the segments. */
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500344 skb_list_walk_safe(segs, skb, nskb) {
Jesse Grossccb13522011-10-25 19:26:31 -0700345 if (err)
346 kfree_skb(skb);
347 else
348 consume_skb(skb);
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500349 }
Jesse Grossccb13522011-10-25 19:26:31 -0700350 return err;
351}
352
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800353static size_t upcall_msg_size(const struct dp_upcall_info *upcall_info,
Liping Zhang494bea32017-08-16 13:30:07 +0800354 unsigned int hdrlen, int actions_attrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100355{
356 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100357 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
William Tub95e5922016-06-20 07:26:17 -0700358 + nla_total_size(ovs_key_attr_size()) /* OVS_PACKET_ATTR_KEY */
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800359 + nla_total_size(sizeof(unsigned int)) /* OVS_PACKET_ATTR_LEN */
360 + nla_total_size(sizeof(u64)); /* OVS_PACKET_ATTR_HASH */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100361
362 /* OVS_PACKET_ATTR_USERDATA */
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800363 if (upcall_info->userdata)
364 size += NLA_ALIGN(upcall_info->userdata->nla_len);
365
366 /* OVS_PACKET_ATTR_EGRESS_TUN_KEY */
367 if (upcall_info->egress_tun_info)
368 size += nla_total_size(ovs_tun_key_attr_size());
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100369
Neil McKeeccea7442015-05-26 20:59:43 -0700370 /* OVS_PACKET_ATTR_ACTIONS */
371 if (upcall_info->actions_len)
Liping Zhang494bea32017-08-16 13:30:07 +0800372 size += nla_total_size(actions_attrlen);
Neil McKeeccea7442015-05-26 20:59:43 -0700373
Joe Stringer7f8a4362015-08-26 11:31:48 -0700374 /* OVS_PACKET_ATTR_MRU */
375 if (upcall_info->mru)
376 size += nla_total_size(sizeof(upcall_info->mru));
377
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100378 return size;
379}
380
Joe Stringer7f8a4362015-08-26 11:31:48 -0700381static void pad_packet(struct datapath *dp, struct sk_buff *skb)
382{
383 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
384 size_t plen = NLA_ALIGN(skb->len) - skb->len;
385
386 if (plen > 0)
Johannes Bergb080db52017-06-16 14:29:19 +0200387 skb_put_zero(skb, plen);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700388 }
389}
390
Thomas Graf8055a892013-12-13 15:22:20 +0100391static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800392 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700393 const struct dp_upcall_info *upcall_info,
394 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700395{
396 struct ovs_header *upcall;
397 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800398 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700399 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100400 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100401 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100402 int err, dp_ifindex;
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800403 u64 hash;
Thomas Graf8055a892013-12-13 15:22:20 +0100404
405 dp_ifindex = get_dpifindex(dp);
406 if (!dp_ifindex)
407 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700408
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100409 if (skb_vlan_tag_present(skb)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700410 nskb = skb_clone(skb, GFP_ATOMIC);
411 if (!nskb)
412 return -ENOMEM;
413
Jiri Pirko59682502014-11-19 14:04:59 +0100414 nskb = __vlan_hwaccel_push_inside(nskb);
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000415 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700416 return -ENOMEM;
417
Jesse Grossccb13522011-10-25 19:26:31 -0700418 skb = nskb;
419 }
420
421 if (nla_attr_size(skb->len) > USHRT_MAX) {
422 err = -EFBIG;
423 goto out;
424 }
425
Thomas Grafbda56f12013-12-13 15:22:21 +0100426 /* Complete checksum if needed */
427 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Davide Caratti75293902017-05-18 15:44:42 +0200428 (err = skb_csum_hwoffload_help(skb, 0)))
Thomas Grafbda56f12013-12-13 15:22:21 +0100429 goto out;
430
431 /* Older versions of OVS user space enforce alignment of the last
432 * Netlink attribute to NLA_ALIGNTO which would require extensive
433 * padding logic. Only perform zerocopy if padding is not required.
434 */
435 if (dp->user_features & OVS_DP_F_UNALIGNED)
436 hlen = skb_zerocopy_headlen(skb);
437 else
438 hlen = skb->len;
439
Liping Zhang494bea32017-08-16 13:30:07 +0800440 len = upcall_msg_size(upcall_info, hlen - cutlen,
441 OVS_CB(skb)->acts_origlen);
Florian Westphal551ddc02016-02-18 15:03:25 +0100442 user_skb = genlmsg_new(len, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700443 if (!user_skb) {
444 err = -ENOMEM;
445 goto out;
446 }
447
448 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
449 0, upcall_info->cmd);
Kangjie Lu6f198932019-03-14 23:20:16 -0500450 if (!upcall) {
451 err = -EINVAL;
452 goto out;
453 }
Jesse Grossccb13522011-10-25 19:26:31 -0700454 upcall->dp_ifindex = dp_ifindex;
455
Joe Stringer5b4237b2015-01-21 16:42:48 -0800456 err = ovs_nla_put_key(key, key, OVS_PACKET_ATTR_KEY, false, user_skb);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400457 if (err)
458 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700459
460 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800461 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
462 nla_len(upcall_info->userdata),
463 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700464
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800465 if (upcall_info->egress_tun_info) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200466 nla = nla_nest_start_noflag(user_skb,
467 OVS_PACKET_ATTR_EGRESS_TUN_KEY);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500468 if (!nla) {
469 err = -EMSGSIZE;
470 goto out;
471 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700472 err = ovs_nla_put_tunnel_info(user_skb,
473 upcall_info->egress_tun_info);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400474 if (err)
475 goto out;
476
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800477 nla_nest_end(user_skb, nla);
478 }
479
Neil McKeeccea7442015-05-26 20:59:43 -0700480 if (upcall_info->actions_len) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200481 nla = nla_nest_start_noflag(user_skb, OVS_PACKET_ATTR_ACTIONS);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500482 if (!nla) {
483 err = -EMSGSIZE;
484 goto out;
485 }
Neil McKeeccea7442015-05-26 20:59:43 -0700486 err = ovs_nla_put_actions(upcall_info->actions,
487 upcall_info->actions_len,
488 user_skb);
489 if (!err)
490 nla_nest_end(user_skb, nla);
491 else
492 nla_nest_cancel(user_skb, nla);
493 }
494
Joe Stringer7f8a4362015-08-26 11:31:48 -0700495 /* Add OVS_PACKET_ATTR_MRU */
Tonghao Zhang61ca5332019-11-14 23:51:08 +0800496 if (upcall_info->mru &&
497 nla_put_u16(user_skb, OVS_PACKET_ATTR_MRU, upcall_info->mru)) {
498 err = -ENOBUFS;
499 goto out;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700500 }
501
William Tub95e5922016-06-20 07:26:17 -0700502 /* Add OVS_PACKET_ATTR_LEN when packet is truncated */
Tonghao Zhang61ca5332019-11-14 23:51:08 +0800503 if (cutlen > 0 &&
504 nla_put_u32(user_skb, OVS_PACKET_ATTR_LEN, skb->len)) {
505 err = -ENOBUFS;
506 goto out;
William Tub95e5922016-06-20 07:26:17 -0700507 }
508
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800509 /* Add OVS_PACKET_ATTR_HASH */
510 hash = skb_get_hash_raw(skb);
511 if (skb->sw_hash)
512 hash |= OVS_PACKET_HASH_SW_BIT;
513
514 if (skb->l4_hash)
515 hash |= OVS_PACKET_HASH_L4_BIT;
516
517 if (nla_put(user_skb, OVS_PACKET_ATTR_HASH, sizeof (u64), &hash)) {
518 err = -ENOBUFS;
519 goto out;
520 }
521
Thomas Grafbda56f12013-12-13 15:22:21 +0100522 /* Only reserve room for attribute header, packet data is added
523 * in skb_zerocopy() */
524 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
525 err = -ENOBUFS;
526 goto out;
527 }
William Tuf2a4d082016-06-10 11:49:33 -0700528 nla->nla_len = nla_attr_size(skb->len - cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700529
William Tuf2a4d082016-06-10 11:49:33 -0700530 err = skb_zerocopy(user_skb, skb, skb->len - cutlen, hlen);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000531 if (err)
532 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700533
Thomas Grafaea0bb42014-01-14 16:27:49 +0000534 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700535 pad_packet(dp, user_skb);
Thomas Grafaea0bb42014-01-14 16:27:49 +0000536
Thomas Grafbda56f12013-12-13 15:22:21 +0100537 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
538
Thomas Graf8055a892013-12-13 15:22:20 +0100539 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800540 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700541out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000542 if (err)
543 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800544 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700545 kfree_skb(nskb);
546 return err;
547}
548
Jesse Grossccb13522011-10-25 19:26:31 -0700549static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
550{
551 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700552 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700553 struct nlattr **a = info->attrs;
554 struct sw_flow_actions *acts;
555 struct sk_buff *packet;
556 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700557 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700558 struct datapath *dp;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700559 struct vport *input_vport;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700560 u16 mru = 0;
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800561 u64 hash;
Jesse Grossccb13522011-10-25 19:26:31 -0700562 int len;
563 int err;
Thomas Graf1ba39802015-01-14 13:56:19 +0000564 bool log = !a[OVS_PACKET_ATTR_PROBE];
Jesse Grossccb13522011-10-25 19:26:31 -0700565
566 err = -EINVAL;
567 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100568 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700569 goto err;
570
571 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
572 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
573 err = -ENOMEM;
574 if (!packet)
575 goto err;
576 skb_reserve(packet, NET_IP_ALIGN);
577
Thomas Graf32686a92013-03-29 14:46:48 +0100578 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700579
Joe Stringer7f8a4362015-08-26 11:31:48 -0700580 /* Set packet's mru */
581 if (a[OVS_PACKET_ATTR_MRU]) {
582 mru = nla_get_u16(a[OVS_PACKET_ATTR_MRU]);
583 packet->ignore_df = 1;
584 }
585 OVS_CB(packet)->mru = mru;
586
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800587 if (a[OVS_PACKET_ATTR_HASH]) {
588 hash = nla_get_u64(a[OVS_PACKET_ATTR_HASH]);
589
590 __skb_set_hash(packet, hash & 0xFFFFFFFFULL,
591 !!(hash & OVS_PACKET_HASH_SW_BIT),
592 !!(hash & OVS_PACKET_HASH_L4_BIT));
593 }
594
Jesse Grossccb13522011-10-25 19:26:31 -0700595 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700596 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700597 err = PTR_ERR(flow);
598 if (IS_ERR(flow))
599 goto err_kfree_skb;
600
Joe Stringerc2ac6672015-08-26 11:31:52 -0700601 err = ovs_flow_key_extract_userspace(net, a[OVS_PACKET_ATTR_KEY],
602 packet, &flow->key, log);
Jesse Grossccb13522011-10-25 19:26:31 -0700603 if (err)
604 goto err_flow_free;
605
Joe Stringer7f8a4362015-08-26 11:31:48 -0700606 err = ovs_nla_copy_actions(net, a[OVS_PACKET_ATTR_ACTIONS],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800607 &flow->key, &acts, log);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700608 if (err)
609 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700610
Jesse Grossf5796682014-10-03 15:35:33 -0700611 rcu_assign_pointer(flow->sf_acts, acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700612 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800613 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700614
615 rcu_read_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700616 dp = get_dp_rcu(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700617 err = -ENODEV;
618 if (!dp)
619 goto err_unlock;
620
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700621 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
622 if (!input_vport)
623 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
624
625 if (!input_vport)
626 goto err_unlock;
627
Joe Stringer7f8a4362015-08-26 11:31:48 -0700628 packet->dev = input_vport->dev;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700629 OVS_CB(packet)->input_vport = input_vport;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700630 sf_acts = rcu_dereference(flow->sf_acts);
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700631
Jesse Grossccb13522011-10-25 19:26:31 -0700632 local_bh_disable();
Lorand Jakabd98612b2014-10-06 05:45:32 -0700633 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700634 local_bh_enable();
635 rcu_read_unlock();
636
Andy Zhou03f0d912013-08-07 20:01:00 -0700637 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700638 return err;
639
640err_unlock:
641 rcu_read_unlock();
642err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700643 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700644err_kfree_skb:
645 kfree_skb(packet);
646err:
647 return err;
648}
649
650static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100651 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700652 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
653 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
Thomas Graf1ba39802015-01-14 13:56:19 +0000654 [OVS_PACKET_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer7f8a4362015-08-26 11:31:48 -0700655 [OVS_PACKET_ATTR_MRU] = { .type = NLA_U16 },
Jakub Kicinskib5ab1f12020-03-02 21:05:18 -0800656 [OVS_PACKET_ATTR_HASH] = { .type = NLA_U64 },
Jesse Grossccb13522011-10-25 19:26:31 -0700657};
658
Jakub Kicinski66a9b922020-10-02 14:49:54 -0700659static const struct genl_small_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700660 { .cmd = OVS_PACKET_CMD_EXECUTE,
Johannes Bergef6243a2019-04-26 14:07:31 +0200661 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -0700662 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -0700663 .doit = ovs_packet_cmd_execute
664 }
665};
666
Johannes Berg56989f62016-10-24 14:40:05 +0200667static struct genl_family dp_packet_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700668 .hdrsize = sizeof(struct ovs_header),
669 .name = OVS_PACKET_FAMILY,
670 .version = OVS_PACKET_VERSION,
671 .maxattr = OVS_PACKET_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100672 .policy = packet_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700673 .netnsok = true,
674 .parallel_ops = true,
Jakub Kicinski66a9b922020-10-02 14:49:54 -0700675 .small_ops = dp_packet_genl_ops,
676 .n_small_ops = ARRAY_SIZE(dp_packet_genl_ops),
Johannes Berg489111e2016-10-24 14:40:03 +0200677 .module = THIS_MODULE,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700678};
679
Thomas Graf12eb18f2014-11-06 06:58:52 -0800680static void get_dp_stats(const struct datapath *dp, struct ovs_dp_stats *stats,
Andy Zhou1bd71162013-10-22 10:42:46 -0700681 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700682{
683 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700684
Andy Zhou1bd71162013-10-22 10:42:46 -0700685 memset(mega_stats, 0, sizeof(*mega_stats));
686
Pravin B Shelarb637e492013-10-04 00:14:23 -0700687 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700688 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700689
690 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700691
Jesse Grossccb13522011-10-25 19:26:31 -0700692 for_each_possible_cpu(i) {
693 const struct dp_stats_percpu *percpu_stats;
694 struct dp_stats_percpu local_stats;
695 unsigned int start;
696
697 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
698
699 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700700 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700701 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700702 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700703
704 stats->n_hit += local_stats.n_hit;
705 stats->n_missed += local_stats.n_missed;
706 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700707 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Eelco Chaudron9d2f6272020-07-31 14:20:56 +0200708 mega_stats->n_cache_hit += local_stats.n_cache_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700709 }
710}
711
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800712static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100713{
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800714 return ovs_identifier_is_ufid(sfid) &&
715 !(ufid_flags & OVS_UFID_F_OMIT_KEY);
716}
717
718static bool should_fill_mask(uint32_t ufid_flags)
719{
720 return !(ufid_flags & OVS_UFID_F_OMIT_MASK);
721}
722
723static bool should_fill_actions(uint32_t ufid_flags)
724{
725 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS);
726}
727
728static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts,
729 const struct sw_flow_id *sfid,
730 uint32_t ufid_flags)
731{
732 size_t len = NLMSG_ALIGN(sizeof(struct ovs_header));
733
Paolo Abeni4e81c0b2019-11-26 12:55:50 +0100734 /* OVS_FLOW_ATTR_UFID, or unmasked flow key as fallback
735 * see ovs_nla_put_identifier()
736 */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800737 if (sfid && ovs_identifier_is_ufid(sfid))
738 len += nla_total_size(sfid->ufid_len);
Paolo Abeni4e81c0b2019-11-26 12:55:50 +0100739 else
740 len += nla_total_size(ovs_key_attr_size());
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800741
742 /* OVS_FLOW_ATTR_KEY */
743 if (!sfid || should_fill_key(sfid, ufid_flags))
744 len += nla_total_size(ovs_key_attr_size());
745
746 /* OVS_FLOW_ATTR_MASK */
747 if (should_fill_mask(ufid_flags))
748 len += nla_total_size(ovs_key_attr_size());
749
750 /* OVS_FLOW_ATTR_ACTIONS */
751 if (should_fill_actions(ufid_flags))
Joe Stringer8e2fed12015-08-26 11:31:44 -0700752 len += nla_total_size(acts->orig_len);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800753
754 return len
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200755 + nla_total_size_64bit(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100756 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200757 + nla_total_size_64bit(8); /* OVS_FLOW_ATTR_USED */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100758}
759
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700760/* Called with ovs_mutex or RCU read lock. */
Joe Stringerca7105f2014-09-08 13:09:37 -0700761static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
762 struct sk_buff *skb)
763{
764 struct ovs_flow_stats stats;
765 __be16 tcp_flags;
766 unsigned long used;
Andy Zhou03f0d912013-08-07 20:01:00 -0700767
Pravin B Shelare298e502013-10-29 17:22:21 -0700768 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700769
David S. Miller028d6a62012-03-29 23:20:48 -0400770 if (used &&
Nicolas Dichtel0238b722016-04-25 10:25:17 +0200771 nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
772 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700773 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700774
David S. Miller028d6a62012-03-29 23:20:48 -0400775 if (stats.n_packets &&
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200776 nla_put_64bit(skb, OVS_FLOW_ATTR_STATS,
777 sizeof(struct ovs_flow_stats), &stats,
778 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700779 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700780
Pravin B Shelare298e502013-10-29 17:22:21 -0700781 if ((u8)ntohs(tcp_flags) &&
782 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
Joe Stringerca7105f2014-09-08 13:09:37 -0700783 return -EMSGSIZE;
784
785 return 0;
786}
787
788/* Called with ovs_mutex or RCU read lock. */
789static int ovs_flow_cmd_fill_actions(const struct sw_flow *flow,
790 struct sk_buff *skb, int skb_orig_len)
791{
792 struct nlattr *start;
793 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700794
795 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
796 * this is the first flow to be dumped into 'skb'. This is unusual for
797 * Netlink but individual action lists can be longer than
798 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
799 * The userspace caller can always fetch the actions separately if it
800 * really wants them. (Most userspace callers in fact don't care.)
801 *
802 * This can only fail for dump operations because the skb is always
803 * properly sized for single flows.
804 */
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200805 start = nla_nest_start_noflag(skb, OVS_FLOW_ATTR_ACTIONS);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700806 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700807 const struct sw_flow_actions *sf_acts;
808
Jesse Gross663efa32013-12-03 10:58:53 -0800809 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700810 err = ovs_nla_put_actions(sf_acts->actions,
811 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700812
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700813 if (!err)
814 nla_nest_end(skb, start);
815 else {
816 if (skb_orig_len)
Joe Stringerca7105f2014-09-08 13:09:37 -0700817 return err;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700818
819 nla_nest_cancel(skb, start);
820 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700821 } else if (skb_orig_len) {
822 return -EMSGSIZE;
823 }
824
825 return 0;
826}
827
828/* Called with ovs_mutex or RCU read lock. */
829static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
830 struct sk_buff *skb, u32 portid,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800831 u32 seq, u32 flags, u8 cmd, u32 ufid_flags)
Joe Stringerca7105f2014-09-08 13:09:37 -0700832{
833 const int skb_orig_len = skb->len;
834 struct ovs_header *ovs_header;
835 int err;
836
837 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family,
838 flags, cmd);
839 if (!ovs_header)
840 return -EMSGSIZE;
841
842 ovs_header->dp_ifindex = dp_ifindex;
843
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800844 err = ovs_nla_put_identifier(flow, skb);
Joe Stringer5b4237b2015-01-21 16:42:48 -0800845 if (err)
846 goto error;
847
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800848 if (should_fill_key(&flow->id, ufid_flags)) {
849 err = ovs_nla_put_masked_key(flow, skb);
850 if (err)
851 goto error;
852 }
853
854 if (should_fill_mask(ufid_flags)) {
855 err = ovs_nla_put_mask(flow, skb);
856 if (err)
857 goto error;
858 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700859
860 err = ovs_flow_cmd_fill_stats(flow, skb);
861 if (err)
862 goto error;
863
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800864 if (should_fill_actions(ufid_flags)) {
865 err = ovs_flow_cmd_fill_actions(flow, skb, skb_orig_len);
866 if (err)
867 goto error;
868 }
Jesse Grossccb13522011-10-25 19:26:31 -0700869
Johannes Berg053c0952015-01-16 22:09:00 +0100870 genlmsg_end(skb, ovs_header);
871 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700872
Jesse Grossccb13522011-10-25 19:26:31 -0700873error:
874 genlmsg_cancel(skb, ovs_header);
875 return err;
876}
877
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700878/* May not be called with RCU read lock. */
879static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800880 const struct sw_flow_id *sfid,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700881 struct genl_info *info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800882 bool always,
883 uint32_t ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700884{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700885 struct sk_buff *skb;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800886 size_t len;
Jesse Grossccb13522011-10-25 19:26:31 -0700887
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200888 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700889 return NULL;
890
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800891 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags);
Florian Westphal551ddc02016-02-18 15:03:25 +0100892 skb = genlmsg_new(len, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700893 if (!skb)
894 return ERR_PTR(-ENOMEM);
895
896 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700897}
898
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700899/* Called with ovs_mutex. */
900static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
901 int dp_ifindex,
902 struct genl_info *info, u8 cmd,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800903 bool always, u32 ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700904{
905 struct sk_buff *skb;
906 int retval;
907
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800908 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts),
909 &flow->id, info, always, ufid_flags);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530910 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700911 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700912
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700913 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
914 info->snd_portid, info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800915 cmd, ufid_flags);
Paolo Abeni8ffeb03f2019-12-01 18:41:24 +0100916 if (WARN_ON_ONCE(retval < 0)) {
917 kfree_skb(skb);
918 skb = ERR_PTR(retval);
919 }
Jesse Grossccb13522011-10-25 19:26:31 -0700920 return skb;
921}
922
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700923static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700924{
Joe Stringer7f8a4362015-08-26 11:31:48 -0700925 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700926 struct nlattr **a = info->attrs;
927 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800928 struct sw_flow *flow = NULL, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700929 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700930 struct sk_buff *reply;
931 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700932 struct sw_flow_actions *acts;
933 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800934 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700935 int error;
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800936 bool log = !a[OVS_FLOW_ATTR_PROBE];
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700937
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700938 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700939 error = -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700940 if (!a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800941 OVS_NLERR(log, "Flow key attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700942 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700943 }
944 if (!a[OVS_FLOW_ATTR_ACTIONS]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800945 OVS_NLERR(log, "Flow actions attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700946 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700947 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700948
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700949 /* Most of the time we need to allocate a new flow, do it before
950 * locking.
951 */
952 new_flow = ovs_flow_alloc();
953 if (IS_ERR(new_flow)) {
954 error = PTR_ERR(new_flow);
955 goto error;
956 }
957
958 /* Extract key. */
pravin shelar22799942016-09-19 13:51:00 -0700959 ovs_match_init(&match, &new_flow->key, false, &mask);
Joe Stringerc2ac6672015-08-26 11:31:52 -0700960 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800961 a[OVS_FLOW_ATTR_MASK], log);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700962 if (error)
963 goto err_kfree_flow;
964
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800965 /* Extract flow identifier. */
966 error = ovs_nla_get_identifier(&new_flow->id, a[OVS_FLOW_ATTR_UFID],
pravin shelar190aa3e72016-09-19 13:50:59 -0700967 &new_flow->key, log);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800968 if (error)
969 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700970
pravin shelar190aa3e72016-09-19 13:50:59 -0700971 /* unmasked key is needed to match when ufid is not used. */
972 if (ovs_identifier_is_key(&new_flow->id))
973 match.key = new_flow->id.unmasked_key;
974
975 ovs_flow_mask_key(&new_flow->key, &new_flow->key, true, &mask);
976
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700977 /* Validate actions. */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700978 error = ovs_nla_copy_actions(net, a[OVS_FLOW_ATTR_ACTIONS],
979 &new_flow->key, &acts, log);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700980 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800981 OVS_NLERR(log, "Flow actions may not be safe on all matching packets.");
Pravin B Shelar2fdb9572014-10-19 11:19:51 -0700982 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700983 }
984
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800985 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false,
986 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700987 if (IS_ERR(reply)) {
988 error = PTR_ERR(reply);
989 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700990 }
991
992 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700993 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700994 if (unlikely(!dp)) {
995 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700996 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700997 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800998
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700999 /* Check if this is a duplicate flow */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001000 if (ovs_identifier_is_ufid(&new_flow->id))
1001 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &new_flow->id);
1002 if (!flow)
pravin shelar190aa3e72016-09-19 13:50:59 -07001003 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->key);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001004 if (likely(!flow)) {
1005 rcu_assign_pointer(new_flow->sf_acts, acts);
1006
1007 /* Put flow in bucket. */
1008 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
1009 if (unlikely(error)) {
1010 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001011 goto err_unlock_ovs;
1012 }
1013
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001014 if (unlikely(reply)) {
1015 error = ovs_flow_cmd_fill_info(new_flow,
1016 ovs_header->dp_ifindex,
1017 reply, info->snd_portid,
1018 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001019 OVS_FLOW_CMD_NEW,
1020 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001021 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001022 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001023 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001024 } else {
1025 struct sw_flow_actions *old_acts;
1026
1027 /* Bail out if we're not allowed to modify an existing flow.
1028 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1029 * because Generic Netlink treats the latter as a dump
1030 * request. We also accept NLM_F_EXCL in case that bug ever
1031 * gets fixed.
1032 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001033 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
1034 | NLM_F_EXCL))) {
1035 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001036 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001037 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001038 /* The flow identifier has to be the same for flow updates.
1039 * Look for any overlapping flow.
1040 */
1041 if (unlikely(!ovs_flow_cmp(flow, &match))) {
1042 if (ovs_identifier_is_key(&flow->id))
1043 flow = ovs_flow_tbl_lookup_exact(&dp->table,
1044 &match);
1045 else /* UFID matches but key is different */
1046 flow = NULL;
Alex Wang4a46b242014-06-30 20:30:29 -07001047 if (!flow) {
1048 error = -ENOENT;
1049 goto err_unlock_ovs;
1050 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001051 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001052 /* Update actions. */
1053 old_acts = ovsl_dereference(flow->sf_acts);
1054 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001055
1056 if (unlikely(reply)) {
1057 error = ovs_flow_cmd_fill_info(flow,
1058 ovs_header->dp_ifindex,
1059 reply, info->snd_portid,
1060 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001061 OVS_FLOW_CMD_NEW,
1062 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001063 BUG_ON(error < 0);
1064 }
1065 ovs_unlock();
1066
Thomas Graf34ae9322015-07-21 10:44:03 +02001067 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001068 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001069 }
1070
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001071 if (reply)
1072 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001073 return 0;
1074
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001075err_unlock_ovs:
1076 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001077 kfree_skb(reply);
1078err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001079 ovs_nla_free_flow_actions(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001080err_kfree_flow:
1081 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001082error:
1083 return error;
1084}
1085
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001086/* Factor out action copy to avoid "Wframe-larger-than=1024" warning. */
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001087static noinline_for_stack
1088struct sw_flow_actions *get_flow_actions(struct net *net,
1089 const struct nlattr *a,
1090 const struct sw_flow_key *key,
1091 const struct sw_flow_mask *mask,
1092 bool log)
Jesse Gross6b205b22014-10-03 15:35:32 -07001093{
1094 struct sw_flow_actions *acts;
1095 struct sw_flow_key masked_key;
1096 int error;
1097
Jesse Grossae5f2fb2015-09-21 20:21:20 -07001098 ovs_flow_mask_key(&masked_key, key, true, mask);
Joe Stringer7f8a4362015-08-26 11:31:48 -07001099 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001100 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001101 OVS_NLERR(log,
1102 "Actions may not be safe on all matching packets");
Jesse Gross6b205b22014-10-03 15:35:32 -07001103 return ERR_PTR(error);
1104 }
1105
1106 return acts;
1107}
1108
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001109/* Factor out match-init and action-copy to avoid
1110 * "Wframe-larger-than=1024" warning. Because mask is only
1111 * used to get actions, we new a function to save some
1112 * stack space.
1113 *
1114 * If there are not key and action attrs, we return 0
1115 * directly. In the case, the caller will also not use the
1116 * match as before. If there is action attr, we try to get
1117 * actions and save them to *acts. Before returning from
1118 * the function, we reset the match->mask pointer. Because
1119 * we should not to return match object with dangling reference
1120 * to mask.
1121 * */
Arnd Bergmann26063792019-07-22 17:00:01 +02001122static noinline_for_stack int
1123ovs_nla_init_match_and_action(struct net *net,
1124 struct sw_flow_match *match,
1125 struct sw_flow_key *key,
1126 struct nlattr **a,
1127 struct sw_flow_actions **acts,
1128 bool log)
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001129{
1130 struct sw_flow_mask mask;
1131 int error = 0;
1132
1133 if (a[OVS_FLOW_ATTR_KEY]) {
1134 ovs_match_init(match, key, true, &mask);
1135 error = ovs_nla_get_match(net, match, a[OVS_FLOW_ATTR_KEY],
1136 a[OVS_FLOW_ATTR_MASK], log);
1137 if (error)
1138 goto error;
1139 }
1140
1141 if (a[OVS_FLOW_ATTR_ACTIONS]) {
1142 if (!a[OVS_FLOW_ATTR_KEY]) {
1143 OVS_NLERR(log,
1144 "Flow key attribute not present in set flow.");
Christophe JAILLET5829e622017-09-11 21:56:20 +02001145 error = -EINVAL;
1146 goto error;
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001147 }
1148
1149 *acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], key,
1150 &mask, log);
1151 if (IS_ERR(*acts)) {
1152 error = PTR_ERR(*acts);
1153 goto error;
1154 }
1155 }
1156
1157 /* On success, error is 0. */
1158error:
1159 match->mask = NULL;
1160 return error;
1161}
1162
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001163static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
1164{
Joe Stringer7f8a4362015-08-26 11:31:48 -07001165 struct net *net = sock_net(skb->sk);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001166 struct nlattr **a = info->attrs;
1167 struct ovs_header *ovs_header = info->userhdr;
Jesse Gross6b205b22014-10-03 15:35:32 -07001168 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001169 struct sw_flow *flow;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001170 struct sk_buff *reply = NULL;
1171 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001172 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001173 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001174 struct sw_flow_id sfid;
1175 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001176 int error = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001177 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001178 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001179
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001180 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log);
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001181 if (!a[OVS_FLOW_ATTR_KEY] && !ufid_present) {
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001182 OVS_NLERR(log,
1183 "Flow set message rejected, Key attribute missing.");
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001184 return -EINVAL;
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001185 }
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001186
1187 error = ovs_nla_init_match_and_action(net, &match, &key, a,
1188 &acts, log);
Jesse Grossccb13522011-10-25 19:26:31 -07001189 if (error)
1190 goto error;
1191
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001192 if (acts) {
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001193 /* Can allocate before locking if have acts. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001194 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false,
1195 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001196 if (IS_ERR(reply)) {
1197 error = PTR_ERR(reply);
1198 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -07001199 }
Jesse Grossccb13522011-10-25 19:26:31 -07001200 }
1201
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001202 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -07001203 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001204 if (unlikely(!dp)) {
1205 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001206 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001207 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001208 /* Check that the flow exists. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001209 if (ufid_present)
1210 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &sfid);
1211 else
1212 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001213 if (unlikely(!flow)) {
1214 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001215 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001216 }
Alex Wang4a46b242014-06-30 20:30:29 -07001217
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001218 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001219 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001220 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001221 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001222
1223 if (unlikely(reply)) {
1224 error = ovs_flow_cmd_fill_info(flow,
1225 ovs_header->dp_ifindex,
1226 reply, info->snd_portid,
1227 info->snd_seq, 0,
Yifeng Sun804fe102018-09-26 11:40:14 -07001228 OVS_FLOW_CMD_SET,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001229 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001230 BUG_ON(error < 0);
1231 }
1232 } else {
1233 /* Could not alloc without acts before locking. */
1234 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
Yifeng Sun804fe102018-09-26 11:40:14 -07001235 info, OVS_FLOW_CMD_SET, false,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001236 ufid_flags);
1237
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301238 if (IS_ERR(reply)) {
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001239 error = PTR_ERR(reply);
1240 goto err_unlock_ovs;
1241 }
Jesse Grossccb13522011-10-25 19:26:31 -07001242 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001243
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001244 /* Clear stats. */
1245 if (a[OVS_FLOW_ATTR_CLEAR])
1246 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001247 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001248
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001249 if (reply)
1250 ovs_notify(&dp_flow_genl_family, reply, info);
1251 if (old_acts)
Thomas Graf34ae9322015-07-21 10:44:03 +02001252 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001253
Jesse Grossccb13522011-10-25 19:26:31 -07001254 return 0;
1255
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001256err_unlock_ovs:
1257 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001258 kfree_skb(reply);
1259err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001260 ovs_nla_free_flow_actions(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001261error:
1262 return error;
1263}
1264
1265static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1266{
1267 struct nlattr **a = info->attrs;
1268 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001269 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001270 struct sw_flow_key key;
1271 struct sk_buff *reply;
1272 struct sw_flow *flow;
1273 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001274 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001275 struct sw_flow_id ufid;
1276 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
1277 int err = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001278 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001279 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001280
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001281 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1282 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001283 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001284 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY], NULL,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001285 log);
1286 } else if (!ufid_present) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001287 OVS_NLERR(log,
1288 "Flow get message rejected, Key attribute missing.");
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001289 err = -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001290 }
Jesse Grossccb13522011-10-25 19:26:31 -07001291 if (err)
1292 return err;
1293
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001294 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001295 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001296 if (!dp) {
1297 err = -ENODEV;
1298 goto unlock;
1299 }
Jesse Grossccb13522011-10-25 19:26:31 -07001300
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001301 if (ufid_present)
1302 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1303 else
1304 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001305 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001306 err = -ENOENT;
1307 goto unlock;
1308 }
Jesse Grossccb13522011-10-25 19:26:31 -07001309
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001310 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
Yifeng Sun804fe102018-09-26 11:40:14 -07001311 OVS_FLOW_CMD_GET, true, ufid_flags);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001312 if (IS_ERR(reply)) {
1313 err = PTR_ERR(reply);
1314 goto unlock;
1315 }
Jesse Grossccb13522011-10-25 19:26:31 -07001316
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001317 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001318 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001319unlock:
1320 ovs_unlock();
1321 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001322}
1323
1324static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1325{
1326 struct nlattr **a = info->attrs;
1327 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001328 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001329 struct sw_flow_key key;
1330 struct sk_buff *reply;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001331 struct sw_flow *flow = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001332 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001333 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001334 struct sw_flow_id ufid;
1335 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001336 int err;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001337 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001338 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001339
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001340 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1341 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001342 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001343 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1344 NULL, log);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001345 if (unlikely(err))
1346 return err;
1347 }
1348
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001349 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001350 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001351 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001352 err = -ENODEV;
1353 goto unlock;
1354 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001355
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001356 if (unlikely(!a[OVS_FLOW_ATTR_KEY] && !ufid_present)) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001357 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001358 goto unlock;
1359 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001360
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001361 if (ufid_present)
1362 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1363 else
1364 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001365 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001366 err = -ENOENT;
1367 goto unlock;
1368 }
Jesse Grossccb13522011-10-25 19:26:31 -07001369
Pravin B Shelarb637e492013-10-04 00:14:23 -07001370 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001371 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001372
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001373 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001374 &flow->id, info, false, ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001375 if (likely(reply)) {
Enrico Weigeltb90f5aa2019-06-05 23:06:40 +02001376 if (!IS_ERR(reply)) {
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001377 rcu_read_lock(); /*To keep RCU checker happy. */
1378 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1379 reply, info->snd_portid,
1380 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001381 OVS_FLOW_CMD_DEL,
1382 ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001383 rcu_read_unlock();
Paolo Abeni8a574f82019-12-01 18:41:25 +01001384 if (WARN_ON_ONCE(err < 0)) {
1385 kfree_skb(reply);
1386 goto out_free;
1387 }
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001388
1389 ovs_notify(&dp_flow_genl_family, reply, info);
1390 } else {
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001391 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0,
1392 PTR_ERR(reply));
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001393 }
1394 }
1395
Paolo Abeni8a574f82019-12-01 18:41:25 +01001396out_free:
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001397 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001398 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001399unlock:
1400 ovs_unlock();
1401 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001402}
1403
1404static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1405{
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001406 struct nlattr *a[__OVS_FLOW_ATTR_MAX];
Jesse Grossccb13522011-10-25 19:26:31 -07001407 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001408 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001409 struct datapath *dp;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001410 u32 ufid_flags;
1411 int err;
1412
Johannes Berg8cb08172019-04-26 14:07:28 +02001413 err = genlmsg_parse_deprecated(cb->nlh, &dp_flow_genl_family, a,
1414 OVS_FLOW_ATTR_MAX, flow_policy, NULL);
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001415 if (err)
1416 return err;
1417 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001418
Pravin B Shelard57170b2013-07-30 15:39:39 -07001419 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07001420 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001421 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001422 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001423 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001424 }
Jesse Grossccb13522011-10-25 19:26:31 -07001425
Pravin B Shelarb637e492013-10-04 00:14:23 -07001426 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001427 for (;;) {
1428 struct sw_flow *flow;
1429 u32 bucket, obj;
1430
1431 bucket = cb->args[0];
1432 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001433 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001434 if (!flow)
1435 break;
1436
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001437 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001438 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001439 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001440 OVS_FLOW_CMD_GET, ufid_flags) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001441 break;
1442
1443 cb->args[0] = bucket;
1444 cb->args[1] = obj;
1445 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001446 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001447 return skb->len;
1448}
1449
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001450static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1451 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001452 [OVS_FLOW_ATTR_MASK] = { .type = NLA_NESTED },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001453 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1454 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001455 [OVS_FLOW_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001456 [OVS_FLOW_ATTR_UFID] = { .type = NLA_UNSPEC, .len = 1 },
1457 [OVS_FLOW_ATTR_UFID_FLAGS] = { .type = NLA_U32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001458};
1459
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001460static const struct genl_small_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001461 { .cmd = OVS_FLOW_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001462 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001463 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001464 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001465 },
1466 { .cmd = OVS_FLOW_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001467 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001468 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001469 .doit = ovs_flow_cmd_del
1470 },
1471 { .cmd = OVS_FLOW_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001472 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001473 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001474 .doit = ovs_flow_cmd_get,
1475 .dumpit = ovs_flow_cmd_dump
1476 },
1477 { .cmd = OVS_FLOW_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001478 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001479 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001480 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001481 },
1482};
1483
Johannes Berg56989f62016-10-24 14:40:05 +02001484static struct genl_family dp_flow_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001485 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001486 .name = OVS_FLOW_FAMILY,
1487 .version = OVS_FLOW_VERSION,
1488 .maxattr = OVS_FLOW_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001489 .policy = flow_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001490 .netnsok = true,
1491 .parallel_ops = true,
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001492 .small_ops = dp_flow_genl_ops,
1493 .n_small_ops = ARRAY_SIZE(dp_flow_genl_ops),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001494 .mcgrps = &ovs_dp_flow_multicast_group,
1495 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001496 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001497};
1498
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001499static size_t ovs_dp_cmd_msg_size(void)
1500{
1501 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1502
1503 msgsize += nla_total_size(IFNAMSIZ);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001504 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_stats));
1505 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001506 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Eelco Chaudron9bf24f52020-07-31 14:21:34 +02001507 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_MASKS_CACHE_SIZE */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001508
1509 return msgsize;
1510}
1511
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001512/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -07001513static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001514 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001515{
1516 struct ovs_header *ovs_header;
1517 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001518 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001519 int err;
1520
Eric W. Biederman15e47302012-09-07 20:12:54 +00001521 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001522 flags, cmd);
Jesse Grossccb13522011-10-25 19:26:31 -07001523 if (!ovs_header)
1524 goto error;
1525
1526 ovs_header->dp_ifindex = get_dpifindex(dp);
1527
Jesse Grossccb13522011-10-25 19:26:31 -07001528 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001529 if (err)
1530 goto nla_put_failure;
1531
Andy Zhou1bd71162013-10-22 10:42:46 -07001532 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001533 if (nla_put_64bit(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1534 &dp_stats, OVS_DP_ATTR_PAD))
Andy Zhou1bd71162013-10-22 10:42:46 -07001535 goto nla_put_failure;
1536
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001537 if (nla_put_64bit(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1538 sizeof(struct ovs_dp_megaflow_stats),
1539 &dp_megaflow_stats, OVS_DP_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001540 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001541
Thomas Graf43d4be92013-12-13 15:22:18 +01001542 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1543 goto nla_put_failure;
1544
Eelco Chaudron9bf24f52020-07-31 14:21:34 +02001545 if (nla_put_u32(skb, OVS_DP_ATTR_MASKS_CACHE_SIZE,
1546 ovs_flow_tbl_masks_cache_size(&dp->table)))
1547 goto nla_put_failure;
1548
Johannes Berg053c0952015-01-16 22:09:00 +01001549 genlmsg_end(skb, ovs_header);
1550 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001551
1552nla_put_failure:
1553 genlmsg_cancel(skb, ovs_header);
1554error:
1555 return -EMSGSIZE;
1556}
1557
Florian Westphal263ea092016-02-18 15:03:26 +01001558static struct sk_buff *ovs_dp_cmd_alloc_info(void)
Jesse Grossccb13522011-10-25 19:26:31 -07001559{
Florian Westphal551ddc02016-02-18 15:03:25 +01001560 return genlmsg_new(ovs_dp_cmd_msg_size(), GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001561}
1562
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001563/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001564static struct datapath *lookup_datapath(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001565 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001566 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1567{
1568 struct datapath *dp;
1569
1570 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001571 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001572 else {
1573 struct vport *vport;
1574
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001575 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001576 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001577 }
1578 return dp ? dp : ERR_PTR(-ENODEV);
1579}
1580
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001581static void ovs_dp_reset_user_features(struct sk_buff *skb,
1582 struct genl_info *info)
Thomas Graf44da5ae2013-12-13 15:22:19 +01001583{
1584 struct datapath *dp;
1585
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08001586 dp = lookup_datapath(sock_net(skb->sk), info->userhdr,
1587 info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001588 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001589 return;
1590
1591 WARN(dp->user_features, "Dropping previously announced user features\n");
1592 dp->user_features = 0;
1593}
1594
Paul Blakey95a72332019-09-04 16:56:37 +03001595DEFINE_STATIC_KEY_FALSE(tc_recirc_sharing_support);
1596
1597static int ovs_dp_change(struct datapath *dp, struct nlattr *a[])
Thomas Graf43d4be92013-12-13 15:22:18 +01001598{
Paul Blakey95a72332019-09-04 16:56:37 +03001599 u32 user_features = 0;
1600
1601 if (a[OVS_DP_ATTR_USER_FEATURES]) {
1602 user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1603
1604 if (user_features & ~(OVS_DP_F_VPORT_PIDS |
1605 OVS_DP_F_UNALIGNED |
1606 OVS_DP_F_TC_RECIRC_SHARING))
1607 return -EOPNOTSUPP;
1608
1609#if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
1610 if (user_features & OVS_DP_F_TC_RECIRC_SHARING)
1611 return -EOPNOTSUPP;
1612#endif
1613 }
1614
Eelco Chaudron9bf24f52020-07-31 14:21:34 +02001615 if (a[OVS_DP_ATTR_MASKS_CACHE_SIZE]) {
1616 int err;
1617 u32 cache_size;
1618
1619 cache_size = nla_get_u32(a[OVS_DP_ATTR_MASKS_CACHE_SIZE]);
1620 err = ovs_flow_tbl_masks_cache_resize(&dp->table, cache_size);
1621 if (err)
1622 return err;
1623 }
1624
Paul Blakey95a72332019-09-04 16:56:37 +03001625 dp->user_features = user_features;
1626
1627 if (dp->user_features & OVS_DP_F_TC_RECIRC_SHARING)
1628 static_branch_enable(&tc_recirc_sharing_support);
1629 else
1630 static_branch_disable(&tc_recirc_sharing_support);
1631
1632 return 0;
Thomas Graf43d4be92013-12-13 15:22:18 +01001633}
1634
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001635static int ovs_dp_stats_init(struct datapath *dp)
1636{
1637 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
1638 if (!dp->stats_percpu)
1639 return -ENOMEM;
1640
1641 return 0;
1642}
1643
1644static int ovs_dp_vport_init(struct datapath *dp)
1645{
1646 int i;
1647
1648 dp->ports = kmalloc_array(DP_VPORT_HASH_BUCKETS,
1649 sizeof(struct hlist_head),
1650 GFP_KERNEL);
1651 if (!dp->ports)
1652 return -ENOMEM;
1653
1654 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1655 INIT_HLIST_HEAD(&dp->ports[i]);
1656
1657 return 0;
1658}
1659
Jesse Grossccb13522011-10-25 19:26:31 -07001660static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1661{
1662 struct nlattr **a = info->attrs;
1663 struct vport_parms parms;
1664 struct sk_buff *reply;
1665 struct datapath *dp;
1666 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001667 struct ovs_net *ovs_net;
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001668 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001669
1670 err = -EINVAL;
1671 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1672 goto err;
1673
Florian Westphal263ea092016-02-18 15:03:26 +01001674 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001675 if (!reply)
1676 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001677
1678 err = -ENOMEM;
1679 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1680 if (dp == NULL)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001681 goto err_destroy_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001682
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -05001683 ovs_dp_set_net(dp, sock_net(skb->sk));
Jesse Grossccb13522011-10-25 19:26:31 -07001684
1685 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001686 err = ovs_flow_tbl_init(&dp->table);
1687 if (err)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001688 goto err_destroy_dp;
Jesse Grossccb13522011-10-25 19:26:31 -07001689
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001690 err = ovs_dp_stats_init(dp);
1691 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001692 goto err_destroy_table;
Jesse Grossccb13522011-10-25 19:26:31 -07001693
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001694 err = ovs_dp_vport_init(dp);
1695 if (err)
1696 goto err_destroy_stats;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001697
Andy Zhou96fbc132017-11-10 12:09:42 -08001698 err = ovs_meters_init(dp);
1699 if (err)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001700 goto err_destroy_ports;
Andy Zhou96fbc132017-11-10 12:09:42 -08001701
Jesse Grossccb13522011-10-25 19:26:31 -07001702 /* Set up our datapath device. */
1703 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1704 parms.type = OVS_VPORT_TYPE_INTERNAL;
1705 parms.options = NULL;
1706 parms.dp = dp;
1707 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001708 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001709
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001710 /* So far only local changes have been made, now need the lock. */
1711 ovs_lock();
1712
Eelco Chaudronfea07a42020-11-03 09:25:49 +01001713 err = ovs_dp_change(dp, a);
1714 if (err)
1715 goto err_unlock_and_destroy_meters;
1716
Jesse Grossccb13522011-10-25 19:26:31 -07001717 vport = new_vport(&parms);
1718 if (IS_ERR(vport)) {
1719 err = PTR_ERR(vport);
1720 if (err == -EBUSY)
1721 err = -EEXIST;
1722
Thomas Graf44da5ae2013-12-13 15:22:19 +01001723 if (err == -EEXIST) {
1724 /* An outdated user space instance that does not understand
1725 * the concept of user_features has attempted to create a new
1726 * datapath and is likely to reuse it. Drop all user features.
1727 */
1728 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1729 ovs_dp_reset_user_features(skb, info);
1730 }
1731
Eelco Chaudronfea07a42020-11-03 09:25:49 +01001732 goto err_unlock_and_destroy_meters;
Jesse Grossccb13522011-10-25 19:26:31 -07001733 }
1734
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001735 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1736 info->snd_seq, 0, OVS_DP_CMD_NEW);
1737 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001738
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001739 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001740 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001741
1742 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001743
Johannes Berg2a94fe42013-11-19 15:19:39 +01001744 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001745 return 0;
1746
Eelco Chaudronfea07a42020-11-03 09:25:49 +01001747err_unlock_and_destroy_meters:
1748 ovs_unlock();
Andy Zhou96fbc132017-11-10 12:09:42 -08001749 ovs_meters_exit(dp);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001750err_destroy_ports:
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001751 kfree(dp->ports);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001752err_destroy_stats:
Jesse Grossccb13522011-10-25 19:26:31 -07001753 free_percpu(dp->stats_percpu);
1754err_destroy_table:
Pravin B Shelar9b996e52014-05-06 18:41:20 -07001755 ovs_flow_tbl_destroy(&dp->table);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001756err_destroy_dp:
Jesse Grossccb13522011-10-25 19:26:31 -07001757 kfree(dp);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001758err_destroy_reply:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001759 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001760err:
1761 return err;
1762}
1763
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001764/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001765static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001766{
Tonghao Zhang1f3a0902020-08-12 17:56:39 +08001767 struct flow_table *table = &dp->table;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001768 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001769
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001770 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1771 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001772 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001773
Sasha Levinb67bfe02013-02-27 17:06:00 -08001774 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001775 if (vport->port_no != OVSP_LOCAL)
1776 ovs_dp_detach_port(vport);
1777 }
Jesse Grossccb13522011-10-25 19:26:31 -07001778
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001779 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001780
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001781 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001782 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001783 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001784 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001785
Tonghao Zhang1f3a0902020-08-12 17:56:39 +08001786 /* Flush sw_flow in the tables. RCU cb only releases resource
1787 * such as dp, ports and tables. That may avoid some issues
1788 * such as RCU usage warning.
1789 */
1790 table_instance_flow_flush(table, ovsl_dereference(table->ti),
1791 ovsl_dereference(table->ufid_ti));
1792
1793 /* RCU destroy the ports, meters and flow tables. */
Jesse Grossccb13522011-10-25 19:26:31 -07001794 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001795}
1796
1797static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1798{
1799 struct sk_buff *reply;
1800 struct datapath *dp;
1801 int err;
1802
Florian Westphal263ea092016-02-18 15:03:26 +01001803 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001804 if (!reply)
1805 return -ENOMEM;
1806
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001807 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001808 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1809 err = PTR_ERR(dp);
1810 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001811 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001812
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001813 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1814 info->snd_seq, 0, OVS_DP_CMD_DEL);
1815 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001816
1817 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001818 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001819
Johannes Berg2a94fe42013-11-19 15:19:39 +01001820 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001821
1822 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001823
1824err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001825 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001826 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001827 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001828}
1829
1830static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1831{
1832 struct sk_buff *reply;
1833 struct datapath *dp;
1834 int err;
1835
Florian Westphal263ea092016-02-18 15:03:26 +01001836 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001837 if (!reply)
1838 return -ENOMEM;
1839
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001840 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001841 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001842 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001843 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001844 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001845
Paul Blakey95a72332019-09-04 16:56:37 +03001846 err = ovs_dp_change(dp, info->attrs);
1847 if (err)
1848 goto err_unlock_free;
Thomas Graf43d4be92013-12-13 15:22:18 +01001849
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001850 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001851 info->snd_seq, 0, OVS_DP_CMD_SET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001852 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001853
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001854 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001855 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001856
1857 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001858
1859err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001860 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001861 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001862 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001863}
1864
1865static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1866{
1867 struct sk_buff *reply;
1868 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001869 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001870
Florian Westphal263ea092016-02-18 15:03:26 +01001871 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001872 if (!reply)
1873 return -ENOMEM;
1874
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001875 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001876 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001877 if (IS_ERR(dp)) {
1878 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001879 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001880 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001881 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001882 info->snd_seq, 0, OVS_DP_CMD_GET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001883 BUG_ON(err < 0);
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001884 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001885
Jesse Grossccb13522011-10-25 19:26:31 -07001886 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001887
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001888err_unlock_free:
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001889 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001890 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001891 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001892}
1893
1894static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1895{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001896 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001897 struct datapath *dp;
1898 int skip = cb->args[0];
1899 int i = 0;
1900
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001901 ovs_lock();
1902 list_for_each_entry(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001903 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001904 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001905 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001906 OVS_DP_CMD_GET) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001907 break;
1908 i++;
1909 }
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001910 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001911
1912 cb->args[0] = i;
1913
1914 return skb->len;
1915}
1916
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001917static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1918 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1919 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1920 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
Eelco Chaudron9bf24f52020-07-31 14:21:34 +02001921 [OVS_DP_ATTR_MASKS_CACHE_SIZE] = NLA_POLICY_RANGE(NLA_U32, 0,
1922 PCPU_MIN_UNIT_SIZE / sizeof(struct mask_cache_entry)),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001923};
1924
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001925static const struct genl_small_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001926 { .cmd = OVS_DP_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001927 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001928 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001929 .doit = ovs_dp_cmd_new
1930 },
1931 { .cmd = OVS_DP_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001932 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001933 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001934 .doit = ovs_dp_cmd_del
1935 },
1936 { .cmd = OVS_DP_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001937 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001938 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001939 .doit = ovs_dp_cmd_get,
1940 .dumpit = ovs_dp_cmd_dump
1941 },
1942 { .cmd = OVS_DP_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001943 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001944 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001945 .doit = ovs_dp_cmd_set,
1946 },
1947};
1948
Johannes Berg56989f62016-10-24 14:40:05 +02001949static struct genl_family dp_datapath_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001950 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001951 .name = OVS_DATAPATH_FAMILY,
1952 .version = OVS_DATAPATH_VERSION,
1953 .maxattr = OVS_DP_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001954 .policy = datapath_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001955 .netnsok = true,
1956 .parallel_ops = true,
Jakub Kicinski66a9b922020-10-02 14:49:54 -07001957 .small_ops = dp_datapath_genl_ops,
1958 .n_small_ops = ARRAY_SIZE(dp_datapath_genl_ops),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001959 .mcgrps = &ovs_dp_datapath_multicast_group,
1960 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001961 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001962};
1963
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001964/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001965static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Jiri Benc9354d452017-11-02 17:04:37 -02001966 struct net *net, u32 portid, u32 seq,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001967 u32 flags, u8 cmd, gfp_t gfp)
Jesse Grossccb13522011-10-25 19:26:31 -07001968{
1969 struct ovs_header *ovs_header;
1970 struct ovs_vport_stats vport_stats;
1971 int err;
1972
Eric W. Biederman15e47302012-09-07 20:12:54 +00001973 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001974 flags, cmd);
1975 if (!ovs_header)
1976 return -EMSGSIZE;
1977
1978 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1979
David S. Miller028d6a62012-03-29 23:20:48 -04001980 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1981 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001982 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
Jiri Benc9354d452017-11-02 17:04:37 -02001983 ovs_vport_name(vport)) ||
1984 nla_put_u32(skb, OVS_VPORT_ATTR_IFINDEX, vport->dev->ifindex))
David S. Miller028d6a62012-03-29 23:20:48 -04001985 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001986
Jiri Benc9354d452017-11-02 17:04:37 -02001987 if (!net_eq(net, dev_net(vport->dev))) {
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001988 int id = peernet2id_alloc(net, dev_net(vport->dev), gfp);
Jiri Benc9354d452017-11-02 17:04:37 -02001989
1990 if (nla_put_s32(skb, OVS_VPORT_ATTR_NETNSID, id))
1991 goto nla_put_failure;
1992 }
1993
Jesse Grossccb13522011-10-25 19:26:31 -07001994 ovs_vport_get_stats(vport, &vport_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001995 if (nla_put_64bit(skb, OVS_VPORT_ATTR_STATS,
1996 sizeof(struct ovs_vport_stats), &vport_stats,
1997 OVS_VPORT_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001998 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001999
Alex Wang5cd667b2014-07-17 15:14:13 -07002000 if (ovs_vport_get_upcall_portids(vport, skb))
2001 goto nla_put_failure;
2002
Jesse Grossccb13522011-10-25 19:26:31 -07002003 err = ovs_vport_get_options(vport, skb);
2004 if (err == -EMSGSIZE)
2005 goto error;
2006
Johannes Berg053c0952015-01-16 22:09:00 +01002007 genlmsg_end(skb, ovs_header);
2008 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002009
2010nla_put_failure:
2011 err = -EMSGSIZE;
2012error:
2013 genlmsg_cancel(skb, ovs_header);
2014 return err;
2015}
2016
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002017static struct sk_buff *ovs_vport_cmd_alloc_info(void)
2018{
2019 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2020}
2021
2022/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Jiri Benc9354d452017-11-02 17:04:37 -02002023struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, struct net *net,
2024 u32 portid, u32 seq, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07002025{
2026 struct sk_buff *skb;
2027 int retval;
2028
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002029 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07002030 if (!skb)
2031 return ERR_PTR(-ENOMEM);
2032
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002033 retval = ovs_vport_cmd_fill_info(vport, skb, net, portid, seq, 0, cmd,
2034 GFP_KERNEL);
Jesse Grossa9341512013-03-26 15:48:38 -07002035 BUG_ON(retval < 0);
2036
Jesse Grossccb13522011-10-25 19:26:31 -07002037 return skb;
2038}
2039
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002040/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002041static struct vport *lookup_vport(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08002042 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07002043 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
2044{
2045 struct datapath *dp;
2046 struct vport *vport;
2047
Jiri Benc9354d452017-11-02 17:04:37 -02002048 if (a[OVS_VPORT_ATTR_IFINDEX])
2049 return ERR_PTR(-EOPNOTSUPP);
Jesse Grossccb13522011-10-25 19:26:31 -07002050 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002051 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07002052 if (!vport)
2053 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08002054 if (ovs_header->dp_ifindex &&
2055 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
2056 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07002057 return vport;
2058 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
2059 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
2060
2061 if (port_no >= DP_MAX_PORTS)
2062 return ERR_PTR(-EFBIG);
2063
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002064 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002065 if (!dp)
2066 return ERR_PTR(-ENODEV);
2067
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002068 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002069 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08002070 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07002071 return vport;
2072 } else
2073 return ERR_PTR(-EINVAL);
Jiri Benc9354d452017-11-02 17:04:37 -02002074
Jesse Grossccb13522011-10-25 19:26:31 -07002075}
2076
Taehee Yoo6b660c42019-07-06 01:08:09 +09002077static unsigned int ovs_get_max_headroom(struct datapath *dp)
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002078{
Taehee Yoo6b660c42019-07-06 01:08:09 +09002079 unsigned int dev_headroom, max_headroom = 0;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002080 struct net_device *dev;
2081 struct vport *vport;
2082 int i;
2083
2084 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +05302085 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002086 lockdep_ovsl_is_held()) {
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002087 dev = vport->dev;
2088 dev_headroom = netdev_get_fwd_headroom(dev);
2089 if (dev_headroom > max_headroom)
2090 max_headroom = dev_headroom;
2091 }
2092 }
2093
Taehee Yoo6b660c42019-07-06 01:08:09 +09002094 return max_headroom;
2095}
2096
2097/* Called with ovs_mutex */
2098static void ovs_update_headroom(struct datapath *dp, unsigned int new_headroom)
2099{
2100 struct vport *vport;
2101 int i;
2102
2103 dp->max_headroom = new_headroom;
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002104 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +05302105 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node,
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002106 lockdep_ovsl_is_held())
Taehee Yoo6b660c42019-07-06 01:08:09 +09002107 netdev_set_rx_headroom(vport->dev, new_headroom);
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002108 }
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002109}
2110
Jesse Grossccb13522011-10-25 19:26:31 -07002111static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
2112{
2113 struct nlattr **a = info->attrs;
2114 struct ovs_header *ovs_header = info->userhdr;
2115 struct vport_parms parms;
2116 struct sk_buff *reply;
2117 struct vport *vport;
2118 struct datapath *dp;
Taehee Yoo6b660c42019-07-06 01:08:09 +09002119 unsigned int new_headroom;
Jesse Grossccb13522011-10-25 19:26:31 -07002120 u32 port_no;
2121 int err;
2122
Jesse Grossccb13522011-10-25 19:26:31 -07002123 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
2124 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002125 return -EINVAL;
Jiri Benc9354d452017-11-02 17:04:37 -02002126 if (a[OVS_VPORT_ATTR_IFINDEX])
2127 return -EOPNOTSUPP;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002128
2129 port_no = a[OVS_VPORT_ATTR_PORT_NO]
2130 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
2131 if (port_no >= DP_MAX_PORTS)
2132 return -EFBIG;
2133
2134 reply = ovs_vport_cmd_alloc_info();
2135 if (!reply)
2136 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07002137
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002138 ovs_lock();
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002139restart:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002140 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002141 err = -ENODEV;
2142 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002143 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002144
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002145 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002146 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002147 err = -EBUSY;
2148 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002149 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002150 } else {
2151 for (port_no = 1; ; port_no++) {
2152 if (port_no >= DP_MAX_PORTS) {
2153 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002154 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002155 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002156 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002157 if (!vport)
2158 break;
2159 }
2160 }
2161
2162 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
2163 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
2164 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
2165 parms.dp = dp;
2166 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07002167 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07002168
2169 vport = new_vport(&parms);
2170 err = PTR_ERR(vport);
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002171 if (IS_ERR(vport)) {
2172 if (err == -EAGAIN)
2173 goto restart;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002174 goto exit_unlock_free;
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002175 }
Jesse Grossccb13522011-10-25 19:26:31 -07002176
Jiri Benc9354d452017-11-02 17:04:37 -02002177 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2178 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002179 OVS_VPORT_CMD_NEW, GFP_KERNEL);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002180
Taehee Yoo6b660c42019-07-06 01:08:09 +09002181 new_headroom = netdev_get_fwd_headroom(vport->dev);
2182
2183 if (new_headroom > dp->max_headroom)
2184 ovs_update_headroom(dp, new_headroom);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002185 else
2186 netdev_set_rx_headroom(vport->dev, dp->max_headroom);
2187
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002188 BUG_ON(err < 0);
2189 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01002190
Johannes Berg2a94fe42013-11-19 15:19:39 +01002191 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002192 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002193
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002194exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002195 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002196 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002197 return err;
2198}
2199
2200static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
2201{
2202 struct nlattr **a = info->attrs;
2203 struct sk_buff *reply;
2204 struct vport *vport;
2205 int err;
2206
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002207 reply = ovs_vport_cmd_alloc_info();
2208 if (!reply)
2209 return -ENOMEM;
2210
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002211 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002212 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002213 err = PTR_ERR(vport);
2214 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002215 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002216
Jesse Grossccb13522011-10-25 19:26:31 -07002217 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07002218 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07002219 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002220 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07002221 }
2222
Jesse Grossf44f3402013-05-13 08:15:26 -07002223 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07002224 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07002225 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002226 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07002227 }
Jesse Grossa9341512013-03-26 15:48:38 -07002228
Alex Wang5cd667b2014-07-17 15:14:13 -07002229
2230 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
2231 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
2232
2233 err = ovs_vport_set_upcall_portids(vport, ids);
2234 if (err)
2235 goto exit_unlock_free;
2236 }
Jesse Grossccb13522011-10-25 19:26:31 -07002237
Jiri Benc9354d452017-11-02 17:04:37 -02002238 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2239 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002240 OVS_VPORT_CMD_SET, GFP_KERNEL);
Jesse Grossa9341512013-03-26 15:48:38 -07002241 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002242
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002243 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01002244 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002245 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002246
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002247exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002248 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002249 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002250 return err;
2251}
2252
2253static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2254{
Taehee Yoo6b660c42019-07-06 01:08:09 +09002255 bool update_headroom = false;
Jesse Grossccb13522011-10-25 19:26:31 -07002256 struct nlattr **a = info->attrs;
2257 struct sk_buff *reply;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002258 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07002259 struct vport *vport;
Taehee Yoo6b660c42019-07-06 01:08:09 +09002260 unsigned int new_headroom;
Jesse Grossccb13522011-10-25 19:26:31 -07002261 int err;
2262
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002263 reply = ovs_vport_cmd_alloc_info();
2264 if (!reply)
2265 return -ENOMEM;
2266
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002267 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002268 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002269 err = PTR_ERR(vport);
2270 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002271 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002272
2273 if (vport->port_no == OVSP_LOCAL) {
2274 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002275 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002276 }
2277
Jiri Benc9354d452017-11-02 17:04:37 -02002278 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2279 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002280 OVS_VPORT_CMD_DEL, GFP_KERNEL);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002281 BUG_ON(err < 0);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002282
2283 /* the vport deletion may trigger dp headroom update */
2284 dp = vport->dp;
2285 if (netdev_get_fwd_headroom(vport->dev) == dp->max_headroom)
Taehee Yoo6b660c42019-07-06 01:08:09 +09002286 update_headroom = true;
2287
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002288 netdev_reset_rx_headroom(vport->dev);
Jesse Grossccb13522011-10-25 19:26:31 -07002289 ovs_dp_detach_port(vport);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002290
Taehee Yoo6b660c42019-07-06 01:08:09 +09002291 if (update_headroom) {
2292 new_headroom = ovs_get_max_headroom(dp);
2293
2294 if (new_headroom < dp->max_headroom)
2295 ovs_update_headroom(dp, new_headroom);
2296 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002297 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07002298
Johannes Berg2a94fe42013-11-19 15:19:39 +01002299 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002300 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002301
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002302exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002303 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002304 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002305 return err;
2306}
2307
2308static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2309{
2310 struct nlattr **a = info->attrs;
2311 struct ovs_header *ovs_header = info->userhdr;
2312 struct sk_buff *reply;
2313 struct vport *vport;
2314 int err;
2315
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002316 reply = ovs_vport_cmd_alloc_info();
2317 if (!reply)
2318 return -ENOMEM;
2319
Jesse Grossccb13522011-10-25 19:26:31 -07002320 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002321 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002322 err = PTR_ERR(vport);
2323 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002324 goto exit_unlock_free;
Jiri Benc9354d452017-11-02 17:04:37 -02002325 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2326 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002327 OVS_VPORT_CMD_GET, GFP_ATOMIC);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002328 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002329 rcu_read_unlock();
2330
2331 return genlmsg_reply(reply, info);
2332
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002333exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07002334 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002335 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002336 return err;
2337}
2338
2339static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2340{
2341 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2342 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002343 int bucket = cb->args[0], skip = cb->args[1];
2344 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002345
Jesse Grossccb13522011-10-25 19:26:31 -07002346 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07002347 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08002348 if (!dp) {
2349 rcu_read_unlock();
2350 return -ENODEV;
2351 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002352 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002353 struct vport *vport;
2354
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002355 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002356 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002357 if (j >= skip &&
2358 ovs_vport_cmd_fill_info(vport, skb,
Jiri Benc9354d452017-11-02 17:04:37 -02002359 sock_net(skb->sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002360 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002361 cb->nlh->nlmsg_seq,
2362 NLM_F_MULTI,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002363 OVS_VPORT_CMD_GET,
2364 GFP_ATOMIC) < 0)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002365 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07002366
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002367 j++;
2368 }
2369 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002370 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002371out:
Jesse Grossccb13522011-10-25 19:26:31 -07002372 rcu_read_unlock();
2373
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002374 cb->args[0] = i;
2375 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07002376
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002377 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07002378}
2379
Eelco Chaudroneac87c42020-07-15 14:09:28 +02002380static void ovs_dp_masks_rebalance(struct work_struct *work)
2381{
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002382 struct ovs_net *ovs_net = container_of(work, struct ovs_net,
2383 masks_rebalance.work);
2384 struct datapath *dp;
Eelco Chaudroneac87c42020-07-15 14:09:28 +02002385
2386 ovs_lock();
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002387
2388 list_for_each_entry(dp, &ovs_net->dps, list_node)
2389 ovs_flow_masks_rebalance(&dp->table);
2390
Eelco Chaudroneac87c42020-07-15 14:09:28 +02002391 ovs_unlock();
2392
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002393 schedule_delayed_work(&ovs_net->masks_rebalance,
Eelco Chaudroneac87c42020-07-15 14:09:28 +02002394 msecs_to_jiffies(DP_MASKS_REBALANCE_INTERVAL));
2395}
2396
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002397static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
2398 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
2399 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
2400 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
2401 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
Li RongQingea8564c2019-09-24 19:11:52 +08002402 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_UNSPEC },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002403 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
Jiri Benc9354d452017-11-02 17:04:37 -02002404 [OVS_VPORT_ATTR_IFINDEX] = { .type = NLA_U32 },
2405 [OVS_VPORT_ATTR_NETNSID] = { .type = NLA_S32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002406};
2407
Jakub Kicinski66a9b922020-10-02 14:49:54 -07002408static const struct genl_small_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07002409 { .cmd = OVS_VPORT_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02002410 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002411 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002412 .doit = ovs_vport_cmd_new
2413 },
2414 { .cmd = OVS_VPORT_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02002415 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002416 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002417 .doit = ovs_vport_cmd_del
2418 },
2419 { .cmd = OVS_VPORT_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002420 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07002421 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07002422 .doit = ovs_vport_cmd_get,
2423 .dumpit = ovs_vport_cmd_dump
2424 },
2425 { .cmd = OVS_VPORT_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002426 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002427 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002428 .doit = ovs_vport_cmd_set,
2429 },
2430};
2431
Johannes Berg56989f62016-10-24 14:40:05 +02002432struct genl_family dp_vport_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002433 .hdrsize = sizeof(struct ovs_header),
2434 .name = OVS_VPORT_FAMILY,
2435 .version = OVS_VPORT_VERSION,
2436 .maxattr = OVS_VPORT_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01002437 .policy = vport_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002438 .netnsok = true,
2439 .parallel_ops = true,
Jakub Kicinski66a9b922020-10-02 14:49:54 -07002440 .small_ops = dp_vport_genl_ops,
2441 .n_small_ops = ARRAY_SIZE(dp_vport_genl_ops),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002442 .mcgrps = &ovs_dp_vport_multicast_group,
2443 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02002444 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07002445};
2446
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002447static struct genl_family * const dp_genl_families[] = {
2448 &dp_datapath_genl_family,
2449 &dp_vport_genl_family,
2450 &dp_flow_genl_family,
2451 &dp_packet_genl_family,
Andy Zhou96fbc132017-11-10 12:09:42 -08002452 &dp_meter_genl_family,
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002453#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
2454 &dp_ct_limit_genl_family,
2455#endif
Jesse Grossccb13522011-10-25 19:26:31 -07002456};
2457
2458static void dp_unregister_genl(int n_families)
2459{
2460 int i;
2461
2462 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002463 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002464}
2465
Johannes Berg56989f62016-10-24 14:40:05 +02002466static int __init dp_register_genl(void)
Jesse Grossccb13522011-10-25 19:26:31 -07002467{
Jesse Grossccb13522011-10-25 19:26:31 -07002468 int err;
2469 int i;
2470
Jesse Grossccb13522011-10-25 19:26:31 -07002471 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002472
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002473 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002474 if (err)
2475 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002476 }
2477
2478 return 0;
2479
2480error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002481 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002482 return err;
2483}
2484
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002485static int __net_init ovs_init_net(struct net *net)
2486{
2487 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
Eelco Chaudrone0afe912020-08-31 11:57:57 +02002488 int err;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002489
2490 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002491 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002492 INIT_DELAYED_WORK(&ovs_net->masks_rebalance, ovs_dp_masks_rebalance);
Eelco Chaudrone0afe912020-08-31 11:57:57 +02002493
2494 err = ovs_ct_init(net);
2495 if (err)
2496 return err;
2497
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002498 schedule_delayed_work(&ovs_net->masks_rebalance,
2499 msecs_to_jiffies(DP_MASKS_REBALANCE_INTERVAL));
Eelco Chaudrone0afe912020-08-31 11:57:57 +02002500 return 0;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002501}
2502
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002503static void __net_exit list_vports_from_net(struct net *net, struct net *dnet,
2504 struct list_head *head)
2505{
2506 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2507 struct datapath *dp;
2508
2509 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2510 int i;
2511
2512 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2513 struct vport *vport;
2514
2515 hlist_for_each_entry(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002516 if (vport->ops->type != OVS_VPORT_TYPE_INTERNAL)
2517 continue;
2518
Thomas Grafbe4ace62015-07-21 10:44:04 +02002519 if (dev_net(vport->dev) == dnet)
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002520 list_add(&vport->detach_list, head);
2521 }
2522 }
2523 }
2524}
2525
2526static void __net_exit ovs_exit_net(struct net *dnet)
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002527{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002528 struct datapath *dp, *dp_next;
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002529 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id);
2530 struct vport *vport, *vport_next;
2531 struct net *net;
2532 LIST_HEAD(head);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002533
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002534 ovs_lock();
Tonghao Zhang27de77c2020-04-17 02:57:31 +08002535
2536 ovs_ct_exit(dnet);
2537
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002538 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2539 __dp_destroy(dp);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002540
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002541 down_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002542 for_each_net(net)
2543 list_vports_from_net(net, dnet, &head);
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002544 up_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002545
2546 /* Detach all vports from given namespace. */
2547 list_for_each_entry_safe(vport, vport_next, &head, detach_list) {
2548 list_del(&vport->detach_list);
2549 ovs_dp_detach_port(vport);
2550 }
2551
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002552 ovs_unlock();
2553
Eelco Chaudrona65878d2020-07-24 10:20:59 +02002554 cancel_delayed_work_sync(&ovs_net->masks_rebalance);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002555 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002556}
2557
2558static struct pernet_operations ovs_net_ops = {
2559 .init = ovs_init_net,
2560 .exit = ovs_exit_net,
2561 .id = &ovs_net_id,
2562 .size = sizeof(struct ovs_net),
2563};
2564
Jesse Grossccb13522011-10-25 19:26:31 -07002565static int __init dp_init(void)
2566{
Jesse Grossccb13522011-10-25 19:26:31 -07002567 int err;
2568
Tonghao Zhangcf3266a2020-09-01 20:26:12 +08002569 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) >
2570 sizeof_field(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002571
2572 pr_info("Open vSwitch switching datapath\n");
2573
Andy Zhou971427f32014-09-15 19:37:25 -07002574 err = action_fifos_init();
Jesse Grossccb13522011-10-25 19:26:31 -07002575 if (err)
2576 goto error;
2577
Andy Zhou971427f32014-09-15 19:37:25 -07002578 err = ovs_internal_dev_rtnl_link_register();
2579 if (err)
2580 goto error_action_fifos_exit;
2581
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002582 err = ovs_flow_init();
2583 if (err)
2584 goto error_unreg_rtnl_link;
2585
Jesse Grossccb13522011-10-25 19:26:31 -07002586 err = ovs_vport_init();
2587 if (err)
2588 goto error_flow_exit;
2589
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002590 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002591 if (err)
2592 goto error_vport_exit;
2593
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002594 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2595 if (err)
2596 goto error_netns_exit;
2597
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002598 err = ovs_netdev_init();
2599 if (err)
2600 goto error_unreg_notifier;
2601
Jesse Grossccb13522011-10-25 19:26:31 -07002602 err = dp_register_genl();
2603 if (err < 0)
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002604 goto error_unreg_netdev;
Jesse Grossccb13522011-10-25 19:26:31 -07002605
Jesse Grossccb13522011-10-25 19:26:31 -07002606 return 0;
2607
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002608error_unreg_netdev:
2609 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002610error_unreg_notifier:
2611 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002612error_netns_exit:
2613 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002614error_vport_exit:
2615 ovs_vport_exit();
2616error_flow_exit:
2617 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002618error_unreg_rtnl_link:
2619 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002620error_action_fifos_exit:
2621 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002622error:
2623 return err;
2624}
2625
2626static void dp_cleanup(void)
2627{
Jesse Grossccb13522011-10-25 19:26:31 -07002628 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002629 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002630 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002631 unregister_pernet_device(&ovs_net_ops);
2632 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002633 ovs_vport_exit();
2634 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002635 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002636 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002637}
2638
2639module_init(dp_init);
2640module_exit(dp_cleanup);
2641
2642MODULE_DESCRIPTION("Open vSwitch switching datapath");
2643MODULE_LICENSE("GPL");
Thadeu Lima de Souza Cascardoed227092016-09-09 17:42:30 -03002644MODULE_ALIAS_GENL_FAMILY(OVS_DATAPATH_FAMILY);
2645MODULE_ALIAS_GENL_FAMILY(OVS_VPORT_FAMILY);
2646MODULE_ALIAS_GENL_FAMILY(OVS_FLOW_FAMILY);
2647MODULE_ALIAS_GENL_FAMILY(OVS_PACKET_FAMILY);
Andy Zhou96fbc132017-11-10 12:09:42 -08002648MODULE_ALIAS_GENL_FAMILY(OVS_METER_FAMILY);
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002649MODULE_ALIAS_GENL_FAMILY(OVS_CT_LIMIT_FAMILY);