blob: 01d69680ba5d0f478a6d0aeea9489d859b43ca2e [file] [log] [blame]
Jesse Grossccb13522011-10-25 19:26:31 -07001/*
Ben Pfaffad552002014-05-06 16:48:38 -07002 * Copyright (c) 2007-2014 Nicira, Inc.
Jesse Grossccb13522011-10-25 19:26:31 -07003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301, USA
17 */
18
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/if_arp.h>
24#include <linux/if_vlan.h>
25#include <linux/in.h>
26#include <linux/ip.h>
27#include <linux/jhash.h>
28#include <linux/delay.h>
29#include <linux/time.h>
30#include <linux/etherdevice.h>
31#include <linux/genetlink.h>
32#include <linux/kernel.h>
33#include <linux/kthread.h>
34#include <linux/mutex.h>
35#include <linux/percpu.h>
36#include <linux/rcupdate.h>
37#include <linux/tcp.h>
38#include <linux/udp.h>
Jesse Grossccb13522011-10-25 19:26:31 -070039#include <linux/ethtool.h>
40#include <linux/wait.h>
Jesse Grossccb13522011-10-25 19:26:31 -070041#include <asm/div64.h>
42#include <linux/highmem.h>
43#include <linux/netfilter_bridge.h>
44#include <linux/netfilter_ipv4.h>
45#include <linux/inetdevice.h>
46#include <linux/list.h>
47#include <linux/openvswitch.h>
48#include <linux/rculist.h>
49#include <linux/dmi.h>
Jesse Grossccb13522011-10-25 19:26:31 -070050#include <net/genetlink.h>
Pravin B Shelar46df7b82012-02-22 19:58:59 -080051#include <net/net_namespace.h>
52#include <net/netns/generic.h>
Jesse Grossccb13522011-10-25 19:26:31 -070053
54#include "datapath.h"
55#include "flow.h"
Andy Zhoue80857c2014-01-21 09:31:04 -080056#include "flow_table.h"
Pravin B Shelare6445712013-10-03 18:16:47 -070057#include "flow_netlink.h"
Jesse Grossccb13522011-10-25 19:26:31 -070058#include "vport-internal_dev.h"
Thomas Grafcff63a52013-04-29 13:06:41 +000059#include "vport-netdev.h"
Jesse Grossccb13522011-10-25 19:26:31 -070060
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070061int ovs_net_id __read_mostly;
Pravin B Shelar9ba559d2014-11-06 06:44:27 -080062EXPORT_SYMBOL_GPL(ovs_net_id);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070063
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070064static struct genl_family dp_packet_genl_family;
65static struct genl_family dp_flow_genl_family;
66static struct genl_family dp_datapath_genl_family;
67
Joe Stringer74ed7ab2015-01-21 16:42:52 -080068static const struct nla_policy flow_policy[];
69
stephen hemminger48e48a72014-07-16 11:25:52 -070070static const struct genl_multicast_group ovs_dp_flow_multicast_group = {
71 .name = OVS_FLOW_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070072};
73
stephen hemminger48e48a72014-07-16 11:25:52 -070074static const struct genl_multicast_group ovs_dp_datapath_multicast_group = {
75 .name = OVS_DATAPATH_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070076};
77
stephen hemminger48e48a72014-07-16 11:25:52 -070078static const struct genl_multicast_group ovs_dp_vport_multicast_group = {
79 .name = OVS_VPORT_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070080};
81
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070082/* Check if need to build a reply message.
83 * OVS userspace sets the NLM_F_ECHO flag if it needs the reply. */
Samuel Gauthier9b67aa42014-09-18 10:31:04 +020084static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
85 unsigned int group)
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070086{
87 return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
Johannes Bergf8403a22014-12-22 18:56:36 +010088 genl_has_listeners(family, genl_info_net(info), group);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070089}
90
Johannes Berg68eb5502013-11-19 15:19:38 +010091static void ovs_notify(struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +010092 struct sk_buff *skb, struct genl_info *info)
Thomas Grafed661182013-03-29 14:46:50 +010093{
Johannes Berg68eb5502013-11-19 15:19:38 +010094 genl_notify(family, skb, genl_info_net(info), info->snd_portid,
Johannes Berg2a94fe42013-11-19 15:19:39 +010095 0, info->nlhdr, GFP_KERNEL);
Thomas Grafed661182013-03-29 14:46:50 +010096}
97
Pravin B Shelar46df7b82012-02-22 19:58:59 -080098/**
Jesse Grossccb13522011-10-25 19:26:31 -070099 * DOC: Locking:
100 *
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700101 * All writes e.g. Writes to device state (add/remove datapath, port, set
102 * operations on vports, etc.), Writes to other state (flow table
103 * modifications, set miscellaneous datapath parameters, etc.) are protected
104 * by ovs_lock.
Jesse Grossccb13522011-10-25 19:26:31 -0700105 *
106 * Reads are protected by RCU.
107 *
108 * There are a few special cases (mostly stats) that have their own
109 * synchronization but they nest under all of above and don't interact with
110 * each other.
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700111 *
112 * The RTNL lock nests inside ovs_mutex.
Jesse Grossccb13522011-10-25 19:26:31 -0700113 */
114
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700115static DEFINE_MUTEX(ovs_mutex);
116
117void ovs_lock(void)
118{
119 mutex_lock(&ovs_mutex);
120}
121
122void ovs_unlock(void)
123{
124 mutex_unlock(&ovs_mutex);
125}
126
127#ifdef CONFIG_LOCKDEP
128int lockdep_ovsl_is_held(void)
129{
130 if (debug_locks)
131 return lockdep_is_held(&ovs_mutex);
132 else
133 return 1;
134}
Pravin B Shelar9ba559d2014-11-06 06:44:27 -0800135EXPORT_SYMBOL_GPL(lockdep_ovsl_is_held);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700136#endif
137
Jesse Grossccb13522011-10-25 19:26:31 -0700138static struct vport *new_vport(const struct vport_parms *);
Thomas Graf8055a892013-12-13 15:22:20 +0100139static int queue_gso_packets(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800140 const struct sw_flow_key *,
Jesse Grossccb13522011-10-25 19:26:31 -0700141 const struct dp_upcall_info *);
Thomas Graf8055a892013-12-13 15:22:20 +0100142static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800143 const struct sw_flow_key *,
Jesse Grossccb13522011-10-25 19:26:31 -0700144 const struct dp_upcall_info *);
145
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700146/* Must be called with rcu_read_lock. */
147static struct datapath *get_dp_rcu(struct net *net, int dp_ifindex)
Jesse Grossccb13522011-10-25 19:26:31 -0700148{
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700149 struct net_device *dev = dev_get_by_index_rcu(net, dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700150
Jesse Grossccb13522011-10-25 19:26:31 -0700151 if (dev) {
152 struct vport *vport = ovs_internal_dev_get_vport(dev);
153 if (vport)
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700154 return vport->dp;
Jesse Grossccb13522011-10-25 19:26:31 -0700155 }
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700156
157 return NULL;
158}
159
160/* The caller must hold either ovs_mutex or rcu_read_lock to keep the
161 * returned dp pointer valid.
162 */
163static inline struct datapath *get_dp(struct net *net, int dp_ifindex)
164{
165 struct datapath *dp;
166
167 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_ovsl_is_held());
168 rcu_read_lock();
169 dp = get_dp_rcu(net, dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700170 rcu_read_unlock();
171
172 return dp;
173}
174
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700175/* Must be called with rcu_read_lock or ovs_mutex. */
Andy Zhou971427f32014-09-15 19:37:25 -0700176const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700177{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700178 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700179 return vport->ops->get_name(vport);
180}
181
Thomas Graf12eb18f2014-11-06 06:58:52 -0800182static int get_dpifindex(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700183{
184 struct vport *local;
185 int ifindex;
186
187 rcu_read_lock();
188
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700189 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700190 if (local)
Thomas Grafcff63a52013-04-29 13:06:41 +0000191 ifindex = netdev_vport_priv(local)->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700192 else
193 ifindex = 0;
194
195 rcu_read_unlock();
196
197 return ifindex;
198}
199
200static void destroy_dp_rcu(struct rcu_head *rcu)
201{
202 struct datapath *dp = container_of(rcu, struct datapath, rcu);
203
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700204 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700205 free_percpu(dp->stats_percpu);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700206 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -0700207 kfree(dp);
208}
209
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700210static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
211 u16 port_no)
212{
213 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
214}
215
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700216/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700217struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
218{
219 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700220 struct hlist_head *head;
221
222 head = vport_hash_bucket(dp, port_no);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800223 hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700224 if (vport->port_no == port_no)
225 return vport;
226 }
227 return NULL;
228}
229
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700230/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700231static struct vport *new_vport(const struct vport_parms *parms)
232{
233 struct vport *vport;
234
235 vport = ovs_vport_add(parms);
236 if (!IS_ERR(vport)) {
237 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700238 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700239
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700240 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700241 }
Jesse Grossccb13522011-10-25 19:26:31 -0700242 return vport;
243}
244
Jesse Grossccb13522011-10-25 19:26:31 -0700245void ovs_dp_detach_port(struct vport *p)
246{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700247 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700248
249 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700250 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700251
252 /* Then destroy it. */
253 ovs_vport_del(p);
254}
255
256/* Must be called with rcu_read_lock. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700257void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700258{
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700259 const struct vport *p = OVS_CB(skb)->input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700260 struct datapath *dp = p->dp;
261 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700262 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700263 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700264 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700265 u32 n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700266
Shan Wei404f2f12012-11-13 09:52:25 +0800267 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700268
Jesse Grossccb13522011-10-25 19:26:31 -0700269 /* Look up flow. */
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700270 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, &n_mask_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700271 if (unlikely(!flow)) {
272 struct dp_upcall_info upcall;
Pravin B Shelar8c8b1b82014-09-15 19:28:44 -0700273 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700274
Neil McKeeccea7442015-05-26 20:59:43 -0700275 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700276 upcall.cmd = OVS_PACKET_CMD_MISS;
Alex Wang5cd667b2014-07-17 15:14:13 -0700277 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800278 error = ovs_dp_upcall(dp, skb, key, &upcall);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800279 if (unlikely(error))
280 kfree_skb(skb);
281 else
282 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700283 stats_counter = &stats->n_missed;
284 goto out;
285 }
286
Lorand Jakabd98612b2014-10-06 05:45:32 -0700287 ovs_flow_stats_update(flow, key->tp.flags, skb);
288 sf_acts = rcu_dereference(flow->sf_acts);
289 ovs_execute_actions(dp, skb, sf_acts, key);
Jesse Grossccb13522011-10-25 19:26:31 -0700290
Pravin B Shelare298e502013-10-29 17:22:21 -0700291 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700292
293out:
294 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800295 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700296 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700297 stats->n_mask_hit += n_mask_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800298 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700299}
300
Jesse Grossccb13522011-10-25 19:26:31 -0700301int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800302 const struct sw_flow_key *key,
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800303 const struct dp_upcall_info *upcall_info)
Jesse Grossccb13522011-10-25 19:26:31 -0700304{
305 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700306 int err;
307
Eric W. Biederman15e47302012-09-07 20:12:54 +0000308 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700309 err = -ENOTCONN;
310 goto err;
311 }
312
Jesse Grossccb13522011-10-25 19:26:31 -0700313 if (!skb_is_gso(skb))
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800314 err = queue_userspace_packet(dp, skb, key, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700315 else
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800316 err = queue_gso_packets(dp, skb, key, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700317 if (err)
318 goto err;
319
320 return 0;
321
322err:
Shan Wei404f2f12012-11-13 09:52:25 +0800323 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700324
WANG Congdf9d9fd2014-02-14 15:10:46 -0800325 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700326 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800327 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700328
329 return err;
330}
331
Thomas Graf8055a892013-12-13 15:22:20 +0100332static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800333 const struct sw_flow_key *key,
Jesse Grossccb13522011-10-25 19:26:31 -0700334 const struct dp_upcall_info *upcall_info)
335{
Ben Pfaffa1b5d0d2012-07-20 14:47:54 -0700336 unsigned short gso_type = skb_shinfo(skb)->gso_type;
Jesse Grossccb13522011-10-25 19:26:31 -0700337 struct sw_flow_key later_key;
338 struct sk_buff *segs, *nskb;
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800339 struct ovs_skb_cb ovs_cb;
Jesse Grossccb13522011-10-25 19:26:31 -0700340 int err;
341
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800342 ovs_cb = *OVS_CB(skb);
Thomas Graf09c5e602013-12-13 15:22:22 +0100343 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800344 *OVS_CB(skb) = ovs_cb;
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700345 if (IS_ERR(segs))
346 return PTR_ERR(segs);
Florian Westphal330966e2014-10-20 13:49:17 +0200347 if (segs == NULL)
348 return -EINVAL;
Jesse Grossccb13522011-10-25 19:26:31 -0700349
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800350 if (gso_type & SKB_GSO_UDP) {
351 /* The initial flow key extracted by ovs_flow_key_extract()
352 * in this case is for a first fragment, so we need to
353 * properly mark later fragments.
354 */
355 later_key = *key;
356 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
357 }
358
Jesse Grossccb13522011-10-25 19:26:31 -0700359 /* Queue all of the segments. */
360 skb = segs;
361 do {
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800362 *OVS_CB(skb) = ovs_cb;
363 if (gso_type & SKB_GSO_UDP && skb != segs)
364 key = &later_key;
365
366 err = queue_userspace_packet(dp, skb, key, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700367 if (err)
368 break;
369
Jesse Grossccb13522011-10-25 19:26:31 -0700370 } while ((skb = skb->next));
371
372 /* Free all of the segments. */
373 skb = segs;
374 do {
375 nskb = skb->next;
376 if (err)
377 kfree_skb(skb);
378 else
379 consume_skb(skb);
380 } while ((skb = nskb));
381 return err;
382}
383
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800384static size_t upcall_msg_size(const struct dp_upcall_info *upcall_info,
Thomas Grafbda56f12013-12-13 15:22:21 +0100385 unsigned int hdrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100386{
387 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100388 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
Joe Stringer41af73e2014-10-18 16:14:14 -0700389 + nla_total_size(ovs_key_attr_size()); /* OVS_PACKET_ATTR_KEY */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100390
391 /* OVS_PACKET_ATTR_USERDATA */
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800392 if (upcall_info->userdata)
393 size += NLA_ALIGN(upcall_info->userdata->nla_len);
394
395 /* OVS_PACKET_ATTR_EGRESS_TUN_KEY */
396 if (upcall_info->egress_tun_info)
397 size += nla_total_size(ovs_tun_key_attr_size());
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100398
Neil McKeeccea7442015-05-26 20:59:43 -0700399 /* OVS_PACKET_ATTR_ACTIONS */
400 if (upcall_info->actions_len)
401 size += nla_total_size(upcall_info->actions_len);
402
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100403 return size;
404}
405
Thomas Graf8055a892013-12-13 15:22:20 +0100406static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800407 const struct sw_flow_key *key,
Jesse Grossccb13522011-10-25 19:26:31 -0700408 const struct dp_upcall_info *upcall_info)
409{
410 struct ovs_header *upcall;
411 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800412 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700413 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100414 struct genl_info info = {
Thomas Graf8055a892013-12-13 15:22:20 +0100415 .dst_sk = ovs_dp_get_net(dp)->genl_sock,
Thomas Graf795449d2013-11-30 13:21:32 +0100416 .snd_portid = upcall_info->portid,
417 };
418 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100419 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100420 int err, dp_ifindex;
421
422 dp_ifindex = get_dpifindex(dp);
423 if (!dp_ifindex)
424 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700425
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100426 if (skb_vlan_tag_present(skb)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700427 nskb = skb_clone(skb, GFP_ATOMIC);
428 if (!nskb)
429 return -ENOMEM;
430
Jiri Pirko59682502014-11-19 14:04:59 +0100431 nskb = __vlan_hwaccel_push_inside(nskb);
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000432 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700433 return -ENOMEM;
434
Jesse Grossccb13522011-10-25 19:26:31 -0700435 skb = nskb;
436 }
437
438 if (nla_attr_size(skb->len) > USHRT_MAX) {
439 err = -EFBIG;
440 goto out;
441 }
442
Thomas Grafbda56f12013-12-13 15:22:21 +0100443 /* Complete checksum if needed */
444 if (skb->ip_summed == CHECKSUM_PARTIAL &&
445 (err = skb_checksum_help(skb)))
446 goto out;
447
448 /* Older versions of OVS user space enforce alignment of the last
449 * Netlink attribute to NLA_ALIGNTO which would require extensive
450 * padding logic. Only perform zerocopy if padding is not required.
451 */
452 if (dp->user_features & OVS_DP_F_UNALIGNED)
453 hlen = skb_zerocopy_headlen(skb);
454 else
455 hlen = skb->len;
456
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800457 len = upcall_msg_size(upcall_info, hlen);
Thomas Graf795449d2013-11-30 13:21:32 +0100458 user_skb = genlmsg_new_unicast(len, &info, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700459 if (!user_skb) {
460 err = -ENOMEM;
461 goto out;
462 }
463
464 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
465 0, upcall_info->cmd);
466 upcall->dp_ifindex = dp_ifindex;
467
Joe Stringer5b4237b2015-01-21 16:42:48 -0800468 err = ovs_nla_put_key(key, key, OVS_PACKET_ATTR_KEY, false, user_skb);
Andy Zhouf53e3832014-07-17 15:17:44 -0700469 BUG_ON(err);
Jesse Grossccb13522011-10-25 19:26:31 -0700470
471 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800472 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
473 nla_len(upcall_info->userdata),
474 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700475
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800476 if (upcall_info->egress_tun_info) {
477 nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_EGRESS_TUN_KEY);
478 err = ovs_nla_put_egress_tunnel_key(user_skb,
479 upcall_info->egress_tun_info);
480 BUG_ON(err);
481 nla_nest_end(user_skb, nla);
482 }
483
Neil McKeeccea7442015-05-26 20:59:43 -0700484 if (upcall_info->actions_len) {
485 nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_ACTIONS);
486 err = ovs_nla_put_actions(upcall_info->actions,
487 upcall_info->actions_len,
488 user_skb);
489 if (!err)
490 nla_nest_end(user_skb, nla);
491 else
492 nla_nest_cancel(user_skb, nla);
493 }
494
Thomas Grafbda56f12013-12-13 15:22:21 +0100495 /* Only reserve room for attribute header, packet data is added
496 * in skb_zerocopy() */
497 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
498 err = -ENOBUFS;
499 goto out;
500 }
501 nla->nla_len = nla_attr_size(skb->len);
Jesse Grossccb13522011-10-25 19:26:31 -0700502
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000503 err = skb_zerocopy(user_skb, skb, skb->len, hlen);
504 if (err)
505 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700506
Thomas Grafaea0bb42014-01-14 16:27:49 +0000507 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
508 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
509 size_t plen = NLA_ALIGN(user_skb->len) - user_skb->len;
510
511 if (plen > 0)
512 memset(skb_put(user_skb, plen), 0, plen);
513 }
514
Thomas Grafbda56f12013-12-13 15:22:21 +0100515 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
516
Thomas Graf8055a892013-12-13 15:22:20 +0100517 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800518 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700519out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000520 if (err)
521 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800522 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700523 kfree_skb(nskb);
524 return err;
525}
526
Jesse Grossccb13522011-10-25 19:26:31 -0700527static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
528{
529 struct ovs_header *ovs_header = info->userhdr;
530 struct nlattr **a = info->attrs;
531 struct sw_flow_actions *acts;
532 struct sk_buff *packet;
533 struct sw_flow *flow;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700534 struct sw_flow_actions *sf_acts;
Jesse Grossccb13522011-10-25 19:26:31 -0700535 struct datapath *dp;
536 struct ethhdr *eth;
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700537 struct vport *input_vport;
Jesse Grossccb13522011-10-25 19:26:31 -0700538 int len;
539 int err;
Thomas Graf1ba39802015-01-14 13:56:19 +0000540 bool log = !a[OVS_PACKET_ATTR_PROBE];
Jesse Grossccb13522011-10-25 19:26:31 -0700541
542 err = -EINVAL;
543 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100544 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700545 goto err;
546
547 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
548 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
549 err = -ENOMEM;
550 if (!packet)
551 goto err;
552 skb_reserve(packet, NET_IP_ALIGN);
553
Thomas Graf32686a92013-03-29 14:46:48 +0100554 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700555
556 skb_reset_mac_header(packet);
557 eth = eth_hdr(packet);
558
559 /* Normally, setting the skb 'protocol' field would be handled by a
560 * call to eth_type_trans(), but it assumes there's a sending
561 * device, which we may not have. */
Alexander Duyck6713fc92015-05-04 14:34:05 -0700562 if (eth_proto_is_802_3(eth->h_proto))
Jesse Grossccb13522011-10-25 19:26:31 -0700563 packet->protocol = eth->h_proto;
564 else
565 packet->protocol = htons(ETH_P_802_2);
566
567 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700568 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700569 err = PTR_ERR(flow);
570 if (IS_ERR(flow))
571 goto err_kfree_skb;
572
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700573 err = ovs_flow_key_extract_userspace(a[OVS_PACKET_ATTR_KEY], packet,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800574 &flow->key, log);
Jesse Grossccb13522011-10-25 19:26:31 -0700575 if (err)
576 goto err_flow_free;
577
Pravin B Shelare6445712013-10-03 18:16:47 -0700578 err = ovs_nla_copy_actions(a[OVS_PACKET_ATTR_ACTIONS],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800579 &flow->key, &acts, log);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700580 if (err)
581 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700582
Jesse Grossf5796682014-10-03 15:35:33 -0700583 rcu_assign_pointer(flow->sf_acts, acts);
Jesse Grossf5796682014-10-03 15:35:33 -0700584 OVS_CB(packet)->egress_tun_info = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700585 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800586 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700587
588 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -0700589 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700590 err = -ENODEV;
591 if (!dp)
592 goto err_unlock;
593
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700594 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
595 if (!input_vport)
596 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
597
598 if (!input_vport)
599 goto err_unlock;
600
601 OVS_CB(packet)->input_vport = input_vport;
Lorand Jakabd98612b2014-10-06 05:45:32 -0700602 sf_acts = rcu_dereference(flow->sf_acts);
Pravin B Shelar83c8df22014-09-15 19:20:31 -0700603
Jesse Grossccb13522011-10-25 19:26:31 -0700604 local_bh_disable();
Lorand Jakabd98612b2014-10-06 05:45:32 -0700605 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700606 local_bh_enable();
607 rcu_read_unlock();
608
Andy Zhou03f0d912013-08-07 20:01:00 -0700609 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700610 return err;
611
612err_unlock:
613 rcu_read_unlock();
614err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700615 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700616err_kfree_skb:
617 kfree_skb(packet);
618err:
619 return err;
620}
621
622static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100623 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700624 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
625 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
Thomas Graf1ba39802015-01-14 13:56:19 +0000626 [OVS_PACKET_ATTR_PROBE] = { .type = NLA_FLAG },
Jesse Grossccb13522011-10-25 19:26:31 -0700627};
628
Johannes Berg4534de82013-11-14 17:14:46 +0100629static const struct genl_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700630 { .cmd = OVS_PACKET_CMD_EXECUTE,
631 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
632 .policy = packet_policy,
633 .doit = ovs_packet_cmd_execute
634 }
635};
636
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700637static struct genl_family dp_packet_genl_family = {
638 .id = GENL_ID_GENERATE,
639 .hdrsize = sizeof(struct ovs_header),
640 .name = OVS_PACKET_FAMILY,
641 .version = OVS_PACKET_VERSION,
642 .maxattr = OVS_PACKET_ATTR_MAX,
643 .netnsok = true,
644 .parallel_ops = true,
645 .ops = dp_packet_genl_ops,
646 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
647};
648
Thomas Graf12eb18f2014-11-06 06:58:52 -0800649static void get_dp_stats(const struct datapath *dp, struct ovs_dp_stats *stats,
Andy Zhou1bd71162013-10-22 10:42:46 -0700650 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700651{
652 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700653
Andy Zhou1bd71162013-10-22 10:42:46 -0700654 memset(mega_stats, 0, sizeof(*mega_stats));
655
Pravin B Shelarb637e492013-10-04 00:14:23 -0700656 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700657 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700658
659 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700660
Jesse Grossccb13522011-10-25 19:26:31 -0700661 for_each_possible_cpu(i) {
662 const struct dp_stats_percpu *percpu_stats;
663 struct dp_stats_percpu local_stats;
664 unsigned int start;
665
666 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
667
668 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700669 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700670 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700671 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700672
673 stats->n_hit += local_stats.n_hit;
674 stats->n_missed += local_stats.n_missed;
675 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700676 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700677 }
678}
679
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800680static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100681{
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800682 return ovs_identifier_is_ufid(sfid) &&
683 !(ufid_flags & OVS_UFID_F_OMIT_KEY);
684}
685
686static bool should_fill_mask(uint32_t ufid_flags)
687{
688 return !(ufid_flags & OVS_UFID_F_OMIT_MASK);
689}
690
691static bool should_fill_actions(uint32_t ufid_flags)
692{
693 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS);
694}
695
696static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts,
697 const struct sw_flow_id *sfid,
698 uint32_t ufid_flags)
699{
700 size_t len = NLMSG_ALIGN(sizeof(struct ovs_header));
701
702 /* OVS_FLOW_ATTR_UFID */
703 if (sfid && ovs_identifier_is_ufid(sfid))
704 len += nla_total_size(sfid->ufid_len);
705
706 /* OVS_FLOW_ATTR_KEY */
707 if (!sfid || should_fill_key(sfid, ufid_flags))
708 len += nla_total_size(ovs_key_attr_size());
709
710 /* OVS_FLOW_ATTR_MASK */
711 if (should_fill_mask(ufid_flags))
712 len += nla_total_size(ovs_key_attr_size());
713
714 /* OVS_FLOW_ATTR_ACTIONS */
715 if (should_fill_actions(ufid_flags))
716 len += nla_total_size(acts->actions_len);
717
718 return len
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100719 + nla_total_size(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
720 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800721 + nla_total_size(8); /* OVS_FLOW_ATTR_USED */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100722}
723
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700724/* Called with ovs_mutex or RCU read lock. */
Joe Stringerca7105f2014-09-08 13:09:37 -0700725static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
726 struct sk_buff *skb)
727{
728 struct ovs_flow_stats stats;
729 __be16 tcp_flags;
730 unsigned long used;
Andy Zhou03f0d912013-08-07 20:01:00 -0700731
Pravin B Shelare298e502013-10-29 17:22:21 -0700732 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700733
David S. Miller028d6a62012-03-29 23:20:48 -0400734 if (used &&
735 nla_put_u64(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used)))
Joe Stringerca7105f2014-09-08 13:09:37 -0700736 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700737
David S. Miller028d6a62012-03-29 23:20:48 -0400738 if (stats.n_packets &&
Pravin B Shelare298e502013-10-29 17:22:21 -0700739 nla_put(skb, OVS_FLOW_ATTR_STATS, sizeof(struct ovs_flow_stats), &stats))
Joe Stringerca7105f2014-09-08 13:09:37 -0700740 return -EMSGSIZE;
Jesse Grossccb13522011-10-25 19:26:31 -0700741
Pravin B Shelare298e502013-10-29 17:22:21 -0700742 if ((u8)ntohs(tcp_flags) &&
743 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
Joe Stringerca7105f2014-09-08 13:09:37 -0700744 return -EMSGSIZE;
745
746 return 0;
747}
748
749/* Called with ovs_mutex or RCU read lock. */
750static int ovs_flow_cmd_fill_actions(const struct sw_flow *flow,
751 struct sk_buff *skb, int skb_orig_len)
752{
753 struct nlattr *start;
754 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700755
756 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
757 * this is the first flow to be dumped into 'skb'. This is unusual for
758 * Netlink but individual action lists can be longer than
759 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
760 * The userspace caller can always fetch the actions separately if it
761 * really wants them. (Most userspace callers in fact don't care.)
762 *
763 * This can only fail for dump operations because the skb is always
764 * properly sized for single flows.
765 */
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700766 start = nla_nest_start(skb, OVS_FLOW_ATTR_ACTIONS);
767 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700768 const struct sw_flow_actions *sf_acts;
769
Jesse Gross663efa32013-12-03 10:58:53 -0800770 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700771 err = ovs_nla_put_actions(sf_acts->actions,
772 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700773
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700774 if (!err)
775 nla_nest_end(skb, start);
776 else {
777 if (skb_orig_len)
Joe Stringerca7105f2014-09-08 13:09:37 -0700778 return err;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700779
780 nla_nest_cancel(skb, start);
781 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700782 } else if (skb_orig_len) {
783 return -EMSGSIZE;
784 }
785
786 return 0;
787}
788
789/* Called with ovs_mutex or RCU read lock. */
790static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
791 struct sk_buff *skb, u32 portid,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800792 u32 seq, u32 flags, u8 cmd, u32 ufid_flags)
Joe Stringerca7105f2014-09-08 13:09:37 -0700793{
794 const int skb_orig_len = skb->len;
795 struct ovs_header *ovs_header;
796 int err;
797
798 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family,
799 flags, cmd);
800 if (!ovs_header)
801 return -EMSGSIZE;
802
803 ovs_header->dp_ifindex = dp_ifindex;
804
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800805 err = ovs_nla_put_identifier(flow, skb);
Joe Stringer5b4237b2015-01-21 16:42:48 -0800806 if (err)
807 goto error;
808
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800809 if (should_fill_key(&flow->id, ufid_flags)) {
810 err = ovs_nla_put_masked_key(flow, skb);
811 if (err)
812 goto error;
813 }
814
815 if (should_fill_mask(ufid_flags)) {
816 err = ovs_nla_put_mask(flow, skb);
817 if (err)
818 goto error;
819 }
Joe Stringerca7105f2014-09-08 13:09:37 -0700820
821 err = ovs_flow_cmd_fill_stats(flow, skb);
822 if (err)
823 goto error;
824
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800825 if (should_fill_actions(ufid_flags)) {
826 err = ovs_flow_cmd_fill_actions(flow, skb, skb_orig_len);
827 if (err)
828 goto error;
829 }
Jesse Grossccb13522011-10-25 19:26:31 -0700830
Johannes Berg053c0952015-01-16 22:09:00 +0100831 genlmsg_end(skb, ovs_header);
832 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700833
Jesse Grossccb13522011-10-25 19:26:31 -0700834error:
835 genlmsg_cancel(skb, ovs_header);
836 return err;
837}
838
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700839/* May not be called with RCU read lock. */
840static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800841 const struct sw_flow_id *sfid,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700842 struct genl_info *info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800843 bool always,
844 uint32_t ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700845{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700846 struct sk_buff *skb;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800847 size_t len;
Jesse Grossccb13522011-10-25 19:26:31 -0700848
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200849 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700850 return NULL;
851
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800852 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags);
853 skb = genlmsg_new_unicast(len, info, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700854 if (!skb)
855 return ERR_PTR(-ENOMEM);
856
857 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700858}
859
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700860/* Called with ovs_mutex. */
861static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
862 int dp_ifindex,
863 struct genl_info *info, u8 cmd,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800864 bool always, u32 ufid_flags)
Jesse Grossccb13522011-10-25 19:26:31 -0700865{
866 struct sk_buff *skb;
867 int retval;
868
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800869 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts),
870 &flow->id, info, always, ufid_flags);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530871 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700872 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700873
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700874 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
875 info->snd_portid, info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800876 cmd, ufid_flags);
Jesse Grossccb13522011-10-25 19:26:31 -0700877 BUG_ON(retval < 0);
878 return skb;
879}
880
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700881static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700882{
883 struct nlattr **a = info->attrs;
884 struct ovs_header *ovs_header = info->userhdr;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800885 struct sw_flow *flow = NULL, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700886 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700887 struct sk_buff *reply;
888 struct datapath *dp;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800889 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700890 struct sw_flow_actions *acts;
891 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800892 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700893 int error;
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800894 bool log = !a[OVS_FLOW_ATTR_PROBE];
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700895
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700896 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700897 error = -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700898 if (!a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800899 OVS_NLERR(log, "Flow key attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700900 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700901 }
902 if (!a[OVS_FLOW_ATTR_ACTIONS]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800903 OVS_NLERR(log, "Flow actions attr not present in new flow.");
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700904 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -0700905 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700906
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700907 /* Most of the time we need to allocate a new flow, do it before
908 * locking.
909 */
910 new_flow = ovs_flow_alloc();
911 if (IS_ERR(new_flow)) {
912 error = PTR_ERR(new_flow);
913 goto error;
914 }
915
916 /* Extract key. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800917 ovs_match_init(&match, &key, &mask);
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800918 error = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY],
919 a[OVS_FLOW_ATTR_MASK], log);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700920 if (error)
921 goto err_kfree_flow;
922
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800923 ovs_flow_mask_key(&new_flow->key, &key, &mask);
924
925 /* Extract flow identifier. */
926 error = ovs_nla_get_identifier(&new_flow->id, a[OVS_FLOW_ATTR_UFID],
927 &key, log);
928 if (error)
929 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700930
931 /* Validate actions. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700932 error = ovs_nla_copy_actions(a[OVS_FLOW_ATTR_ACTIONS], &new_flow->key,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800933 &acts, log);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700934 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800935 OVS_NLERR(log, "Flow actions may not be safe on all matching packets.");
Pravin B Shelar2fdb9572014-10-19 11:19:51 -0700936 goto err_kfree_flow;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700937 }
938
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800939 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false,
940 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700941 if (IS_ERR(reply)) {
942 error = PTR_ERR(reply);
943 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700944 }
945
946 ovs_lock();
947 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700948 if (unlikely(!dp)) {
949 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700950 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700951 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800952
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700953 /* Check if this is a duplicate flow */
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800954 if (ovs_identifier_is_ufid(&new_flow->id))
955 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &new_flow->id);
956 if (!flow)
957 flow = ovs_flow_tbl_lookup(&dp->table, &key);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700958 if (likely(!flow)) {
959 rcu_assign_pointer(new_flow->sf_acts, acts);
960
961 /* Put flow in bucket. */
962 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
963 if (unlikely(error)) {
964 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700965 goto err_unlock_ovs;
966 }
967
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700968 if (unlikely(reply)) {
969 error = ovs_flow_cmd_fill_info(new_flow,
970 ovs_header->dp_ifindex,
971 reply, info->snd_portid,
972 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800973 OVS_FLOW_CMD_NEW,
974 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700975 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700976 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700977 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700978 } else {
979 struct sw_flow_actions *old_acts;
980
981 /* Bail out if we're not allowed to modify an existing flow.
982 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
983 * because Generic Netlink treats the latter as a dump
984 * request. We also accept NLM_F_EXCL in case that bug ever
985 * gets fixed.
986 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700987 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
988 | NLM_F_EXCL))) {
989 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700990 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700991 }
Joe Stringer74ed7ab2015-01-21 16:42:52 -0800992 /* The flow identifier has to be the same for flow updates.
993 * Look for any overlapping flow.
994 */
995 if (unlikely(!ovs_flow_cmp(flow, &match))) {
996 if (ovs_identifier_is_key(&flow->id))
997 flow = ovs_flow_tbl_lookup_exact(&dp->table,
998 &match);
999 else /* UFID matches but key is different */
1000 flow = NULL;
Alex Wang4a46b242014-06-30 20:30:29 -07001001 if (!flow) {
1002 error = -ENOENT;
1003 goto err_unlock_ovs;
1004 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001005 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001006 /* Update actions. */
1007 old_acts = ovsl_dereference(flow->sf_acts);
1008 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001009
1010 if (unlikely(reply)) {
1011 error = ovs_flow_cmd_fill_info(flow,
1012 ovs_header->dp_ifindex,
1013 reply, info->snd_portid,
1014 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001015 OVS_FLOW_CMD_NEW,
1016 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001017 BUG_ON(error < 0);
1018 }
1019 ovs_unlock();
1020
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001021 ovs_nla_free_flow_actions(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001022 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001023 }
1024
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001025 if (reply)
1026 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001027 return 0;
1028
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001029err_unlock_ovs:
1030 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001031 kfree_skb(reply);
1032err_kfree_acts:
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001033 kfree(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001034err_kfree_flow:
1035 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001036error:
1037 return error;
1038}
1039
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001040/* Factor out action copy to avoid "Wframe-larger-than=1024" warning. */
Jesse Gross6b205b22014-10-03 15:35:32 -07001041static struct sw_flow_actions *get_flow_actions(const struct nlattr *a,
1042 const struct sw_flow_key *key,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001043 const struct sw_flow_mask *mask,
1044 bool log)
Jesse Gross6b205b22014-10-03 15:35:32 -07001045{
1046 struct sw_flow_actions *acts;
1047 struct sw_flow_key masked_key;
1048 int error;
1049
Jesse Gross6b205b22014-10-03 15:35:32 -07001050 ovs_flow_mask_key(&masked_key, key, mask);
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001051 error = ovs_nla_copy_actions(a, &masked_key, &acts, log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001052 if (error) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001053 OVS_NLERR(log,
1054 "Actions may not be safe on all matching packets");
Jesse Gross6b205b22014-10-03 15:35:32 -07001055 return ERR_PTR(error);
1056 }
1057
1058 return acts;
1059}
1060
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001061static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
1062{
1063 struct nlattr **a = info->attrs;
1064 struct ovs_header *ovs_header = info->userhdr;
Jesse Gross6b205b22014-10-03 15:35:32 -07001065 struct sw_flow_key key;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001066 struct sw_flow *flow;
1067 struct sw_flow_mask mask;
1068 struct sk_buff *reply = NULL;
1069 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001070 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001071 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001072 struct sw_flow_id sfid;
1073 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001074 int error;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001075 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001076 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001077
1078 /* Extract key. */
1079 error = -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -07001080 if (!a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001081 OVS_NLERR(log, "Flow key attribute not present in set flow.");
Jesse Grossccb13522011-10-25 19:26:31 -07001082 goto error;
Jesse Gross426cda52014-10-06 05:08:38 -07001083 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001084
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001085 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log);
Andy Zhou03f0d912013-08-07 20:01:00 -07001086 ovs_match_init(&match, &key, &mask);
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001087 error = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY],
1088 a[OVS_FLOW_ATTR_MASK], log);
Jesse Grossccb13522011-10-25 19:26:31 -07001089 if (error)
1090 goto error;
1091
1092 /* Validate actions. */
1093 if (a[OVS_FLOW_ATTR_ACTIONS]) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001094 acts = get_flow_actions(a[OVS_FLOW_ATTR_ACTIONS], &key, &mask,
1095 log);
Jesse Gross6b205b22014-10-03 15:35:32 -07001096 if (IS_ERR(acts)) {
1097 error = PTR_ERR(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001098 goto error;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001099 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001100
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001101 /* Can allocate before locking if have acts. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001102 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false,
1103 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001104 if (IS_ERR(reply)) {
1105 error = PTR_ERR(reply);
1106 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -07001107 }
Jesse Grossccb13522011-10-25 19:26:31 -07001108 }
1109
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001110 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001111 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001112 if (unlikely(!dp)) {
1113 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001114 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001115 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001116 /* Check that the flow exists. */
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001117 if (ufid_present)
1118 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &sfid);
1119 else
1120 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001121 if (unlikely(!flow)) {
1122 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001123 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001124 }
Alex Wang4a46b242014-06-30 20:30:29 -07001125
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001126 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001127 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001128 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001129 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001130
1131 if (unlikely(reply)) {
1132 error = ovs_flow_cmd_fill_info(flow,
1133 ovs_header->dp_ifindex,
1134 reply, info->snd_portid,
1135 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001136 OVS_FLOW_CMD_NEW,
1137 ufid_flags);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001138 BUG_ON(error < 0);
1139 }
1140 } else {
1141 /* Could not alloc without acts before locking. */
1142 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001143 info, OVS_FLOW_CMD_NEW, false,
1144 ufid_flags);
1145
Viresh Kumarb5ffe632015-08-12 15:59:47 +05301146 if (IS_ERR(reply)) {
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001147 error = PTR_ERR(reply);
1148 goto err_unlock_ovs;
1149 }
Jesse Grossccb13522011-10-25 19:26:31 -07001150 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001151
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001152 /* Clear stats. */
1153 if (a[OVS_FLOW_ATTR_CLEAR])
1154 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001155 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001156
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001157 if (reply)
1158 ovs_notify(&dp_flow_genl_family, reply, info);
1159 if (old_acts)
1160 ovs_nla_free_flow_actions(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001161
Jesse Grossccb13522011-10-25 19:26:31 -07001162 return 0;
1163
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001164err_unlock_ovs:
1165 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001166 kfree_skb(reply);
1167err_kfree_acts:
Pravin B Shelar74f84a52013-06-17 17:50:12 -07001168 kfree(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001169error:
1170 return error;
1171}
1172
1173static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1174{
1175 struct nlattr **a = info->attrs;
1176 struct ovs_header *ovs_header = info->userhdr;
1177 struct sw_flow_key key;
1178 struct sk_buff *reply;
1179 struct sw_flow *flow;
1180 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001181 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001182 struct sw_flow_id ufid;
1183 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
1184 int err = 0;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001185 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001186 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001187
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001188 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1189 if (a[OVS_FLOW_ATTR_KEY]) {
1190 ovs_match_init(&match, &key, NULL);
1191 err = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY], NULL,
1192 log);
1193 } else if (!ufid_present) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001194 OVS_NLERR(log,
1195 "Flow get message rejected, Key attribute missing.");
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001196 err = -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001197 }
Jesse Grossccb13522011-10-25 19:26:31 -07001198 if (err)
1199 return err;
1200
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001201 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001202 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001203 if (!dp) {
1204 err = -ENODEV;
1205 goto unlock;
1206 }
Jesse Grossccb13522011-10-25 19:26:31 -07001207
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001208 if (ufid_present)
1209 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1210 else
1211 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001212 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001213 err = -ENOENT;
1214 goto unlock;
1215 }
Jesse Grossccb13522011-10-25 19:26:31 -07001216
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001217 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001218 OVS_FLOW_CMD_NEW, true, ufid_flags);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001219 if (IS_ERR(reply)) {
1220 err = PTR_ERR(reply);
1221 goto unlock;
1222 }
Jesse Grossccb13522011-10-25 19:26:31 -07001223
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001224 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001225 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001226unlock:
1227 ovs_unlock();
1228 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001229}
1230
1231static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1232{
1233 struct nlattr **a = info->attrs;
1234 struct ovs_header *ovs_header = info->userhdr;
1235 struct sw_flow_key key;
1236 struct sk_buff *reply;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001237 struct sw_flow *flow = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001238 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001239 struct sw_flow_match match;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001240 struct sw_flow_id ufid;
1241 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001242 int err;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001243 bool log = !a[OVS_FLOW_ATTR_PROBE];
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001244 bool ufid_present;
Jesse Grossccb13522011-10-25 19:26:31 -07001245
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001246 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1247 if (a[OVS_FLOW_ATTR_KEY]) {
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001248 ovs_match_init(&match, &key, NULL);
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001249 err = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY], NULL,
1250 log);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001251 if (unlikely(err))
1252 return err;
1253 }
1254
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001255 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001256 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001257 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001258 err = -ENODEV;
1259 goto unlock;
1260 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001261
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001262 if (unlikely(!a[OVS_FLOW_ATTR_KEY] && !ufid_present)) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001263 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001264 goto unlock;
1265 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001266
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001267 if (ufid_present)
1268 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1269 else
1270 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Alex Wang4a46b242014-06-30 20:30:29 -07001271 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001272 err = -ENOENT;
1273 goto unlock;
1274 }
Jesse Grossccb13522011-10-25 19:26:31 -07001275
Pravin B Shelarb637e492013-10-04 00:14:23 -07001276 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001277 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001278
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001279 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001280 &flow->id, info, false, ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001281 if (likely(reply)) {
1282 if (likely(!IS_ERR(reply))) {
1283 rcu_read_lock(); /*To keep RCU checker happy. */
1284 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1285 reply, info->snd_portid,
1286 info->snd_seq, 0,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001287 OVS_FLOW_CMD_DEL,
1288 ufid_flags);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001289 rcu_read_unlock();
1290 BUG_ON(err < 0);
1291
1292 ovs_notify(&dp_flow_genl_family, reply, info);
1293 } else {
1294 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1295 }
1296 }
1297
1298 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001299 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001300unlock:
1301 ovs_unlock();
1302 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001303}
1304
1305static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1306{
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001307 struct nlattr *a[__OVS_FLOW_ATTR_MAX];
Jesse Grossccb13522011-10-25 19:26:31 -07001308 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001309 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001310 struct datapath *dp;
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001311 u32 ufid_flags;
1312 int err;
1313
1314 err = genlmsg_parse(cb->nlh, &dp_flow_genl_family, a,
1315 OVS_FLOW_ATTR_MAX, flow_policy);
1316 if (err)
1317 return err;
1318 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
Jesse Grossccb13522011-10-25 19:26:31 -07001319
Pravin B Shelard57170b2013-07-30 15:39:39 -07001320 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07001321 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001322 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001323 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001324 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001325 }
Jesse Grossccb13522011-10-25 19:26:31 -07001326
Pravin B Shelarb637e492013-10-04 00:14:23 -07001327 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001328 for (;;) {
1329 struct sw_flow *flow;
1330 u32 bucket, obj;
1331
1332 bucket = cb->args[0];
1333 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001334 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001335 if (!flow)
1336 break;
1337
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001338 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001339 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001340 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001341 OVS_FLOW_CMD_NEW, ufid_flags) < 0)
Jesse Grossccb13522011-10-25 19:26:31 -07001342 break;
1343
1344 cb->args[0] = bucket;
1345 cb->args[1] = obj;
1346 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001347 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001348 return skb->len;
1349}
1350
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001351static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1352 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001353 [OVS_FLOW_ATTR_MASK] = { .type = NLA_NESTED },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001354 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1355 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001356 [OVS_FLOW_ATTR_PROBE] = { .type = NLA_FLAG },
Joe Stringer74ed7ab2015-01-21 16:42:52 -08001357 [OVS_FLOW_ATTR_UFID] = { .type = NLA_UNSPEC, .len = 1 },
1358 [OVS_FLOW_ATTR_UFID_FLAGS] = { .type = NLA_U32 },
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001359};
1360
stephen hemminger48e48a72014-07-16 11:25:52 -07001361static const struct genl_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001362 { .cmd = OVS_FLOW_CMD_NEW,
1363 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1364 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001365 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001366 },
1367 { .cmd = OVS_FLOW_CMD_DEL,
1368 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1369 .policy = flow_policy,
1370 .doit = ovs_flow_cmd_del
1371 },
1372 { .cmd = OVS_FLOW_CMD_GET,
1373 .flags = 0, /* OK for unprivileged users. */
1374 .policy = flow_policy,
1375 .doit = ovs_flow_cmd_get,
1376 .dumpit = ovs_flow_cmd_dump
1377 },
1378 { .cmd = OVS_FLOW_CMD_SET,
1379 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1380 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001381 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001382 },
1383};
1384
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001385static struct genl_family dp_flow_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001386 .id = GENL_ID_GENERATE,
1387 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001388 .name = OVS_FLOW_FAMILY,
1389 .version = OVS_FLOW_VERSION,
1390 .maxattr = OVS_FLOW_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001391 .netnsok = true,
1392 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001393 .ops = dp_flow_genl_ops,
1394 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1395 .mcgrps = &ovs_dp_flow_multicast_group,
1396 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001397};
1398
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001399static size_t ovs_dp_cmd_msg_size(void)
1400{
1401 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1402
1403 msgsize += nla_total_size(IFNAMSIZ);
1404 msgsize += nla_total_size(sizeof(struct ovs_dp_stats));
Andy Zhou1bd71162013-10-22 10:42:46 -07001405 msgsize += nla_total_size(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001406 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001407
1408 return msgsize;
1409}
1410
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001411/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -07001412static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001413 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001414{
1415 struct ovs_header *ovs_header;
1416 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001417 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001418 int err;
1419
Eric W. Biederman15e47302012-09-07 20:12:54 +00001420 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001421 flags, cmd);
1422 if (!ovs_header)
1423 goto error;
1424
1425 ovs_header->dp_ifindex = get_dpifindex(dp);
1426
Jesse Grossccb13522011-10-25 19:26:31 -07001427 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001428 if (err)
1429 goto nla_put_failure;
1430
Andy Zhou1bd71162013-10-22 10:42:46 -07001431 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
1432 if (nla_put(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1433 &dp_stats))
1434 goto nla_put_failure;
1435
1436 if (nla_put(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1437 sizeof(struct ovs_dp_megaflow_stats),
1438 &dp_megaflow_stats))
David S. Miller028d6a62012-03-29 23:20:48 -04001439 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001440
Thomas Graf43d4be92013-12-13 15:22:18 +01001441 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1442 goto nla_put_failure;
1443
Johannes Berg053c0952015-01-16 22:09:00 +01001444 genlmsg_end(skb, ovs_header);
1445 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001446
1447nla_put_failure:
1448 genlmsg_cancel(skb, ovs_header);
1449error:
1450 return -EMSGSIZE;
1451}
1452
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001453static struct sk_buff *ovs_dp_cmd_alloc_info(struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -07001454{
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001455 return genlmsg_new_unicast(ovs_dp_cmd_msg_size(), info, GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001456}
1457
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001458/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001459static struct datapath *lookup_datapath(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001460 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001461 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1462{
1463 struct datapath *dp;
1464
1465 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001466 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001467 else {
1468 struct vport *vport;
1469
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001470 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001471 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001472 }
1473 return dp ? dp : ERR_PTR(-ENODEV);
1474}
1475
Thomas Graf44da5ae2013-12-13 15:22:19 +01001476static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1477{
1478 struct datapath *dp;
1479
1480 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001481 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001482 return;
1483
1484 WARN(dp->user_features, "Dropping previously announced user features\n");
1485 dp->user_features = 0;
1486}
1487
Thomas Graf12eb18f2014-11-06 06:58:52 -08001488static void ovs_dp_change(struct datapath *dp, struct nlattr *a[])
Thomas Graf43d4be92013-12-13 15:22:18 +01001489{
1490 if (a[OVS_DP_ATTR_USER_FEATURES])
1491 dp->user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1492}
1493
Jesse Grossccb13522011-10-25 19:26:31 -07001494static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1495{
1496 struct nlattr **a = info->attrs;
1497 struct vport_parms parms;
1498 struct sk_buff *reply;
1499 struct datapath *dp;
1500 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001501 struct ovs_net *ovs_net;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001502 int err, i;
Jesse Grossccb13522011-10-25 19:26:31 -07001503
1504 err = -EINVAL;
1505 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1506 goto err;
1507
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001508 reply = ovs_dp_cmd_alloc_info(info);
1509 if (!reply)
1510 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001511
1512 err = -ENOMEM;
1513 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1514 if (dp == NULL)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001515 goto err_free_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001516
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -05001517 ovs_dp_set_net(dp, sock_net(skb->sk));
Jesse Grossccb13522011-10-25 19:26:31 -07001518
1519 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001520 err = ovs_flow_tbl_init(&dp->table);
1521 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001522 goto err_free_dp;
1523
WANG Cong1c213bd2014-02-13 11:46:28 -08001524 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -07001525 if (!dp->stats_percpu) {
1526 err = -ENOMEM;
1527 goto err_destroy_table;
1528 }
1529
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001530 dp->ports = kmalloc(DP_VPORT_HASH_BUCKETS * sizeof(struct hlist_head),
Pravin B Shelare6445712013-10-03 18:16:47 -07001531 GFP_KERNEL);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001532 if (!dp->ports) {
1533 err = -ENOMEM;
1534 goto err_destroy_percpu;
1535 }
1536
1537 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1538 INIT_HLIST_HEAD(&dp->ports[i]);
1539
Jesse Grossccb13522011-10-25 19:26:31 -07001540 /* Set up our datapath device. */
1541 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1542 parms.type = OVS_VPORT_TYPE_INTERNAL;
1543 parms.options = NULL;
1544 parms.dp = dp;
1545 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001546 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001547
Thomas Graf43d4be92013-12-13 15:22:18 +01001548 ovs_dp_change(dp, a);
1549
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001550 /* So far only local changes have been made, now need the lock. */
1551 ovs_lock();
1552
Jesse Grossccb13522011-10-25 19:26:31 -07001553 vport = new_vport(&parms);
1554 if (IS_ERR(vport)) {
1555 err = PTR_ERR(vport);
1556 if (err == -EBUSY)
1557 err = -EEXIST;
1558
Thomas Graf44da5ae2013-12-13 15:22:19 +01001559 if (err == -EEXIST) {
1560 /* An outdated user space instance that does not understand
1561 * the concept of user_features has attempted to create a new
1562 * datapath and is likely to reuse it. Drop all user features.
1563 */
1564 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1565 ovs_dp_reset_user_features(skb, info);
1566 }
1567
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001568 goto err_destroy_ports_array;
Jesse Grossccb13522011-10-25 19:26:31 -07001569 }
1570
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001571 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1572 info->snd_seq, 0, OVS_DP_CMD_NEW);
1573 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001574
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001575 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001576 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001577
1578 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001579
Johannes Berg2a94fe42013-11-19 15:19:39 +01001580 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001581 return 0;
1582
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001583err_destroy_ports_array:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001584 ovs_unlock();
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001585 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -07001586err_destroy_percpu:
1587 free_percpu(dp->stats_percpu);
1588err_destroy_table:
Pravin B Shelar9b996e52014-05-06 18:41:20 -07001589 ovs_flow_tbl_destroy(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -07001590err_free_dp:
1591 kfree(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001592err_free_reply:
1593 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001594err:
1595 return err;
1596}
1597
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001598/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001599static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001600{
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001601 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001602
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001603 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1604 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001605 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001606
Sasha Levinb67bfe02013-02-27 17:06:00 -08001607 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001608 if (vport->port_no != OVSP_LOCAL)
1609 ovs_dp_detach_port(vport);
1610 }
Jesse Grossccb13522011-10-25 19:26:31 -07001611
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001612 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001613
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001614 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001615 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001616 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001617 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001618
Andy Zhoue80857c2014-01-21 09:31:04 -08001619 /* RCU destroy the flow table */
Jesse Grossccb13522011-10-25 19:26:31 -07001620 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001621}
1622
1623static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1624{
1625 struct sk_buff *reply;
1626 struct datapath *dp;
1627 int err;
1628
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001629 reply = ovs_dp_cmd_alloc_info(info);
1630 if (!reply)
1631 return -ENOMEM;
1632
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001633 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001634 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1635 err = PTR_ERR(dp);
1636 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001637 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001638
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001639 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1640 info->snd_seq, 0, OVS_DP_CMD_DEL);
1641 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001642
1643 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001644 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001645
Johannes Berg2a94fe42013-11-19 15:19:39 +01001646 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001647
1648 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001649
1650err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001651 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001652 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001653 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001654}
1655
1656static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1657{
1658 struct sk_buff *reply;
1659 struct datapath *dp;
1660 int err;
1661
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001662 reply = ovs_dp_cmd_alloc_info(info);
1663 if (!reply)
1664 return -ENOMEM;
1665
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001666 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001667 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001668 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001669 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001670 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001671
Thomas Graf43d4be92013-12-13 15:22:18 +01001672 ovs_dp_change(dp, info->attrs);
1673
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001674 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1675 info->snd_seq, 0, OVS_DP_CMD_NEW);
1676 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001677
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001678 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001679 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001680
1681 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001682
1683err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001684 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001685 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001686 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001687}
1688
1689static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1690{
1691 struct sk_buff *reply;
1692 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001693 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001694
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001695 reply = ovs_dp_cmd_alloc_info(info);
1696 if (!reply)
1697 return -ENOMEM;
1698
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001699 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001700 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001701 if (IS_ERR(dp)) {
1702 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001703 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001704 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001705 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1706 info->snd_seq, 0, OVS_DP_CMD_NEW);
1707 BUG_ON(err < 0);
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001708 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001709
Jesse Grossccb13522011-10-25 19:26:31 -07001710 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001711
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001712err_unlock_free:
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001713 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001714 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001715 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001716}
1717
1718static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1719{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001720 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001721 struct datapath *dp;
1722 int skip = cb->args[0];
1723 int i = 0;
1724
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001725 ovs_lock();
1726 list_for_each_entry(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001727 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001728 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001729 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1730 OVS_DP_CMD_NEW) < 0)
1731 break;
1732 i++;
1733 }
Pravin B Shelar8ec609d2014-11-11 15:55:16 -08001734 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001735
1736 cb->args[0] = i;
1737
1738 return skb->len;
1739}
1740
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001741static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1742 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1743 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1744 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1745};
1746
stephen hemminger48e48a72014-07-16 11:25:52 -07001747static const struct genl_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001748 { .cmd = OVS_DP_CMD_NEW,
1749 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1750 .policy = datapath_policy,
1751 .doit = ovs_dp_cmd_new
1752 },
1753 { .cmd = OVS_DP_CMD_DEL,
1754 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1755 .policy = datapath_policy,
1756 .doit = ovs_dp_cmd_del
1757 },
1758 { .cmd = OVS_DP_CMD_GET,
1759 .flags = 0, /* OK for unprivileged users. */
1760 .policy = datapath_policy,
1761 .doit = ovs_dp_cmd_get,
1762 .dumpit = ovs_dp_cmd_dump
1763 },
1764 { .cmd = OVS_DP_CMD_SET,
1765 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1766 .policy = datapath_policy,
1767 .doit = ovs_dp_cmd_set,
1768 },
1769};
1770
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001771static struct genl_family dp_datapath_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001772 .id = GENL_ID_GENERATE,
1773 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001774 .name = OVS_DATAPATH_FAMILY,
1775 .version = OVS_DATAPATH_VERSION,
1776 .maxattr = OVS_DP_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001777 .netnsok = true,
1778 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001779 .ops = dp_datapath_genl_ops,
1780 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1781 .mcgrps = &ovs_dp_datapath_multicast_group,
1782 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001783};
1784
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001785/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001786static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001787 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001788{
1789 struct ovs_header *ovs_header;
1790 struct ovs_vport_stats vport_stats;
1791 int err;
1792
Eric W. Biederman15e47302012-09-07 20:12:54 +00001793 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001794 flags, cmd);
1795 if (!ovs_header)
1796 return -EMSGSIZE;
1797
1798 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1799
David S. Miller028d6a62012-03-29 23:20:48 -04001800 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1801 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001802 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
1803 vport->ops->get_name(vport)))
David S. Miller028d6a62012-03-29 23:20:48 -04001804 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001805
1806 ovs_vport_get_stats(vport, &vport_stats);
David S. Miller028d6a62012-03-29 23:20:48 -04001807 if (nla_put(skb, OVS_VPORT_ATTR_STATS, sizeof(struct ovs_vport_stats),
1808 &vport_stats))
1809 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001810
Alex Wang5cd667b2014-07-17 15:14:13 -07001811 if (ovs_vport_get_upcall_portids(vport, skb))
1812 goto nla_put_failure;
1813
Jesse Grossccb13522011-10-25 19:26:31 -07001814 err = ovs_vport_get_options(vport, skb);
1815 if (err == -EMSGSIZE)
1816 goto error;
1817
Johannes Berg053c0952015-01-16 22:09:00 +01001818 genlmsg_end(skb, ovs_header);
1819 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001820
1821nla_put_failure:
1822 err = -EMSGSIZE;
1823error:
1824 genlmsg_cancel(skb, ovs_header);
1825 return err;
1826}
1827
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001828static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1829{
1830 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1831}
1832
1833/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001834struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, u32 portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001835 u32 seq, u8 cmd)
1836{
1837 struct sk_buff *skb;
1838 int retval;
1839
1840 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1841 if (!skb)
1842 return ERR_PTR(-ENOMEM);
1843
Eric W. Biederman15e47302012-09-07 20:12:54 +00001844 retval = ovs_vport_cmd_fill_info(vport, skb, portid, seq, 0, cmd);
Jesse Grossa9341512013-03-26 15:48:38 -07001845 BUG_ON(retval < 0);
1846
Jesse Grossccb13522011-10-25 19:26:31 -07001847 return skb;
1848}
1849
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001850/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001851static struct vport *lookup_vport(struct net *net,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001852 const struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001853 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1854{
1855 struct datapath *dp;
1856 struct vport *vport;
1857
1858 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001859 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001860 if (!vport)
1861 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08001862 if (ovs_header->dp_ifindex &&
1863 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1864 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001865 return vport;
1866 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1867 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1868
1869 if (port_no >= DP_MAX_PORTS)
1870 return ERR_PTR(-EFBIG);
1871
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001872 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001873 if (!dp)
1874 return ERR_PTR(-ENODEV);
1875
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001876 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001877 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08001878 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001879 return vport;
1880 } else
1881 return ERR_PTR(-EINVAL);
1882}
1883
1884static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1885{
1886 struct nlattr **a = info->attrs;
1887 struct ovs_header *ovs_header = info->userhdr;
1888 struct vport_parms parms;
1889 struct sk_buff *reply;
1890 struct vport *vport;
1891 struct datapath *dp;
1892 u32 port_no;
1893 int err;
1894
Jesse Grossccb13522011-10-25 19:26:31 -07001895 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
1896 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001897 return -EINVAL;
1898
1899 port_no = a[OVS_VPORT_ATTR_PORT_NO]
1900 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
1901 if (port_no >= DP_MAX_PORTS)
1902 return -EFBIG;
1903
1904 reply = ovs_vport_cmd_alloc_info();
1905 if (!reply)
1906 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001907
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001908 ovs_lock();
Thomas Graf62b9c8d2014-10-22 17:29:06 +02001909restart:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001910 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001911 err = -ENODEV;
1912 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001913 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001914
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001915 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001916 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001917 err = -EBUSY;
1918 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001919 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001920 } else {
1921 for (port_no = 1; ; port_no++) {
1922 if (port_no >= DP_MAX_PORTS) {
1923 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001924 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001925 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001926 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001927 if (!vport)
1928 break;
1929 }
1930 }
1931
1932 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
1933 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1934 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
1935 parms.dp = dp;
1936 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07001937 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001938
1939 vport = new_vport(&parms);
1940 err = PTR_ERR(vport);
Thomas Graf62b9c8d2014-10-22 17:29:06 +02001941 if (IS_ERR(vport)) {
1942 if (err == -EAGAIN)
1943 goto restart;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001944 goto exit_unlock_free;
Thomas Graf62b9c8d2014-10-22 17:29:06 +02001945 }
Jesse Grossccb13522011-10-25 19:26:31 -07001946
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001947 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1948 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1949 BUG_ON(err < 0);
1950 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01001951
Johannes Berg2a94fe42013-11-19 15:19:39 +01001952 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001953 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001954
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001955exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001956 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001957 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001958 return err;
1959}
1960
1961static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
1962{
1963 struct nlattr **a = info->attrs;
1964 struct sk_buff *reply;
1965 struct vport *vport;
1966 int err;
1967
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001968 reply = ovs_vport_cmd_alloc_info();
1969 if (!reply)
1970 return -ENOMEM;
1971
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001972 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001973 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001974 err = PTR_ERR(vport);
1975 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001976 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001977
Jesse Grossccb13522011-10-25 19:26:31 -07001978 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07001979 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07001980 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001981 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07001982 }
1983
Jesse Grossf44f3402013-05-13 08:15:26 -07001984 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07001985 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07001986 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001987 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07001988 }
Jesse Grossa9341512013-03-26 15:48:38 -07001989
Alex Wang5cd667b2014-07-17 15:14:13 -07001990
1991 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
1992 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
1993
1994 err = ovs_vport_set_upcall_portids(vport, ids);
1995 if (err)
1996 goto exit_unlock_free;
1997 }
Jesse Grossccb13522011-10-25 19:26:31 -07001998
Jesse Grossa9341512013-03-26 15:48:38 -07001999 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
2000 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
2001 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002002
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002003 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01002004 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002005 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002006
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002007exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002008 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002009 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002010 return err;
2011}
2012
2013static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2014{
2015 struct nlattr **a = info->attrs;
2016 struct sk_buff *reply;
2017 struct vport *vport;
2018 int err;
2019
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002020 reply = ovs_vport_cmd_alloc_info();
2021 if (!reply)
2022 return -ENOMEM;
2023
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002024 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002025 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002026 err = PTR_ERR(vport);
2027 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002028 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002029
2030 if (vport->port_no == OVSP_LOCAL) {
2031 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002032 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07002033 }
2034
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002035 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
2036 info->snd_seq, 0, OVS_VPORT_CMD_DEL);
2037 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002038 ovs_dp_detach_port(vport);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002039 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07002040
Johannes Berg2a94fe42013-11-19 15:19:39 +01002041 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002042 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002043
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002044exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002045 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002046 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002047 return err;
2048}
2049
2050static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2051{
2052 struct nlattr **a = info->attrs;
2053 struct ovs_header *ovs_header = info->userhdr;
2054 struct sk_buff *reply;
2055 struct vport *vport;
2056 int err;
2057
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002058 reply = ovs_vport_cmd_alloc_info();
2059 if (!reply)
2060 return -ENOMEM;
2061
Jesse Grossccb13522011-10-25 19:26:31 -07002062 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002063 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07002064 err = PTR_ERR(vport);
2065 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002066 goto exit_unlock_free;
2067 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
2068 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
2069 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07002070 rcu_read_unlock();
2071
2072 return genlmsg_reply(reply, info);
2073
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002074exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07002075 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07002076 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07002077 return err;
2078}
2079
2080static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2081{
2082 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2083 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002084 int bucket = cb->args[0], skip = cb->args[1];
2085 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002086
Jesse Grossccb13522011-10-25 19:26:31 -07002087 rcu_read_lock();
Andy Zhoucc3a5ae2014-09-08 13:14:22 -07002088 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08002089 if (!dp) {
2090 rcu_read_unlock();
2091 return -ENODEV;
2092 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002093 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002094 struct vport *vport;
2095
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002096 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002097 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002098 if (j >= skip &&
2099 ovs_vport_cmd_fill_info(vport, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00002100 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002101 cb->nlh->nlmsg_seq,
2102 NLM_F_MULTI,
2103 OVS_VPORT_CMD_NEW) < 0)
2104 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07002105
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002106 j++;
2107 }
2108 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07002109 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002110out:
Jesse Grossccb13522011-10-25 19:26:31 -07002111 rcu_read_unlock();
2112
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002113 cb->args[0] = i;
2114 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07002115
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07002116 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07002117}
2118
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002119static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
2120 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
2121 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
2122 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
2123 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
2124 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
2125 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
2126};
2127
stephen hemminger48e48a72014-07-16 11:25:52 -07002128static const struct genl_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07002129 { .cmd = OVS_VPORT_CMD_NEW,
2130 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
2131 .policy = vport_policy,
2132 .doit = ovs_vport_cmd_new
2133 },
2134 { .cmd = OVS_VPORT_CMD_DEL,
2135 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
2136 .policy = vport_policy,
2137 .doit = ovs_vport_cmd_del
2138 },
2139 { .cmd = OVS_VPORT_CMD_GET,
2140 .flags = 0, /* OK for unprivileged users. */
2141 .policy = vport_policy,
2142 .doit = ovs_vport_cmd_get,
2143 .dumpit = ovs_vport_cmd_dump
2144 },
2145 { .cmd = OVS_VPORT_CMD_SET,
2146 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
2147 .policy = vport_policy,
2148 .doit = ovs_vport_cmd_set,
2149 },
2150};
2151
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002152struct genl_family dp_vport_genl_family = {
2153 .id = GENL_ID_GENERATE,
2154 .hdrsize = sizeof(struct ovs_header),
2155 .name = OVS_VPORT_FAMILY,
2156 .version = OVS_VPORT_VERSION,
2157 .maxattr = OVS_VPORT_ATTR_MAX,
2158 .netnsok = true,
2159 .parallel_ops = true,
2160 .ops = dp_vport_genl_ops,
2161 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
2162 .mcgrps = &ovs_dp_vport_multicast_group,
2163 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07002164};
2165
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002166static struct genl_family * const dp_genl_families[] = {
2167 &dp_datapath_genl_family,
2168 &dp_vport_genl_family,
2169 &dp_flow_genl_family,
2170 &dp_packet_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07002171};
2172
2173static void dp_unregister_genl(int n_families)
2174{
2175 int i;
2176
2177 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002178 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002179}
2180
2181static int dp_register_genl(void)
2182{
Jesse Grossccb13522011-10-25 19:26:31 -07002183 int err;
2184 int i;
2185
Jesse Grossccb13522011-10-25 19:26:31 -07002186 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002187
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002188 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002189 if (err)
2190 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002191 }
2192
2193 return 0;
2194
2195error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002196 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002197 return err;
2198}
2199
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002200static int __net_init ovs_init_net(struct net *net)
2201{
2202 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2203
2204 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002205 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002206 return 0;
2207}
2208
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002209static void __net_exit list_vports_from_net(struct net *net, struct net *dnet,
2210 struct list_head *head)
2211{
2212 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2213 struct datapath *dp;
2214
2215 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2216 int i;
2217
2218 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2219 struct vport *vport;
2220
2221 hlist_for_each_entry(vport, &dp->ports[i], dp_hash_node) {
2222 struct netdev_vport *netdev_vport;
2223
2224 if (vport->ops->type != OVS_VPORT_TYPE_INTERNAL)
2225 continue;
2226
2227 netdev_vport = netdev_vport_priv(vport);
2228 if (dev_net(netdev_vport->dev) == dnet)
2229 list_add(&vport->detach_list, head);
2230 }
2231 }
2232 }
2233}
2234
2235static void __net_exit ovs_exit_net(struct net *dnet)
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002236{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002237 struct datapath *dp, *dp_next;
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002238 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id);
2239 struct vport *vport, *vport_next;
2240 struct net *net;
2241 LIST_HEAD(head);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002242
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002243 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002244 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2245 __dp_destroy(dp);
Pravin B Shelar7b4577a2015-02-17 11:23:10 -08002246
2247 rtnl_lock();
2248 for_each_net(net)
2249 list_vports_from_net(net, dnet, &head);
2250 rtnl_unlock();
2251
2252 /* Detach all vports from given namespace. */
2253 list_for_each_entry_safe(vport, vport_next, &head, detach_list) {
2254 list_del(&vport->detach_list);
2255 ovs_dp_detach_port(vport);
2256 }
2257
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002258 ovs_unlock();
2259
2260 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002261}
2262
2263static struct pernet_operations ovs_net_ops = {
2264 .init = ovs_init_net,
2265 .exit = ovs_exit_net,
2266 .id = &ovs_net_id,
2267 .size = sizeof(struct ovs_net),
2268};
2269
Jesse Grossccb13522011-10-25 19:26:31 -07002270static int __init dp_init(void)
2271{
Jesse Grossccb13522011-10-25 19:26:31 -07002272 int err;
2273
YOSHIFUJI Hideaki / 吉藤英明3523b292013-01-09 07:19:55 +00002274 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002275
2276 pr_info("Open vSwitch switching datapath\n");
2277
Andy Zhou971427f32014-09-15 19:37:25 -07002278 err = action_fifos_init();
Jesse Grossccb13522011-10-25 19:26:31 -07002279 if (err)
2280 goto error;
2281
Andy Zhou971427f32014-09-15 19:37:25 -07002282 err = ovs_internal_dev_rtnl_link_register();
2283 if (err)
2284 goto error_action_fifos_exit;
2285
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002286 err = ovs_flow_init();
2287 if (err)
2288 goto error_unreg_rtnl_link;
2289
Jesse Grossccb13522011-10-25 19:26:31 -07002290 err = ovs_vport_init();
2291 if (err)
2292 goto error_flow_exit;
2293
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002294 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002295 if (err)
2296 goto error_vport_exit;
2297
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002298 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2299 if (err)
2300 goto error_netns_exit;
2301
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002302 err = ovs_netdev_init();
2303 if (err)
2304 goto error_unreg_notifier;
2305
Jesse Grossccb13522011-10-25 19:26:31 -07002306 err = dp_register_genl();
2307 if (err < 0)
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002308 goto error_unreg_netdev;
Jesse Grossccb13522011-10-25 19:26:31 -07002309
Jesse Grossccb13522011-10-25 19:26:31 -07002310 return 0;
2311
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002312error_unreg_netdev:
2313 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002314error_unreg_notifier:
2315 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002316error_netns_exit:
2317 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002318error_vport_exit:
2319 ovs_vport_exit();
2320error_flow_exit:
2321 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002322error_unreg_rtnl_link:
2323 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002324error_action_fifos_exit:
2325 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002326error:
2327 return err;
2328}
2329
2330static void dp_cleanup(void)
2331{
Jesse Grossccb13522011-10-25 19:26:31 -07002332 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
Thomas Graf62b9c8d2014-10-22 17:29:06 +02002333 ovs_netdev_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002334 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002335 unregister_pernet_device(&ovs_net_ops);
2336 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002337 ovs_vport_exit();
2338 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002339 ovs_internal_dev_rtnl_link_unregister();
Andy Zhou971427f32014-09-15 19:37:25 -07002340 action_fifos_exit();
Jesse Grossccb13522011-10-25 19:26:31 -07002341}
2342
2343module_init(dp_init);
2344module_exit(dp_cleanup);
2345
2346MODULE_DESCRIPTION("Open vSwitch switching datapath");
2347MODULE_LICENSE("GPL");