blob: 64dc864a417f2b5910d71ab8641cd31d5367eba1 [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;
62
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070063static struct genl_family dp_packet_genl_family;
64static struct genl_family dp_flow_genl_family;
65static struct genl_family dp_datapath_genl_family;
66
stephen hemminger48e48a72014-07-16 11:25:52 -070067static const struct genl_multicast_group ovs_dp_flow_multicast_group = {
68 .name = OVS_FLOW_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070069};
70
stephen hemminger48e48a72014-07-16 11:25:52 -070071static const struct genl_multicast_group ovs_dp_datapath_multicast_group = {
72 .name = OVS_DATAPATH_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070073};
74
stephen hemminger48e48a72014-07-16 11:25:52 -070075static const struct genl_multicast_group ovs_dp_vport_multicast_group = {
76 .name = OVS_VPORT_MCGROUP,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -070077};
78
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070079/* Check if need to build a reply message.
80 * OVS userspace sets the NLM_F_ECHO flag if it needs the reply. */
Samuel Gauthier9b67aa42014-09-18 10:31:04 +020081static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
82 unsigned int group)
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070083{
84 return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
Samuel Gauthier9b67aa42014-09-18 10:31:04 +020085 genl_has_listeners(family, genl_info_net(info)->genl_sock,
86 group);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -070087}
88
Johannes Berg68eb5502013-11-19 15:19:38 +010089static void ovs_notify(struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +010090 struct sk_buff *skb, struct genl_info *info)
Thomas Grafed661182013-03-29 14:46:50 +010091{
Johannes Berg68eb5502013-11-19 15:19:38 +010092 genl_notify(family, skb, genl_info_net(info), info->snd_portid,
Johannes Berg2a94fe42013-11-19 15:19:39 +010093 0, info->nlhdr, GFP_KERNEL);
Thomas Grafed661182013-03-29 14:46:50 +010094}
95
Pravin B Shelar46df7b82012-02-22 19:58:59 -080096/**
Jesse Grossccb13522011-10-25 19:26:31 -070097 * DOC: Locking:
98 *
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070099 * All writes e.g. Writes to device state (add/remove datapath, port, set
100 * operations on vports, etc.), Writes to other state (flow table
101 * modifications, set miscellaneous datapath parameters, etc.) are protected
102 * by ovs_lock.
Jesse Grossccb13522011-10-25 19:26:31 -0700103 *
104 * Reads are protected by RCU.
105 *
106 * There are a few special cases (mostly stats) that have their own
107 * synchronization but they nest under all of above and don't interact with
108 * each other.
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700109 *
110 * The RTNL lock nests inside ovs_mutex.
Jesse Grossccb13522011-10-25 19:26:31 -0700111 */
112
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700113static DEFINE_MUTEX(ovs_mutex);
114
115void ovs_lock(void)
116{
117 mutex_lock(&ovs_mutex);
118}
119
120void ovs_unlock(void)
121{
122 mutex_unlock(&ovs_mutex);
123}
124
125#ifdef CONFIG_LOCKDEP
126int lockdep_ovsl_is_held(void)
127{
128 if (debug_locks)
129 return lockdep_is_held(&ovs_mutex);
130 else
131 return 1;
132}
133#endif
134
Jesse Grossccb13522011-10-25 19:26:31 -0700135static struct vport *new_vport(const struct vport_parms *);
Thomas Graf8055a892013-12-13 15:22:20 +0100136static int queue_gso_packets(struct datapath *dp, struct sk_buff *,
Jesse Grossccb13522011-10-25 19:26:31 -0700137 const struct dp_upcall_info *);
Thomas Graf8055a892013-12-13 15:22:20 +0100138static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
Jesse Grossccb13522011-10-25 19:26:31 -0700139 const struct dp_upcall_info *);
140
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700141/* Must be called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800142static struct datapath *get_dp(struct net *net, int dp_ifindex)
Jesse Grossccb13522011-10-25 19:26:31 -0700143{
144 struct datapath *dp = NULL;
145 struct net_device *dev;
146
147 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800148 dev = dev_get_by_index_rcu(net, dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700149 if (dev) {
150 struct vport *vport = ovs_internal_dev_get_vport(dev);
151 if (vport)
152 dp = vport->dp;
153 }
154 rcu_read_unlock();
155
156 return dp;
157}
158
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700159/* Must be called with rcu_read_lock or ovs_mutex. */
Stephen Hemminger443cd882013-12-17 19:22:48 +0000160static const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700161{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700162 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700163 return vport->ops->get_name(vport);
164}
165
166static int get_dpifindex(struct datapath *dp)
167{
168 struct vport *local;
169 int ifindex;
170
171 rcu_read_lock();
172
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700173 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700174 if (local)
Thomas Grafcff63a52013-04-29 13:06:41 +0000175 ifindex = netdev_vport_priv(local)->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700176 else
177 ifindex = 0;
178
179 rcu_read_unlock();
180
181 return ifindex;
182}
183
184static void destroy_dp_rcu(struct rcu_head *rcu)
185{
186 struct datapath *dp = container_of(rcu, struct datapath, rcu);
187
Jesse Grossccb13522011-10-25 19:26:31 -0700188 free_percpu(dp->stats_percpu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800189 release_net(ovs_dp_get_net(dp));
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700190 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -0700191 kfree(dp);
192}
193
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700194static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
195 u16 port_no)
196{
197 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
198}
199
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700200/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700201struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
202{
203 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700204 struct hlist_head *head;
205
206 head = vport_hash_bucket(dp, port_no);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800207 hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700208 if (vport->port_no == port_no)
209 return vport;
210 }
211 return NULL;
212}
213
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700214/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700215static struct vport *new_vport(const struct vport_parms *parms)
216{
217 struct vport *vport;
218
219 vport = ovs_vport_add(parms);
220 if (!IS_ERR(vport)) {
221 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700222 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700223
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700224 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700225 }
Jesse Grossccb13522011-10-25 19:26:31 -0700226 return vport;
227}
228
Jesse Grossccb13522011-10-25 19:26:31 -0700229void ovs_dp_detach_port(struct vport *p)
230{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700231 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700232
233 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700234 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700235
236 /* Then destroy it. */
237 ovs_vport_del(p);
238}
239
240/* Must be called with rcu_read_lock. */
241void ovs_dp_process_received_packet(struct vport *p, struct sk_buff *skb)
242{
243 struct datapath *dp = p->dp;
244 struct sw_flow *flow;
245 struct dp_stats_percpu *stats;
246 struct sw_flow_key key;
247 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700248 u32 n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700249 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700250
Shan Wei404f2f12012-11-13 09:52:25 +0800251 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700252
253 /* Extract flow from 'skb' into 'key'. */
Andy Zhou03f0d912013-08-07 20:01:00 -0700254 error = ovs_flow_extract(skb, p->port_no, &key);
Jesse Grossccb13522011-10-25 19:26:31 -0700255 if (unlikely(error)) {
256 kfree_skb(skb);
257 return;
258 }
259
260 /* Look up flow. */
Andy Zhou5bb50632013-11-25 10:42:46 -0800261 flow = ovs_flow_tbl_lookup_stats(&dp->table, &key, &n_mask_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700262 if (unlikely(!flow)) {
263 struct dp_upcall_info upcall;
264
265 upcall.cmd = OVS_PACKET_CMD_MISS;
266 upcall.key = &key;
267 upcall.userdata = NULL;
Alex Wang5cd667b2014-07-17 15:14:13 -0700268 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Li RongQingc5eba0b2014-09-03 17:43:45 +0800269 error = ovs_dp_upcall(dp, skb, &upcall);
270 if (unlikely(error))
271 kfree_skb(skb);
272 else
273 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700274 stats_counter = &stats->n_missed;
275 goto out;
276 }
277
278 OVS_CB(skb)->flow = flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700279 OVS_CB(skb)->pkt_key = &key;
Jesse Grossccb13522011-10-25 19:26:31 -0700280
Ben Pfaffad552002014-05-06 16:48:38 -0700281 ovs_flow_stats_update(OVS_CB(skb)->flow, key.tp.flags, skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700282 ovs_execute_actions(dp, skb);
Pravin B Shelare298e502013-10-29 17:22:21 -0700283 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700284
285out:
286 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800287 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700288 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700289 stats->n_mask_hit += n_mask_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800290 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700291}
292
Jesse Grossccb13522011-10-25 19:26:31 -0700293int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800294 const struct dp_upcall_info *upcall_info)
Jesse Grossccb13522011-10-25 19:26:31 -0700295{
296 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700297 int err;
298
Eric W. Biederman15e47302012-09-07 20:12:54 +0000299 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700300 err = -ENOTCONN;
301 goto err;
302 }
303
Jesse Grossccb13522011-10-25 19:26:31 -0700304 if (!skb_is_gso(skb))
Thomas Graf8055a892013-12-13 15:22:20 +0100305 err = queue_userspace_packet(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700306 else
Thomas Graf8055a892013-12-13 15:22:20 +0100307 err = queue_gso_packets(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700308 if (err)
309 goto err;
310
311 return 0;
312
313err:
Shan Wei404f2f12012-11-13 09:52:25 +0800314 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700315
WANG Congdf9d9fd2014-02-14 15:10:46 -0800316 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700317 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800318 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700319
320 return err;
321}
322
Thomas Graf8055a892013-12-13 15:22:20 +0100323static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Jesse Grossccb13522011-10-25 19:26:31 -0700324 const struct dp_upcall_info *upcall_info)
325{
Ben Pfaffa1b5d0d2012-07-20 14:47:54 -0700326 unsigned short gso_type = skb_shinfo(skb)->gso_type;
Jesse Grossccb13522011-10-25 19:26:31 -0700327 struct dp_upcall_info later_info;
328 struct sw_flow_key later_key;
329 struct sk_buff *segs, *nskb;
330 int err;
331
Thomas Graf09c5e602013-12-13 15:22:22 +0100332 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700333 if (IS_ERR(segs))
334 return PTR_ERR(segs);
Jesse Grossccb13522011-10-25 19:26:31 -0700335
336 /* Queue all of the segments. */
337 skb = segs;
338 do {
Thomas Graf8055a892013-12-13 15:22:20 +0100339 err = queue_userspace_packet(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700340 if (err)
341 break;
342
Ben Pfaffa1b5d0d2012-07-20 14:47:54 -0700343 if (skb == segs && gso_type & SKB_GSO_UDP) {
Jesse Grossccb13522011-10-25 19:26:31 -0700344 /* The initial flow key extracted by ovs_flow_extract()
345 * in this case is for a first fragment, so we need to
346 * properly mark later fragments.
347 */
348 later_key = *upcall_info->key;
349 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
350
351 later_info = *upcall_info;
352 later_info.key = &later_key;
353 upcall_info = &later_info;
354 }
355 } while ((skb = skb->next));
356
357 /* Free all of the segments. */
358 skb = segs;
359 do {
360 nskb = skb->next;
361 if (err)
362 kfree_skb(skb);
363 else
364 consume_skb(skb);
365 } while ((skb = nskb));
366 return err;
367}
368
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100369static size_t key_attr_size(void)
370{
371 return nla_total_size(4) /* OVS_KEY_ATTR_PRIORITY */
Pravin B Shelar7d5437c2013-06-17 17:50:18 -0700372 + nla_total_size(0) /* OVS_KEY_ATTR_TUNNEL */
373 + nla_total_size(8) /* OVS_TUNNEL_KEY_ATTR_ID */
374 + nla_total_size(4) /* OVS_TUNNEL_KEY_ATTR_IPV4_SRC */
375 + nla_total_size(4) /* OVS_TUNNEL_KEY_ATTR_IPV4_DST */
376 + nla_total_size(1) /* OVS_TUNNEL_KEY_ATTR_TOS */
377 + nla_total_size(1) /* OVS_TUNNEL_KEY_ATTR_TTL */
378 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT */
379 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_CSUM */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100380 + nla_total_size(4) /* OVS_KEY_ATTR_IN_PORT */
381 + nla_total_size(4) /* OVS_KEY_ATTR_SKB_MARK */
382 + nla_total_size(12) /* OVS_KEY_ATTR_ETHERNET */
383 + nla_total_size(2) /* OVS_KEY_ATTR_ETHERTYPE */
384 + nla_total_size(4) /* OVS_KEY_ATTR_8021Q */
385 + nla_total_size(0) /* OVS_KEY_ATTR_ENCAP */
386 + nla_total_size(2) /* OVS_KEY_ATTR_ETHERTYPE */
387 + nla_total_size(40) /* OVS_KEY_ATTR_IPV6 */
388 + nla_total_size(2) /* OVS_KEY_ATTR_ICMPV6 */
389 + nla_total_size(28); /* OVS_KEY_ATTR_ND */
390}
391
Thomas Grafbda56f12013-12-13 15:22:21 +0100392static size_t upcall_msg_size(const struct nlattr *userdata,
393 unsigned int hdrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100394{
395 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100396 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100397 + nla_total_size(key_attr_size()); /* OVS_PACKET_ATTR_KEY */
398
399 /* OVS_PACKET_ATTR_USERDATA */
400 if (userdata)
401 size += NLA_ALIGN(userdata->nla_len);
402
403 return size;
404}
405
Thomas Graf8055a892013-12-13 15:22:20 +0100406static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Jesse Grossccb13522011-10-25 19:26:31 -0700407 const struct dp_upcall_info *upcall_info)
408{
409 struct ovs_header *upcall;
410 struct sk_buff *nskb = NULL;
Li RongQing4ee45ea2014-09-02 20:52:28 +0800411 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
Jesse Grossccb13522011-10-25 19:26:31 -0700412 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100413 struct genl_info info = {
Thomas Graf8055a892013-12-13 15:22:20 +0100414 .dst_sk = ovs_dp_get_net(dp)->genl_sock,
Thomas Graf795449d2013-11-30 13:21:32 +0100415 .snd_portid = upcall_info->portid,
416 };
417 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100418 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100419 int err, dp_ifindex;
420
421 dp_ifindex = get_dpifindex(dp);
422 if (!dp_ifindex)
423 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700424
425 if (vlan_tx_tag_present(skb)) {
426 nskb = skb_clone(skb, GFP_ATOMIC);
427 if (!nskb)
428 return -ENOMEM;
429
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000430 nskb = __vlan_put_tag(nskb, nskb->vlan_proto, vlan_tx_tag_get(nskb));
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000431 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700432 return -ENOMEM;
433
434 nskb->vlan_tci = 0;
435 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
457 len = upcall_msg_size(upcall_info->userdata, 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
468 nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_KEY);
Andy Zhouf53e3832014-07-17 15:17:44 -0700469 err = ovs_nla_put_flow(upcall_info->key, upcall_info->key, user_skb);
470 BUG_ON(err);
Jesse Grossccb13522011-10-25 19:26:31 -0700471 nla_nest_end(user_skb, nla);
472
473 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800474 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
475 nla_len(upcall_info->userdata),
476 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700477
Thomas Grafbda56f12013-12-13 15:22:21 +0100478 /* Only reserve room for attribute header, packet data is added
479 * in skb_zerocopy() */
480 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
481 err = -ENOBUFS;
482 goto out;
483 }
484 nla->nla_len = nla_attr_size(skb->len);
Jesse Grossccb13522011-10-25 19:26:31 -0700485
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000486 err = skb_zerocopy(user_skb, skb, skb->len, hlen);
487 if (err)
488 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700489
Thomas Grafaea0bb42014-01-14 16:27:49 +0000490 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
491 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
492 size_t plen = NLA_ALIGN(user_skb->len) - user_skb->len;
493
494 if (plen > 0)
495 memset(skb_put(user_skb, plen), 0, plen);
496 }
497
Thomas Grafbda56f12013-12-13 15:22:21 +0100498 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
499
Thomas Graf8055a892013-12-13 15:22:20 +0100500 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800501 user_skb = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700502out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000503 if (err)
504 skb_tx_error(skb);
Li RongQing4ee45ea2014-09-02 20:52:28 +0800505 kfree_skb(user_skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700506 kfree_skb(nskb);
507 return err;
508}
509
Jesse Grossccb13522011-10-25 19:26:31 -0700510static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
511{
512 struct ovs_header *ovs_header = info->userhdr;
513 struct nlattr **a = info->attrs;
514 struct sw_flow_actions *acts;
515 struct sk_buff *packet;
516 struct sw_flow *flow;
517 struct datapath *dp;
518 struct ethhdr *eth;
519 int len;
520 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700521
522 err = -EINVAL;
523 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100524 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700525 goto err;
526
527 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
528 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
529 err = -ENOMEM;
530 if (!packet)
531 goto err;
532 skb_reserve(packet, NET_IP_ALIGN);
533
Thomas Graf32686a92013-03-29 14:46:48 +0100534 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700535
536 skb_reset_mac_header(packet);
537 eth = eth_hdr(packet);
538
539 /* Normally, setting the skb 'protocol' field would be handled by a
540 * call to eth_type_trans(), but it assumes there's a sending
541 * device, which we may not have. */
Simon Hormane5c5d222013-03-28 13:38:25 +0900542 if (ntohs(eth->h_proto) >= ETH_P_802_3_MIN)
Jesse Grossccb13522011-10-25 19:26:31 -0700543 packet->protocol = eth->h_proto;
544 else
545 packet->protocol = htons(ETH_P_802_2);
546
547 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700548 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700549 err = PTR_ERR(flow);
550 if (IS_ERR(flow))
551 goto err_kfree_skb;
552
Andy Zhou03f0d912013-08-07 20:01:00 -0700553 err = ovs_flow_extract(packet, -1, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700554 if (err)
555 goto err_flow_free;
556
Pravin B Shelare6445712013-10-03 18:16:47 -0700557 err = ovs_nla_get_flow_metadata(flow, a[OVS_PACKET_ATTR_KEY]);
Jesse Grossccb13522011-10-25 19:26:31 -0700558 if (err)
559 goto err_flow_free;
Pravin B Shelare6445712013-10-03 18:16:47 -0700560 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_PACKET_ATTR_ACTIONS]));
Jesse Grossccb13522011-10-25 19:26:31 -0700561 err = PTR_ERR(acts);
562 if (IS_ERR(acts))
563 goto err_flow_free;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700564
Pravin B Shelare6445712013-10-03 18:16:47 -0700565 err = ovs_nla_copy_actions(a[OVS_PACKET_ATTR_ACTIONS],
566 &flow->key, 0, &acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700567 rcu_assign_pointer(flow->sf_acts, acts);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700568 if (err)
569 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700570
571 OVS_CB(packet)->flow = flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700572 OVS_CB(packet)->pkt_key = &flow->key;
Jesse Grossccb13522011-10-25 19:26:31 -0700573 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800574 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700575
576 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800577 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700578 err = -ENODEV;
579 if (!dp)
580 goto err_unlock;
581
582 local_bh_disable();
583 err = ovs_execute_actions(dp, packet);
584 local_bh_enable();
585 rcu_read_unlock();
586
Andy Zhou03f0d912013-08-07 20:01:00 -0700587 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700588 return err;
589
590err_unlock:
591 rcu_read_unlock();
592err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700593 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700594err_kfree_skb:
595 kfree_skb(packet);
596err:
597 return err;
598}
599
600static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100601 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700602 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
603 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
604};
605
Johannes Berg4534de82013-11-14 17:14:46 +0100606static const struct genl_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700607 { .cmd = OVS_PACKET_CMD_EXECUTE,
608 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
609 .policy = packet_policy,
610 .doit = ovs_packet_cmd_execute
611 }
612};
613
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700614static struct genl_family dp_packet_genl_family = {
615 .id = GENL_ID_GENERATE,
616 .hdrsize = sizeof(struct ovs_header),
617 .name = OVS_PACKET_FAMILY,
618 .version = OVS_PACKET_VERSION,
619 .maxattr = OVS_PACKET_ATTR_MAX,
620 .netnsok = true,
621 .parallel_ops = true,
622 .ops = dp_packet_genl_ops,
623 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
624};
625
Andy Zhou1bd71162013-10-22 10:42:46 -0700626static void get_dp_stats(struct datapath *dp, struct ovs_dp_stats *stats,
627 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700628{
629 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700630
Andy Zhou1bd71162013-10-22 10:42:46 -0700631 memset(mega_stats, 0, sizeof(*mega_stats));
632
Pravin B Shelarb637e492013-10-04 00:14:23 -0700633 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700634 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700635
636 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700637
Jesse Grossccb13522011-10-25 19:26:31 -0700638 for_each_possible_cpu(i) {
639 const struct dp_stats_percpu *percpu_stats;
640 struct dp_stats_percpu local_stats;
641 unsigned int start;
642
643 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
644
645 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700646 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700647 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700648 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700649
650 stats->n_hit += local_stats.n_hit;
651 stats->n_missed += local_stats.n_missed;
652 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700653 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700654 }
655}
656
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100657static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts)
658{
659 return NLMSG_ALIGN(sizeof(struct ovs_header))
660 + nla_total_size(key_attr_size()) /* OVS_FLOW_ATTR_KEY */
Andy Zhou03f0d912013-08-07 20:01:00 -0700661 + nla_total_size(key_attr_size()) /* OVS_FLOW_ATTR_MASK */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100662 + nla_total_size(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
663 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
664 + nla_total_size(8) /* OVS_FLOW_ATTR_USED */
665 + nla_total_size(acts->actions_len); /* OVS_FLOW_ATTR_ACTIONS */
666}
667
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700668/* Called with ovs_mutex or RCU read lock. */
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700669static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000670 struct sk_buff *skb, u32 portid,
Jesse Grossccb13522011-10-25 19:26:31 -0700671 u32 seq, u32 flags, u8 cmd)
672{
673 const int skb_orig_len = skb->len;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700674 struct nlattr *start;
Jesse Grossccb13522011-10-25 19:26:31 -0700675 struct ovs_flow_stats stats;
Pravin B Shelare298e502013-10-29 17:22:21 -0700676 __be16 tcp_flags;
677 unsigned long used;
Jesse Grossccb13522011-10-25 19:26:31 -0700678 struct ovs_header *ovs_header;
679 struct nlattr *nla;
Jesse Grossccb13522011-10-25 19:26:31 -0700680 int err;
681
Eric W. Biederman15e47302012-09-07 20:12:54 +0000682 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family, flags, cmd);
Jesse Grossccb13522011-10-25 19:26:31 -0700683 if (!ovs_header)
684 return -EMSGSIZE;
685
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700686 ovs_header->dp_ifindex = dp_ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700687
Andy Zhou03f0d912013-08-07 20:01:00 -0700688 /* Fill flow key. */
Jesse Grossccb13522011-10-25 19:26:31 -0700689 nla = nla_nest_start(skb, OVS_FLOW_ATTR_KEY);
690 if (!nla)
691 goto nla_put_failure;
Andy Zhou03f0d912013-08-07 20:01:00 -0700692
Pravin B Shelare6445712013-10-03 18:16:47 -0700693 err = ovs_nla_put_flow(&flow->unmasked_key, &flow->unmasked_key, skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700694 if (err)
695 goto error;
696 nla_nest_end(skb, nla);
697
Andy Zhou03f0d912013-08-07 20:01:00 -0700698 nla = nla_nest_start(skb, OVS_FLOW_ATTR_MASK);
699 if (!nla)
700 goto nla_put_failure;
701
Pravin B Shelare6445712013-10-03 18:16:47 -0700702 err = ovs_nla_put_flow(&flow->key, &flow->mask->key, skb);
Andy Zhou03f0d912013-08-07 20:01:00 -0700703 if (err)
704 goto error;
705
706 nla_nest_end(skb, nla);
707
Pravin B Shelare298e502013-10-29 17:22:21 -0700708 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700709
David S. Miller028d6a62012-03-29 23:20:48 -0400710 if (used &&
711 nla_put_u64(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used)))
712 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700713
David S. Miller028d6a62012-03-29 23:20:48 -0400714 if (stats.n_packets &&
Pravin B Shelare298e502013-10-29 17:22:21 -0700715 nla_put(skb, OVS_FLOW_ATTR_STATS, sizeof(struct ovs_flow_stats), &stats))
David S. Miller028d6a62012-03-29 23:20:48 -0400716 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700717
Pravin B Shelare298e502013-10-29 17:22:21 -0700718 if ((u8)ntohs(tcp_flags) &&
719 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
David S. Miller028d6a62012-03-29 23:20:48 -0400720 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700721
722 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
723 * this is the first flow to be dumped into 'skb'. This is unusual for
724 * Netlink but individual action lists can be longer than
725 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
726 * The userspace caller can always fetch the actions separately if it
727 * really wants them. (Most userspace callers in fact don't care.)
728 *
729 * This can only fail for dump operations because the skb is always
730 * properly sized for single flows.
731 */
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700732 start = nla_nest_start(skb, OVS_FLOW_ATTR_ACTIONS);
733 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700734 const struct sw_flow_actions *sf_acts;
735
Jesse Gross663efa32013-12-03 10:58:53 -0800736 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700737 err = ovs_nla_put_actions(sf_acts->actions,
738 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700739
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700740 if (!err)
741 nla_nest_end(skb, start);
742 else {
743 if (skb_orig_len)
744 goto error;
745
746 nla_nest_cancel(skb, start);
747 }
748 } else if (skb_orig_len)
749 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700750
751 return genlmsg_end(skb, ovs_header);
752
753nla_put_failure:
754 err = -EMSGSIZE;
755error:
756 genlmsg_cancel(skb, ovs_header);
757 return err;
758}
759
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700760/* May not be called with RCU read lock. */
761static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700762 struct genl_info *info,
763 bool always)
Jesse Grossccb13522011-10-25 19:26:31 -0700764{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700765 struct sk_buff *skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700766
Samuel Gauthier9b67aa42014-09-18 10:31:04 +0200767 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700768 return NULL;
769
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700770 skb = genlmsg_new_unicast(ovs_flow_cmd_msg_size(acts), info, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700771 if (!skb)
772 return ERR_PTR(-ENOMEM);
773
774 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700775}
776
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700777/* Called with ovs_mutex. */
778static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
779 int dp_ifindex,
780 struct genl_info *info, u8 cmd,
781 bool always)
Jesse Grossccb13522011-10-25 19:26:31 -0700782{
783 struct sk_buff *skb;
784 int retval;
785
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700786 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts), info,
787 always);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530788 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700789 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700790
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700791 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
792 info->snd_portid, info->snd_seq, 0,
793 cmd);
Jesse Grossccb13522011-10-25 19:26:31 -0700794 BUG_ON(retval < 0);
795 return skb;
796}
797
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700798static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700799{
800 struct nlattr **a = info->attrs;
801 struct ovs_header *ovs_header = info->userhdr;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700802 struct sw_flow *flow, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700803 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700804 struct sk_buff *reply;
805 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700806 struct sw_flow_actions *acts;
807 struct sw_flow_match match;
808 int error;
809
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700810 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700811 error = -EINVAL;
812 if (!a[OVS_FLOW_ATTR_KEY])
813 goto error;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700814 if (!a[OVS_FLOW_ATTR_ACTIONS])
815 goto error;
816
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700817 /* Most of the time we need to allocate a new flow, do it before
818 * locking.
819 */
820 new_flow = ovs_flow_alloc();
821 if (IS_ERR(new_flow)) {
822 error = PTR_ERR(new_flow);
823 goto error;
824 }
825
826 /* Extract key. */
827 ovs_match_init(&match, &new_flow->unmasked_key, &mask);
828 error = ovs_nla_get_match(&match,
829 a[OVS_FLOW_ATTR_KEY], a[OVS_FLOW_ATTR_MASK]);
830 if (error)
831 goto err_kfree_flow;
832
833 ovs_flow_mask_key(&new_flow->key, &new_flow->unmasked_key, &mask);
834
835 /* Validate actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700836 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_FLOW_ATTR_ACTIONS]));
837 error = PTR_ERR(acts);
838 if (IS_ERR(acts))
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700839 goto err_kfree_flow;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700840
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700841 error = ovs_nla_copy_actions(a[OVS_FLOW_ATTR_ACTIONS], &new_flow->key,
842 0, &acts);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700843 if (error) {
844 OVS_NLERR("Flow actions may not be safe on all matching packets.\n");
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700845 goto err_kfree_acts;
846 }
847
848 reply = ovs_flow_cmd_alloc_info(acts, info, false);
849 if (IS_ERR(reply)) {
850 error = PTR_ERR(reply);
851 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700852 }
853
854 ovs_lock();
855 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700856 if (unlikely(!dp)) {
857 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700858 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700859 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700860 /* Check if this is a duplicate flow */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700861 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->unmasked_key);
862 if (likely(!flow)) {
863 rcu_assign_pointer(new_flow->sf_acts, acts);
864
865 /* Put flow in bucket. */
866 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
867 if (unlikely(error)) {
868 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700869 goto err_unlock_ovs;
870 }
871
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700872 if (unlikely(reply)) {
873 error = ovs_flow_cmd_fill_info(new_flow,
874 ovs_header->dp_ifindex,
875 reply, info->snd_portid,
876 info->snd_seq, 0,
877 OVS_FLOW_CMD_NEW);
878 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700879 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700880 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700881 } else {
882 struct sw_flow_actions *old_acts;
883
884 /* Bail out if we're not allowed to modify an existing flow.
885 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
886 * because Generic Netlink treats the latter as a dump
887 * request. We also accept NLM_F_EXCL in case that bug ever
888 * gets fixed.
889 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700890 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
891 | NLM_F_EXCL))) {
892 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700893 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700894 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700895 /* The unmasked key has to be the same for flow updates. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700896 if (unlikely(!ovs_flow_cmp_unmasked_key(flow, &match))) {
Alex Wang4a46b242014-06-30 20:30:29 -0700897 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
898 if (!flow) {
899 error = -ENOENT;
900 goto err_unlock_ovs;
901 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700902 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700903 /* Update actions. */
904 old_acts = ovsl_dereference(flow->sf_acts);
905 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700906
907 if (unlikely(reply)) {
908 error = ovs_flow_cmd_fill_info(flow,
909 ovs_header->dp_ifindex,
910 reply, info->snd_portid,
911 info->snd_seq, 0,
912 OVS_FLOW_CMD_NEW);
913 BUG_ON(error < 0);
914 }
915 ovs_unlock();
916
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700917 ovs_nla_free_flow_actions(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700918 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700919 }
920
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700921 if (reply)
922 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700923 return 0;
924
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700925err_unlock_ovs:
926 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700927 kfree_skb(reply);
928err_kfree_acts:
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700929 kfree(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700930err_kfree_flow:
931 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700932error:
933 return error;
934}
935
936static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
937{
938 struct nlattr **a = info->attrs;
939 struct ovs_header *ovs_header = info->userhdr;
940 struct sw_flow_key key, masked_key;
941 struct sw_flow *flow;
942 struct sw_flow_mask mask;
943 struct sk_buff *reply = NULL;
944 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700945 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -0700946 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -0700947 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700948
949 /* Extract key. */
950 error = -EINVAL;
951 if (!a[OVS_FLOW_ATTR_KEY])
952 goto error;
Andy Zhou03f0d912013-08-07 20:01:00 -0700953
954 ovs_match_init(&match, &key, &mask);
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700955 error = ovs_nla_get_match(&match,
Pravin B Shelare6445712013-10-03 18:16:47 -0700956 a[OVS_FLOW_ATTR_KEY], a[OVS_FLOW_ATTR_MASK]);
Jesse Grossccb13522011-10-25 19:26:31 -0700957 if (error)
958 goto error;
959
960 /* Validate actions. */
961 if (a[OVS_FLOW_ATTR_ACTIONS]) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700962 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_FLOW_ATTR_ACTIONS]));
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700963 error = PTR_ERR(acts);
964 if (IS_ERR(acts))
Jesse Grossccb13522011-10-25 19:26:31 -0700965 goto error;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700966
Pravin B Shelare6445712013-10-03 18:16:47 -0700967 ovs_flow_mask_key(&masked_key, &key, &mask);
968 error = ovs_nla_copy_actions(a[OVS_FLOW_ATTR_ACTIONS],
969 &masked_key, 0, &acts);
Andy Zhou03f0d912013-08-07 20:01:00 -0700970 if (error) {
971 OVS_NLERR("Flow actions may not be safe on all matching packets.\n");
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700972 goto err_kfree_acts;
973 }
974 }
975
976 /* Can allocate before locking if have acts. */
977 if (acts) {
978 reply = ovs_flow_cmd_alloc_info(acts, info, false);
979 if (IS_ERR(reply)) {
980 error = PTR_ERR(reply);
981 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -0700982 }
Jesse Grossccb13522011-10-25 19:26:31 -0700983 }
984
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700985 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800986 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700987 if (unlikely(!dp)) {
988 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700989 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700990 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700991 /* Check that the flow exists. */
Alex Wang4a46b242014-06-30 20:30:29 -0700992 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700993 if (unlikely(!flow)) {
994 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700995 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700996 }
Alex Wang4a46b242014-06-30 20:30:29 -0700997
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700998 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700999 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001000 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001001 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001002
1003 if (unlikely(reply)) {
1004 error = ovs_flow_cmd_fill_info(flow,
1005 ovs_header->dp_ifindex,
1006 reply, info->snd_portid,
1007 info->snd_seq, 0,
1008 OVS_FLOW_CMD_NEW);
1009 BUG_ON(error < 0);
1010 }
1011 } else {
1012 /* Could not alloc without acts before locking. */
1013 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
1014 info, OVS_FLOW_CMD_NEW, false);
1015 if (unlikely(IS_ERR(reply))) {
1016 error = PTR_ERR(reply);
1017 goto err_unlock_ovs;
1018 }
Jesse Grossccb13522011-10-25 19:26:31 -07001019 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001020
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001021 /* Clear stats. */
1022 if (a[OVS_FLOW_ATTR_CLEAR])
1023 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001024 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001025
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001026 if (reply)
1027 ovs_notify(&dp_flow_genl_family, reply, info);
1028 if (old_acts)
1029 ovs_nla_free_flow_actions(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001030
Jesse Grossccb13522011-10-25 19:26:31 -07001031 return 0;
1032
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001033err_unlock_ovs:
1034 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001035 kfree_skb(reply);
1036err_kfree_acts:
Pravin B Shelar74f84a52013-06-17 17:50:12 -07001037 kfree(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001038error:
1039 return error;
1040}
1041
1042static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1043{
1044 struct nlattr **a = info->attrs;
1045 struct ovs_header *ovs_header = info->userhdr;
1046 struct sw_flow_key key;
1047 struct sk_buff *reply;
1048 struct sw_flow *flow;
1049 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001050 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -07001051 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001052
Andy Zhou03f0d912013-08-07 20:01:00 -07001053 if (!a[OVS_FLOW_ATTR_KEY]) {
1054 OVS_NLERR("Flow get message rejected, Key attribute missing.\n");
Jesse Grossccb13522011-10-25 19:26:31 -07001055 return -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001056 }
1057
1058 ovs_match_init(&match, &key, NULL);
Jarno Rajahalme23dabf82014-03-27 12:35:23 -07001059 err = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY], NULL);
Jesse Grossccb13522011-10-25 19:26:31 -07001060 if (err)
1061 return err;
1062
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001063 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001064 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001065 if (!dp) {
1066 err = -ENODEV;
1067 goto unlock;
1068 }
Jesse Grossccb13522011-10-25 19:26:31 -07001069
Alex Wang4a46b242014-06-30 20:30:29 -07001070 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
1071 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001072 err = -ENOENT;
1073 goto unlock;
1074 }
Jesse Grossccb13522011-10-25 19:26:31 -07001075
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001076 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
1077 OVS_FLOW_CMD_NEW, true);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001078 if (IS_ERR(reply)) {
1079 err = PTR_ERR(reply);
1080 goto unlock;
1081 }
Jesse Grossccb13522011-10-25 19:26:31 -07001082
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001083 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001084 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001085unlock:
1086 ovs_unlock();
1087 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001088}
1089
1090static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1091{
1092 struct nlattr **a = info->attrs;
1093 struct ovs_header *ovs_header = info->userhdr;
1094 struct sw_flow_key key;
1095 struct sk_buff *reply;
1096 struct sw_flow *flow;
1097 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001098 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -07001099 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001100
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001101 if (likely(a[OVS_FLOW_ATTR_KEY])) {
1102 ovs_match_init(&match, &key, NULL);
1103 err = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY], NULL);
1104 if (unlikely(err))
1105 return err;
1106 }
1107
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001108 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001109 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001110 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001111 err = -ENODEV;
1112 goto unlock;
1113 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001114
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001115 if (unlikely(!a[OVS_FLOW_ATTR_KEY])) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001116 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001117 goto unlock;
1118 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001119
Alex Wang4a46b242014-06-30 20:30:29 -07001120 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
1121 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001122 err = -ENOENT;
1123 goto unlock;
1124 }
Jesse Grossccb13522011-10-25 19:26:31 -07001125
Pravin B Shelarb637e492013-10-04 00:14:23 -07001126 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001127 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001128
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001129 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
1130 info, false);
1131 if (likely(reply)) {
1132 if (likely(!IS_ERR(reply))) {
1133 rcu_read_lock(); /*To keep RCU checker happy. */
1134 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1135 reply, info->snd_portid,
1136 info->snd_seq, 0,
1137 OVS_FLOW_CMD_DEL);
1138 rcu_read_unlock();
1139 BUG_ON(err < 0);
1140
1141 ovs_notify(&dp_flow_genl_family, reply, info);
1142 } else {
1143 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1144 }
1145 }
1146
1147 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001148 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001149unlock:
1150 ovs_unlock();
1151 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001152}
1153
1154static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1155{
1156 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001157 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001158 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07001159
Pravin B Shelard57170b2013-07-30 15:39:39 -07001160 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001161 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001162 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001163 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001164 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001165 }
Jesse Grossccb13522011-10-25 19:26:31 -07001166
Pravin B Shelarb637e492013-10-04 00:14:23 -07001167 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001168 for (;;) {
1169 struct sw_flow *flow;
1170 u32 bucket, obj;
1171
1172 bucket = cb->args[0];
1173 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001174 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001175 if (!flow)
1176 break;
1177
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001178 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001179 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001180 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1181 OVS_FLOW_CMD_NEW) < 0)
1182 break;
1183
1184 cb->args[0] = bucket;
1185 cb->args[1] = obj;
1186 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001187 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001188 return skb->len;
1189}
1190
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001191static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1192 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
1193 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1194 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
1195};
1196
stephen hemminger48e48a72014-07-16 11:25:52 -07001197static const struct genl_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001198 { .cmd = OVS_FLOW_CMD_NEW,
1199 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1200 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001201 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001202 },
1203 { .cmd = OVS_FLOW_CMD_DEL,
1204 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1205 .policy = flow_policy,
1206 .doit = ovs_flow_cmd_del
1207 },
1208 { .cmd = OVS_FLOW_CMD_GET,
1209 .flags = 0, /* OK for unprivileged users. */
1210 .policy = flow_policy,
1211 .doit = ovs_flow_cmd_get,
1212 .dumpit = ovs_flow_cmd_dump
1213 },
1214 { .cmd = OVS_FLOW_CMD_SET,
1215 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1216 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001217 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001218 },
1219};
1220
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001221static struct genl_family dp_flow_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001222 .id = GENL_ID_GENERATE,
1223 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001224 .name = OVS_FLOW_FAMILY,
1225 .version = OVS_FLOW_VERSION,
1226 .maxattr = OVS_FLOW_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001227 .netnsok = true,
1228 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001229 .ops = dp_flow_genl_ops,
1230 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1231 .mcgrps = &ovs_dp_flow_multicast_group,
1232 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001233};
1234
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001235static size_t ovs_dp_cmd_msg_size(void)
1236{
1237 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1238
1239 msgsize += nla_total_size(IFNAMSIZ);
1240 msgsize += nla_total_size(sizeof(struct ovs_dp_stats));
Andy Zhou1bd71162013-10-22 10:42:46 -07001241 msgsize += nla_total_size(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001242 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001243
1244 return msgsize;
1245}
1246
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001247/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001248static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001249 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001250{
1251 struct ovs_header *ovs_header;
1252 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001253 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001254 int err;
1255
Eric W. Biederman15e47302012-09-07 20:12:54 +00001256 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001257 flags, cmd);
1258 if (!ovs_header)
1259 goto error;
1260
1261 ovs_header->dp_ifindex = get_dpifindex(dp);
1262
Jesse Grossccb13522011-10-25 19:26:31 -07001263 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001264 if (err)
1265 goto nla_put_failure;
1266
Andy Zhou1bd71162013-10-22 10:42:46 -07001267 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
1268 if (nla_put(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1269 &dp_stats))
1270 goto nla_put_failure;
1271
1272 if (nla_put(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1273 sizeof(struct ovs_dp_megaflow_stats),
1274 &dp_megaflow_stats))
David S. Miller028d6a62012-03-29 23:20:48 -04001275 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001276
Thomas Graf43d4be92013-12-13 15:22:18 +01001277 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1278 goto nla_put_failure;
1279
Jesse Grossccb13522011-10-25 19:26:31 -07001280 return genlmsg_end(skb, ovs_header);
1281
1282nla_put_failure:
1283 genlmsg_cancel(skb, ovs_header);
1284error:
1285 return -EMSGSIZE;
1286}
1287
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001288static struct sk_buff *ovs_dp_cmd_alloc_info(struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -07001289{
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001290 return genlmsg_new_unicast(ovs_dp_cmd_msg_size(), info, GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001291}
1292
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001293/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001294static struct datapath *lookup_datapath(struct net *net,
1295 struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001296 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1297{
1298 struct datapath *dp;
1299
1300 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001301 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001302 else {
1303 struct vport *vport;
1304
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001305 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001306 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001307 }
1308 return dp ? dp : ERR_PTR(-ENODEV);
1309}
1310
Thomas Graf44da5ae2013-12-13 15:22:19 +01001311static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1312{
1313 struct datapath *dp;
1314
1315 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001316 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001317 return;
1318
1319 WARN(dp->user_features, "Dropping previously announced user features\n");
1320 dp->user_features = 0;
1321}
1322
Thomas Graf43d4be92013-12-13 15:22:18 +01001323static void ovs_dp_change(struct datapath *dp, struct nlattr **a)
1324{
1325 if (a[OVS_DP_ATTR_USER_FEATURES])
1326 dp->user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1327}
1328
Jesse Grossccb13522011-10-25 19:26:31 -07001329static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1330{
1331 struct nlattr **a = info->attrs;
1332 struct vport_parms parms;
1333 struct sk_buff *reply;
1334 struct datapath *dp;
1335 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001336 struct ovs_net *ovs_net;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001337 int err, i;
Jesse Grossccb13522011-10-25 19:26:31 -07001338
1339 err = -EINVAL;
1340 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1341 goto err;
1342
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001343 reply = ovs_dp_cmd_alloc_info(info);
1344 if (!reply)
1345 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001346
1347 err = -ENOMEM;
1348 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1349 if (dp == NULL)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001350 goto err_free_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001351
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001352 ovs_dp_set_net(dp, hold_net(sock_net(skb->sk)));
Jesse Grossccb13522011-10-25 19:26:31 -07001353
1354 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001355 err = ovs_flow_tbl_init(&dp->table);
1356 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001357 goto err_free_dp;
1358
WANG Cong1c213bd2014-02-13 11:46:28 -08001359 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -07001360 if (!dp->stats_percpu) {
1361 err = -ENOMEM;
1362 goto err_destroy_table;
1363 }
1364
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001365 dp->ports = kmalloc(DP_VPORT_HASH_BUCKETS * sizeof(struct hlist_head),
Pravin B Shelare6445712013-10-03 18:16:47 -07001366 GFP_KERNEL);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001367 if (!dp->ports) {
1368 err = -ENOMEM;
1369 goto err_destroy_percpu;
1370 }
1371
1372 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1373 INIT_HLIST_HEAD(&dp->ports[i]);
1374
Jesse Grossccb13522011-10-25 19:26:31 -07001375 /* Set up our datapath device. */
1376 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1377 parms.type = OVS_VPORT_TYPE_INTERNAL;
1378 parms.options = NULL;
1379 parms.dp = dp;
1380 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001381 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001382
Thomas Graf43d4be92013-12-13 15:22:18 +01001383 ovs_dp_change(dp, a);
1384
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001385 /* So far only local changes have been made, now need the lock. */
1386 ovs_lock();
1387
Jesse Grossccb13522011-10-25 19:26:31 -07001388 vport = new_vport(&parms);
1389 if (IS_ERR(vport)) {
1390 err = PTR_ERR(vport);
1391 if (err == -EBUSY)
1392 err = -EEXIST;
1393
Thomas Graf44da5ae2013-12-13 15:22:19 +01001394 if (err == -EEXIST) {
1395 /* An outdated user space instance that does not understand
1396 * the concept of user_features has attempted to create a new
1397 * datapath and is likely to reuse it. Drop all user features.
1398 */
1399 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1400 ovs_dp_reset_user_features(skb, info);
1401 }
1402
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001403 goto err_destroy_ports_array;
Jesse Grossccb13522011-10-25 19:26:31 -07001404 }
1405
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001406 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1407 info->snd_seq, 0, OVS_DP_CMD_NEW);
1408 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001409
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001410 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001411 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001412
1413 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001414
Johannes Berg2a94fe42013-11-19 15:19:39 +01001415 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001416 return 0;
1417
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001418err_destroy_ports_array:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001419 ovs_unlock();
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001420 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -07001421err_destroy_percpu:
1422 free_percpu(dp->stats_percpu);
1423err_destroy_table:
Andy Zhoue80857c2014-01-21 09:31:04 -08001424 ovs_flow_tbl_destroy(&dp->table, false);
Jesse Grossccb13522011-10-25 19:26:31 -07001425err_free_dp:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001426 release_net(ovs_dp_get_net(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001427 kfree(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001428err_free_reply:
1429 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001430err:
1431 return err;
1432}
1433
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001434/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001435static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001436{
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001437 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001438
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001439 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1440 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001441 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001442
Sasha Levinb67bfe02013-02-27 17:06:00 -08001443 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001444 if (vport->port_no != OVSP_LOCAL)
1445 ovs_dp_detach_port(vport);
1446 }
Jesse Grossccb13522011-10-25 19:26:31 -07001447
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001448 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001449
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001450 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001451 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001452 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001453 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001454
Andy Zhoue80857c2014-01-21 09:31:04 -08001455 /* RCU destroy the flow table */
1456 ovs_flow_tbl_destroy(&dp->table, true);
1457
Jesse Grossccb13522011-10-25 19:26:31 -07001458 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001459}
1460
1461static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1462{
1463 struct sk_buff *reply;
1464 struct datapath *dp;
1465 int err;
1466
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001467 reply = ovs_dp_cmd_alloc_info(info);
1468 if (!reply)
1469 return -ENOMEM;
1470
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001471 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001472 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1473 err = PTR_ERR(dp);
1474 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001475 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001476
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001477 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1478 info->snd_seq, 0, OVS_DP_CMD_DEL);
1479 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001480
1481 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001482 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001483
Johannes Berg2a94fe42013-11-19 15:19:39 +01001484 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001485
1486 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001487
1488err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001489 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001490 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001491 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001492}
1493
1494static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1495{
1496 struct sk_buff *reply;
1497 struct datapath *dp;
1498 int err;
1499
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001500 reply = ovs_dp_cmd_alloc_info(info);
1501 if (!reply)
1502 return -ENOMEM;
1503
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001504 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001505 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001506 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001507 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001508 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001509
Thomas Graf43d4be92013-12-13 15:22:18 +01001510 ovs_dp_change(dp, info->attrs);
1511
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001512 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1513 info->snd_seq, 0, OVS_DP_CMD_NEW);
1514 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001515
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001516 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001517 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001518
1519 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001520
1521err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001522 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001523 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001524 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001525}
1526
1527static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1528{
1529 struct sk_buff *reply;
1530 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001531 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001532
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001533 reply = ovs_dp_cmd_alloc_info(info);
1534 if (!reply)
1535 return -ENOMEM;
1536
1537 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001538 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001539 if (IS_ERR(dp)) {
1540 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001541 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001542 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001543 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1544 info->snd_seq, 0, OVS_DP_CMD_NEW);
1545 BUG_ON(err < 0);
1546 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001547
Jesse Grossccb13522011-10-25 19:26:31 -07001548 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001549
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001550err_unlock_free:
1551 rcu_read_unlock();
1552 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001553 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001554}
1555
1556static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1557{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001558 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001559 struct datapath *dp;
1560 int skip = cb->args[0];
1561 int i = 0;
1562
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001563 rcu_read_lock();
1564 list_for_each_entry_rcu(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001565 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001566 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001567 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1568 OVS_DP_CMD_NEW) < 0)
1569 break;
1570 i++;
1571 }
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001572 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001573
1574 cb->args[0] = i;
1575
1576 return skb->len;
1577}
1578
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001579static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1580 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1581 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1582 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1583};
1584
stephen hemminger48e48a72014-07-16 11:25:52 -07001585static const struct genl_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001586 { .cmd = OVS_DP_CMD_NEW,
1587 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1588 .policy = datapath_policy,
1589 .doit = ovs_dp_cmd_new
1590 },
1591 { .cmd = OVS_DP_CMD_DEL,
1592 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1593 .policy = datapath_policy,
1594 .doit = ovs_dp_cmd_del
1595 },
1596 { .cmd = OVS_DP_CMD_GET,
1597 .flags = 0, /* OK for unprivileged users. */
1598 .policy = datapath_policy,
1599 .doit = ovs_dp_cmd_get,
1600 .dumpit = ovs_dp_cmd_dump
1601 },
1602 { .cmd = OVS_DP_CMD_SET,
1603 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1604 .policy = datapath_policy,
1605 .doit = ovs_dp_cmd_set,
1606 },
1607};
1608
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001609static struct genl_family dp_datapath_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001610 .id = GENL_ID_GENERATE,
1611 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001612 .name = OVS_DATAPATH_FAMILY,
1613 .version = OVS_DATAPATH_VERSION,
1614 .maxattr = OVS_DP_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001615 .netnsok = true,
1616 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001617 .ops = dp_datapath_genl_ops,
1618 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1619 .mcgrps = &ovs_dp_datapath_multicast_group,
1620 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001621};
1622
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001623/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001624static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001625 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001626{
1627 struct ovs_header *ovs_header;
1628 struct ovs_vport_stats vport_stats;
1629 int err;
1630
Eric W. Biederman15e47302012-09-07 20:12:54 +00001631 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001632 flags, cmd);
1633 if (!ovs_header)
1634 return -EMSGSIZE;
1635
1636 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1637
David S. Miller028d6a62012-03-29 23:20:48 -04001638 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1639 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001640 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
1641 vport->ops->get_name(vport)))
David S. Miller028d6a62012-03-29 23:20:48 -04001642 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001643
1644 ovs_vport_get_stats(vport, &vport_stats);
David S. Miller028d6a62012-03-29 23:20:48 -04001645 if (nla_put(skb, OVS_VPORT_ATTR_STATS, sizeof(struct ovs_vport_stats),
1646 &vport_stats))
1647 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001648
Alex Wang5cd667b2014-07-17 15:14:13 -07001649 if (ovs_vport_get_upcall_portids(vport, skb))
1650 goto nla_put_failure;
1651
Jesse Grossccb13522011-10-25 19:26:31 -07001652 err = ovs_vport_get_options(vport, skb);
1653 if (err == -EMSGSIZE)
1654 goto error;
1655
1656 return genlmsg_end(skb, ovs_header);
1657
1658nla_put_failure:
1659 err = -EMSGSIZE;
1660error:
1661 genlmsg_cancel(skb, ovs_header);
1662 return err;
1663}
1664
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001665static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1666{
1667 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1668}
1669
1670/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001671struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, u32 portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001672 u32 seq, u8 cmd)
1673{
1674 struct sk_buff *skb;
1675 int retval;
1676
1677 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1678 if (!skb)
1679 return ERR_PTR(-ENOMEM);
1680
Eric W. Biederman15e47302012-09-07 20:12:54 +00001681 retval = ovs_vport_cmd_fill_info(vport, skb, portid, seq, 0, cmd);
Jesse Grossa9341512013-03-26 15:48:38 -07001682 BUG_ON(retval < 0);
1683
Jesse Grossccb13522011-10-25 19:26:31 -07001684 return skb;
1685}
1686
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001687/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001688static struct vport *lookup_vport(struct net *net,
1689 struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001690 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1691{
1692 struct datapath *dp;
1693 struct vport *vport;
1694
1695 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001696 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001697 if (!vport)
1698 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08001699 if (ovs_header->dp_ifindex &&
1700 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1701 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001702 return vport;
1703 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1704 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1705
1706 if (port_no >= DP_MAX_PORTS)
1707 return ERR_PTR(-EFBIG);
1708
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001709 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001710 if (!dp)
1711 return ERR_PTR(-ENODEV);
1712
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001713 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001714 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08001715 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001716 return vport;
1717 } else
1718 return ERR_PTR(-EINVAL);
1719}
1720
1721static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1722{
1723 struct nlattr **a = info->attrs;
1724 struct ovs_header *ovs_header = info->userhdr;
1725 struct vport_parms parms;
1726 struct sk_buff *reply;
1727 struct vport *vport;
1728 struct datapath *dp;
1729 u32 port_no;
1730 int err;
1731
Jesse Grossccb13522011-10-25 19:26:31 -07001732 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
1733 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001734 return -EINVAL;
1735
1736 port_no = a[OVS_VPORT_ATTR_PORT_NO]
1737 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
1738 if (port_no >= DP_MAX_PORTS)
1739 return -EFBIG;
1740
1741 reply = ovs_vport_cmd_alloc_info();
1742 if (!reply)
1743 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001744
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001745 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001746 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001747 err = -ENODEV;
1748 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001749 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001750
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001751 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001752 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001753 err = -EBUSY;
1754 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001755 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001756 } else {
1757 for (port_no = 1; ; port_no++) {
1758 if (port_no >= DP_MAX_PORTS) {
1759 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001760 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001761 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001762 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001763 if (!vport)
1764 break;
1765 }
1766 }
1767
1768 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
1769 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1770 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
1771 parms.dp = dp;
1772 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07001773 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001774
1775 vport = new_vport(&parms);
1776 err = PTR_ERR(vport);
1777 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001778 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001779
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001780 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1781 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1782 BUG_ON(err < 0);
1783 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01001784
Johannes Berg2a94fe42013-11-19 15:19:39 +01001785 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001786 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001787
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001788exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001789 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001790 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001791 return err;
1792}
1793
1794static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
1795{
1796 struct nlattr **a = info->attrs;
1797 struct sk_buff *reply;
1798 struct vport *vport;
1799 int err;
1800
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001801 reply = ovs_vport_cmd_alloc_info();
1802 if (!reply)
1803 return -ENOMEM;
1804
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001805 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001806 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001807 err = PTR_ERR(vport);
1808 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001809 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001810
Jesse Grossccb13522011-10-25 19:26:31 -07001811 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07001812 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07001813 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001814 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07001815 }
1816
Jesse Grossf44f3402013-05-13 08:15:26 -07001817 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07001818 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07001819 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001820 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07001821 }
Jesse Grossa9341512013-03-26 15:48:38 -07001822
Alex Wang5cd667b2014-07-17 15:14:13 -07001823
1824 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
1825 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
1826
1827 err = ovs_vport_set_upcall_portids(vport, ids);
1828 if (err)
1829 goto exit_unlock_free;
1830 }
Jesse Grossccb13522011-10-25 19:26:31 -07001831
Jesse Grossa9341512013-03-26 15:48:38 -07001832 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1833 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1834 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001835
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001836 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001837 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001838 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001839
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001840exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001841 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001842 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001843 return err;
1844}
1845
1846static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
1847{
1848 struct nlattr **a = info->attrs;
1849 struct sk_buff *reply;
1850 struct vport *vport;
1851 int err;
1852
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001853 reply = ovs_vport_cmd_alloc_info();
1854 if (!reply)
1855 return -ENOMEM;
1856
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001857 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001858 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001859 err = PTR_ERR(vport);
1860 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001861 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001862
1863 if (vport->port_no == OVSP_LOCAL) {
1864 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001865 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001866 }
1867
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001868 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1869 info->snd_seq, 0, OVS_VPORT_CMD_DEL);
1870 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001871 ovs_dp_detach_port(vport);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001872 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001873
Johannes Berg2a94fe42013-11-19 15:19:39 +01001874 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001875 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001876
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001877exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001878 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001879 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001880 return err;
1881}
1882
1883static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
1884{
1885 struct nlattr **a = info->attrs;
1886 struct ovs_header *ovs_header = info->userhdr;
1887 struct sk_buff *reply;
1888 struct vport *vport;
1889 int err;
1890
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001891 reply = ovs_vport_cmd_alloc_info();
1892 if (!reply)
1893 return -ENOMEM;
1894
Jesse Grossccb13522011-10-25 19:26:31 -07001895 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001896 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001897 err = PTR_ERR(vport);
1898 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001899 goto exit_unlock_free;
1900 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1901 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1902 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001903 rcu_read_unlock();
1904
1905 return genlmsg_reply(reply, info);
1906
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001907exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07001908 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001909 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001910 return err;
1911}
1912
1913static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1914{
1915 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
1916 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001917 int bucket = cb->args[0], skip = cb->args[1];
1918 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001919
Jesse Grossccb13522011-10-25 19:26:31 -07001920 rcu_read_lock();
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08001921 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1922 if (!dp) {
1923 rcu_read_unlock();
1924 return -ENODEV;
1925 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001926 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07001927 struct vport *vport;
1928
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001929 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001930 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001931 if (j >= skip &&
1932 ovs_vport_cmd_fill_info(vport, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001933 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001934 cb->nlh->nlmsg_seq,
1935 NLM_F_MULTI,
1936 OVS_VPORT_CMD_NEW) < 0)
1937 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07001938
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001939 j++;
1940 }
1941 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001942 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001943out:
Jesse Grossccb13522011-10-25 19:26:31 -07001944 rcu_read_unlock();
1945
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001946 cb->args[0] = i;
1947 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07001948
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001949 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07001950}
1951
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001952static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
1953 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1954 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
1955 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
1956 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
1957 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1958 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
1959};
1960
stephen hemminger48e48a72014-07-16 11:25:52 -07001961static const struct genl_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001962 { .cmd = OVS_VPORT_CMD_NEW,
1963 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1964 .policy = vport_policy,
1965 .doit = ovs_vport_cmd_new
1966 },
1967 { .cmd = OVS_VPORT_CMD_DEL,
1968 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1969 .policy = vport_policy,
1970 .doit = ovs_vport_cmd_del
1971 },
1972 { .cmd = OVS_VPORT_CMD_GET,
1973 .flags = 0, /* OK for unprivileged users. */
1974 .policy = vport_policy,
1975 .doit = ovs_vport_cmd_get,
1976 .dumpit = ovs_vport_cmd_dump
1977 },
1978 { .cmd = OVS_VPORT_CMD_SET,
1979 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1980 .policy = vport_policy,
1981 .doit = ovs_vport_cmd_set,
1982 },
1983};
1984
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001985struct genl_family dp_vport_genl_family = {
1986 .id = GENL_ID_GENERATE,
1987 .hdrsize = sizeof(struct ovs_header),
1988 .name = OVS_VPORT_FAMILY,
1989 .version = OVS_VPORT_VERSION,
1990 .maxattr = OVS_VPORT_ATTR_MAX,
1991 .netnsok = true,
1992 .parallel_ops = true,
1993 .ops = dp_vport_genl_ops,
1994 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
1995 .mcgrps = &ovs_dp_vport_multicast_group,
1996 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001997};
1998
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001999static struct genl_family * const dp_genl_families[] = {
2000 &dp_datapath_genl_family,
2001 &dp_vport_genl_family,
2002 &dp_flow_genl_family,
2003 &dp_packet_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07002004};
2005
2006static void dp_unregister_genl(int n_families)
2007{
2008 int i;
2009
2010 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002011 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002012}
2013
2014static int dp_register_genl(void)
2015{
Jesse Grossccb13522011-10-25 19:26:31 -07002016 int err;
2017 int i;
2018
Jesse Grossccb13522011-10-25 19:26:31 -07002019 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002020
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002021 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002022 if (err)
2023 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002024 }
2025
2026 return 0;
2027
2028error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002029 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002030 return err;
2031}
2032
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002033static int __net_init ovs_init_net(struct net *net)
2034{
2035 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2036
2037 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002038 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002039 return 0;
2040}
2041
2042static void __net_exit ovs_exit_net(struct net *net)
2043{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002044 struct datapath *dp, *dp_next;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002045 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002046
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002047 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002048 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2049 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002050 ovs_unlock();
2051
2052 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002053}
2054
2055static struct pernet_operations ovs_net_ops = {
2056 .init = ovs_init_net,
2057 .exit = ovs_exit_net,
2058 .id = &ovs_net_id,
2059 .size = sizeof(struct ovs_net),
2060};
2061
Jesse Grossccb13522011-10-25 19:26:31 -07002062static int __init dp_init(void)
2063{
Jesse Grossccb13522011-10-25 19:26:31 -07002064 int err;
2065
YOSHIFUJI Hideaki / 吉藤英明3523b292013-01-09 07:19:55 +00002066 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002067
2068 pr_info("Open vSwitch switching datapath\n");
2069
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002070 err = ovs_internal_dev_rtnl_link_register();
Jesse Grossccb13522011-10-25 19:26:31 -07002071 if (err)
2072 goto error;
2073
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002074 err = ovs_flow_init();
2075 if (err)
2076 goto error_unreg_rtnl_link;
2077
Jesse Grossccb13522011-10-25 19:26:31 -07002078 err = ovs_vport_init();
2079 if (err)
2080 goto error_flow_exit;
2081
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002082 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002083 if (err)
2084 goto error_vport_exit;
2085
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002086 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2087 if (err)
2088 goto error_netns_exit;
2089
Jesse Grossccb13522011-10-25 19:26:31 -07002090 err = dp_register_genl();
2091 if (err < 0)
2092 goto error_unreg_notifier;
2093
Jesse Grossccb13522011-10-25 19:26:31 -07002094 return 0;
2095
2096error_unreg_notifier:
2097 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002098error_netns_exit:
2099 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002100error_vport_exit:
2101 ovs_vport_exit();
2102error_flow_exit:
2103 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002104error_unreg_rtnl_link:
2105 ovs_internal_dev_rtnl_link_unregister();
Jesse Grossccb13522011-10-25 19:26:31 -07002106error:
2107 return err;
2108}
2109
2110static void dp_cleanup(void)
2111{
Jesse Grossccb13522011-10-25 19:26:31 -07002112 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
2113 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002114 unregister_pernet_device(&ovs_net_ops);
2115 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002116 ovs_vport_exit();
2117 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002118 ovs_internal_dev_rtnl_link_unregister();
Jesse Grossccb13522011-10-25 19:26:31 -07002119}
2120
2121module_init(dp_init);
2122module_exit(dp_cleanup);
2123
2124MODULE_DESCRIPTION("Open vSwitch switching datapath");
2125MODULE_LICENSE("GPL");