blob: 94b024534987a02428e7bd579e531958ca4b190b [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"
Jesse Grossccb13522011-10-25 19:26:31 -070046#include "vport-internal_dev.h"
Thomas Grafcff63a52013-04-29 13:06:41 +000047#include "vport-netdev.h"
Jesse Grossccb13522011-10-25 19:26:31 -070048
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030049unsigned int ovs_net_id __read_mostly;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070050
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070051static struct genl_family dp_packet_genl_family;
52static struct genl_family dp_flow_genl_family;
53static struct genl_family dp_datapath_genl_family;
54
Joe Stringer74ed7ab2015-01-21 16:42:52 -080055static const struct nla_policy flow_policy[];
56
stephen hemminger48e48a72014-07-16 11:25:52 -070057static const struct genl_multicast_group ovs_dp_flow_multicast_group = {
58 .name = OVS_FLOW_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070059};
60
stephen hemminger48e48a72014-07-16 11:25:52 -070061static const struct genl_multicast_group ovs_dp_datapath_multicast_group = {
62 .name = OVS_DATAPATH_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070063};
64
stephen hemminger48e48a72014-07-16 11:25:52 -070065static const struct genl_multicast_group ovs_dp_vport_multicast_group = {
66 .name = OVS_VPORT_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070067};
68
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070069/* Check if need to build a reply message.
70 * OVS userspace sets the NLM_F_ECHO flag if it needs the reply. */
Samuel Gauthier9b67aa42014-09-18 10:31:04 +020071static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
72 unsigned int group)
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070073{
74 return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
Johannes Bergf8403a22014-12-22 18:56:36 +010075 genl_has_listeners(family, genl_info_net(info), group);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070076}
77
Johannes Berg68eb5502013-11-19 15:19:38 +010078static void ovs_notify(struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +010079 struct sk_buff *skb, struct genl_info *info)
Thomas Grafed661182013-03-29 14:46:50 +010080{
Jiri Benc92c14d92015-09-22 18:56:43 +020081 genl_notify(family, skb, info, 0, GFP_KERNEL);
Thomas Grafed661182013-03-29 14:46:50 +010082}
83
Pravin B Shelar46df7b82012-02-22 19:58:59 -080084/**
Jesse Grossccb13522011-10-25 19:26:31 -070085 * DOC: Locking:
86 *
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070087 * All writes e.g. Writes to device state (add/remove datapath, port, set
88 * operations on vports, etc.), Writes to other state (flow table
89 * modifications, set miscellaneous datapath parameters, etc.) are protected
90 * by ovs_lock.
Jesse Grossccb13522011-10-25 19:26:31 -070091 *
92 * Reads are protected by RCU.
93 *
94 * There are a few special cases (mostly stats) that have their own
95 * synchronization but they nest under all of above and don't interact with
96 * each other.
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070097 *
98 * The RTNL lock nests inside ovs_mutex.
Jesse Grossccb13522011-10-25 19:26:31 -070099 */
100
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700101static DEFINE_MUTEX(ovs_mutex);
102
103void ovs_lock(void)
104{
105 mutex_lock(&ovs_mutex);
106}
107
108void ovs_unlock(void)
109{
110 mutex_unlock(&ovs_mutex);
111}
112
113#ifdef CONFIG_LOCKDEP
114int lockdep_ovsl_is_held(void)
115{
116 if (debug_locks)
117 return lockdep_is_held(&ovs_mutex);
118 else
119 return 1;
120}
121#endif
122
Jesse Grossccb13522011-10-25 19:26:31 -0700123static struct vport *new_vport(const struct vport_parms *);
Thomas Graf8055a892013-12-13 15:22:20 +0100124static int queue_gso_packets(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800125 const struct sw_flow_key *,
William Tuf2a4d082016-06-10 11:49:33 -0700126 const struct dp_upcall_info *,
127 uint32_t cutlen);
Thomas Graf8055a892013-12-13 15:22:20 +0100128static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800129 const struct sw_flow_key *,
William Tuf2a4d082016-06-10 11:49:33 -0700130 const struct dp_upcall_info *,
131 uint32_t cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700132
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700133/* Must be called with rcu_read_lock or ovs_mutex. */
Andy Zhou971427f32014-09-15 19:37:25 -0700134const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700135{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700136 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Thomas Grafc9db9652015-07-21 10:44:05 +0200137 return ovs_vport_name(vport);
Jesse Grossccb13522011-10-25 19:26:31 -0700138}
139
Thomas Graf12eb18f2014-11-06 06:58:52 -0800140static int get_dpifindex(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700141{
142 struct vport *local;
143 int ifindex;
144
145 rcu_read_lock();
146
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700147 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700148 if (local)
Thomas Grafbe4ace62015-07-21 10:44:04 +0200149 ifindex = local->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700150 else
151 ifindex = 0;
152
153 rcu_read_unlock();
154
155 return ifindex;
156}
157
158static void destroy_dp_rcu(struct rcu_head *rcu)
159{
160 struct datapath *dp = container_of(rcu, struct datapath, rcu);
161
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700162 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700163 free_percpu(dp->stats_percpu);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700164 kfree(dp->ports);
Andy Zhou96fbc132017-11-10 12:09:42 -0800165 ovs_meters_exit(dp);
Jesse Grossccb13522011-10-25 19:26:31 -0700166 kfree(dp);
167}
168
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700169static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
170 u16 port_no)
171{
172 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
173}
174
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700175/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700176struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
177{
178 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700179 struct hlist_head *head;
180
181 head = vport_hash_bucket(dp, port_no);
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +0530182 hlist_for_each_entry_rcu(vport, head, dp_hash_node,
183 lockdep_ovsl_is_held()) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700184 if (vport->port_no == port_no)
185 return vport;
186 }
187 return NULL;
188}
189
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700190/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700191static struct vport *new_vport(const struct vport_parms *parms)
192{
193 struct vport *vport;
194
195 vport = ovs_vport_add(parms);
196 if (!IS_ERR(vport)) {
197 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700198 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700199
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700200 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700201 }
Jesse Grossccb13522011-10-25 19:26:31 -0700202 return vport;
203}
204
Jesse Grossccb13522011-10-25 19:26:31 -0700205void ovs_dp_detach_port(struct vport *p)
206{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700207 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700208
209 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700210 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700211
212 /* Then destroy it. */
213 ovs_vport_del(p);
214}
215
216/* Must be called with rcu_read_lock. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700217void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700218{
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700219 const struct vport *p = OVS_CB(skb)->input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700220 struct datapath *dp = p->dp;
221 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700222 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700223 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700224 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700225 u32 n_mask_hit;
Yifeng Sunaa733662019-08-04 19:56:11 -0700226 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700227
Shan Wei404f2f12012-11-13 09:52:25 +0800228 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700229
Jesse Grossccb13522011-10-25 19:26:31 -0700230 /* Look up flow. */
Tonghao Zhang04b7d132019-11-01 22:23:45 +0800231 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, skb_get_hash(skb),
232 &n_mask_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700233 if (unlikely(!flow)) {
234 struct dp_upcall_info upcall;
235
Neil McKeeccea7442015-05-26 20:59:43 -0700236 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700237 upcall.cmd = OVS_PACKET_CMD_MISS;
Alex Wang5cd667b2014-07-17 15:14:13 -0700238 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700239 upcall.mru = OVS_CB(skb)->mru;
William Tuf2a4d082016-06-10 11:49:33 -0700240 error = ovs_dp_upcall(dp, skb, key, &upcall, 0);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800241 if (unlikely(error))
242 kfree_skb(skb);
243 else
244 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700245 stats_counter = &stats->n_missed;
246 goto out;
247 }
248
Lorand Jakabd98612b2014-10-06 05:45:32 -0700249 ovs_flow_stats_update(flow, key->tp.flags, skb);
250 sf_acts = rcu_dereference(flow->sf_acts);
Yifeng Sunaa733662019-08-04 19:56:11 -0700251 error = ovs_execute_actions(dp, skb, sf_acts, key);
252 if (unlikely(error))
253 net_dbg_ratelimited("ovs: action execution error on datapath %s: %d\n",
254 ovs_dp_name(dp), error);
Jesse Grossccb13522011-10-25 19:26:31 -0700255
Pravin B Shelare298e502013-10-29 17:22:21 -0700256 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700257
258out:
259 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800260 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700261 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700262 stats->n_mask_hit += n_mask_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800263 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700264}
265
Jesse Grossccb13522011-10-25 19:26:31 -0700266int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800267 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700268 const struct dp_upcall_info *upcall_info,
269 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700270{
271 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700272 int err;
273
Eric W. Biederman15e47302012-09-07 20:12:54 +0000274 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700275 err = -ENOTCONN;
276 goto err;
277 }
278
Jesse Grossccb13522011-10-25 19:26:31 -0700279 if (!skb_is_gso(skb))
William Tuf2a4d082016-06-10 11:49:33 -0700280 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700281 else
William Tuf2a4d082016-06-10 11:49:33 -0700282 err = queue_gso_packets(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700283 if (err)
284 goto err;
285
286 return 0;
287
288err:
Shan Wei404f2f12012-11-13 09:52:25 +0800289 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700290
WANG Congdf9d9fd2014-02-14 15:10:46 -0800291 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700292 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800293 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700294
295 return err;
296}
297
Thomas Graf8055a892013-12-13 15:22:20 +0100298static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800299 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700300 const struct dp_upcall_info *upcall_info,
301 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700302{
Gustavo A. R. Silva27341662017-11-25 13:14:40 -0600303 unsigned int gso_type = skb_shinfo(skb)->gso_type;
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500304 struct sw_flow_key later_key;
Jesse Grossccb13522011-10-25 19:26:31 -0700305 struct sk_buff *segs, *nskb;
306 int err;
307
Cambda Zhua08e7fd2020-03-26 15:33:14 +0800308 BUILD_BUG_ON(sizeof(*OVS_CB(skb)) > SKB_GSO_CB_OFFSET);
Thomas Graf09c5e602013-12-13 15:22:22 +0100309 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700310 if (IS_ERR(segs))
311 return PTR_ERR(segs);
Florian Westphal330966e2014-10-20 13:49:17 +0200312 if (segs == NULL)
313 return -EINVAL;
Jesse Grossccb13522011-10-25 19:26:31 -0700314
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500315 if (gso_type & SKB_GSO_UDP) {
316 /* The initial flow key extracted by ovs_flow_key_extract()
317 * in this case is for a first fragment, so we need to
318 * properly mark later fragments.
319 */
320 later_key = *key;
321 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
322 }
323
Jesse Grossccb13522011-10-25 19:26:31 -0700324 /* Queue all of the segments. */
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500325 skb_list_walk_safe(segs, skb, nskb) {
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500326 if (gso_type & SKB_GSO_UDP && skb != segs)
327 key = &later_key;
328
William Tuf2a4d082016-06-10 11:49:33 -0700329 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700330 if (err)
331 break;
332
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500333 }
Jesse Grossccb13522011-10-25 19:26:31 -0700334
335 /* Free all of the segments. */
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500336 skb_list_walk_safe(segs, skb, nskb) {
Jesse Grossccb13522011-10-25 19:26:31 -0700337 if (err)
338 kfree_skb(skb);
339 else
340 consume_skb(skb);
Jason A. Donenfeld2cec4442020-01-13 18:42:29 -0500341 }
Jesse Grossccb13522011-10-25 19:26:31 -0700342 return err;
343}
344
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800345static size_t upcall_msg_size(const struct dp_upcall_info *upcall_info,
Liping Zhang494bea32017-08-16 13:30:07 +0800346 unsigned int hdrlen, int actions_attrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100347{
348 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100349 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
William Tub95e5922016-06-20 07:26:17 -0700350 + nla_total_size(ovs_key_attr_size()) /* OVS_PACKET_ATTR_KEY */
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800351 + nla_total_size(sizeof(unsigned int)) /* OVS_PACKET_ATTR_LEN */
352 + nla_total_size(sizeof(u64)); /* OVS_PACKET_ATTR_HASH */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100353
354 /* OVS_PACKET_ATTR_USERDATA */
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800355 if (upcall_info->userdata)
356 size += NLA_ALIGN(upcall_info->userdata->nla_len);
357
358 /* OVS_PACKET_ATTR_EGRESS_TUN_KEY */
359 if (upcall_info->egress_tun_info)
360 size += nla_total_size(ovs_tun_key_attr_size());
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100361
Neil McKeeccea7442015-05-26 20:59:43 -0700362 /* OVS_PACKET_ATTR_ACTIONS */
363 if (upcall_info->actions_len)
Liping Zhang494bea32017-08-16 13:30:07 +0800364 size += nla_total_size(actions_attrlen);
Neil McKeeccea7442015-05-26 20:59:43 -0700365
Joe Stringer7f8a4362015-08-26 11:31:48 -0700366 /* OVS_PACKET_ATTR_MRU */
367 if (upcall_info->mru)
368 size += nla_total_size(sizeof(upcall_info->mru));
369
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100370 return size;
371}
372
Joe Stringer7f8a4362015-08-26 11:31:48 -0700373static void pad_packet(struct datapath *dp, struct sk_buff *skb)
374{
375 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
376 size_t plen = NLA_ALIGN(skb->len) - skb->len;
377
378 if (plen > 0)
Johannes Bergb080db52017-06-16 14:29:19 +0200379 skb_put_zero(skb, plen);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700380 }
381}
382
Thomas Graf8055a892013-12-13 15:22:20 +0100383static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800384 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700385 const struct dp_upcall_info *upcall_info,
386 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700387{
388 struct ovs_header *upcall;
389 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800390 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700391 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100392 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100393 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100394 int err, dp_ifindex;
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800395 u64 hash;
Thomas Graf8055a892013-12-13 15:22:20 +0100396
397 dp_ifindex = get_dpifindex(dp);
398 if (!dp_ifindex)
399 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700400
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100401 if (skb_vlan_tag_present(skb)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700402 nskb = skb_clone(skb, GFP_ATOMIC);
403 if (!nskb)
404 return -ENOMEM;
405
Jiri Pirko59682502014-11-19 14:04:59 +0100406 nskb = __vlan_hwaccel_push_inside(nskb);
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000407 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700408 return -ENOMEM;
409
Jesse Grossccb13522011-10-25 19:26:31 -0700410 skb = nskb;
411 }
412
413 if (nla_attr_size(skb->len) > USHRT_MAX) {
414 err = -EFBIG;
415 goto out;
416 }
417
Thomas Grafbda56f12013-12-13 15:22:21 +0100418 /* Complete checksum if needed */
419 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Davide Caratti75293902017-05-18 15:44:42 +0200420 (err = skb_csum_hwoffload_help(skb, 0)))
Thomas Grafbda56f12013-12-13 15:22:21 +0100421 goto out;
422
423 /* Older versions of OVS user space enforce alignment of the last
424 * Netlink attribute to NLA_ALIGNTO which would require extensive
425 * padding logic. Only perform zerocopy if padding is not required.
426 */
427 if (dp->user_features & OVS_DP_F_UNALIGNED)
428 hlen = skb_zerocopy_headlen(skb);
429 else
430 hlen = skb->len;
431
Liping Zhang494bea32017-08-16 13:30:07 +0800432 len = upcall_msg_size(upcall_info, hlen - cutlen,
433 OVS_CB(skb)->acts_origlen);
Florian Westphal551ddc02016-02-18 15:03:25 +0100434 user_skb = genlmsg_new(len, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700435 if (!user_skb) {
436 err = -ENOMEM;
437 goto out;
438 }
439
440 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
441 0, upcall_info->cmd);
Kangjie Lu6f198932019-03-14 23:20:16 -0500442 if (!upcall) {
443 err = -EINVAL;
444 goto out;
445 }
Jesse Grossccb13522011-10-25 19:26:31 -0700446 upcall->dp_ifindex = dp_ifindex;
447
Joe Stringer5b4237b2015-01-21 16:42:48 -0800448 err = ovs_nla_put_key(key, key, OVS_PACKET_ATTR_KEY, false, user_skb);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400449 if (err)
450 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700451
452 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800453 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
454 nla_len(upcall_info->userdata),
455 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700456
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800457 if (upcall_info->egress_tun_info) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200458 nla = nla_nest_start_noflag(user_skb,
459 OVS_PACKET_ATTR_EGRESS_TUN_KEY);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500460 if (!nla) {
461 err = -EMSGSIZE;
462 goto out;
463 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700464 err = ovs_nla_put_tunnel_info(user_skb,
465 upcall_info->egress_tun_info);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400466 if (err)
467 goto out;
468
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800469 nla_nest_end(user_skb, nla);
470 }
471
Neil McKeeccea7442015-05-26 20:59:43 -0700472 if (upcall_info->actions_len) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200473 nla = nla_nest_start_noflag(user_skb, OVS_PACKET_ATTR_ACTIONS);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500474 if (!nla) {
475 err = -EMSGSIZE;
476 goto out;
477 }
Neil McKeeccea7442015-05-26 20:59:43 -0700478 err = ovs_nla_put_actions(upcall_info->actions,
479 upcall_info->actions_len,
480 user_skb);
481 if (!err)
482 nla_nest_end(user_skb, nla);
483 else
484 nla_nest_cancel(user_skb, nla);
485 }
486
Joe Stringer7f8a4362015-08-26 11:31:48 -0700487 /* Add OVS_PACKET_ATTR_MRU */
Tonghao Zhang61ca5332019-11-14 23:51:08 +0800488 if (upcall_info->mru &&
489 nla_put_u16(user_skb, OVS_PACKET_ATTR_MRU, upcall_info->mru)) {
490 err = -ENOBUFS;
491 goto out;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700492 }
493
William Tub95e5922016-06-20 07:26:17 -0700494 /* Add OVS_PACKET_ATTR_LEN when packet is truncated */
Tonghao Zhang61ca5332019-11-14 23:51:08 +0800495 if (cutlen > 0 &&
496 nla_put_u32(user_skb, OVS_PACKET_ATTR_LEN, skb->len)) {
497 err = -ENOBUFS;
498 goto out;
William Tub95e5922016-06-20 07:26:17 -0700499 }
500
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800501 /* Add OVS_PACKET_ATTR_HASH */
502 hash = skb_get_hash_raw(skb);
503 if (skb->sw_hash)
504 hash |= OVS_PACKET_HASH_SW_BIT;
505
506 if (skb->l4_hash)
507 hash |= OVS_PACKET_HASH_L4_BIT;
508
509 if (nla_put(user_skb, OVS_PACKET_ATTR_HASH, sizeof (u64), &hash)) {
510 err = -ENOBUFS;
511 goto out;
512 }
513
Thomas Grafbda56f12013-12-13 15:22:21 +0100514 /* Only reserve room for attribute header, packet data is added
515 * in skb_zerocopy() */
516 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
517 err = -ENOBUFS;
518 goto out;
519 }
William Tuf2a4d082016-06-10 11:49:33 -0700520 nla->nla_len = nla_attr_size(skb->len - cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700521
William Tuf2a4d082016-06-10 11:49:33 -0700522 err = skb_zerocopy(user_skb, skb, skb->len - cutlen, hlen);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000523 if (err)
524 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700525
Thomas Grafaea0bb42014-01-14 16:27:49 +0000526 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700527 pad_packet(dp, user_skb);
Thomas Grafaea0bb42014-01-14 16:27:49 +0000528
Thomas Grafbda56f12013-12-13 15:22:21 +0100529 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
530
Thomas Graf8055a892013-12-13 15:22:20 +0100531 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800532 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700533out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000534 if (err)
535 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800536 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700537 kfree_skb(nskb);
538 return err;
539}
540
Jesse Grossccb13522011-10-25 19:26:31 -0700541static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
542{
543 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700544 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700545 struct nlattr **a = info->attrs;
546 struct sw_flow_actions *acts;
547 struct sk_buff *packet;
548 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700549 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700550 struct datapath *dp;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700551 struct vport *input_vport;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700552 u16 mru = 0;
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800553 u64 hash;
Jesse Grossccb13522011-10-25 19:26:31 -0700554 int len;
555 int err;
Thomas Graf1ba39802015-01-14 13:56:19 +0000556 bool log = !a[OVS_PACKET_ATTR_PROBE];
Jesse Grossccb13522011-10-25 19:26:31 -0700557
558 err = -EINVAL;
559 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100560 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700561 goto err;
562
563 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
564 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
565 err = -ENOMEM;
566 if (!packet)
567 goto err;
568 skb_reserve(packet, NET_IP_ALIGN);
569
Thomas Graf32686a92013-03-29 14:46:48 +0100570 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700571
Joe Stringer7f8a4362015-08-26 11:31:48 -0700572 /* Set packet's mru */
573 if (a[OVS_PACKET_ATTR_MRU]) {
574 mru = nla_get_u16(a[OVS_PACKET_ATTR_MRU]);
575 packet->ignore_df = 1;
576 }
577 OVS_CB(packet)->mru = mru;
578
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800579 if (a[OVS_PACKET_ATTR_HASH]) {
580 hash = nla_get_u64(a[OVS_PACKET_ATTR_HASH]);
581
582 __skb_set_hash(packet, hash & 0xFFFFFFFFULL,
583 !!(hash & OVS_PACKET_HASH_SW_BIT),
584 !!(hash & OVS_PACKET_HASH_L4_BIT));
585 }
586
Jesse Grossccb13522011-10-25 19:26:31 -0700587 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700588 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700589 err = PTR_ERR(flow);
590 if (IS_ERR(flow))
591 goto err_kfree_skb;
592
Joe Stringerc2ac6672015-08-26 11:31:52 -0700593 err = ovs_flow_key_extract_userspace(net, a[OVS_PACKET_ATTR_KEY],
594 packet, &flow->key, log);
Jesse Grossccb13522011-10-25 19:26:31 -0700595 if (err)
596 goto err_flow_free;
597
Joe Stringer7f8a4362015-08-26 11:31:48 -0700598 err = ovs_nla_copy_actions(net, a[OVS_PACKET_ATTR_ACTIONS],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800599 &flow->key, &acts, log);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700600 if (err)
601 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700602
Jesse Grossf5796682014-10-03 15:35:33 -0700603 rcu_assign_pointer(flow->sf_acts, acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700604 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800605 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700606
607 rcu_read_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700608 dp = get_dp_rcu(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700609 err = -ENODEV;
610 if (!dp)
611 goto err_unlock;
612
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700613 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
614 if (!input_vport)
615 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
616
617 if (!input_vport)
618 goto err_unlock;
619
Joe Stringer7f8a4362015-08-26 11:31:48 -0700620 packet->dev = input_vport->dev;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700621 OVS_CB(packet)->input_vport = input_vport;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700622 sf_acts = rcu_dereference(flow->sf_acts);
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700623
Jesse Grossccb13522011-10-25 19:26:31 -0700624 local_bh_disable();
Lorand Jakabd98612b2014-10-06 05:45:32 -0700625 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700626 local_bh_enable();
627 rcu_read_unlock();
628
Andy Zhou03f0d912013-08-07 20:01:00 -0700629 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700630 return err;
631
632err_unlock:
633 rcu_read_unlock();
634err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700635 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700636err_kfree_skb:
637 kfree_skb(packet);
638err:
639 return err;
640}
641
642static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100643 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700644 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
645 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
Thomas Graf1ba39802015-01-14 13:56:19 +0000646 [OVS_PACKET_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer7f8a4362015-08-26 11:31:48 -0700647 [OVS_PACKET_ATTR_MRU] = { .type = NLA_U16 },
Jakub Kicinskib5ab1f12020-03-02 21:05:18 -0800648 [OVS_PACKET_ATTR_HASH] = { .type = NLA_U64 },
Jesse Grossccb13522011-10-25 19:26:31 -0700649};
650
Johannes Berg4534de82013-11-14 17:14:46 +0100651static const struct genl_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700652 { .cmd = OVS_PACKET_CMD_EXECUTE,
Johannes Bergef6243a2019-04-26 14:07:31 +0200653 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -0700654 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -0700655 .doit = ovs_packet_cmd_execute
656 }
657};
658
Johannes Berg56989f62016-10-24 14:40:05 +0200659static struct genl_family dp_packet_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700660 .hdrsize = sizeof(struct ovs_header),
661 .name = OVS_PACKET_FAMILY,
662 .version = OVS_PACKET_VERSION,
663 .maxattr = OVS_PACKET_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100664 .policy = packet_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700665 .netnsok = true,
666 .parallel_ops = true,
667 .ops = dp_packet_genl_ops,
668 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
Johannes Berg489111e2016-10-24 14:40:03 +0200669 .module = THIS_MODULE,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700670};
671
Thomas Graf12eb18f2014-11-06 06:58:52 -0800672static void get_dp_stats(const struct datapath *dp, struct ovs_dp_stats *stats,
Andy Zhou1bd71162013-10-22 10:42:46 -0700673 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700674{
675 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700676
Andy Zhou1bd71162013-10-22 10:42:46 -0700677 memset(mega_stats, 0, sizeof(*mega_stats));
678
Pravin B Shelarb637e492013-10-04 00:14:23 -0700679 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700680 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700681
682 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700683
Jesse Grossccb13522011-10-25 19:26:31 -0700684 for_each_possible_cpu(i) {
685 const struct dp_stats_percpu *percpu_stats;
686 struct dp_stats_percpu local_stats;
687 unsigned int start;
688
689 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
690
691 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700692 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700693 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700694 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700695
696 stats->n_hit += local_stats.n_hit;
697 stats->n_missed += local_stats.n_missed;
698 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700699 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700700 }
701}
702
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800703static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100704{
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800705 return ovs_identifier_is_ufid(sfid) &&
706 !(ufid_flags & OVS_UFID_F_OMIT_KEY);
707}
708
709static bool should_fill_mask(uint32_t ufid_flags)
710{
711 return !(ufid_flags & OVS_UFID_F_OMIT_MASK);
712}
713
714static bool should_fill_actions(uint32_t ufid_flags)
715{
716 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS);
717}
718
719static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts,
720 const struct sw_flow_id *sfid,
721 uint32_t ufid_flags)
722{
723 size_t len = NLMSG_ALIGN(sizeof(struct ovs_header));
724
Paolo Abeni4e81c0b2019-11-26 12:55:50 +0100725 /* OVS_FLOW_ATTR_UFID, or unmasked flow key as fallback
726 * see ovs_nla_put_identifier()
727 */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800728 if (sfid && ovs_identifier_is_ufid(sfid))
729 len += nla_total_size(sfid->ufid_len);
Paolo Abeni4e81c0b2019-11-26 12:55:50 +0100730 else
731 len += nla_total_size(ovs_key_attr_size());
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800732
733 /* OVS_FLOW_ATTR_KEY */
734 if (!sfid || should_fill_key(sfid, ufid_flags))
735 len += nla_total_size(ovs_key_attr_size());
736
737 /* OVS_FLOW_ATTR_MASK */
738 if (should_fill_mask(ufid_flags))
739 len += nla_total_size(ovs_key_attr_size());
740
741 /* OVS_FLOW_ATTR_ACTIONS */
742 if (should_fill_actions(ufid_flags))
Joe Stringer8e2fed12015-08-26 11:31:44 -0700743 len += nla_total_size(acts->orig_len);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800744
745 return len
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200746 + nla_total_size_64bit(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100747 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200748 + nla_total_size_64bit(8); /* OVS_FLOW_ATTR_USED */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100749}
750
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700751/* Called with ovs_mutex or RCU read lock. */
Joe Stringerca7105f2014-09-08 13:09:37 -0700752static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
753 struct sk_buff *skb)
754{
755 struct ovs_flow_stats stats;
756 __be16 tcp_flags;
757 unsigned long used;
Andy Zhou03f0d912013-08-07 20:01:00 -0700758
Pravin B Shelare298e502013-10-29 17:22:21 -0700759 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700760
David S. Miller028d6a62012-03-29 23:20:48 -0400761 if (used &&
Nicolas Dichtel0238b722016-04-25 10:25:17 +0200762 nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
763 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700764 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700765
David S. Miller028d6a62012-03-29 23:20:48 -0400766 if (stats.n_packets &&
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200767 nla_put_64bit(skb, OVS_FLOW_ATTR_STATS,
768 sizeof(struct ovs_flow_stats), &stats,
769 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700770 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700771
Pravin B Shelare298e502013-10-29 17:22:21 -0700772 if ((u8)ntohs(tcp_flags) &&
773 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
Joe Stringerca7105f2014-09-08 13:09:37 -0700774 return -EMSGSIZE;
775
776 return 0;
777}
778
779/* Called with ovs_mutex or RCU read lock. */
780static int ovs_flow_cmd_fill_actions(const struct sw_flow *flow,
781 struct sk_buff *skb, int skb_orig_len)
782{
783 struct nlattr *start;
784 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700785
786 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
787 * this is the first flow to be dumped into 'skb'. This is unusual for
788 * Netlink but individual action lists can be longer than
789 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
790 * The userspace caller can always fetch the actions separately if it
791 * really wants them. (Most userspace callers in fact don't care.)
792 *
793 * This can only fail for dump operations because the skb is always
794 * properly sized for single flows.
795 */
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200796 start = nla_nest_start_noflag(skb, OVS_FLOW_ATTR_ACTIONS);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700797 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700798 const struct sw_flow_actions *sf_acts;
799
Jesse Gross663efa32013-12-03 10:58:53 -0800800 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700801 err = ovs_nla_put_actions(sf_acts->actions,
802 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700803
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700804 if (!err)
805 nla_nest_end(skb, start);
806 else {
807 if (skb_orig_len)
Joe Stringerca7105f2014-09-08 13:09:37 -0700808 return err;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700809
810 nla_nest_cancel(skb, start);
811 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700812 } else if (skb_orig_len) {
813 return -EMSGSIZE;
814 }
815
816 return 0;
817}
818
819/* Called with ovs_mutex or RCU read lock. */
820static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
821 struct sk_buff *skb, u32 portid,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800822 u32 seq, u32 flags, u8 cmd, u32 ufid_flags)
Joe Stringerca7105f2014-09-08 13:09:37 -0700823{
824 const int skb_orig_len = skb->len;
825 struct ovs_header *ovs_header;
826 int err;
827
828 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family,
829 flags, cmd);
830 if (!ovs_header)
831 return -EMSGSIZE;
832
833 ovs_header->dp_ifindex = dp_ifindex;
834
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800835 err = ovs_nla_put_identifier(flow, skb);
Joe Stringer5b4237b2015-01-21 16:42:48 -0800836 if (err)
837 goto error;
838
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800839 if (should_fill_key(&flow->id, ufid_flags)) {
840 err = ovs_nla_put_masked_key(flow, skb);
841 if (err)
842 goto error;
843 }
844
845 if (should_fill_mask(ufid_flags)) {
846 err = ovs_nla_put_mask(flow, skb);
847 if (err)
848 goto error;
849 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700850
851 err = ovs_flow_cmd_fill_stats(flow, skb);
852 if (err)
853 goto error;
854
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800855 if (should_fill_actions(ufid_flags)) {
856 err = ovs_flow_cmd_fill_actions(flow, skb, skb_orig_len);
857 if (err)
858 goto error;
859 }
Jesse Grossccb13522011-10-25 19:26:31 -0700860
Johannes Berg053c0952015-01-16 22:09:00 +0100861 genlmsg_end(skb, ovs_header);
862 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700863
Jesse Grossccb13522011-10-25 19:26:31 -0700864error:
865 genlmsg_cancel(skb, ovs_header);
866 return err;
867}
868
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700869/* May not be called with RCU read lock. */
870static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800871 const struct sw_flow_id *sfid,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700872 struct genl_info *info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800873 bool always,
874 uint32_t ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700875{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700876 struct sk_buff *skb;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800877 size_t len;
Jesse Grossccb13522011-10-25 19:26:31 -0700878
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200879 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700880 return NULL;
881
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800882 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags);
Florian Westphal551ddc02016-02-18 15:03:25 +0100883 skb = genlmsg_new(len, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700884 if (!skb)
885 return ERR_PTR(-ENOMEM);
886
887 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700888}
889
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700890/* Called with ovs_mutex. */
891static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
892 int dp_ifindex,
893 struct genl_info *info, u8 cmd,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800894 bool always, u32 ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700895{
896 struct sk_buff *skb;
897 int retval;
898
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800899 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts),
900 &flow->id, info, always, ufid_flags);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530901 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700902 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700903
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700904 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
905 info->snd_portid, info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800906 cmd, ufid_flags);
Paolo Abeni8ffeb03f2019-12-01 18:41:24 +0100907 if (WARN_ON_ONCE(retval < 0)) {
908 kfree_skb(skb);
909 skb = ERR_PTR(retval);
910 }
Jesse Grossccb13522011-10-25 19:26:31 -0700911 return skb;
912}
913
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700914static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700915{
Joe Stringer7f8a4362015-08-26 11:31:48 -0700916 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700917 struct nlattr **a = info->attrs;
918 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800919 struct sw_flow *flow = NULL, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700920 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700921 struct sk_buff *reply;
922 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700923 struct sw_flow_actions *acts;
924 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800925 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700926 int error;
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800927 bool log = !a[OVS_FLOW_ATTR_PROBE];
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700928
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700929 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700930 error = -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700931 if (!a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800932 OVS_NLERR(log, "Flow key attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700933 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700934 }
935 if (!a[OVS_FLOW_ATTR_ACTIONS]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800936 OVS_NLERR(log, "Flow actions attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700937 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700938 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700939
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700940 /* Most of the time we need to allocate a new flow, do it before
941 * locking.
942 */
943 new_flow = ovs_flow_alloc();
944 if (IS_ERR(new_flow)) {
945 error = PTR_ERR(new_flow);
946 goto error;
947 }
948
949 /* Extract key. */
pravin shelar22799942016-09-19 13:51:00 -0700950 ovs_match_init(&match, &new_flow->key, false, &mask);
Joe Stringerc2ac6672015-08-26 11:31:52 -0700951 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800952 a[OVS_FLOW_ATTR_MASK], log);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700953 if (error)
954 goto err_kfree_flow;
955
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800956 /* Extract flow identifier. */
957 error = ovs_nla_get_identifier(&new_flow->id, a[OVS_FLOW_ATTR_UFID],
pravin shelar190aa3e72016-09-19 13:50:59 -0700958 &new_flow->key, log);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800959 if (error)
960 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700961
pravin shelar190aa3e72016-09-19 13:50:59 -0700962 /* unmasked key is needed to match when ufid is not used. */
963 if (ovs_identifier_is_key(&new_flow->id))
964 match.key = new_flow->id.unmasked_key;
965
966 ovs_flow_mask_key(&new_flow->key, &new_flow->key, true, &mask);
967
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700968 /* Validate actions. */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700969 error = ovs_nla_copy_actions(net, a[OVS_FLOW_ATTR_ACTIONS],
970 &new_flow->key, &acts, log);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700971 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800972 OVS_NLERR(log, "Flow actions may not be safe on all matching packets.");
Pravin B Shelar2fdb9572014-10-19 11:19:51 -0700973 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700974 }
975
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800976 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false,
977 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700978 if (IS_ERR(reply)) {
979 error = PTR_ERR(reply);
980 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700981 }
982
983 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700984 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700985 if (unlikely(!dp)) {
986 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700987 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700988 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800989
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700990 /* Check if this is a duplicate flow */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800991 if (ovs_identifier_is_ufid(&new_flow->id))
992 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &new_flow->id);
993 if (!flow)
pravin shelar190aa3e72016-09-19 13:50:59 -0700994 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->key);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700995 if (likely(!flow)) {
996 rcu_assign_pointer(new_flow->sf_acts, acts);
997
998 /* Put flow in bucket. */
999 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
1000 if (unlikely(error)) {
1001 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001002 goto err_unlock_ovs;
1003 }
1004
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001005 if (unlikely(reply)) {
1006 error = ovs_flow_cmd_fill_info(new_flow,
1007 ovs_header->dp_ifindex,
1008 reply, info->snd_portid,
1009 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001010 OVS_FLOW_CMD_NEW,
1011 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001012 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001013 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001014 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001015 } else {
1016 struct sw_flow_actions *old_acts;
1017
1018 /* Bail out if we're not allowed to modify an existing flow.
1019 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1020 * because Generic Netlink treats the latter as a dump
1021 * request. We also accept NLM_F_EXCL in case that bug ever
1022 * gets fixed.
1023 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001024 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
1025 | NLM_F_EXCL))) {
1026 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001027 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001028 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001029 /* The flow identifier has to be the same for flow updates.
1030 * Look for any overlapping flow.
1031 */
1032 if (unlikely(!ovs_flow_cmp(flow, &match))) {
1033 if (ovs_identifier_is_key(&flow->id))
1034 flow = ovs_flow_tbl_lookup_exact(&dp->table,
1035 &match);
1036 else /* UFID matches but key is different */
1037 flow = NULL;
Alex Wang4a46b242014-06-30 20:30:29 -07001038 if (!flow) {
1039 error = -ENOENT;
1040 goto err_unlock_ovs;
1041 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001042 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001043 /* Update actions. */
1044 old_acts = ovsl_dereference(flow->sf_acts);
1045 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001046
1047 if (unlikely(reply)) {
1048 error = ovs_flow_cmd_fill_info(flow,
1049 ovs_header->dp_ifindex,
1050 reply, info->snd_portid,
1051 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001052 OVS_FLOW_CMD_NEW,
1053 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001054 BUG_ON(error < 0);
1055 }
1056 ovs_unlock();
1057
Thomas Graf34ae9322015-07-21 10:44:03 +02001058 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001059 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001060 }
1061
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001062 if (reply)
1063 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001064 return 0;
1065
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001066err_unlock_ovs:
1067 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001068 kfree_skb(reply);
1069err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001070 ovs_nla_free_flow_actions(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001071err_kfree_flow:
1072 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001073error:
1074 return error;
1075}
1076
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001077/* Factor out action copy to avoid "Wframe-larger-than=1024" warning. */
Arnd Bergmann26063792019-07-22 17:00:01 +02001078static noinline_for_stack struct sw_flow_actions *get_flow_actions(struct net *net,
Joe Stringer7f8a4362015-08-26 11:31:48 -07001079 const struct nlattr *a,
Jesse Gross6b205b22014-10-03 15:35:32 -07001080 const struct sw_flow_key *key,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001081 const struct sw_flow_mask *mask,
1082 bool log)
Jesse Gross6b205b22014-10-03 15:35:32 -07001083{
1084 struct sw_flow_actions *acts;
1085 struct sw_flow_key masked_key;
1086 int error;
1087
Jesse Grossae5f2fb2015-09-21 20:21:20 -07001088 ovs_flow_mask_key(&masked_key, key, true, mask);
Joe Stringer7f8a4362015-08-26 11:31:48 -07001089 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001090 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001091 OVS_NLERR(log,
1092 "Actions may not be safe on all matching packets");
Jesse Gross6b205b22014-10-03 15:35:32 -07001093 return ERR_PTR(error);
1094 }
1095
1096 return acts;
1097}
1098
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001099/* Factor out match-init and action-copy to avoid
1100 * "Wframe-larger-than=1024" warning. Because mask is only
1101 * used to get actions, we new a function to save some
1102 * stack space.
1103 *
1104 * If there are not key and action attrs, we return 0
1105 * directly. In the case, the caller will also not use the
1106 * match as before. If there is action attr, we try to get
1107 * actions and save them to *acts. Before returning from
1108 * the function, we reset the match->mask pointer. Because
1109 * we should not to return match object with dangling reference
1110 * to mask.
1111 * */
Arnd Bergmann26063792019-07-22 17:00:01 +02001112static noinline_for_stack int
1113ovs_nla_init_match_and_action(struct net *net,
1114 struct sw_flow_match *match,
1115 struct sw_flow_key *key,
1116 struct nlattr **a,
1117 struct sw_flow_actions **acts,
1118 bool log)
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001119{
1120 struct sw_flow_mask mask;
1121 int error = 0;
1122
1123 if (a[OVS_FLOW_ATTR_KEY]) {
1124 ovs_match_init(match, key, true, &mask);
1125 error = ovs_nla_get_match(net, match, a[OVS_FLOW_ATTR_KEY],
1126 a[OVS_FLOW_ATTR_MASK], log);
1127 if (error)
1128 goto error;
1129 }
1130
1131 if (a[OVS_FLOW_ATTR_ACTIONS]) {
1132 if (!a[OVS_FLOW_ATTR_KEY]) {
1133 OVS_NLERR(log,
1134 "Flow key attribute not present in set flow.");
Christophe JAILLET5829e622017-09-11 21:56:20 +02001135 error = -EINVAL;
1136 goto error;
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001137 }
1138
1139 *acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], key,
1140 &mask, log);
1141 if (IS_ERR(*acts)) {
1142 error = PTR_ERR(*acts);
1143 goto error;
1144 }
1145 }
1146
1147 /* On success, error is 0. */
1148error:
1149 match->mask = NULL;
1150 return error;
1151}
1152
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001153static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
1154{
Joe Stringer7f8a4362015-08-26 11:31:48 -07001155 struct net *net = sock_net(skb->sk);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001156 struct nlattr **a = info->attrs;
1157 struct ovs_header *ovs_header = info->userhdr;
Jesse Gross6b205b22014-10-03 15:35:32 -07001158 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001159 struct sw_flow *flow;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001160 struct sk_buff *reply = NULL;
1161 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001162 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001163 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001164 struct sw_flow_id sfid;
1165 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001166 int error = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001167 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001168 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001169
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001170 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log);
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001171 if (!a[OVS_FLOW_ATTR_KEY] && !ufid_present) {
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001172 OVS_NLERR(log,
1173 "Flow set message rejected, Key attribute missing.");
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001174 return -EINVAL;
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001175 }
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001176
1177 error = ovs_nla_init_match_and_action(net, &match, &key, a,
1178 &acts, log);
Jesse Grossccb13522011-10-25 19:26:31 -07001179 if (error)
1180 goto error;
1181
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001182 if (acts) {
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001183 /* Can allocate before locking if have acts. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001184 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false,
1185 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001186 if (IS_ERR(reply)) {
1187 error = PTR_ERR(reply);
1188 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -07001189 }
Jesse Grossccb13522011-10-25 19:26:31 -07001190 }
1191
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001192 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -07001193 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001194 if (unlikely(!dp)) {
1195 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001196 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001197 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001198 /* Check that the flow exists. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001199 if (ufid_present)
1200 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &sfid);
1201 else
1202 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001203 if (unlikely(!flow)) {
1204 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001205 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001206 }
Alex Wang4a46b242014-06-30 20:30:29 -07001207
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001208 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001209 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001210 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001211 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001212
1213 if (unlikely(reply)) {
1214 error = ovs_flow_cmd_fill_info(flow,
1215 ovs_header->dp_ifindex,
1216 reply, info->snd_portid,
1217 info->snd_seq, 0,
Yifeng Sun804fe102018-09-26 11:40:14 -07001218 OVS_FLOW_CMD_SET,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001219 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001220 BUG_ON(error < 0);
1221 }
1222 } else {
1223 /* Could not alloc without acts before locking. */
1224 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
Yifeng Sun804fe102018-09-26 11:40:14 -07001225 info, OVS_FLOW_CMD_SET, false,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001226 ufid_flags);
1227
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301228 if (IS_ERR(reply)) {
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001229 error = PTR_ERR(reply);
1230 goto err_unlock_ovs;
1231 }
Jesse Grossccb13522011-10-25 19:26:31 -07001232 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001233
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001234 /* Clear stats. */
1235 if (a[OVS_FLOW_ATTR_CLEAR])
1236 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001237 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001238
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001239 if (reply)
1240 ovs_notify(&dp_flow_genl_family, reply, info);
1241 if (old_acts)
Thomas Graf34ae9322015-07-21 10:44:03 +02001242 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001243
Jesse Grossccb13522011-10-25 19:26:31 -07001244 return 0;
1245
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001246err_unlock_ovs:
1247 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001248 kfree_skb(reply);
1249err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001250 ovs_nla_free_flow_actions(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001251error:
1252 return error;
1253}
1254
1255static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1256{
1257 struct nlattr **a = info->attrs;
1258 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001259 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001260 struct sw_flow_key key;
1261 struct sk_buff *reply;
1262 struct sw_flow *flow;
1263 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001264 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001265 struct sw_flow_id ufid;
1266 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
1267 int err = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001268 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001269 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001270
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001271 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1272 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001273 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001274 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY], NULL,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001275 log);
1276 } else if (!ufid_present) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001277 OVS_NLERR(log,
1278 "Flow get message rejected, Key attribute missing.");
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001279 err = -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001280 }
Jesse Grossccb13522011-10-25 19:26:31 -07001281 if (err)
1282 return err;
1283
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001284 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001285 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001286 if (!dp) {
1287 err = -ENODEV;
1288 goto unlock;
1289 }
Jesse Grossccb13522011-10-25 19:26:31 -07001290
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001291 if (ufid_present)
1292 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1293 else
1294 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001295 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001296 err = -ENOENT;
1297 goto unlock;
1298 }
Jesse Grossccb13522011-10-25 19:26:31 -07001299
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001300 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
Yifeng Sun804fe102018-09-26 11:40:14 -07001301 OVS_FLOW_CMD_GET, true, ufid_flags);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001302 if (IS_ERR(reply)) {
1303 err = PTR_ERR(reply);
1304 goto unlock;
1305 }
Jesse Grossccb13522011-10-25 19:26:31 -07001306
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001307 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001308 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001309unlock:
1310 ovs_unlock();
1311 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001312}
1313
1314static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1315{
1316 struct nlattr **a = info->attrs;
1317 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001318 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001319 struct sw_flow_key key;
1320 struct sk_buff *reply;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001321 struct sw_flow *flow = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001322 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001323 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001324 struct sw_flow_id ufid;
1325 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001326 int err;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001327 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001328 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001329
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001330 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1331 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001332 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001333 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1334 NULL, log);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001335 if (unlikely(err))
1336 return err;
1337 }
1338
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001339 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001340 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001341 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001342 err = -ENODEV;
1343 goto unlock;
1344 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001345
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001346 if (unlikely(!a[OVS_FLOW_ATTR_KEY] && !ufid_present)) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001347 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001348 goto unlock;
1349 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001350
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001351 if (ufid_present)
1352 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1353 else
1354 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001355 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001356 err = -ENOENT;
1357 goto unlock;
1358 }
Jesse Grossccb13522011-10-25 19:26:31 -07001359
Pravin B Shelarb637e492013-10-04 00:14:23 -07001360 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001361 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001362
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001363 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001364 &flow->id, info, false, ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001365 if (likely(reply)) {
Enrico Weigeltb90f5aa2019-06-05 23:06:40 +02001366 if (!IS_ERR(reply)) {
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001367 rcu_read_lock(); /*To keep RCU checker happy. */
1368 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1369 reply, info->snd_portid,
1370 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001371 OVS_FLOW_CMD_DEL,
1372 ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001373 rcu_read_unlock();
Paolo Abeni8a574f82019-12-01 18:41:25 +01001374 if (WARN_ON_ONCE(err < 0)) {
1375 kfree_skb(reply);
1376 goto out_free;
1377 }
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001378
1379 ovs_notify(&dp_flow_genl_family, reply, info);
1380 } else {
1381 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1382 }
1383 }
1384
Paolo Abeni8a574f82019-12-01 18:41:25 +01001385out_free:
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001386 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001387 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001388unlock:
1389 ovs_unlock();
1390 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001391}
1392
1393static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1394{
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001395 struct nlattr *a[__OVS_FLOW_ATTR_MAX];
Jesse Grossccb13522011-10-25 19:26:31 -07001396 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001397 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001398 struct datapath *dp;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001399 u32 ufid_flags;
1400 int err;
1401
Johannes Berg8cb08172019-04-26 14:07:28 +02001402 err = genlmsg_parse_deprecated(cb->nlh, &dp_flow_genl_family, a,
1403 OVS_FLOW_ATTR_MAX, flow_policy, NULL);
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001404 if (err)
1405 return err;
1406 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001407
Pravin B Shelard57170b2013-07-30 15:39:39 -07001408 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07001409 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001410 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001411 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001412 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001413 }
Jesse Grossccb13522011-10-25 19:26:31 -07001414
Pravin B Shelarb637e492013-10-04 00:14:23 -07001415 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001416 for (;;) {
1417 struct sw_flow *flow;
1418 u32 bucket, obj;
1419
1420 bucket = cb->args[0];
1421 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001422 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001423 if (!flow)
1424 break;
1425
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001426 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001427 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001428 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001429 OVS_FLOW_CMD_GET, ufid_flags) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001430 break;
1431
1432 cb->args[0] = bucket;
1433 cb->args[1] = obj;
1434 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001435 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001436 return skb->len;
1437}
1438
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001439static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1440 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001441 [OVS_FLOW_ATTR_MASK] = { .type = NLA_NESTED },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001442 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1443 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001444 [OVS_FLOW_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001445 [OVS_FLOW_ATTR_UFID] = { .type = NLA_UNSPEC, .len = 1 },
1446 [OVS_FLOW_ATTR_UFID_FLAGS] = { .type = NLA_U32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001447};
1448
stephen hemminger48e48a72014-07-16 11:25:52 -07001449static const struct genl_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001450 { .cmd = OVS_FLOW_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001451 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001452 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001453 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001454 },
1455 { .cmd = OVS_FLOW_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001456 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001457 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001458 .doit = ovs_flow_cmd_del
1459 },
1460 { .cmd = OVS_FLOW_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001461 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001462 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001463 .doit = ovs_flow_cmd_get,
1464 .dumpit = ovs_flow_cmd_dump
1465 },
1466 { .cmd = OVS_FLOW_CMD_SET,
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. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001469 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001470 },
1471};
1472
Johannes Berg56989f62016-10-24 14:40:05 +02001473static struct genl_family dp_flow_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001474 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001475 .name = OVS_FLOW_FAMILY,
1476 .version = OVS_FLOW_VERSION,
1477 .maxattr = OVS_FLOW_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001478 .policy = flow_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001479 .netnsok = true,
1480 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001481 .ops = dp_flow_genl_ops,
1482 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1483 .mcgrps = &ovs_dp_flow_multicast_group,
1484 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001485 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001486};
1487
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001488static size_t ovs_dp_cmd_msg_size(void)
1489{
1490 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1491
1492 msgsize += nla_total_size(IFNAMSIZ);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001493 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_stats));
1494 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001495 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001496
1497 return msgsize;
1498}
1499
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001500/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -07001501static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001502 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001503{
1504 struct ovs_header *ovs_header;
1505 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001506 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001507 int err;
1508
Eric W. Biederman15e47302012-09-07 20:12:54 +00001509 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001510 flags, cmd);
1511 if (!ovs_header)
1512 goto error;
1513
1514 ovs_header->dp_ifindex = get_dpifindex(dp);
1515
Jesse Grossccb13522011-10-25 19:26:31 -07001516 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001517 if (err)
1518 goto nla_put_failure;
1519
Andy Zhou1bd71162013-10-22 10:42:46 -07001520 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001521 if (nla_put_64bit(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1522 &dp_stats, OVS_DP_ATTR_PAD))
Andy Zhou1bd71162013-10-22 10:42:46 -07001523 goto nla_put_failure;
1524
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001525 if (nla_put_64bit(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1526 sizeof(struct ovs_dp_megaflow_stats),
1527 &dp_megaflow_stats, OVS_DP_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001528 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001529
Thomas Graf43d4be92013-12-13 15:22:18 +01001530 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1531 goto nla_put_failure;
1532
Johannes Berg053c0952015-01-16 22:09:00 +01001533 genlmsg_end(skb, ovs_header);
1534 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001535
1536nla_put_failure:
1537 genlmsg_cancel(skb, ovs_header);
1538error:
1539 return -EMSGSIZE;
1540}
1541
Florian Westphal263ea092016-02-18 15:03:26 +01001542static struct sk_buff *ovs_dp_cmd_alloc_info(void)
Jesse Grossccb13522011-10-25 19:26:31 -07001543{
Florian Westphal551ddc02016-02-18 15:03:25 +01001544 return genlmsg_new(ovs_dp_cmd_msg_size(), GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001545}
1546
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001547/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001548static struct datapath *lookup_datapath(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001549 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001550 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1551{
1552 struct datapath *dp;
1553
1554 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001555 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001556 else {
1557 struct vport *vport;
1558
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001559 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001560 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001561 }
1562 return dp ? dp : ERR_PTR(-ENODEV);
1563}
1564
Thomas Graf44da5ae2013-12-13 15:22:19 +01001565static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1566{
1567 struct datapath *dp;
1568
1569 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001570 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001571 return;
1572
1573 WARN(dp->user_features, "Dropping previously announced user features\n");
1574 dp->user_features = 0;
1575}
1576
Paul Blakey95a72332019-09-04 16:56:37 +03001577DEFINE_STATIC_KEY_FALSE(tc_recirc_sharing_support);
1578
1579static int ovs_dp_change(struct datapath *dp, struct nlattr *a[])
Thomas Graf43d4be92013-12-13 15:22:18 +01001580{
Paul Blakey95a72332019-09-04 16:56:37 +03001581 u32 user_features = 0;
1582
1583 if (a[OVS_DP_ATTR_USER_FEATURES]) {
1584 user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1585
1586 if (user_features & ~(OVS_DP_F_VPORT_PIDS |
1587 OVS_DP_F_UNALIGNED |
1588 OVS_DP_F_TC_RECIRC_SHARING))
1589 return -EOPNOTSUPP;
1590
1591#if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
1592 if (user_features & OVS_DP_F_TC_RECIRC_SHARING)
1593 return -EOPNOTSUPP;
1594#endif
1595 }
1596
1597 dp->user_features = user_features;
1598
1599 if (dp->user_features & OVS_DP_F_TC_RECIRC_SHARING)
1600 static_branch_enable(&tc_recirc_sharing_support);
1601 else
1602 static_branch_disable(&tc_recirc_sharing_support);
1603
1604 return 0;
Thomas Graf43d4be92013-12-13 15:22:18 +01001605}
1606
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001607static int ovs_dp_stats_init(struct datapath *dp)
1608{
1609 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
1610 if (!dp->stats_percpu)
1611 return -ENOMEM;
1612
1613 return 0;
1614}
1615
1616static int ovs_dp_vport_init(struct datapath *dp)
1617{
1618 int i;
1619
1620 dp->ports = kmalloc_array(DP_VPORT_HASH_BUCKETS,
1621 sizeof(struct hlist_head),
1622 GFP_KERNEL);
1623 if (!dp->ports)
1624 return -ENOMEM;
1625
1626 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1627 INIT_HLIST_HEAD(&dp->ports[i]);
1628
1629 return 0;
1630}
1631
Jesse Grossccb13522011-10-25 19:26:31 -07001632static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1633{
1634 struct nlattr **a = info->attrs;
1635 struct vport_parms parms;
1636 struct sk_buff *reply;
1637 struct datapath *dp;
1638 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001639 struct ovs_net *ovs_net;
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001640 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001641
1642 err = -EINVAL;
1643 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1644 goto err;
1645
Florian Westphal263ea092016-02-18 15:03:26 +01001646 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001647 if (!reply)
1648 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001649
1650 err = -ENOMEM;
1651 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1652 if (dp == NULL)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001653 goto err_destroy_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001654
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -05001655 ovs_dp_set_net(dp, sock_net(skb->sk));
Jesse Grossccb13522011-10-25 19:26:31 -07001656
1657 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001658 err = ovs_flow_tbl_init(&dp->table);
1659 if (err)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001660 goto err_destroy_dp;
Jesse Grossccb13522011-10-25 19:26:31 -07001661
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001662 err = ovs_dp_stats_init(dp);
1663 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001664 goto err_destroy_table;
Jesse Grossccb13522011-10-25 19:26:31 -07001665
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001666 err = ovs_dp_vport_init(dp);
1667 if (err)
1668 goto err_destroy_stats;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001669
Andy Zhou96fbc132017-11-10 12:09:42 -08001670 err = ovs_meters_init(dp);
1671 if (err)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001672 goto err_destroy_ports;
Andy Zhou96fbc132017-11-10 12:09:42 -08001673
Jesse Grossccb13522011-10-25 19:26:31 -07001674 /* Set up our datapath device. */
1675 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1676 parms.type = OVS_VPORT_TYPE_INTERNAL;
1677 parms.options = NULL;
1678 parms.dp = dp;
1679 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001680 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001681
Paul Blakey95a72332019-09-04 16:56:37 +03001682 err = ovs_dp_change(dp, a);
1683 if (err)
1684 goto err_destroy_meters;
Thomas Graf43d4be92013-12-13 15:22:18 +01001685
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001686 /* So far only local changes have been made, now need the lock. */
1687 ovs_lock();
1688
Jesse Grossccb13522011-10-25 19:26:31 -07001689 vport = new_vport(&parms);
1690 if (IS_ERR(vport)) {
1691 err = PTR_ERR(vport);
1692 if (err == -EBUSY)
1693 err = -EEXIST;
1694
Thomas Graf44da5ae2013-12-13 15:22:19 +01001695 if (err == -EEXIST) {
1696 /* An outdated user space instance that does not understand
1697 * the concept of user_features has attempted to create a new
1698 * datapath and is likely to reuse it. Drop all user features.
1699 */
1700 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1701 ovs_dp_reset_user_features(skb, info);
1702 }
1703
Tonghao Zhang4c76bf62019-11-01 22:23:53 +08001704 ovs_unlock();
Andy Zhou96fbc132017-11-10 12:09:42 -08001705 goto err_destroy_meters;
Jesse Grossccb13522011-10-25 19:26:31 -07001706 }
1707
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001708 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1709 info->snd_seq, 0, OVS_DP_CMD_NEW);
1710 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001711
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001712 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001713 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001714
1715 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001716
Johannes Berg2a94fe42013-11-19 15:19:39 +01001717 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001718 return 0;
1719
Andy Zhou96fbc132017-11-10 12:09:42 -08001720err_destroy_meters:
Andy Zhou96fbc132017-11-10 12:09:42 -08001721 ovs_meters_exit(dp);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001722err_destroy_ports:
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001723 kfree(dp->ports);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001724err_destroy_stats:
Jesse Grossccb13522011-10-25 19:26:31 -07001725 free_percpu(dp->stats_percpu);
1726err_destroy_table:
Pravin B Shelar9b996e52014-05-06 18:41:20 -07001727 ovs_flow_tbl_destroy(&dp->table);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001728err_destroy_dp:
Jesse Grossccb13522011-10-25 19:26:31 -07001729 kfree(dp);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001730err_destroy_reply:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001731 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001732err:
1733 return err;
1734}
1735
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001736/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001737static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001738{
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001739 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001740
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001741 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1742 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001743 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001744
Sasha Levinb67bfe02013-02-27 17:06:00 -08001745 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001746 if (vport->port_no != OVSP_LOCAL)
1747 ovs_dp_detach_port(vport);
1748 }
Jesse Grossccb13522011-10-25 19:26:31 -07001749
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001750 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001751
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001752 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001753 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001754 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001755 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001756
Andy Zhoue80857c2014-01-21 09:31:04 -08001757 /* RCU destroy the flow table */
Jesse Grossccb13522011-10-25 19:26:31 -07001758 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001759}
1760
1761static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1762{
1763 struct sk_buff *reply;
1764 struct datapath *dp;
1765 int err;
1766
Florian Westphal263ea092016-02-18 15:03:26 +01001767 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001768 if (!reply)
1769 return -ENOMEM;
1770
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001771 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001772 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1773 err = PTR_ERR(dp);
1774 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001775 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001776
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001777 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1778 info->snd_seq, 0, OVS_DP_CMD_DEL);
1779 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001780
1781 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001782 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001783
Johannes Berg2a94fe42013-11-19 15:19:39 +01001784 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001785
1786 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001787
1788err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001789 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001790 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001791 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001792}
1793
1794static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1795{
1796 struct sk_buff *reply;
1797 struct datapath *dp;
1798 int err;
1799
Florian Westphal263ea092016-02-18 15:03:26 +01001800 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001801 if (!reply)
1802 return -ENOMEM;
1803
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001804 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001805 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001806 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001807 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001808 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001809
Paul Blakey95a72332019-09-04 16:56:37 +03001810 err = ovs_dp_change(dp, info->attrs);
1811 if (err)
1812 goto err_unlock_free;
Thomas Graf43d4be92013-12-13 15:22:18 +01001813
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001814 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001815 info->snd_seq, 0, OVS_DP_CMD_SET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001816 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001817
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001818 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001819 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001820
1821 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001822
1823err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001824 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001825 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001826 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001827}
1828
1829static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1830{
1831 struct sk_buff *reply;
1832 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001833 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001834
Florian Westphal263ea092016-02-18 15:03:26 +01001835 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001836 if (!reply)
1837 return -ENOMEM;
1838
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001839 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001840 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001841 if (IS_ERR(dp)) {
1842 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001843 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001844 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001845 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001846 info->snd_seq, 0, OVS_DP_CMD_GET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001847 BUG_ON(err < 0);
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001848 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001849
Jesse Grossccb13522011-10-25 19:26:31 -07001850 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001851
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001852err_unlock_free:
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001853 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001854 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001855 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001856}
1857
1858static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1859{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001860 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001861 struct datapath *dp;
1862 int skip = cb->args[0];
1863 int i = 0;
1864
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001865 ovs_lock();
1866 list_for_each_entry(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001867 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001868 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001869 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001870 OVS_DP_CMD_GET) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001871 break;
1872 i++;
1873 }
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001874 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001875
1876 cb->args[0] = i;
1877
1878 return skb->len;
1879}
1880
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001881static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1882 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1883 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1884 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1885};
1886
stephen hemminger48e48a72014-07-16 11:25:52 -07001887static const struct genl_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001888 { .cmd = OVS_DP_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001889 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001890 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001891 .doit = ovs_dp_cmd_new
1892 },
1893 { .cmd = OVS_DP_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001894 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001895 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001896 .doit = ovs_dp_cmd_del
1897 },
1898 { .cmd = OVS_DP_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001899 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001900 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001901 .doit = ovs_dp_cmd_get,
1902 .dumpit = ovs_dp_cmd_dump
1903 },
1904 { .cmd = OVS_DP_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001905 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001906 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001907 .doit = ovs_dp_cmd_set,
1908 },
1909};
1910
Johannes Berg56989f62016-10-24 14:40:05 +02001911static struct genl_family dp_datapath_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001912 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001913 .name = OVS_DATAPATH_FAMILY,
1914 .version = OVS_DATAPATH_VERSION,
1915 .maxattr = OVS_DP_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001916 .policy = datapath_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001917 .netnsok = true,
1918 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001919 .ops = dp_datapath_genl_ops,
1920 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1921 .mcgrps = &ovs_dp_datapath_multicast_group,
1922 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001923 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001924};
1925
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001926/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001927static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Jiri Benc9354d452017-11-02 17:04:37 -02001928 struct net *net, u32 portid, u32 seq,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001929 u32 flags, u8 cmd, gfp_t gfp)
Jesse Grossccb13522011-10-25 19:26:31 -07001930{
1931 struct ovs_header *ovs_header;
1932 struct ovs_vport_stats vport_stats;
1933 int err;
1934
Eric W. Biederman15e47302012-09-07 20:12:54 +00001935 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001936 flags, cmd);
1937 if (!ovs_header)
1938 return -EMSGSIZE;
1939
1940 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1941
David S. Miller028d6a62012-03-29 23:20:48 -04001942 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1943 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001944 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
Jiri Benc9354d452017-11-02 17:04:37 -02001945 ovs_vport_name(vport)) ||
1946 nla_put_u32(skb, OVS_VPORT_ATTR_IFINDEX, vport->dev->ifindex))
David S. Miller028d6a62012-03-29 23:20:48 -04001947 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001948
Jiri Benc9354d452017-11-02 17:04:37 -02001949 if (!net_eq(net, dev_net(vport->dev))) {
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001950 int id = peernet2id_alloc(net, dev_net(vport->dev), gfp);
Jiri Benc9354d452017-11-02 17:04:37 -02001951
1952 if (nla_put_s32(skb, OVS_VPORT_ATTR_NETNSID, id))
1953 goto nla_put_failure;
1954 }
1955
Jesse Grossccb13522011-10-25 19:26:31 -07001956 ovs_vport_get_stats(vport, &vport_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001957 if (nla_put_64bit(skb, OVS_VPORT_ATTR_STATS,
1958 sizeof(struct ovs_vport_stats), &vport_stats,
1959 OVS_VPORT_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001960 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001961
Alex Wang5cd667b2014-07-17 15:14:13 -07001962 if (ovs_vport_get_upcall_portids(vport, skb))
1963 goto nla_put_failure;
1964
Jesse Grossccb13522011-10-25 19:26:31 -07001965 err = ovs_vport_get_options(vport, skb);
1966 if (err == -EMSGSIZE)
1967 goto error;
1968
Johannes Berg053c0952015-01-16 22:09:00 +01001969 genlmsg_end(skb, ovs_header);
1970 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001971
1972nla_put_failure:
1973 err = -EMSGSIZE;
1974error:
1975 genlmsg_cancel(skb, ovs_header);
1976 return err;
1977}
1978
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001979static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1980{
1981 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1982}
1983
1984/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Jiri Benc9354d452017-11-02 17:04:37 -02001985struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, struct net *net,
1986 u32 portid, u32 seq, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001987{
1988 struct sk_buff *skb;
1989 int retval;
1990
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001991 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001992 if (!skb)
1993 return ERR_PTR(-ENOMEM);
1994
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001995 retval = ovs_vport_cmd_fill_info(vport, skb, net, portid, seq, 0, cmd,
1996 GFP_KERNEL);
Jesse Grossa9341512013-03-26 15:48:38 -07001997 BUG_ON(retval < 0);
1998
Jesse Grossccb13522011-10-25 19:26:31 -07001999 return skb;
2000}
2001
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002002/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002003static struct vport *lookup_vport(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08002004 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07002005 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
2006{
2007 struct datapath *dp;
2008 struct vport *vport;
2009
Jiri Benc9354d452017-11-02 17:04:37 -02002010 if (a[OVS_VPORT_ATTR_IFINDEX])
2011 return ERR_PTR(-EOPNOTSUPP);
Jesse Grossccb13522011-10-25 19:26:31 -07002012 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002013 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07002014 if (!vport)
2015 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08002016 if (ovs_header->dp_ifindex &&
2017 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
2018 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07002019 return vport;
2020 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
2021 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
2022
2023 if (port_no >= DP_MAX_PORTS)
2024 return ERR_PTR(-EFBIG);
2025
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002026 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002027 if (!dp)
2028 return ERR_PTR(-ENODEV);
2029
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002030 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002031 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08002032 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07002033 return vport;
2034 } else
2035 return ERR_PTR(-EINVAL);
Jiri Benc9354d452017-11-02 17:04:37 -02002036
Jesse Grossccb13522011-10-25 19:26:31 -07002037}
2038
Taehee Yoo6b660c42019-07-06 01:08:09 +09002039static unsigned int ovs_get_max_headroom(struct datapath *dp)
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002040{
Taehee Yoo6b660c42019-07-06 01:08:09 +09002041 unsigned int dev_headroom, max_headroom = 0;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002042 struct net_device *dev;
2043 struct vport *vport;
2044 int i;
2045
2046 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +05302047 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node,
2048 lockdep_ovsl_is_held()) {
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002049 dev = vport->dev;
2050 dev_headroom = netdev_get_fwd_headroom(dev);
2051 if (dev_headroom > max_headroom)
2052 max_headroom = dev_headroom;
2053 }
2054 }
2055
Taehee Yoo6b660c42019-07-06 01:08:09 +09002056 return max_headroom;
2057}
2058
2059/* Called with ovs_mutex */
2060static void ovs_update_headroom(struct datapath *dp, unsigned int new_headroom)
2061{
2062 struct vport *vport;
2063 int i;
2064
2065 dp->max_headroom = new_headroom;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002066 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
Madhuparna Bhowmik53742e62020-02-19 01:28:02 +05302067 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node,
2068 lockdep_ovsl_is_held())
Taehee Yoo6b660c42019-07-06 01:08:09 +09002069 netdev_set_rx_headroom(vport->dev, new_headroom);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002070}
2071
Jesse Grossccb13522011-10-25 19:26:31 -07002072static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
2073{
2074 struct nlattr **a = info->attrs;
2075 struct ovs_header *ovs_header = info->userhdr;
2076 struct vport_parms parms;
2077 struct sk_buff *reply;
2078 struct vport *vport;
2079 struct datapath *dp;
Taehee Yoo6b660c42019-07-06 01:08:09 +09002080 unsigned int new_headroom;
Jesse Grossccb13522011-10-25 19:26:31 -07002081 u32 port_no;
2082 int err;
2083
Jesse Grossccb13522011-10-25 19:26:31 -07002084 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
2085 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002086 return -EINVAL;
Jiri Benc9354d452017-11-02 17:04:37 -02002087 if (a[OVS_VPORT_ATTR_IFINDEX])
2088 return -EOPNOTSUPP;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002089
2090 port_no = a[OVS_VPORT_ATTR_PORT_NO]
2091 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
2092 if (port_no >= DP_MAX_PORTS)
2093 return -EFBIG;
2094
2095 reply = ovs_vport_cmd_alloc_info();
2096 if (!reply)
2097 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07002098
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002099 ovs_lock();
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002100restart:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002101 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002102 err = -ENODEV;
2103 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002104 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002105
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002106 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002107 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002108 err = -EBUSY;
2109 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002110 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002111 } else {
2112 for (port_no = 1; ; port_no++) {
2113 if (port_no >= DP_MAX_PORTS) {
2114 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002115 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002116 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002117 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002118 if (!vport)
2119 break;
2120 }
2121 }
2122
2123 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
2124 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
2125 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
2126 parms.dp = dp;
2127 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07002128 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07002129
2130 vport = new_vport(&parms);
2131 err = PTR_ERR(vport);
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002132 if (IS_ERR(vport)) {
2133 if (err == -EAGAIN)
2134 goto restart;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002135 goto exit_unlock_free;
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002136 }
Jesse Grossccb13522011-10-25 19:26:31 -07002137
Jiri Benc9354d452017-11-02 17:04:37 -02002138 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2139 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002140 OVS_VPORT_CMD_NEW, GFP_KERNEL);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002141
Taehee Yoo6b660c42019-07-06 01:08:09 +09002142 new_headroom = netdev_get_fwd_headroom(vport->dev);
2143
2144 if (new_headroom > dp->max_headroom)
2145 ovs_update_headroom(dp, new_headroom);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002146 else
2147 netdev_set_rx_headroom(vport->dev, dp->max_headroom);
2148
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002149 BUG_ON(err < 0);
2150 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01002151
Johannes Berg2a94fe42013-11-19 15:19:39 +01002152 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002153 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002154
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002155exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002156 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002157 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002158 return err;
2159}
2160
2161static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
2162{
2163 struct nlattr **a = info->attrs;
2164 struct sk_buff *reply;
2165 struct vport *vport;
2166 int err;
2167
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002168 reply = ovs_vport_cmd_alloc_info();
2169 if (!reply)
2170 return -ENOMEM;
2171
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002172 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002173 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002174 err = PTR_ERR(vport);
2175 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002176 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002177
Jesse Grossccb13522011-10-25 19:26:31 -07002178 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07002179 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07002180 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002181 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07002182 }
2183
Jesse Grossf44f3402013-05-13 08:15:26 -07002184 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07002185 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07002186 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002187 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07002188 }
Jesse Grossa9341512013-03-26 15:48:38 -07002189
Alex Wang5cd667b2014-07-17 15:14:13 -07002190
2191 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
2192 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
2193
2194 err = ovs_vport_set_upcall_portids(vport, ids);
2195 if (err)
2196 goto exit_unlock_free;
2197 }
Jesse Grossccb13522011-10-25 19:26:31 -07002198
Jiri Benc9354d452017-11-02 17:04:37 -02002199 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2200 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002201 OVS_VPORT_CMD_SET, GFP_KERNEL);
Jesse Grossa9341512013-03-26 15:48:38 -07002202 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002203
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002204 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01002205 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002206 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002207
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002208exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002209 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002210 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002211 return err;
2212}
2213
2214static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2215{
Taehee Yoo6b660c42019-07-06 01:08:09 +09002216 bool update_headroom = false;
Jesse Grossccb13522011-10-25 19:26:31 -07002217 struct nlattr **a = info->attrs;
2218 struct sk_buff *reply;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002219 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07002220 struct vport *vport;
Taehee Yoo6b660c42019-07-06 01:08:09 +09002221 unsigned int new_headroom;
Jesse Grossccb13522011-10-25 19:26:31 -07002222 int err;
2223
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002224 reply = ovs_vport_cmd_alloc_info();
2225 if (!reply)
2226 return -ENOMEM;
2227
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002228 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002229 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002230 err = PTR_ERR(vport);
2231 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002232 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002233
2234 if (vport->port_no == OVSP_LOCAL) {
2235 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002236 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002237 }
2238
Jiri Benc9354d452017-11-02 17:04:37 -02002239 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2240 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002241 OVS_VPORT_CMD_DEL, GFP_KERNEL);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002242 BUG_ON(err < 0);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002243
2244 /* the vport deletion may trigger dp headroom update */
2245 dp = vport->dp;
2246 if (netdev_get_fwd_headroom(vport->dev) == dp->max_headroom)
Taehee Yoo6b660c42019-07-06 01:08:09 +09002247 update_headroom = true;
2248
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002249 netdev_reset_rx_headroom(vport->dev);
Jesse Grossccb13522011-10-25 19:26:31 -07002250 ovs_dp_detach_port(vport);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002251
Taehee Yoo6b660c42019-07-06 01:08:09 +09002252 if (update_headroom) {
2253 new_headroom = ovs_get_max_headroom(dp);
2254
2255 if (new_headroom < dp->max_headroom)
2256 ovs_update_headroom(dp, new_headroom);
2257 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002258 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07002259
Johannes Berg2a94fe42013-11-19 15:19:39 +01002260 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002261 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002262
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002263exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002264 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002265 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002266 return err;
2267}
2268
2269static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2270{
2271 struct nlattr **a = info->attrs;
2272 struct ovs_header *ovs_header = info->userhdr;
2273 struct sk_buff *reply;
2274 struct vport *vport;
2275 int err;
2276
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002277 reply = ovs_vport_cmd_alloc_info();
2278 if (!reply)
2279 return -ENOMEM;
2280
Jesse Grossccb13522011-10-25 19:26:31 -07002281 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002282 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002283 err = PTR_ERR(vport);
2284 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002285 goto exit_unlock_free;
Jiri Benc9354d452017-11-02 17:04:37 -02002286 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2287 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002288 OVS_VPORT_CMD_GET, GFP_ATOMIC);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002289 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002290 rcu_read_unlock();
2291
2292 return genlmsg_reply(reply, info);
2293
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002294exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07002295 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002296 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002297 return err;
2298}
2299
2300static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2301{
2302 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2303 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002304 int bucket = cb->args[0], skip = cb->args[1];
2305 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002306
Jesse Grossccb13522011-10-25 19:26:31 -07002307 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07002308 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08002309 if (!dp) {
2310 rcu_read_unlock();
2311 return -ENODEV;
2312 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002313 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002314 struct vport *vport;
2315
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002316 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002317 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002318 if (j >= skip &&
2319 ovs_vport_cmd_fill_info(vport, skb,
Jiri Benc9354d452017-11-02 17:04:37 -02002320 sock_net(skb->sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002321 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002322 cb->nlh->nlmsg_seq,
2323 NLM_F_MULTI,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002324 OVS_VPORT_CMD_GET,
2325 GFP_ATOMIC) < 0)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002326 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07002327
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002328 j++;
2329 }
2330 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002331 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002332out:
Jesse Grossccb13522011-10-25 19:26:31 -07002333 rcu_read_unlock();
2334
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002335 cb->args[0] = i;
2336 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07002337
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002338 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07002339}
2340
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002341static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
2342 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
2343 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
2344 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
2345 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
Li RongQingea8564c2019-09-24 19:11:52 +08002346 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_UNSPEC },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002347 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
Jiri Benc9354d452017-11-02 17:04:37 -02002348 [OVS_VPORT_ATTR_IFINDEX] = { .type = NLA_U32 },
2349 [OVS_VPORT_ATTR_NETNSID] = { .type = NLA_S32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002350};
2351
stephen hemminger48e48a72014-07-16 11:25:52 -07002352static const struct genl_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07002353 { .cmd = OVS_VPORT_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02002354 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002355 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002356 .doit = ovs_vport_cmd_new
2357 },
2358 { .cmd = OVS_VPORT_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02002359 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002360 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002361 .doit = ovs_vport_cmd_del
2362 },
2363 { .cmd = OVS_VPORT_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002364 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07002365 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07002366 .doit = ovs_vport_cmd_get,
2367 .dumpit = ovs_vport_cmd_dump
2368 },
2369 { .cmd = OVS_VPORT_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002370 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002371 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002372 .doit = ovs_vport_cmd_set,
2373 },
2374};
2375
Johannes Berg56989f62016-10-24 14:40:05 +02002376struct genl_family dp_vport_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002377 .hdrsize = sizeof(struct ovs_header),
2378 .name = OVS_VPORT_FAMILY,
2379 .version = OVS_VPORT_VERSION,
2380 .maxattr = OVS_VPORT_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01002381 .policy = vport_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002382 .netnsok = true,
2383 .parallel_ops = true,
2384 .ops = dp_vport_genl_ops,
2385 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
2386 .mcgrps = &ovs_dp_vport_multicast_group,
2387 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02002388 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07002389};
2390
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002391static struct genl_family * const dp_genl_families[] = {
2392 &dp_datapath_genl_family,
2393 &dp_vport_genl_family,
2394 &dp_flow_genl_family,
2395 &dp_packet_genl_family,
Andy Zhou96fbc132017-11-10 12:09:42 -08002396 &dp_meter_genl_family,
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002397#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
2398 &dp_ct_limit_genl_family,
2399#endif
Jesse Grossccb13522011-10-25 19:26:31 -07002400};
2401
2402static void dp_unregister_genl(int n_families)
2403{
2404 int i;
2405
2406 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002407 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002408}
2409
Johannes Berg56989f62016-10-24 14:40:05 +02002410static int __init dp_register_genl(void)
Jesse Grossccb13522011-10-25 19:26:31 -07002411{
Jesse Grossccb13522011-10-25 19:26:31 -07002412 int err;
2413 int i;
2414
Jesse Grossccb13522011-10-25 19:26:31 -07002415 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002416
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002417 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002418 if (err)
2419 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002420 }
2421
2422 return 0;
2423
2424error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002425 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002426 return err;
2427}
2428
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002429static int __net_init ovs_init_net(struct net *net)
2430{
2431 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2432
2433 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002434 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002435 return ovs_ct_init(net);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002436}
2437
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002438static void __net_exit list_vports_from_net(struct net *net, struct net *dnet,
2439 struct list_head *head)
2440{
2441 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2442 struct datapath *dp;
2443
2444 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2445 int i;
2446
2447 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2448 struct vport *vport;
2449
2450 hlist_for_each_entry(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002451 if (vport->ops->type != OVS_VPORT_TYPE_INTERNAL)
2452 continue;
2453
Thomas Grafbe4ace62015-07-21 10:44:04 +02002454 if (dev_net(vport->dev) == dnet)
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002455 list_add(&vport->detach_list, head);
2456 }
2457 }
2458 }
2459}
2460
2461static void __net_exit ovs_exit_net(struct net *dnet)
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002462{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002463 struct datapath *dp, *dp_next;
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002464 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id);
2465 struct vport *vport, *vport_next;
2466 struct net *net;
2467 LIST_HEAD(head);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002468
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002469 ovs_lock();
Tonghao Zhang27de77c2020-04-17 02:57:31 +08002470
2471 ovs_ct_exit(dnet);
2472
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002473 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2474 __dp_destroy(dp);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002475
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002476 down_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002477 for_each_net(net)
2478 list_vports_from_net(net, dnet, &head);
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002479 up_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002480
2481 /* Detach all vports from given namespace. */
2482 list_for_each_entry_safe(vport, vport_next, &head, detach_list) {
2483 list_del(&vport->detach_list);
2484 ovs_dp_detach_port(vport);
2485 }
2486
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002487 ovs_unlock();
2488
2489 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002490}
2491
2492static struct pernet_operations ovs_net_ops = {
2493 .init = ovs_init_net,
2494 .exit = ovs_exit_net,
2495 .id = &ovs_net_id,
2496 .size = sizeof(struct ovs_net),
2497};
2498
Jesse Grossccb13522011-10-25 19:26:31 -07002499static int __init dp_init(void)
2500{
Jesse Grossccb13522011-10-25 19:26:31 -07002501 int err;
2502
Pankaj Bharadiyac5936422019-12-09 10:31:43 -08002503 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > sizeof_field(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002504
2505 pr_info("Open vSwitch switching datapath\n");
2506
Andy Zhou971427f32014-09-15 19:37:25 -07002507 err = action_fifos_init();
Jesse Grossccb13522011-10-25 19:26:31 -07002508 if (err)
2509 goto error;
2510
Andy Zhou971427f32014-09-15 19:37:25 -07002511 err = ovs_internal_dev_rtnl_link_register();
2512 if (err)
2513 goto error_action_fifos_exit;
2514
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002515 err = ovs_flow_init();
2516 if (err)
2517 goto error_unreg_rtnl_link;
2518
Jesse Grossccb13522011-10-25 19:26:31 -07002519 err = ovs_vport_init();
2520 if (err)
2521 goto error_flow_exit;
2522
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002523 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002524 if (err)
2525 goto error_vport_exit;
2526
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002527 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2528 if (err)
2529 goto error_netns_exit;
2530
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002531 err = ovs_netdev_init();
2532 if (err)
2533 goto error_unreg_notifier;
2534
Jesse Grossccb13522011-10-25 19:26:31 -07002535 err = dp_register_genl();
2536 if (err < 0)
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002537 goto error_unreg_netdev;
Jesse Grossccb13522011-10-25 19:26:31 -07002538
Jesse Grossccb13522011-10-25 19:26:31 -07002539 return 0;
2540
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002541error_unreg_netdev:
2542 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002543error_unreg_notifier:
2544 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002545error_netns_exit:
2546 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002547error_vport_exit:
2548 ovs_vport_exit();
2549error_flow_exit:
2550 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002551error_unreg_rtnl_link:
2552 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002553error_action_fifos_exit:
2554 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002555error:
2556 return err;
2557}
2558
2559static void dp_cleanup(void)
2560{
Jesse Grossccb13522011-10-25 19:26:31 -07002561 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002562 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002563 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002564 unregister_pernet_device(&ovs_net_ops);
2565 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002566 ovs_vport_exit();
2567 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002568 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002569 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002570}
2571
2572module_init(dp_init);
2573module_exit(dp_cleanup);
2574
2575MODULE_DESCRIPTION("Open vSwitch switching datapath");
2576MODULE_LICENSE("GPL");
Thadeu Lima de Souza Cascardoed227092016-09-09 17:42:30 -03002577MODULE_ALIAS_GENL_FAMILY(OVS_DATAPATH_FAMILY);
2578MODULE_ALIAS_GENL_FAMILY(OVS_VPORT_FAMILY);
2579MODULE_ALIAS_GENL_FAMILY(OVS_FLOW_FAMILY);
2580MODULE_ALIAS_GENL_FAMILY(OVS_PACKET_FAMILY);
Andy Zhou96fbc132017-11-10 12:09:42 -08002581MODULE_ALIAS_GENL_FAMILY(OVS_METER_FAMILY);
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002582MODULE_ALIAS_GENL_FAMILY(OVS_CT_LIMIT_FAMILY);