blob: 293d5289c4a106b537a2458e6b23ab8fccf29a70 [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);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800182 hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700183 if (vport->port_no == port_no)
184 return vport;
185 }
186 return NULL;
187}
188
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700189/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700190static struct vport *new_vport(const struct vport_parms *parms)
191{
192 struct vport *vport;
193
194 vport = ovs_vport_add(parms);
195 if (!IS_ERR(vport)) {
196 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700197 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700198
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700199 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700200 }
Jesse Grossccb13522011-10-25 19:26:31 -0700201 return vport;
202}
203
Jesse Grossccb13522011-10-25 19:26:31 -0700204void ovs_dp_detach_port(struct vport *p)
205{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700206 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700207
208 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700209 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700210
211 /* Then destroy it. */
212 ovs_vport_del(p);
213}
214
215/* Must be called with rcu_read_lock. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700216void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700217{
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700218 const struct vport *p = OVS_CB(skb)->input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700219 struct datapath *dp = p->dp;
220 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700221 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700222 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700223 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700224 u32 n_mask_hit;
Yifeng Sunaa733662019-08-04 19:56:11 -0700225 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700226
Shan Wei404f2f12012-11-13 09:52:25 +0800227 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700228
Jesse Grossccb13522011-10-25 19:26:31 -0700229 /* Look up flow. */
Tonghao Zhang04b7d132019-11-01 22:23:45 +0800230 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, skb_get_hash(skb),
231 &n_mask_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700232 if (unlikely(!flow)) {
233 struct dp_upcall_info upcall;
234
Neil McKeeccea7442015-05-26 20:59:43 -0700235 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700236 upcall.cmd = OVS_PACKET_CMD_MISS;
Alex Wang5cd667b2014-07-17 15:14:13 -0700237 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700238 upcall.mru = OVS_CB(skb)->mru;
William Tuf2a4d082016-06-10 11:49:33 -0700239 error = ovs_dp_upcall(dp, skb, key, &upcall, 0);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800240 if (unlikely(error))
241 kfree_skb(skb);
242 else
243 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700244 stats_counter = &stats->n_missed;
245 goto out;
246 }
247
Lorand Jakabd98612b2014-10-06 05:45:32 -0700248 ovs_flow_stats_update(flow, key->tp.flags, skb);
249 sf_acts = rcu_dereference(flow->sf_acts);
Yifeng Sunaa733662019-08-04 19:56:11 -0700250 error = ovs_execute_actions(dp, skb, sf_acts, key);
251 if (unlikely(error))
252 net_dbg_ratelimited("ovs: action execution error on datapath %s: %d\n",
253 ovs_dp_name(dp), error);
Jesse Grossccb13522011-10-25 19:26:31 -0700254
Pravin B Shelare298e502013-10-29 17:22:21 -0700255 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700256
257out:
258 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800259 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700260 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700261 stats->n_mask_hit += n_mask_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800262 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700263}
264
Jesse Grossccb13522011-10-25 19:26:31 -0700265int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800266 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700267 const struct dp_upcall_info *upcall_info,
268 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700269{
270 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700271 int err;
272
Eric W. Biederman15e47302012-09-07 20:12:54 +0000273 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700274 err = -ENOTCONN;
275 goto err;
276 }
277
Jesse Grossccb13522011-10-25 19:26:31 -0700278 if (!skb_is_gso(skb))
William Tuf2a4d082016-06-10 11:49:33 -0700279 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700280 else
William Tuf2a4d082016-06-10 11:49:33 -0700281 err = queue_gso_packets(dp, skb, key, upcall_info, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700282 if (err)
283 goto err;
284
285 return 0;
286
287err:
Shan Wei404f2f12012-11-13 09:52:25 +0800288 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700289
WANG Congdf9d9fd2014-02-14 15:10:46 -0800290 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700291 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800292 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700293
294 return err;
295}
296
Thomas Graf8055a892013-12-13 15:22:20 +0100297static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800298 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700299 const struct dp_upcall_info *upcall_info,
300 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700301{
Gustavo A. R. Silva27341662017-11-25 13:14:40 -0600302 unsigned int gso_type = skb_shinfo(skb)->gso_type;
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500303 struct sw_flow_key later_key;
Jesse Grossccb13522011-10-25 19:26:31 -0700304 struct sk_buff *segs, *nskb;
305 int err;
306
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +0300307 BUILD_BUG_ON(sizeof(*OVS_CB(skb)) > SKB_SGO_CB_OFFSET);
Thomas Graf09c5e602013-12-13 15:22:22 +0100308 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700309 if (IS_ERR(segs))
310 return PTR_ERR(segs);
Florian Westphal330966e2014-10-20 13:49:17 +0200311 if (segs == NULL)
312 return -EINVAL;
Jesse Grossccb13522011-10-25 19:26:31 -0700313
Willem de Bruijn0c19f8462017-11-21 10:22:25 -0500314 if (gso_type & SKB_GSO_UDP) {
315 /* The initial flow key extracted by ovs_flow_key_extract()
316 * in this case is for a first fragment, so we need to
317 * properly mark later fragments.
318 */
319 later_key = *key;
320 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
321 }
322
Jesse Grossccb13522011-10-25 19:26:31 -0700323 /* Queue all of the segments. */
324 skb = segs;
325 do {
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
Jesse Grossccb13522011-10-25 19:26:31 -0700333 } while ((skb = skb->next));
334
335 /* Free all of the segments. */
336 skb = segs;
337 do {
338 nskb = skb->next;
339 if (err)
340 kfree_skb(skb);
341 else
342 consume_skb(skb);
343 } while ((skb = nskb));
344 return err;
345}
346
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800347static size_t upcall_msg_size(const struct dp_upcall_info *upcall_info,
Liping Zhang494bea32017-08-16 13:30:07 +0800348 unsigned int hdrlen, int actions_attrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100349{
350 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100351 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
William Tub95e5922016-06-20 07:26:17 -0700352 + nla_total_size(ovs_key_attr_size()) /* OVS_PACKET_ATTR_KEY */
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800353 + nla_total_size(sizeof(unsigned int)) /* OVS_PACKET_ATTR_LEN */
354 + nla_total_size(sizeof(u64)); /* OVS_PACKET_ATTR_HASH */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100355
356 /* OVS_PACKET_ATTR_USERDATA */
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800357 if (upcall_info->userdata)
358 size += NLA_ALIGN(upcall_info->userdata->nla_len);
359
360 /* OVS_PACKET_ATTR_EGRESS_TUN_KEY */
361 if (upcall_info->egress_tun_info)
362 size += nla_total_size(ovs_tun_key_attr_size());
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100363
Neil McKeeccea7442015-05-26 20:59:43 -0700364 /* OVS_PACKET_ATTR_ACTIONS */
365 if (upcall_info->actions_len)
Liping Zhang494bea32017-08-16 13:30:07 +0800366 size += nla_total_size(actions_attrlen);
Neil McKeeccea7442015-05-26 20:59:43 -0700367
Joe Stringer7f8a4362015-08-26 11:31:48 -0700368 /* OVS_PACKET_ATTR_MRU */
369 if (upcall_info->mru)
370 size += nla_total_size(sizeof(upcall_info->mru));
371
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100372 return size;
373}
374
Joe Stringer7f8a4362015-08-26 11:31:48 -0700375static void pad_packet(struct datapath *dp, struct sk_buff *skb)
376{
377 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
378 size_t plen = NLA_ALIGN(skb->len) - skb->len;
379
380 if (plen > 0)
Johannes Bergb080db52017-06-16 14:29:19 +0200381 skb_put_zero(skb, plen);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700382 }
383}
384
Thomas Graf8055a892013-12-13 15:22:20 +0100385static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800386 const struct sw_flow_key *key,
William Tuf2a4d082016-06-10 11:49:33 -0700387 const struct dp_upcall_info *upcall_info,
388 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700389{
390 struct ovs_header *upcall;
391 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800392 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700393 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100394 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100395 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100396 int err, dp_ifindex;
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800397 u64 hash;
Thomas Graf8055a892013-12-13 15:22:20 +0100398
399 dp_ifindex = get_dpifindex(dp);
400 if (!dp_ifindex)
401 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700402
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100403 if (skb_vlan_tag_present(skb)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700404 nskb = skb_clone(skb, GFP_ATOMIC);
405 if (!nskb)
406 return -ENOMEM;
407
Jiri Pirko59682502014-11-19 14:04:59 +0100408 nskb = __vlan_hwaccel_push_inside(nskb);
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000409 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700410 return -ENOMEM;
411
Jesse Grossccb13522011-10-25 19:26:31 -0700412 skb = nskb;
413 }
414
415 if (nla_attr_size(skb->len) > USHRT_MAX) {
416 err = -EFBIG;
417 goto out;
418 }
419
Thomas Grafbda56f12013-12-13 15:22:21 +0100420 /* Complete checksum if needed */
421 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Davide Caratti75293902017-05-18 15:44:42 +0200422 (err = skb_csum_hwoffload_help(skb, 0)))
Thomas Grafbda56f12013-12-13 15:22:21 +0100423 goto out;
424
425 /* Older versions of OVS user space enforce alignment of the last
426 * Netlink attribute to NLA_ALIGNTO which would require extensive
427 * padding logic. Only perform zerocopy if padding is not required.
428 */
429 if (dp->user_features & OVS_DP_F_UNALIGNED)
430 hlen = skb_zerocopy_headlen(skb);
431 else
432 hlen = skb->len;
433
Liping Zhang494bea32017-08-16 13:30:07 +0800434 len = upcall_msg_size(upcall_info, hlen - cutlen,
435 OVS_CB(skb)->acts_origlen);
Florian Westphal551ddc02016-02-18 15:03:25 +0100436 user_skb = genlmsg_new(len, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700437 if (!user_skb) {
438 err = -ENOMEM;
439 goto out;
440 }
441
442 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
443 0, upcall_info->cmd);
Kangjie Lu6f198932019-03-14 23:20:16 -0500444 if (!upcall) {
445 err = -EINVAL;
446 goto out;
447 }
Jesse Grossccb13522011-10-25 19:26:31 -0700448 upcall->dp_ifindex = dp_ifindex;
449
Joe Stringer5b4237b2015-01-21 16:42:48 -0800450 err = ovs_nla_put_key(key, key, OVS_PACKET_ATTR_KEY, false, user_skb);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400451 if (err)
452 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700453
454 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800455 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
456 nla_len(upcall_info->userdata),
457 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700458
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800459 if (upcall_info->egress_tun_info) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200460 nla = nla_nest_start_noflag(user_skb,
461 OVS_PACKET_ATTR_EGRESS_TUN_KEY);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500462 if (!nla) {
463 err = -EMSGSIZE;
464 goto out;
465 }
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700466 err = ovs_nla_put_tunnel_info(user_skb,
467 upcall_info->egress_tun_info);
Eelco Chaudrona734d1f2019-05-02 16:12:38 -0400468 if (err)
469 goto out;
470
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800471 nla_nest_end(user_skb, nla);
472 }
473
Neil McKeeccea7442015-05-26 20:59:43 -0700474 if (upcall_info->actions_len) {
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200475 nla = nla_nest_start_noflag(user_skb, OVS_PACKET_ATTR_ACTIONS);
Kangjie Lu0fff9bd2019-03-15 01:11:22 -0500476 if (!nla) {
477 err = -EMSGSIZE;
478 goto out;
479 }
Neil McKeeccea7442015-05-26 20:59:43 -0700480 err = ovs_nla_put_actions(upcall_info->actions,
481 upcall_info->actions_len,
482 user_skb);
483 if (!err)
484 nla_nest_end(user_skb, nla);
485 else
486 nla_nest_cancel(user_skb, nla);
487 }
488
Joe Stringer7f8a4362015-08-26 11:31:48 -0700489 /* Add OVS_PACKET_ATTR_MRU */
Tonghao Zhang61ca5332019-11-14 23:51:08 +0800490 if (upcall_info->mru &&
491 nla_put_u16(user_skb, OVS_PACKET_ATTR_MRU, upcall_info->mru)) {
492 err = -ENOBUFS;
493 goto out;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700494 }
495
William Tub95e5922016-06-20 07:26:17 -0700496 /* Add OVS_PACKET_ATTR_LEN when packet is truncated */
Tonghao Zhang61ca5332019-11-14 23:51:08 +0800497 if (cutlen > 0 &&
498 nla_put_u32(user_skb, OVS_PACKET_ATTR_LEN, skb->len)) {
499 err = -ENOBUFS;
500 goto out;
William Tub95e5922016-06-20 07:26:17 -0700501 }
502
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800503 /* Add OVS_PACKET_ATTR_HASH */
504 hash = skb_get_hash_raw(skb);
505 if (skb->sw_hash)
506 hash |= OVS_PACKET_HASH_SW_BIT;
507
508 if (skb->l4_hash)
509 hash |= OVS_PACKET_HASH_L4_BIT;
510
511 if (nla_put(user_skb, OVS_PACKET_ATTR_HASH, sizeof (u64), &hash)) {
512 err = -ENOBUFS;
513 goto out;
514 }
515
Thomas Grafbda56f12013-12-13 15:22:21 +0100516 /* Only reserve room for attribute header, packet data is added
517 * in skb_zerocopy() */
518 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
519 err = -ENOBUFS;
520 goto out;
521 }
William Tuf2a4d082016-06-10 11:49:33 -0700522 nla->nla_len = nla_attr_size(skb->len - cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700523
William Tuf2a4d082016-06-10 11:49:33 -0700524 err = skb_zerocopy(user_skb, skb, skb->len - cutlen, hlen);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000525 if (err)
526 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700527
Thomas Grafaea0bb42014-01-14 16:27:49 +0000528 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700529 pad_packet(dp, user_skb);
Thomas Grafaea0bb42014-01-14 16:27:49 +0000530
Thomas Grafbda56f12013-12-13 15:22:21 +0100531 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
532
Thomas Graf8055a892013-12-13 15:22:20 +0100533 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800534 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700535out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000536 if (err)
537 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800538 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700539 kfree_skb(nskb);
540 return err;
541}
542
Jesse Grossccb13522011-10-25 19:26:31 -0700543static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
544{
545 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700546 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700547 struct nlattr **a = info->attrs;
548 struct sw_flow_actions *acts;
549 struct sk_buff *packet;
550 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700551 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700552 struct datapath *dp;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700553 struct vport *input_vport;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700554 u16 mru = 0;
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800555 u64 hash;
Jesse Grossccb13522011-10-25 19:26:31 -0700556 int len;
557 int err;
Thomas Graf1ba39802015-01-14 13:56:19 +0000558 bool log = !a[OVS_PACKET_ATTR_PROBE];
Jesse Grossccb13522011-10-25 19:26:31 -0700559
560 err = -EINVAL;
561 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100562 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700563 goto err;
564
565 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
566 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
567 err = -ENOMEM;
568 if (!packet)
569 goto err;
570 skb_reserve(packet, NET_IP_ALIGN);
571
Thomas Graf32686a92013-03-29 14:46:48 +0100572 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700573
Joe Stringer7f8a4362015-08-26 11:31:48 -0700574 /* Set packet's mru */
575 if (a[OVS_PACKET_ATTR_MRU]) {
576 mru = nla_get_u16(a[OVS_PACKET_ATTR_MRU]);
577 packet->ignore_df = 1;
578 }
579 OVS_CB(packet)->mru = mru;
580
Tonghao Zhangbd1903b2019-11-13 23:04:49 +0800581 if (a[OVS_PACKET_ATTR_HASH]) {
582 hash = nla_get_u64(a[OVS_PACKET_ATTR_HASH]);
583
584 __skb_set_hash(packet, hash & 0xFFFFFFFFULL,
585 !!(hash & OVS_PACKET_HASH_SW_BIT),
586 !!(hash & OVS_PACKET_HASH_L4_BIT));
587 }
588
Jesse Grossccb13522011-10-25 19:26:31 -0700589 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700590 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700591 err = PTR_ERR(flow);
592 if (IS_ERR(flow))
593 goto err_kfree_skb;
594
Joe Stringerc2ac6672015-08-26 11:31:52 -0700595 err = ovs_flow_key_extract_userspace(net, a[OVS_PACKET_ATTR_KEY],
596 packet, &flow->key, log);
Jesse Grossccb13522011-10-25 19:26:31 -0700597 if (err)
598 goto err_flow_free;
599
Joe Stringer7f8a4362015-08-26 11:31:48 -0700600 err = ovs_nla_copy_actions(net, a[OVS_PACKET_ATTR_ACTIONS],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800601 &flow->key, &acts, log);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700602 if (err)
603 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700604
Jesse Grossf5796682014-10-03 15:35:33 -0700605 rcu_assign_pointer(flow->sf_acts, acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700606 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800607 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700608
609 rcu_read_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700610 dp = get_dp_rcu(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700611 err = -ENODEV;
612 if (!dp)
613 goto err_unlock;
614
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700615 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
616 if (!input_vport)
617 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
618
619 if (!input_vport)
620 goto err_unlock;
621
Joe Stringer7f8a4362015-08-26 11:31:48 -0700622 packet->dev = input_vport->dev;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700623 OVS_CB(packet)->input_vport = input_vport;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700624 sf_acts = rcu_dereference(flow->sf_acts);
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700625
Jesse Grossccb13522011-10-25 19:26:31 -0700626 local_bh_disable();
Lorand Jakabd98612b2014-10-06 05:45:32 -0700627 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700628 local_bh_enable();
629 rcu_read_unlock();
630
Andy Zhou03f0d912013-08-07 20:01:00 -0700631 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700632 return err;
633
634err_unlock:
635 rcu_read_unlock();
636err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700637 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700638err_kfree_skb:
639 kfree_skb(packet);
640err:
641 return err;
642}
643
644static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100645 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700646 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
647 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
Thomas Graf1ba39802015-01-14 13:56:19 +0000648 [OVS_PACKET_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer7f8a4362015-08-26 11:31:48 -0700649 [OVS_PACKET_ATTR_MRU] = { .type = NLA_U16 },
Jesse Grossccb13522011-10-25 19:26:31 -0700650};
651
Johannes Berg4534de82013-11-14 17:14:46 +0100652static const struct genl_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700653 { .cmd = OVS_PACKET_CMD_EXECUTE,
Johannes Bergef6243a2019-04-26 14:07:31 +0200654 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -0700655 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -0700656 .doit = ovs_packet_cmd_execute
657 }
658};
659
Johannes Berg56989f62016-10-24 14:40:05 +0200660static struct genl_family dp_packet_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700661 .hdrsize = sizeof(struct ovs_header),
662 .name = OVS_PACKET_FAMILY,
663 .version = OVS_PACKET_VERSION,
664 .maxattr = OVS_PACKET_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100665 .policy = packet_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700666 .netnsok = true,
667 .parallel_ops = true,
668 .ops = dp_packet_genl_ops,
669 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
Johannes Berg489111e2016-10-24 14:40:03 +0200670 .module = THIS_MODULE,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700671};
672
Thomas Graf12eb18f2014-11-06 06:58:52 -0800673static void get_dp_stats(const struct datapath *dp, struct ovs_dp_stats *stats,
Andy Zhou1bd71162013-10-22 10:42:46 -0700674 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700675{
676 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700677
Andy Zhou1bd71162013-10-22 10:42:46 -0700678 memset(mega_stats, 0, sizeof(*mega_stats));
679
Pravin B Shelarb637e492013-10-04 00:14:23 -0700680 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700681 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700682
683 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700684
Jesse Grossccb13522011-10-25 19:26:31 -0700685 for_each_possible_cpu(i) {
686 const struct dp_stats_percpu *percpu_stats;
687 struct dp_stats_percpu local_stats;
688 unsigned int start;
689
690 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
691
692 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700693 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700694 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700695 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700696
697 stats->n_hit += local_stats.n_hit;
698 stats->n_missed += local_stats.n_missed;
699 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700700 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700701 }
702}
703
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800704static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100705{
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800706 return ovs_identifier_is_ufid(sfid) &&
707 !(ufid_flags & OVS_UFID_F_OMIT_KEY);
708}
709
710static bool should_fill_mask(uint32_t ufid_flags)
711{
712 return !(ufid_flags & OVS_UFID_F_OMIT_MASK);
713}
714
715static bool should_fill_actions(uint32_t ufid_flags)
716{
717 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS);
718}
719
720static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts,
721 const struct sw_flow_id *sfid,
722 uint32_t ufid_flags)
723{
724 size_t len = NLMSG_ALIGN(sizeof(struct ovs_header));
725
Paolo Abeni4e81c0b2019-11-26 12:55:50 +0100726 /* OVS_FLOW_ATTR_UFID, or unmasked flow key as fallback
727 * see ovs_nla_put_identifier()
728 */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800729 if (sfid && ovs_identifier_is_ufid(sfid))
730 len += nla_total_size(sfid->ufid_len);
Paolo Abeni4e81c0b2019-11-26 12:55:50 +0100731 else
732 len += nla_total_size(ovs_key_attr_size());
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800733
734 /* OVS_FLOW_ATTR_KEY */
735 if (!sfid || should_fill_key(sfid, ufid_flags))
736 len += nla_total_size(ovs_key_attr_size());
737
738 /* OVS_FLOW_ATTR_MASK */
739 if (should_fill_mask(ufid_flags))
740 len += nla_total_size(ovs_key_attr_size());
741
742 /* OVS_FLOW_ATTR_ACTIONS */
743 if (should_fill_actions(ufid_flags))
Joe Stringer8e2fed12015-08-26 11:31:44 -0700744 len += nla_total_size(acts->orig_len);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800745
746 return len
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200747 + nla_total_size_64bit(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100748 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200749 + nla_total_size_64bit(8); /* OVS_FLOW_ATTR_USED */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100750}
751
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700752/* Called with ovs_mutex or RCU read lock. */
Joe Stringerca7105f2014-09-08 13:09:37 -0700753static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
754 struct sk_buff *skb)
755{
756 struct ovs_flow_stats stats;
757 __be16 tcp_flags;
758 unsigned long used;
Andy Zhou03f0d912013-08-07 20:01:00 -0700759
Pravin B Shelare298e502013-10-29 17:22:21 -0700760 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700761
David S. Miller028d6a62012-03-29 23:20:48 -0400762 if (used &&
Nicolas Dichtel0238b722016-04-25 10:25:17 +0200763 nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
764 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700765 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700766
David S. Miller028d6a62012-03-29 23:20:48 -0400767 if (stats.n_packets &&
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +0200768 nla_put_64bit(skb, OVS_FLOW_ATTR_STATS,
769 sizeof(struct ovs_flow_stats), &stats,
770 OVS_FLOW_ATTR_PAD))
Joe Stringerca7105f2014-09-08 13:09:37 -0700771 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700772
Pravin B Shelare298e502013-10-29 17:22:21 -0700773 if ((u8)ntohs(tcp_flags) &&
774 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
Joe Stringerca7105f2014-09-08 13:09:37 -0700775 return -EMSGSIZE;
776
777 return 0;
778}
779
780/* Called with ovs_mutex or RCU read lock. */
781static int ovs_flow_cmd_fill_actions(const struct sw_flow *flow,
782 struct sk_buff *skb, int skb_orig_len)
783{
784 struct nlattr *start;
785 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700786
787 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
788 * this is the first flow to be dumped into 'skb'. This is unusual for
789 * Netlink but individual action lists can be longer than
790 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
791 * The userspace caller can always fetch the actions separately if it
792 * really wants them. (Most userspace callers in fact don't care.)
793 *
794 * This can only fail for dump operations because the skb is always
795 * properly sized for single flows.
796 */
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200797 start = nla_nest_start_noflag(skb, OVS_FLOW_ATTR_ACTIONS);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700798 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700799 const struct sw_flow_actions *sf_acts;
800
Jesse Gross663efa32013-12-03 10:58:53 -0800801 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700802 err = ovs_nla_put_actions(sf_acts->actions,
803 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700804
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700805 if (!err)
806 nla_nest_end(skb, start);
807 else {
808 if (skb_orig_len)
Joe Stringerca7105f2014-09-08 13:09:37 -0700809 return err;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700810
811 nla_nest_cancel(skb, start);
812 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700813 } else if (skb_orig_len) {
814 return -EMSGSIZE;
815 }
816
817 return 0;
818}
819
820/* Called with ovs_mutex or RCU read lock. */
821static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
822 struct sk_buff *skb, u32 portid,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800823 u32 seq, u32 flags, u8 cmd, u32 ufid_flags)
Joe Stringerca7105f2014-09-08 13:09:37 -0700824{
825 const int skb_orig_len = skb->len;
826 struct ovs_header *ovs_header;
827 int err;
828
829 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family,
830 flags, cmd);
831 if (!ovs_header)
832 return -EMSGSIZE;
833
834 ovs_header->dp_ifindex = dp_ifindex;
835
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800836 err = ovs_nla_put_identifier(flow, skb);
Joe Stringer5b4237b2015-01-21 16:42:48 -0800837 if (err)
838 goto error;
839
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800840 if (should_fill_key(&flow->id, ufid_flags)) {
841 err = ovs_nla_put_masked_key(flow, skb);
842 if (err)
843 goto error;
844 }
845
846 if (should_fill_mask(ufid_flags)) {
847 err = ovs_nla_put_mask(flow, skb);
848 if (err)
849 goto error;
850 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700851
852 err = ovs_flow_cmd_fill_stats(flow, skb);
853 if (err)
854 goto error;
855
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800856 if (should_fill_actions(ufid_flags)) {
857 err = ovs_flow_cmd_fill_actions(flow, skb, skb_orig_len);
858 if (err)
859 goto error;
860 }
Jesse Grossccb13522011-10-25 19:26:31 -0700861
Johannes Berg053c0952015-01-16 22:09:00 +0100862 genlmsg_end(skb, ovs_header);
863 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700864
Jesse Grossccb13522011-10-25 19:26:31 -0700865error:
866 genlmsg_cancel(skb, ovs_header);
867 return err;
868}
869
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700870/* May not be called with RCU read lock. */
871static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800872 const struct sw_flow_id *sfid,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700873 struct genl_info *info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800874 bool always,
875 uint32_t ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700876{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700877 struct sk_buff *skb;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800878 size_t len;
Jesse Grossccb13522011-10-25 19:26:31 -0700879
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200880 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700881 return NULL;
882
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800883 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags);
Florian Westphal551ddc02016-02-18 15:03:25 +0100884 skb = genlmsg_new(len, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700885 if (!skb)
886 return ERR_PTR(-ENOMEM);
887
888 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700889}
890
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700891/* Called with ovs_mutex. */
892static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
893 int dp_ifindex,
894 struct genl_info *info, u8 cmd,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800895 bool always, u32 ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700896{
897 struct sk_buff *skb;
898 int retval;
899
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800900 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts),
901 &flow->id, info, always, ufid_flags);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530902 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700903 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700904
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700905 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
906 info->snd_portid, info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800907 cmd, ufid_flags);
Jesse Grossccb13522011-10-25 19:26:31 -0700908 BUG_ON(retval < 0);
909 return skb;
910}
911
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700912static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700913{
Joe Stringer7f8a4362015-08-26 11:31:48 -0700914 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -0700915 struct nlattr **a = info->attrs;
916 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800917 struct sw_flow *flow = NULL, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700918 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700919 struct sk_buff *reply;
920 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700921 struct sw_flow_actions *acts;
922 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800923 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700924 int error;
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800925 bool log = !a[OVS_FLOW_ATTR_PROBE];
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700926
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700927 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700928 error = -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700929 if (!a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800930 OVS_NLERR(log, "Flow key attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700931 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700932 }
933 if (!a[OVS_FLOW_ATTR_ACTIONS]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800934 OVS_NLERR(log, "Flow actions attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700935 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700936 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700937
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700938 /* Most of the time we need to allocate a new flow, do it before
939 * locking.
940 */
941 new_flow = ovs_flow_alloc();
942 if (IS_ERR(new_flow)) {
943 error = PTR_ERR(new_flow);
944 goto error;
945 }
946
947 /* Extract key. */
pravin shelar22799942016-09-19 13:51:00 -0700948 ovs_match_init(&match, &new_flow->key, false, &mask);
Joe Stringerc2ac6672015-08-26 11:31:52 -0700949 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800950 a[OVS_FLOW_ATTR_MASK], log);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700951 if (error)
952 goto err_kfree_flow;
953
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800954 /* Extract flow identifier. */
955 error = ovs_nla_get_identifier(&new_flow->id, a[OVS_FLOW_ATTR_UFID],
pravin shelar190aa3e72016-09-19 13:50:59 -0700956 &new_flow->key, log);
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800957 if (error)
958 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700959
pravin shelar190aa3e72016-09-19 13:50:59 -0700960 /* unmasked key is needed to match when ufid is not used. */
961 if (ovs_identifier_is_key(&new_flow->id))
962 match.key = new_flow->id.unmasked_key;
963
964 ovs_flow_mask_key(&new_flow->key, &new_flow->key, true, &mask);
965
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700966 /* Validate actions. */
Joe Stringer7f8a4362015-08-26 11:31:48 -0700967 error = ovs_nla_copy_actions(net, a[OVS_FLOW_ATTR_ACTIONS],
968 &new_flow->key, &acts, log);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700969 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800970 OVS_NLERR(log, "Flow actions may not be safe on all matching packets.");
Pravin B Shelar2fdb9572014-10-19 11:19:51 -0700971 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700972 }
973
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800974 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false,
975 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700976 if (IS_ERR(reply)) {
977 error = PTR_ERR(reply);
978 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700979 }
980
981 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -0700982 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700983 if (unlikely(!dp)) {
984 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700985 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700986 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800987
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700988 /* Check if this is a duplicate flow */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800989 if (ovs_identifier_is_ufid(&new_flow->id))
990 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &new_flow->id);
991 if (!flow)
pravin shelar190aa3e72016-09-19 13:50:59 -0700992 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->key);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700993 if (likely(!flow)) {
994 rcu_assign_pointer(new_flow->sf_acts, acts);
995
996 /* Put flow in bucket. */
997 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
998 if (unlikely(error)) {
999 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001000 goto err_unlock_ovs;
1001 }
1002
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001003 if (unlikely(reply)) {
1004 error = ovs_flow_cmd_fill_info(new_flow,
1005 ovs_header->dp_ifindex,
1006 reply, info->snd_portid,
1007 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001008 OVS_FLOW_CMD_NEW,
1009 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001010 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001011 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001012 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001013 } else {
1014 struct sw_flow_actions *old_acts;
1015
1016 /* Bail out if we're not allowed to modify an existing flow.
1017 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1018 * because Generic Netlink treats the latter as a dump
1019 * request. We also accept NLM_F_EXCL in case that bug ever
1020 * gets fixed.
1021 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001022 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
1023 | NLM_F_EXCL))) {
1024 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001025 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001026 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001027 /* The flow identifier has to be the same for flow updates.
1028 * Look for any overlapping flow.
1029 */
1030 if (unlikely(!ovs_flow_cmp(flow, &match))) {
1031 if (ovs_identifier_is_key(&flow->id))
1032 flow = ovs_flow_tbl_lookup_exact(&dp->table,
1033 &match);
1034 else /* UFID matches but key is different */
1035 flow = NULL;
Alex Wang4a46b242014-06-30 20:30:29 -07001036 if (!flow) {
1037 error = -ENOENT;
1038 goto err_unlock_ovs;
1039 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001040 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001041 /* Update actions. */
1042 old_acts = ovsl_dereference(flow->sf_acts);
1043 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001044
1045 if (unlikely(reply)) {
1046 error = ovs_flow_cmd_fill_info(flow,
1047 ovs_header->dp_ifindex,
1048 reply, info->snd_portid,
1049 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001050 OVS_FLOW_CMD_NEW,
1051 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001052 BUG_ON(error < 0);
1053 }
1054 ovs_unlock();
1055
Thomas Graf34ae9322015-07-21 10:44:03 +02001056 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001057 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001058 }
1059
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001060 if (reply)
1061 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001062 return 0;
1063
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001064err_unlock_ovs:
1065 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001066 kfree_skb(reply);
1067err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001068 ovs_nla_free_flow_actions(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001069err_kfree_flow:
1070 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001071error:
1072 return error;
1073}
1074
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001075/* Factor out action copy to avoid "Wframe-larger-than=1024" warning. */
Arnd Bergmann26063792019-07-22 17:00:01 +02001076static noinline_for_stack struct sw_flow_actions *get_flow_actions(struct net *net,
Joe Stringer7f8a4362015-08-26 11:31:48 -07001077 const struct nlattr *a,
Jesse Gross6b205b22014-10-03 15:35:32 -07001078 const struct sw_flow_key *key,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001079 const struct sw_flow_mask *mask,
1080 bool log)
Jesse Gross6b205b22014-10-03 15:35:32 -07001081{
1082 struct sw_flow_actions *acts;
1083 struct sw_flow_key masked_key;
1084 int error;
1085
Jesse Grossae5f2fb2015-09-21 20:21:20 -07001086 ovs_flow_mask_key(&masked_key, key, true, mask);
Joe Stringer7f8a4362015-08-26 11:31:48 -07001087 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001088 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001089 OVS_NLERR(log,
1090 "Actions may not be safe on all matching packets");
Jesse Gross6b205b22014-10-03 15:35:32 -07001091 return ERR_PTR(error);
1092 }
1093
1094 return acts;
1095}
1096
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001097/* Factor out match-init and action-copy to avoid
1098 * "Wframe-larger-than=1024" warning. Because mask is only
1099 * used to get actions, we new a function to save some
1100 * stack space.
1101 *
1102 * If there are not key and action attrs, we return 0
1103 * directly. In the case, the caller will also not use the
1104 * match as before. If there is action attr, we try to get
1105 * actions and save them to *acts. Before returning from
1106 * the function, we reset the match->mask pointer. Because
1107 * we should not to return match object with dangling reference
1108 * to mask.
1109 * */
Arnd Bergmann26063792019-07-22 17:00:01 +02001110static noinline_for_stack int
1111ovs_nla_init_match_and_action(struct net *net,
1112 struct sw_flow_match *match,
1113 struct sw_flow_key *key,
1114 struct nlattr **a,
1115 struct sw_flow_actions **acts,
1116 bool log)
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001117{
1118 struct sw_flow_mask mask;
1119 int error = 0;
1120
1121 if (a[OVS_FLOW_ATTR_KEY]) {
1122 ovs_match_init(match, key, true, &mask);
1123 error = ovs_nla_get_match(net, match, a[OVS_FLOW_ATTR_KEY],
1124 a[OVS_FLOW_ATTR_MASK], log);
1125 if (error)
1126 goto error;
1127 }
1128
1129 if (a[OVS_FLOW_ATTR_ACTIONS]) {
1130 if (!a[OVS_FLOW_ATTR_KEY]) {
1131 OVS_NLERR(log,
1132 "Flow key attribute not present in set flow.");
Christophe JAILLET5829e622017-09-11 21:56:20 +02001133 error = -EINVAL;
1134 goto error;
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001135 }
1136
1137 *acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], key,
1138 &mask, log);
1139 if (IS_ERR(*acts)) {
1140 error = PTR_ERR(*acts);
1141 goto error;
1142 }
1143 }
1144
1145 /* On success, error is 0. */
1146error:
1147 match->mask = NULL;
1148 return error;
1149}
1150
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001151static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
1152{
Joe Stringer7f8a4362015-08-26 11:31:48 -07001153 struct net *net = sock_net(skb->sk);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001154 struct nlattr **a = info->attrs;
1155 struct ovs_header *ovs_header = info->userhdr;
Jesse Gross6b205b22014-10-03 15:35:32 -07001156 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001157 struct sw_flow *flow;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001158 struct sk_buff *reply = NULL;
1159 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001160 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001161 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001162 struct sw_flow_id sfid;
1163 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001164 int error = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001165 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001166 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001167
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001168 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log);
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001169 if (!a[OVS_FLOW_ATTR_KEY] && !ufid_present) {
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001170 OVS_NLERR(log,
1171 "Flow set message rejected, Key attribute missing.");
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001172 return -EINVAL;
Samuel Gauthier6f15cdb2016-03-10 17:14:59 +01001173 }
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001174
1175 error = ovs_nla_init_match_and_action(net, &match, &key, a,
1176 &acts, log);
Jesse Grossccb13522011-10-25 19:26:31 -07001177 if (error)
1178 goto error;
1179
Tonghao Zhang9cc9a5c2017-06-29 17:27:44 -07001180 if (acts) {
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001181 /* Can allocate before locking if have acts. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001182 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false,
1183 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001184 if (IS_ERR(reply)) {
1185 error = PTR_ERR(reply);
1186 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -07001187 }
Jesse Grossccb13522011-10-25 19:26:31 -07001188 }
1189
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001190 ovs_lock();
Joe Stringer7f8a4362015-08-26 11:31:48 -07001191 dp = get_dp(net, ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001192 if (unlikely(!dp)) {
1193 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001194 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001195 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001196 /* Check that the flow exists. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001197 if (ufid_present)
1198 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &sfid);
1199 else
1200 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001201 if (unlikely(!flow)) {
1202 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001203 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001204 }
Alex Wang4a46b242014-06-30 20:30:29 -07001205
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001206 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001207 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001208 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001209 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001210
1211 if (unlikely(reply)) {
1212 error = ovs_flow_cmd_fill_info(flow,
1213 ovs_header->dp_ifindex,
1214 reply, info->snd_portid,
1215 info->snd_seq, 0,
Yifeng Sun804fe102018-09-26 11:40:14 -07001216 OVS_FLOW_CMD_SET,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001217 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001218 BUG_ON(error < 0);
1219 }
1220 } else {
1221 /* Could not alloc without acts before locking. */
1222 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
Yifeng Sun804fe102018-09-26 11:40:14 -07001223 info, OVS_FLOW_CMD_SET, false,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001224 ufid_flags);
1225
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301226 if (IS_ERR(reply)) {
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001227 error = PTR_ERR(reply);
1228 goto err_unlock_ovs;
1229 }
Jesse Grossccb13522011-10-25 19:26:31 -07001230 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001231
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001232 /* Clear stats. */
1233 if (a[OVS_FLOW_ATTR_CLEAR])
1234 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001235 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001236
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001237 if (reply)
1238 ovs_notify(&dp_flow_genl_family, reply, info);
1239 if (old_acts)
Thomas Graf34ae9322015-07-21 10:44:03 +02001240 ovs_nla_free_flow_actions_rcu(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001241
Jesse Grossccb13522011-10-25 19:26:31 -07001242 return 0;
1243
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001244err_unlock_ovs:
1245 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001246 kfree_skb(reply);
1247err_kfree_acts:
Thomas Graf34ae9322015-07-21 10:44:03 +02001248 ovs_nla_free_flow_actions(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001249error:
1250 return error;
1251}
1252
1253static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1254{
1255 struct nlattr **a = info->attrs;
1256 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001257 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001258 struct sw_flow_key key;
1259 struct sk_buff *reply;
1260 struct sw_flow *flow;
1261 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001262 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001263 struct sw_flow_id ufid;
1264 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
1265 int err = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001266 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001267 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001268
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001269 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1270 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001271 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001272 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY], NULL,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001273 log);
1274 } else if (!ufid_present) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001275 OVS_NLERR(log,
1276 "Flow get message rejected, Key attribute missing.");
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001277 err = -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001278 }
Jesse Grossccb13522011-10-25 19:26:31 -07001279 if (err)
1280 return err;
1281
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001282 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001283 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001284 if (!dp) {
1285 err = -ENODEV;
1286 goto unlock;
1287 }
Jesse Grossccb13522011-10-25 19:26:31 -07001288
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001289 if (ufid_present)
1290 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1291 else
1292 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001293 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001294 err = -ENOENT;
1295 goto unlock;
1296 }
Jesse Grossccb13522011-10-25 19:26:31 -07001297
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001298 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
Yifeng Sun804fe102018-09-26 11:40:14 -07001299 OVS_FLOW_CMD_GET, true, ufid_flags);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001300 if (IS_ERR(reply)) {
1301 err = PTR_ERR(reply);
1302 goto unlock;
1303 }
Jesse Grossccb13522011-10-25 19:26:31 -07001304
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001305 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001306 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001307unlock:
1308 ovs_unlock();
1309 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001310}
1311
1312static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1313{
1314 struct nlattr **a = info->attrs;
1315 struct ovs_header *ovs_header = info->userhdr;
Joe Stringerc2ac6672015-08-26 11:31:52 -07001316 struct net *net = sock_net(skb->sk);
Jesse Grossccb13522011-10-25 19:26:31 -07001317 struct sw_flow_key key;
1318 struct sk_buff *reply;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001319 struct sw_flow *flow = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001320 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001321 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001322 struct sw_flow_id ufid;
1323 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001324 int err;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001325 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001326 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001327
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001328 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1329 if (a[OVS_FLOW_ATTR_KEY]) {
pravin shelar22799942016-09-19 13:51:00 -07001330 ovs_match_init(&match, &key, true, NULL);
Joe Stringerc2ac6672015-08-26 11:31:52 -07001331 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1332 NULL, log);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001333 if (unlikely(err))
1334 return err;
1335 }
1336
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001337 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001338 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001339 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001340 err = -ENODEV;
1341 goto unlock;
1342 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001343
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001344 if (unlikely(!a[OVS_FLOW_ATTR_KEY] && !ufid_present)) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001345 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001346 goto unlock;
1347 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001348
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001349 if (ufid_present)
1350 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1351 else
1352 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001353 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001354 err = -ENOENT;
1355 goto unlock;
1356 }
Jesse Grossccb13522011-10-25 19:26:31 -07001357
Pravin B Shelarb637e492013-10-04 00:14:23 -07001358 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001359 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001360
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001361 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001362 &flow->id, info, false, ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001363 if (likely(reply)) {
Enrico Weigeltb90f5aa2019-06-05 23:06:40 +02001364 if (!IS_ERR(reply)) {
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001365 rcu_read_lock(); /*To keep RCU checker happy. */
1366 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1367 reply, info->snd_portid,
1368 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001369 OVS_FLOW_CMD_DEL,
1370 ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001371 rcu_read_unlock();
1372 BUG_ON(err < 0);
1373
1374 ovs_notify(&dp_flow_genl_family, reply, info);
1375 } else {
1376 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1377 }
1378 }
1379
1380 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001381 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001382unlock:
1383 ovs_unlock();
1384 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001385}
1386
1387static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1388{
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001389 struct nlattr *a[__OVS_FLOW_ATTR_MAX];
Jesse Grossccb13522011-10-25 19:26:31 -07001390 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001391 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001392 struct datapath *dp;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001393 u32 ufid_flags;
1394 int err;
1395
Johannes Berg8cb08172019-04-26 14:07:28 +02001396 err = genlmsg_parse_deprecated(cb->nlh, &dp_flow_genl_family, a,
1397 OVS_FLOW_ATTR_MAX, flow_policy, NULL);
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001398 if (err)
1399 return err;
1400 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001401
Pravin B Shelard57170b2013-07-30 15:39:39 -07001402 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07001403 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001404 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001405 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001406 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001407 }
Jesse Grossccb13522011-10-25 19:26:31 -07001408
Pravin B Shelarb637e492013-10-04 00:14:23 -07001409 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001410 for (;;) {
1411 struct sw_flow *flow;
1412 u32 bucket, obj;
1413
1414 bucket = cb->args[0];
1415 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001416 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001417 if (!flow)
1418 break;
1419
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001420 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001421 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001422 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001423 OVS_FLOW_CMD_GET, ufid_flags) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001424 break;
1425
1426 cb->args[0] = bucket;
1427 cb->args[1] = obj;
1428 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001429 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001430 return skb->len;
1431}
1432
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001433static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1434 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001435 [OVS_FLOW_ATTR_MASK] = { .type = NLA_NESTED },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001436 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1437 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001438 [OVS_FLOW_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001439 [OVS_FLOW_ATTR_UFID] = { .type = NLA_UNSPEC, .len = 1 },
1440 [OVS_FLOW_ATTR_UFID_FLAGS] = { .type = NLA_U32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001441};
1442
stephen hemminger48e48a72014-07-16 11:25:52 -07001443static const struct genl_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001444 { .cmd = OVS_FLOW_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001445 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001446 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001447 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001448 },
1449 { .cmd = OVS_FLOW_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001450 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001451 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001452 .doit = ovs_flow_cmd_del
1453 },
1454 { .cmd = OVS_FLOW_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001455 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001456 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001457 .doit = ovs_flow_cmd_get,
1458 .dumpit = ovs_flow_cmd_dump
1459 },
1460 { .cmd = OVS_FLOW_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001461 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001462 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001463 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001464 },
1465};
1466
Johannes Berg56989f62016-10-24 14:40:05 +02001467static struct genl_family dp_flow_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001468 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001469 .name = OVS_FLOW_FAMILY,
1470 .version = OVS_FLOW_VERSION,
1471 .maxattr = OVS_FLOW_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001472 .policy = flow_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001473 .netnsok = true,
1474 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001475 .ops = dp_flow_genl_ops,
1476 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1477 .mcgrps = &ovs_dp_flow_multicast_group,
1478 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001479 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001480};
1481
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001482static size_t ovs_dp_cmd_msg_size(void)
1483{
1484 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1485
1486 msgsize += nla_total_size(IFNAMSIZ);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001487 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_stats));
1488 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001489 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001490
1491 return msgsize;
1492}
1493
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001494/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -07001495static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001496 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001497{
1498 struct ovs_header *ovs_header;
1499 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001500 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001501 int err;
1502
Eric W. Biederman15e47302012-09-07 20:12:54 +00001503 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001504 flags, cmd);
1505 if (!ovs_header)
1506 goto error;
1507
1508 ovs_header->dp_ifindex = get_dpifindex(dp);
1509
Jesse Grossccb13522011-10-25 19:26:31 -07001510 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001511 if (err)
1512 goto nla_put_failure;
1513
Andy Zhou1bd71162013-10-22 10:42:46 -07001514 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001515 if (nla_put_64bit(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1516 &dp_stats, OVS_DP_ATTR_PAD))
Andy Zhou1bd71162013-10-22 10:42:46 -07001517 goto nla_put_failure;
1518
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001519 if (nla_put_64bit(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1520 sizeof(struct ovs_dp_megaflow_stats),
1521 &dp_megaflow_stats, OVS_DP_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001522 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001523
Thomas Graf43d4be92013-12-13 15:22:18 +01001524 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1525 goto nla_put_failure;
1526
Johannes Berg053c0952015-01-16 22:09:00 +01001527 genlmsg_end(skb, ovs_header);
1528 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001529
1530nla_put_failure:
1531 genlmsg_cancel(skb, ovs_header);
1532error:
1533 return -EMSGSIZE;
1534}
1535
Florian Westphal263ea092016-02-18 15:03:26 +01001536static struct sk_buff *ovs_dp_cmd_alloc_info(void)
Jesse Grossccb13522011-10-25 19:26:31 -07001537{
Florian Westphal551ddc02016-02-18 15:03:25 +01001538 return genlmsg_new(ovs_dp_cmd_msg_size(), GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001539}
1540
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001541/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001542static struct datapath *lookup_datapath(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001543 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001544 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1545{
1546 struct datapath *dp;
1547
1548 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001549 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001550 else {
1551 struct vport *vport;
1552
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001553 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001554 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001555 }
1556 return dp ? dp : ERR_PTR(-ENODEV);
1557}
1558
Thomas Graf44da5ae2013-12-13 15:22:19 +01001559static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1560{
1561 struct datapath *dp;
1562
1563 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001564 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001565 return;
1566
1567 WARN(dp->user_features, "Dropping previously announced user features\n");
1568 dp->user_features = 0;
1569}
1570
Paul Blakey95a72332019-09-04 16:56:37 +03001571DEFINE_STATIC_KEY_FALSE(tc_recirc_sharing_support);
1572
1573static int ovs_dp_change(struct datapath *dp, struct nlattr *a[])
Thomas Graf43d4be92013-12-13 15:22:18 +01001574{
Paul Blakey95a72332019-09-04 16:56:37 +03001575 u32 user_features = 0;
1576
1577 if (a[OVS_DP_ATTR_USER_FEATURES]) {
1578 user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1579
1580 if (user_features & ~(OVS_DP_F_VPORT_PIDS |
1581 OVS_DP_F_UNALIGNED |
1582 OVS_DP_F_TC_RECIRC_SHARING))
1583 return -EOPNOTSUPP;
1584
1585#if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
1586 if (user_features & OVS_DP_F_TC_RECIRC_SHARING)
1587 return -EOPNOTSUPP;
1588#endif
1589 }
1590
1591 dp->user_features = user_features;
1592
1593 if (dp->user_features & OVS_DP_F_TC_RECIRC_SHARING)
1594 static_branch_enable(&tc_recirc_sharing_support);
1595 else
1596 static_branch_disable(&tc_recirc_sharing_support);
1597
1598 return 0;
Thomas Graf43d4be92013-12-13 15:22:18 +01001599}
1600
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001601static int ovs_dp_stats_init(struct datapath *dp)
1602{
1603 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
1604 if (!dp->stats_percpu)
1605 return -ENOMEM;
1606
1607 return 0;
1608}
1609
1610static int ovs_dp_vport_init(struct datapath *dp)
1611{
1612 int i;
1613
1614 dp->ports = kmalloc_array(DP_VPORT_HASH_BUCKETS,
1615 sizeof(struct hlist_head),
1616 GFP_KERNEL);
1617 if (!dp->ports)
1618 return -ENOMEM;
1619
1620 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1621 INIT_HLIST_HEAD(&dp->ports[i]);
1622
1623 return 0;
1624}
1625
Jesse Grossccb13522011-10-25 19:26:31 -07001626static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1627{
1628 struct nlattr **a = info->attrs;
1629 struct vport_parms parms;
1630 struct sk_buff *reply;
1631 struct datapath *dp;
1632 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001633 struct ovs_net *ovs_net;
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001634 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001635
1636 err = -EINVAL;
1637 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1638 goto err;
1639
Florian Westphal263ea092016-02-18 15:03:26 +01001640 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001641 if (!reply)
1642 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001643
1644 err = -ENOMEM;
1645 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1646 if (dp == NULL)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001647 goto err_destroy_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001648
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -05001649 ovs_dp_set_net(dp, sock_net(skb->sk));
Jesse Grossccb13522011-10-25 19:26:31 -07001650
1651 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001652 err = ovs_flow_tbl_init(&dp->table);
1653 if (err)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001654 goto err_destroy_dp;
Jesse Grossccb13522011-10-25 19:26:31 -07001655
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001656 err = ovs_dp_stats_init(dp);
1657 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001658 goto err_destroy_table;
Jesse Grossccb13522011-10-25 19:26:31 -07001659
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001660 err = ovs_dp_vport_init(dp);
1661 if (err)
1662 goto err_destroy_stats;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001663
Andy Zhou96fbc132017-11-10 12:09:42 -08001664 err = ovs_meters_init(dp);
1665 if (err)
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001666 goto err_destroy_ports;
Andy Zhou96fbc132017-11-10 12:09:42 -08001667
Jesse Grossccb13522011-10-25 19:26:31 -07001668 /* Set up our datapath device. */
1669 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1670 parms.type = OVS_VPORT_TYPE_INTERNAL;
1671 parms.options = NULL;
1672 parms.dp = dp;
1673 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001674 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001675
Paul Blakey95a72332019-09-04 16:56:37 +03001676 err = ovs_dp_change(dp, a);
1677 if (err)
1678 goto err_destroy_meters;
Thomas Graf43d4be92013-12-13 15:22:18 +01001679
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001680 /* So far only local changes have been made, now need the lock. */
1681 ovs_lock();
1682
Jesse Grossccb13522011-10-25 19:26:31 -07001683 vport = new_vport(&parms);
1684 if (IS_ERR(vport)) {
1685 err = PTR_ERR(vport);
1686 if (err == -EBUSY)
1687 err = -EEXIST;
1688
Thomas Graf44da5ae2013-12-13 15:22:19 +01001689 if (err == -EEXIST) {
1690 /* An outdated user space instance that does not understand
1691 * the concept of user_features has attempted to create a new
1692 * datapath and is likely to reuse it. Drop all user features.
1693 */
1694 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1695 ovs_dp_reset_user_features(skb, info);
1696 }
1697
Tonghao Zhang4c76bf62019-11-01 22:23:53 +08001698 ovs_unlock();
Andy Zhou96fbc132017-11-10 12:09:42 -08001699 goto err_destroy_meters;
Jesse Grossccb13522011-10-25 19:26:31 -07001700 }
1701
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001702 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1703 info->snd_seq, 0, OVS_DP_CMD_NEW);
1704 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001705
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001706 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001707 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001708
1709 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001710
Johannes Berg2a94fe42013-11-19 15:19:39 +01001711 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001712 return 0;
1713
Andy Zhou96fbc132017-11-10 12:09:42 -08001714err_destroy_meters:
Andy Zhou96fbc132017-11-10 12:09:42 -08001715 ovs_meters_exit(dp);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001716err_destroy_ports:
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001717 kfree(dp->ports);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001718err_destroy_stats:
Jesse Grossccb13522011-10-25 19:26:31 -07001719 free_percpu(dp->stats_percpu);
1720err_destroy_table:
Pravin B Shelar9b996e52014-05-06 18:41:20 -07001721 ovs_flow_tbl_destroy(&dp->table);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001722err_destroy_dp:
Jesse Grossccb13522011-10-25 19:26:31 -07001723 kfree(dp);
Tonghao Zhangeec62ea2019-11-01 22:23:54 +08001724err_destroy_reply:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001725 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001726err:
1727 return err;
1728}
1729
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001730/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001731static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001732{
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001733 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001734
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001735 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1736 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001737 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001738
Sasha Levinb67bfe02013-02-27 17:06:00 -08001739 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001740 if (vport->port_no != OVSP_LOCAL)
1741 ovs_dp_detach_port(vport);
1742 }
Jesse Grossccb13522011-10-25 19:26:31 -07001743
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001744 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001745
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001746 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001747 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001748 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001749 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001750
Andy Zhoue80857c2014-01-21 09:31:04 -08001751 /* RCU destroy the flow table */
Jesse Grossccb13522011-10-25 19:26:31 -07001752 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001753}
1754
1755static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1756{
1757 struct sk_buff *reply;
1758 struct datapath *dp;
1759 int err;
1760
Florian Westphal263ea092016-02-18 15:03:26 +01001761 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001762 if (!reply)
1763 return -ENOMEM;
1764
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001765 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001766 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1767 err = PTR_ERR(dp);
1768 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001769 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001770
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001771 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1772 info->snd_seq, 0, OVS_DP_CMD_DEL);
1773 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001774
1775 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001776 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001777
Johannes Berg2a94fe42013-11-19 15:19:39 +01001778 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001779
1780 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001781
1782err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001783 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001784 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001785 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001786}
1787
1788static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1789{
1790 struct sk_buff *reply;
1791 struct datapath *dp;
1792 int err;
1793
Florian Westphal263ea092016-02-18 15:03:26 +01001794 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001795 if (!reply)
1796 return -ENOMEM;
1797
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001798 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001799 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001800 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001801 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001802 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001803
Paul Blakey95a72332019-09-04 16:56:37 +03001804 err = ovs_dp_change(dp, info->attrs);
1805 if (err)
1806 goto err_unlock_free;
Thomas Graf43d4be92013-12-13 15:22:18 +01001807
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001808 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001809 info->snd_seq, 0, OVS_DP_CMD_SET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001810 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001811
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001812 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001813 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001814
1815 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001816
1817err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001818 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001819 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001820 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001821}
1822
1823static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1824{
1825 struct sk_buff *reply;
1826 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001827 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001828
Florian Westphal263ea092016-02-18 15:03:26 +01001829 reply = ovs_dp_cmd_alloc_info();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001830 if (!reply)
1831 return -ENOMEM;
1832
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001833 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001834 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001835 if (IS_ERR(dp)) {
1836 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001837 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001838 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001839 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
Yifeng Sun804fe102018-09-26 11:40:14 -07001840 info->snd_seq, 0, OVS_DP_CMD_GET);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001841 BUG_ON(err < 0);
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001842 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001843
Jesse Grossccb13522011-10-25 19:26:31 -07001844 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001845
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001846err_unlock_free:
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001847 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001848 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001849 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001850}
1851
1852static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1853{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001854 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001855 struct datapath *dp;
1856 int skip = cb->args[0];
1857 int i = 0;
1858
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001859 ovs_lock();
1860 list_for_each_entry(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001861 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001862 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001863 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Yifeng Sun804fe102018-09-26 11:40:14 -07001864 OVS_DP_CMD_GET) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001865 break;
1866 i++;
1867 }
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001868 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001869
1870 cb->args[0] = i;
1871
1872 return skb->len;
1873}
1874
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001875static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1876 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1877 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1878 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1879};
1880
stephen hemminger48e48a72014-07-16 11:25:52 -07001881static const struct genl_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001882 { .cmd = OVS_DP_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02001883 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001884 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001885 .doit = ovs_dp_cmd_new
1886 },
1887 { .cmd = OVS_DP_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02001888 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001889 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001890 .doit = ovs_dp_cmd_del
1891 },
1892 { .cmd = OVS_DP_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001893 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07001894 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07001895 .doit = ovs_dp_cmd_get,
1896 .dumpit = ovs_dp_cmd_dump
1897 },
1898 { .cmd = OVS_DP_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02001899 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07001900 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07001901 .doit = ovs_dp_cmd_set,
1902 },
1903};
1904
Johannes Berg56989f62016-10-24 14:40:05 +02001905static struct genl_family dp_datapath_genl_family __ro_after_init = {
Jesse Grossccb13522011-10-25 19:26:31 -07001906 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001907 .name = OVS_DATAPATH_FAMILY,
1908 .version = OVS_DATAPATH_VERSION,
1909 .maxattr = OVS_DP_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01001910 .policy = datapath_policy,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001911 .netnsok = true,
1912 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001913 .ops = dp_datapath_genl_ops,
1914 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1915 .mcgrps = &ovs_dp_datapath_multicast_group,
1916 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02001917 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07001918};
1919
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001920/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001921static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Jiri Benc9354d452017-11-02 17:04:37 -02001922 struct net *net, u32 portid, u32 seq,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001923 u32 flags, u8 cmd, gfp_t gfp)
Jesse Grossccb13522011-10-25 19:26:31 -07001924{
1925 struct ovs_header *ovs_header;
1926 struct ovs_vport_stats vport_stats;
1927 int err;
1928
Eric W. Biederman15e47302012-09-07 20:12:54 +00001929 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001930 flags, cmd);
1931 if (!ovs_header)
1932 return -EMSGSIZE;
1933
1934 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1935
David S. Miller028d6a62012-03-29 23:20:48 -04001936 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1937 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001938 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
Jiri Benc9354d452017-11-02 17:04:37 -02001939 ovs_vport_name(vport)) ||
1940 nla_put_u32(skb, OVS_VPORT_ATTR_IFINDEX, vport->dev->ifindex))
David S. Miller028d6a62012-03-29 23:20:48 -04001941 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001942
Jiri Benc9354d452017-11-02 17:04:37 -02001943 if (!net_eq(net, dev_net(vport->dev))) {
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001944 int id = peernet2id_alloc(net, dev_net(vport->dev), gfp);
Jiri Benc9354d452017-11-02 17:04:37 -02001945
1946 if (nla_put_s32(skb, OVS_VPORT_ATTR_NETNSID, id))
1947 goto nla_put_failure;
1948 }
1949
Jesse Grossccb13522011-10-25 19:26:31 -07001950 ovs_vport_get_stats(vport, &vport_stats);
Nicolas Dichtel66c7a5e2016-04-26 10:06:15 +02001951 if (nla_put_64bit(skb, OVS_VPORT_ATTR_STATS,
1952 sizeof(struct ovs_vport_stats), &vport_stats,
1953 OVS_VPORT_ATTR_PAD))
David S. Miller028d6a62012-03-29 23:20:48 -04001954 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001955
Alex Wang5cd667b2014-07-17 15:14:13 -07001956 if (ovs_vport_get_upcall_portids(vport, skb))
1957 goto nla_put_failure;
1958
Jesse Grossccb13522011-10-25 19:26:31 -07001959 err = ovs_vport_get_options(vport, skb);
1960 if (err == -EMSGSIZE)
1961 goto error;
1962
Johannes Berg053c0952015-01-16 22:09:00 +01001963 genlmsg_end(skb, ovs_header);
1964 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001965
1966nla_put_failure:
1967 err = -EMSGSIZE;
1968error:
1969 genlmsg_cancel(skb, ovs_header);
1970 return err;
1971}
1972
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001973static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1974{
1975 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1976}
1977
1978/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Jiri Benc9354d452017-11-02 17:04:37 -02001979struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, struct net *net,
1980 u32 portid, u32 seq, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001981{
1982 struct sk_buff *skb;
1983 int retval;
1984
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001985 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001986 if (!skb)
1987 return ERR_PTR(-ENOMEM);
1988
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02001989 retval = ovs_vport_cmd_fill_info(vport, skb, net, portid, seq, 0, cmd,
1990 GFP_KERNEL);
Jesse Grossa9341512013-03-26 15:48:38 -07001991 BUG_ON(retval < 0);
1992
Jesse Grossccb13522011-10-25 19:26:31 -07001993 return skb;
1994}
1995
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001996/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001997static struct vport *lookup_vport(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001998 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001999 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
2000{
2001 struct datapath *dp;
2002 struct vport *vport;
2003
Jiri Benc9354d452017-11-02 17:04:37 -02002004 if (a[OVS_VPORT_ATTR_IFINDEX])
2005 return ERR_PTR(-EOPNOTSUPP);
Jesse Grossccb13522011-10-25 19:26:31 -07002006 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002007 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07002008 if (!vport)
2009 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08002010 if (ovs_header->dp_ifindex &&
2011 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
2012 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07002013 return vport;
2014 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
2015 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
2016
2017 if (port_no >= DP_MAX_PORTS)
2018 return ERR_PTR(-EFBIG);
2019
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002020 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002021 if (!dp)
2022 return ERR_PTR(-ENODEV);
2023
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002024 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002025 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08002026 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07002027 return vport;
2028 } else
2029 return ERR_PTR(-EINVAL);
Jiri Benc9354d452017-11-02 17:04:37 -02002030
Jesse Grossccb13522011-10-25 19:26:31 -07002031}
2032
Taehee Yoo6b660c42019-07-06 01:08:09 +09002033static unsigned int ovs_get_max_headroom(struct datapath *dp)
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002034{
Taehee Yoo6b660c42019-07-06 01:08:09 +09002035 unsigned int dev_headroom, max_headroom = 0;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002036 struct net_device *dev;
2037 struct vport *vport;
2038 int i;
2039
2040 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2041 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
2042 dev = vport->dev;
2043 dev_headroom = netdev_get_fwd_headroom(dev);
2044 if (dev_headroom > max_headroom)
2045 max_headroom = dev_headroom;
2046 }
2047 }
2048
Taehee Yoo6b660c42019-07-06 01:08:09 +09002049 return max_headroom;
2050}
2051
2052/* Called with ovs_mutex */
2053static void ovs_update_headroom(struct datapath *dp, unsigned int new_headroom)
2054{
2055 struct vport *vport;
2056 int i;
2057
2058 dp->max_headroom = new_headroom;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002059 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
2060 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node)
Taehee Yoo6b660c42019-07-06 01:08:09 +09002061 netdev_set_rx_headroom(vport->dev, new_headroom);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002062}
2063
Jesse Grossccb13522011-10-25 19:26:31 -07002064static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
2065{
2066 struct nlattr **a = info->attrs;
2067 struct ovs_header *ovs_header = info->userhdr;
2068 struct vport_parms parms;
2069 struct sk_buff *reply;
2070 struct vport *vport;
2071 struct datapath *dp;
Taehee Yoo6b660c42019-07-06 01:08:09 +09002072 unsigned int new_headroom;
Jesse Grossccb13522011-10-25 19:26:31 -07002073 u32 port_no;
2074 int err;
2075
Jesse Grossccb13522011-10-25 19:26:31 -07002076 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
2077 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002078 return -EINVAL;
Jiri Benc9354d452017-11-02 17:04:37 -02002079 if (a[OVS_VPORT_ATTR_IFINDEX])
2080 return -EOPNOTSUPP;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002081
2082 port_no = a[OVS_VPORT_ATTR_PORT_NO]
2083 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
2084 if (port_no >= DP_MAX_PORTS)
2085 return -EFBIG;
2086
2087 reply = ovs_vport_cmd_alloc_info();
2088 if (!reply)
2089 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07002090
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002091 ovs_lock();
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002092restart:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002093 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07002094 err = -ENODEV;
2095 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002096 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002097
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002098 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002099 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002100 err = -EBUSY;
2101 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002102 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002103 } else {
2104 for (port_no = 1; ; port_no++) {
2105 if (port_no >= DP_MAX_PORTS) {
2106 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002107 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002108 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002109 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07002110 if (!vport)
2111 break;
2112 }
2113 }
2114
2115 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
2116 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
2117 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
2118 parms.dp = dp;
2119 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07002120 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07002121
2122 vport = new_vport(&parms);
2123 err = PTR_ERR(vport);
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002124 if (IS_ERR(vport)) {
2125 if (err == -EAGAIN)
2126 goto restart;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002127 goto exit_unlock_free;
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002128 }
Jesse Grossccb13522011-10-25 19:26:31 -07002129
Jiri Benc9354d452017-11-02 17:04:37 -02002130 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2131 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002132 OVS_VPORT_CMD_NEW, GFP_KERNEL);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002133
Taehee Yoo6b660c42019-07-06 01:08:09 +09002134 new_headroom = netdev_get_fwd_headroom(vport->dev);
2135
2136 if (new_headroom > dp->max_headroom)
2137 ovs_update_headroom(dp, new_headroom);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002138 else
2139 netdev_set_rx_headroom(vport->dev, dp->max_headroom);
2140
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002141 BUG_ON(err < 0);
2142 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01002143
Johannes Berg2a94fe42013-11-19 15:19:39 +01002144 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002145 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002146
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002147exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002148 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002149 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002150 return err;
2151}
2152
2153static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
2154{
2155 struct nlattr **a = info->attrs;
2156 struct sk_buff *reply;
2157 struct vport *vport;
2158 int err;
2159
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002160 reply = ovs_vport_cmd_alloc_info();
2161 if (!reply)
2162 return -ENOMEM;
2163
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002164 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002165 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002166 err = PTR_ERR(vport);
2167 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002168 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002169
Jesse Grossccb13522011-10-25 19:26:31 -07002170 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07002171 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07002172 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002173 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07002174 }
2175
Jesse Grossf44f3402013-05-13 08:15:26 -07002176 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07002177 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07002178 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002179 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07002180 }
Jesse Grossa9341512013-03-26 15:48:38 -07002181
Alex Wang5cd667b2014-07-17 15:14:13 -07002182
2183 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
2184 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
2185
2186 err = ovs_vport_set_upcall_portids(vport, ids);
2187 if (err)
2188 goto exit_unlock_free;
2189 }
Jesse Grossccb13522011-10-25 19:26:31 -07002190
Jiri Benc9354d452017-11-02 17:04:37 -02002191 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2192 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002193 OVS_VPORT_CMD_SET, GFP_KERNEL);
Jesse Grossa9341512013-03-26 15:48:38 -07002194 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002195
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002196 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01002197 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002198 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002199
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002200exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002201 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002202 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002203 return err;
2204}
2205
2206static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2207{
Taehee Yoo6b660c42019-07-06 01:08:09 +09002208 bool update_headroom = false;
Jesse Grossccb13522011-10-25 19:26:31 -07002209 struct nlattr **a = info->attrs;
2210 struct sk_buff *reply;
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002211 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07002212 struct vport *vport;
Taehee Yoo6b660c42019-07-06 01:08:09 +09002213 unsigned int new_headroom;
Jesse Grossccb13522011-10-25 19:26:31 -07002214 int err;
2215
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002216 reply = ovs_vport_cmd_alloc_info();
2217 if (!reply)
2218 return -ENOMEM;
2219
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002220 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002221 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002222 err = PTR_ERR(vport);
2223 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002224 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002225
2226 if (vport->port_no == OVSP_LOCAL) {
2227 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002228 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002229 }
2230
Jiri Benc9354d452017-11-02 17:04:37 -02002231 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2232 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002233 OVS_VPORT_CMD_DEL, GFP_KERNEL);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002234 BUG_ON(err < 0);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002235
2236 /* the vport deletion may trigger dp headroom update */
2237 dp = vport->dp;
2238 if (netdev_get_fwd_headroom(vport->dev) == dp->max_headroom)
Taehee Yoo6b660c42019-07-06 01:08:09 +09002239 update_headroom = true;
2240
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002241 netdev_reset_rx_headroom(vport->dev);
Jesse Grossccb13522011-10-25 19:26:31 -07002242 ovs_dp_detach_port(vport);
Paolo Abeni3a927bc2016-02-26 10:45:39 +01002243
Taehee Yoo6b660c42019-07-06 01:08:09 +09002244 if (update_headroom) {
2245 new_headroom = ovs_get_max_headroom(dp);
2246
2247 if (new_headroom < dp->max_headroom)
2248 ovs_update_headroom(dp, new_headroom);
2249 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002250 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07002251
Johannes Berg2a94fe42013-11-19 15:19:39 +01002252 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002253 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002254
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002255exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002256 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002257 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002258 return err;
2259}
2260
2261static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2262{
2263 struct nlattr **a = info->attrs;
2264 struct ovs_header *ovs_header = info->userhdr;
2265 struct sk_buff *reply;
2266 struct vport *vport;
2267 int err;
2268
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002269 reply = ovs_vport_cmd_alloc_info();
2270 if (!reply)
2271 return -ENOMEM;
2272
Jesse Grossccb13522011-10-25 19:26:31 -07002273 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002274 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002275 err = PTR_ERR(vport);
2276 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002277 goto exit_unlock_free;
Jiri Benc9354d452017-11-02 17:04:37 -02002278 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2279 info->snd_portid, info->snd_seq, 0,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002280 OVS_VPORT_CMD_GET, GFP_ATOMIC);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002281 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002282 rcu_read_unlock();
2283
2284 return genlmsg_reply(reply, info);
2285
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002286exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07002287 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002288 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002289 return err;
2290}
2291
2292static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2293{
2294 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2295 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002296 int bucket = cb->args[0], skip = cb->args[1];
2297 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002298
Jesse Grossccb13522011-10-25 19:26:31 -07002299 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07002300 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08002301 if (!dp) {
2302 rcu_read_unlock();
2303 return -ENODEV;
2304 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002305 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002306 struct vport *vport;
2307
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002308 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002309 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002310 if (j >= skip &&
2311 ovs_vport_cmd_fill_info(vport, skb,
Jiri Benc9354d452017-11-02 17:04:37 -02002312 sock_net(skb->sk),
Eric W. Biederman15e47302012-09-07 20:12:54 +00002313 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002314 cb->nlh->nlmsg_seq,
2315 NLM_F_MULTI,
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +02002316 OVS_VPORT_CMD_GET,
2317 GFP_ATOMIC) < 0)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002318 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07002319
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002320 j++;
2321 }
2322 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002323 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002324out:
Jesse Grossccb13522011-10-25 19:26:31 -07002325 rcu_read_unlock();
2326
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002327 cb->args[0] = i;
2328 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07002329
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002330 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07002331}
2332
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002333static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
2334 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
2335 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
2336 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
2337 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
Li RongQingea8564c2019-09-24 19:11:52 +08002338 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_UNSPEC },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002339 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
Jiri Benc9354d452017-11-02 17:04:37 -02002340 [OVS_VPORT_ATTR_IFINDEX] = { .type = NLA_U32 },
2341 [OVS_VPORT_ATTR_NETNSID] = { .type = NLA_S32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002342};
2343
stephen hemminger48e48a72014-07-16 11:25:52 -07002344static const struct genl_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07002345 { .cmd = OVS_VPORT_CMD_NEW,
Johannes Bergef6243a2019-04-26 14:07:31 +02002346 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002347 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002348 .doit = ovs_vport_cmd_new
2349 },
2350 { .cmd = OVS_VPORT_CMD_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +02002351 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002352 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002353 .doit = ovs_vport_cmd_del
2354 },
2355 { .cmd = OVS_VPORT_CMD_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002356 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Jesse Grossccb13522011-10-25 19:26:31 -07002357 .flags = 0, /* OK for unprivileged users. */
Jesse Grossccb13522011-10-25 19:26:31 -07002358 .doit = ovs_vport_cmd_get,
2359 .dumpit = ovs_vport_cmd_dump
2360 },
2361 { .cmd = OVS_VPORT_CMD_SET,
Johannes Bergef6243a2019-04-26 14:07:31 +02002362 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Tycho Andersen4a926022016-02-05 09:20:52 -07002363 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
Jesse Grossccb13522011-10-25 19:26:31 -07002364 .doit = ovs_vport_cmd_set,
2365 },
2366};
2367
Johannes Berg56989f62016-10-24 14:40:05 +02002368struct genl_family dp_vport_genl_family __ro_after_init = {
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002369 .hdrsize = sizeof(struct ovs_header),
2370 .name = OVS_VPORT_FAMILY,
2371 .version = OVS_VPORT_VERSION,
2372 .maxattr = OVS_VPORT_ATTR_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +01002373 .policy = vport_policy,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002374 .netnsok = true,
2375 .parallel_ops = true,
2376 .ops = dp_vport_genl_ops,
2377 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
2378 .mcgrps = &ovs_dp_vport_multicast_group,
2379 .n_mcgrps = 1,
Johannes Berg489111e2016-10-24 14:40:03 +02002380 .module = THIS_MODULE,
Jesse Grossccb13522011-10-25 19:26:31 -07002381};
2382
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002383static struct genl_family * const dp_genl_families[] = {
2384 &dp_datapath_genl_family,
2385 &dp_vport_genl_family,
2386 &dp_flow_genl_family,
2387 &dp_packet_genl_family,
Andy Zhou96fbc132017-11-10 12:09:42 -08002388 &dp_meter_genl_family,
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002389#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
2390 &dp_ct_limit_genl_family,
2391#endif
Jesse Grossccb13522011-10-25 19:26:31 -07002392};
2393
2394static void dp_unregister_genl(int n_families)
2395{
2396 int i;
2397
2398 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002399 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002400}
2401
Johannes Berg56989f62016-10-24 14:40:05 +02002402static int __init dp_register_genl(void)
Jesse Grossccb13522011-10-25 19:26:31 -07002403{
Jesse Grossccb13522011-10-25 19:26:31 -07002404 int err;
2405 int i;
2406
Jesse Grossccb13522011-10-25 19:26:31 -07002407 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002408
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002409 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002410 if (err)
2411 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002412 }
2413
2414 return 0;
2415
2416error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002417 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002418 return err;
2419}
2420
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002421static int __net_init ovs_init_net(struct net *net)
2422{
2423 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2424
2425 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002426 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002427 return ovs_ct_init(net);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002428}
2429
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002430static void __net_exit list_vports_from_net(struct net *net, struct net *dnet,
2431 struct list_head *head)
2432{
2433 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2434 struct datapath *dp;
2435
2436 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2437 int i;
2438
2439 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2440 struct vport *vport;
2441
2442 hlist_for_each_entry(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002443 if (vport->ops->type != OVS_VPORT_TYPE_INTERNAL)
2444 continue;
2445
Thomas Grafbe4ace62015-07-21 10:44:04 +02002446 if (dev_net(vport->dev) == dnet)
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002447 list_add(&vport->detach_list, head);
2448 }
2449 }
2450 }
2451}
2452
2453static void __net_exit ovs_exit_net(struct net *dnet)
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002454{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002455 struct datapath *dp, *dp_next;
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002456 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id);
2457 struct vport *vport, *vport_next;
2458 struct net *net;
2459 LIST_HEAD(head);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002460
Joe Stringerc2ac6672015-08-26 11:31:52 -07002461 ovs_ct_exit(dnet);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002462 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002463 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2464 __dp_destroy(dp);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002465
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002466 down_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002467 for_each_net(net)
2468 list_vports_from_net(net, dnet, &head);
Kirill Tkhaif0b07bb12018-03-29 19:20:32 +03002469 up_read(&net_rwsem);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002470
2471 /* Detach all vports from given namespace. */
2472 list_for_each_entry_safe(vport, vport_next, &head, detach_list) {
2473 list_del(&vport->detach_list);
2474 ovs_dp_detach_port(vport);
2475 }
2476
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002477 ovs_unlock();
2478
2479 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002480}
2481
2482static struct pernet_operations ovs_net_ops = {
2483 .init = ovs_init_net,
2484 .exit = ovs_exit_net,
2485 .id = &ovs_net_id,
2486 .size = sizeof(struct ovs_net),
2487};
2488
Jesse Grossccb13522011-10-25 19:26:31 -07002489static int __init dp_init(void)
2490{
Jesse Grossccb13522011-10-25 19:26:31 -07002491 int err;
2492
YOSHIFUJI Hideaki / 吉藤英明3523b292013-01-09 07:19:55 +00002493 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002494
2495 pr_info("Open vSwitch switching datapath\n");
2496
Andy Zhou971427f32014-09-15 19:37:25 -07002497 err = action_fifos_init();
Jesse Grossccb13522011-10-25 19:26:31 -07002498 if (err)
2499 goto error;
2500
Andy Zhou971427f32014-09-15 19:37:25 -07002501 err = ovs_internal_dev_rtnl_link_register();
2502 if (err)
2503 goto error_action_fifos_exit;
2504
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002505 err = ovs_flow_init();
2506 if (err)
2507 goto error_unreg_rtnl_link;
2508
Jesse Grossccb13522011-10-25 19:26:31 -07002509 err = ovs_vport_init();
2510 if (err)
2511 goto error_flow_exit;
2512
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002513 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002514 if (err)
2515 goto error_vport_exit;
2516
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002517 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2518 if (err)
2519 goto error_netns_exit;
2520
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002521 err = ovs_netdev_init();
2522 if (err)
2523 goto error_unreg_notifier;
2524
Jesse Grossccb13522011-10-25 19:26:31 -07002525 err = dp_register_genl();
2526 if (err < 0)
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002527 goto error_unreg_netdev;
Jesse Grossccb13522011-10-25 19:26:31 -07002528
Jesse Grossccb13522011-10-25 19:26:31 -07002529 return 0;
2530
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002531error_unreg_netdev:
2532 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002533error_unreg_notifier:
2534 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002535error_netns_exit:
2536 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002537error_vport_exit:
2538 ovs_vport_exit();
2539error_flow_exit:
2540 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002541error_unreg_rtnl_link:
2542 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002543error_action_fifos_exit:
2544 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002545error:
2546 return err;
2547}
2548
2549static void dp_cleanup(void)
2550{
Jesse Grossccb13522011-10-25 19:26:31 -07002551 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002552 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002553 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002554 unregister_pernet_device(&ovs_net_ops);
2555 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002556 ovs_vport_exit();
2557 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002558 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002559 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002560}
2561
2562module_init(dp_init);
2563module_exit(dp_cleanup);
2564
2565MODULE_DESCRIPTION("Open vSwitch switching datapath");
2566MODULE_LICENSE("GPL");
Thadeu Lima de Souza Cascardoed227092016-09-09 17:42:30 -03002567MODULE_ALIAS_GENL_FAMILY(OVS_DATAPATH_FAMILY);
2568MODULE_ALIAS_GENL_FAMILY(OVS_VPORT_FAMILY);
2569MODULE_ALIAS_GENL_FAMILY(OVS_FLOW_FAMILY);
2570MODULE_ALIAS_GENL_FAMILY(OVS_PACKET_FAMILY);
Andy Zhou96fbc132017-11-10 12:09:42 -08002571MODULE_ALIAS_GENL_FAMILY(OVS_METER_FAMILY);
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -07002572MODULE_ALIAS_GENL_FAMILY(OVS_CT_LIMIT_FAMILY);