blob: 7228ec3faf19cdc02a685caa04ccbf04ddf8005a [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. */
81static bool ovs_must_notify(struct genl_info *info,
82 const struct genl_multicast_group *grp)
83{
84 return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
85 netlink_has_listeners(genl_info_net(info)->genl_sock, 0);
86}
87
Johannes Berg68eb5502013-11-19 15:19:38 +010088static void ovs_notify(struct genl_family *family,
Johannes Berg2a94fe42013-11-19 15:19:39 +010089 struct sk_buff *skb, struct genl_info *info)
Thomas Grafed661182013-03-29 14:46:50 +010090{
Johannes Berg68eb5502013-11-19 15:19:38 +010091 genl_notify(family, skb, genl_info_net(info), info->snd_portid,
Johannes Berg2a94fe42013-11-19 15:19:39 +010092 0, info->nlhdr, GFP_KERNEL);
Thomas Grafed661182013-03-29 14:46:50 +010093}
94
Pravin B Shelar46df7b82012-02-22 19:58:59 -080095/**
Jesse Grossccb13522011-10-25 19:26:31 -070096 * DOC: Locking:
97 *
Pravin B Shelar8e4e1712013-04-15 13:23:03 -070098 * All writes e.g. Writes to device state (add/remove datapath, port, set
99 * operations on vports, etc.), Writes to other state (flow table
100 * modifications, set miscellaneous datapath parameters, etc.) are protected
101 * by ovs_lock.
Jesse Grossccb13522011-10-25 19:26:31 -0700102 *
103 * Reads are protected by RCU.
104 *
105 * There are a few special cases (mostly stats) that have their own
106 * synchronization but they nest under all of above and don't interact with
107 * each other.
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700108 *
109 * The RTNL lock nests inside ovs_mutex.
Jesse Grossccb13522011-10-25 19:26:31 -0700110 */
111
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700112static DEFINE_MUTEX(ovs_mutex);
113
114void ovs_lock(void)
115{
116 mutex_lock(&ovs_mutex);
117}
118
119void ovs_unlock(void)
120{
121 mutex_unlock(&ovs_mutex);
122}
123
124#ifdef CONFIG_LOCKDEP
125int lockdep_ovsl_is_held(void)
126{
127 if (debug_locks)
128 return lockdep_is_held(&ovs_mutex);
129 else
130 return 1;
131}
132#endif
133
Jesse Grossccb13522011-10-25 19:26:31 -0700134static struct vport *new_vport(const struct vport_parms *);
Thomas Graf8055a892013-12-13 15:22:20 +0100135static int queue_gso_packets(struct datapath *dp, struct sk_buff *,
Jesse Grossccb13522011-10-25 19:26:31 -0700136 const struct dp_upcall_info *);
Thomas Graf8055a892013-12-13 15:22:20 +0100137static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
Jesse Grossccb13522011-10-25 19:26:31 -0700138 const struct dp_upcall_info *);
139
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700140/* Must be called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800141static struct datapath *get_dp(struct net *net, int dp_ifindex)
Jesse Grossccb13522011-10-25 19:26:31 -0700142{
143 struct datapath *dp = NULL;
144 struct net_device *dev;
145
146 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800147 dev = dev_get_by_index_rcu(net, dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700148 if (dev) {
149 struct vport *vport = ovs_internal_dev_get_vport(dev);
150 if (vport)
151 dp = vport->dp;
152 }
153 rcu_read_unlock();
154
155 return dp;
156}
157
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700158/* Must be called with rcu_read_lock or ovs_mutex. */
Stephen Hemminger443cd882013-12-17 19:22:48 +0000159static const char *ovs_dp_name(const struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -0700160{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700161 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700162 return vport->ops->get_name(vport);
163}
164
165static int get_dpifindex(struct datapath *dp)
166{
167 struct vport *local;
168 int ifindex;
169
170 rcu_read_lock();
171
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700172 local = ovs_vport_rcu(dp, OVSP_LOCAL);
Jesse Grossccb13522011-10-25 19:26:31 -0700173 if (local)
Thomas Grafcff63a52013-04-29 13:06:41 +0000174 ifindex = netdev_vport_priv(local)->dev->ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700175 else
176 ifindex = 0;
177
178 rcu_read_unlock();
179
180 return ifindex;
181}
182
183static void destroy_dp_rcu(struct rcu_head *rcu)
184{
185 struct datapath *dp = container_of(rcu, struct datapath, rcu);
186
Jesse Grossccb13522011-10-25 19:26:31 -0700187 free_percpu(dp->stats_percpu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800188 release_net(ovs_dp_get_net(dp));
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700189 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -0700190 kfree(dp);
191}
192
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700193static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
194 u16 port_no)
195{
196 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
197}
198
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700199/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700200struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
201{
202 struct vport *vport;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700203 struct hlist_head *head;
204
205 head = vport_hash_bucket(dp, port_no);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800206 hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700207 if (vport->port_no == port_no)
208 return vport;
209 }
210 return NULL;
211}
212
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700213/* Called with ovs_mutex. */
Jesse Grossccb13522011-10-25 19:26:31 -0700214static struct vport *new_vport(const struct vport_parms *parms)
215{
216 struct vport *vport;
217
218 vport = ovs_vport_add(parms);
219 if (!IS_ERR(vport)) {
220 struct datapath *dp = parms->dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700221 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
Jesse Grossccb13522011-10-25 19:26:31 -0700222
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700223 hlist_add_head_rcu(&vport->dp_hash_node, head);
Jesse Grossccb13522011-10-25 19:26:31 -0700224 }
Jesse Grossccb13522011-10-25 19:26:31 -0700225 return vport;
226}
227
Jesse Grossccb13522011-10-25 19:26:31 -0700228void ovs_dp_detach_port(struct vport *p)
229{
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700230 ASSERT_OVSL();
Jesse Grossccb13522011-10-25 19:26:31 -0700231
232 /* First drop references to device. */
Pravin B Shelar15eac2a2012-08-23 12:40:54 -0700233 hlist_del_rcu(&p->dp_hash_node);
Jesse Grossccb13522011-10-25 19:26:31 -0700234
235 /* Then destroy it. */
236 ovs_vport_del(p);
237}
238
239/* Must be called with rcu_read_lock. */
240void ovs_dp_process_received_packet(struct vport *p, struct sk_buff *skb)
241{
242 struct datapath *dp = p->dp;
243 struct sw_flow *flow;
244 struct dp_stats_percpu *stats;
245 struct sw_flow_key key;
246 u64 *stats_counter;
Andy Zhou1bd71162013-10-22 10:42:46 -0700247 u32 n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700248 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700249
Shan Wei404f2f12012-11-13 09:52:25 +0800250 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700251
252 /* Extract flow from 'skb' into 'key'. */
Andy Zhou03f0d912013-08-07 20:01:00 -0700253 error = ovs_flow_extract(skb, p->port_no, &key);
Jesse Grossccb13522011-10-25 19:26:31 -0700254 if (unlikely(error)) {
255 kfree_skb(skb);
256 return;
257 }
258
259 /* Look up flow. */
Andy Zhou5bb50632013-11-25 10:42:46 -0800260 flow = ovs_flow_tbl_lookup_stats(&dp->table, &key, &n_mask_hit);
Jesse Grossccb13522011-10-25 19:26:31 -0700261 if (unlikely(!flow)) {
262 struct dp_upcall_info upcall;
263
264 upcall.cmd = OVS_PACKET_CMD_MISS;
265 upcall.key = &key;
266 upcall.userdata = NULL;
Alex Wang5cd667b2014-07-17 15:14:13 -0700267 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700268 ovs_dp_upcall(dp, skb, &upcall);
269 consume_skb(skb);
270 stats_counter = &stats->n_missed;
271 goto out;
272 }
273
274 OVS_CB(skb)->flow = flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700275 OVS_CB(skb)->pkt_key = &key;
Jesse Grossccb13522011-10-25 19:26:31 -0700276
Ben Pfaffad552002014-05-06 16:48:38 -0700277 ovs_flow_stats_update(OVS_CB(skb)->flow, key.tp.flags, skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700278 ovs_execute_actions(dp, skb);
Pravin B Shelare298e502013-10-29 17:22:21 -0700279 stats_counter = &stats->n_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700280
281out:
282 /* Update datapath statistics. */
WANG Congdf9d9fd2014-02-14 15:10:46 -0800283 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700284 (*stats_counter)++;
Andy Zhou1bd71162013-10-22 10:42:46 -0700285 stats->n_mask_hit += n_mask_hit;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800286 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700287}
288
Jesse Grossccb13522011-10-25 19:26:31 -0700289int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800290 const struct dp_upcall_info *upcall_info)
Jesse Grossccb13522011-10-25 19:26:31 -0700291{
292 struct dp_stats_percpu *stats;
Jesse Grossccb13522011-10-25 19:26:31 -0700293 int err;
294
Eric W. Biederman15e47302012-09-07 20:12:54 +0000295 if (upcall_info->portid == 0) {
Jesse Grossccb13522011-10-25 19:26:31 -0700296 err = -ENOTCONN;
297 goto err;
298 }
299
Jesse Grossccb13522011-10-25 19:26:31 -0700300 if (!skb_is_gso(skb))
Thomas Graf8055a892013-12-13 15:22:20 +0100301 err = queue_userspace_packet(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700302 else
Thomas Graf8055a892013-12-13 15:22:20 +0100303 err = queue_gso_packets(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700304 if (err)
305 goto err;
306
307 return 0;
308
309err:
Shan Wei404f2f12012-11-13 09:52:25 +0800310 stats = this_cpu_ptr(dp->stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -0700311
WANG Congdf9d9fd2014-02-14 15:10:46 -0800312 u64_stats_update_begin(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700313 stats->n_lost++;
WANG Congdf9d9fd2014-02-14 15:10:46 -0800314 u64_stats_update_end(&stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700315
316 return err;
317}
318
Thomas Graf8055a892013-12-13 15:22:20 +0100319static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
Jesse Grossccb13522011-10-25 19:26:31 -0700320 const struct dp_upcall_info *upcall_info)
321{
Ben Pfaffa1b5d0d2012-07-20 14:47:54 -0700322 unsigned short gso_type = skb_shinfo(skb)->gso_type;
Jesse Grossccb13522011-10-25 19:26:31 -0700323 struct dp_upcall_info later_info;
324 struct sw_flow_key later_key;
325 struct sk_buff *segs, *nskb;
326 int err;
327
Thomas Graf09c5e602013-12-13 15:22:22 +0100328 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
Pravin B Shelar92e5dfc2012-07-20 14:46:29 -0700329 if (IS_ERR(segs))
330 return PTR_ERR(segs);
Jesse Grossccb13522011-10-25 19:26:31 -0700331
332 /* Queue all of the segments. */
333 skb = segs;
334 do {
Thomas Graf8055a892013-12-13 15:22:20 +0100335 err = queue_userspace_packet(dp, skb, upcall_info);
Jesse Grossccb13522011-10-25 19:26:31 -0700336 if (err)
337 break;
338
Ben Pfaffa1b5d0d2012-07-20 14:47:54 -0700339 if (skb == segs && gso_type & SKB_GSO_UDP) {
Jesse Grossccb13522011-10-25 19:26:31 -0700340 /* The initial flow key extracted by ovs_flow_extract()
341 * in this case is for a first fragment, so we need to
342 * properly mark later fragments.
343 */
344 later_key = *upcall_info->key;
345 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
346
347 later_info = *upcall_info;
348 later_info.key = &later_key;
349 upcall_info = &later_info;
350 }
351 } while ((skb = skb->next));
352
353 /* Free all of the segments. */
354 skb = segs;
355 do {
356 nskb = skb->next;
357 if (err)
358 kfree_skb(skb);
359 else
360 consume_skb(skb);
361 } while ((skb = nskb));
362 return err;
363}
364
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100365static size_t key_attr_size(void)
366{
367 return nla_total_size(4) /* OVS_KEY_ATTR_PRIORITY */
Pravin B Shelar7d5437c2013-06-17 17:50:18 -0700368 + nla_total_size(0) /* OVS_KEY_ATTR_TUNNEL */
369 + nla_total_size(8) /* OVS_TUNNEL_KEY_ATTR_ID */
370 + nla_total_size(4) /* OVS_TUNNEL_KEY_ATTR_IPV4_SRC */
371 + nla_total_size(4) /* OVS_TUNNEL_KEY_ATTR_IPV4_DST */
372 + nla_total_size(1) /* OVS_TUNNEL_KEY_ATTR_TOS */
373 + nla_total_size(1) /* OVS_TUNNEL_KEY_ATTR_TTL */
374 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT */
375 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_CSUM */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100376 + nla_total_size(4) /* OVS_KEY_ATTR_IN_PORT */
377 + nla_total_size(4) /* OVS_KEY_ATTR_SKB_MARK */
378 + nla_total_size(12) /* OVS_KEY_ATTR_ETHERNET */
379 + nla_total_size(2) /* OVS_KEY_ATTR_ETHERTYPE */
380 + nla_total_size(4) /* OVS_KEY_ATTR_8021Q */
381 + nla_total_size(0) /* OVS_KEY_ATTR_ENCAP */
382 + nla_total_size(2) /* OVS_KEY_ATTR_ETHERTYPE */
383 + nla_total_size(40) /* OVS_KEY_ATTR_IPV6 */
384 + nla_total_size(2) /* OVS_KEY_ATTR_ICMPV6 */
385 + nla_total_size(28); /* OVS_KEY_ATTR_ND */
386}
387
Thomas Grafbda56f12013-12-13 15:22:21 +0100388static size_t upcall_msg_size(const struct nlattr *userdata,
389 unsigned int hdrlen)
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100390{
391 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
Thomas Grafbda56f12013-12-13 15:22:21 +0100392 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100393 + nla_total_size(key_attr_size()); /* OVS_PACKET_ATTR_KEY */
394
395 /* OVS_PACKET_ATTR_USERDATA */
396 if (userdata)
397 size += NLA_ALIGN(userdata->nla_len);
398
399 return size;
400}
401
Thomas Graf8055a892013-12-13 15:22:20 +0100402static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
Jesse Grossccb13522011-10-25 19:26:31 -0700403 const struct dp_upcall_info *upcall_info)
404{
405 struct ovs_header *upcall;
406 struct sk_buff *nskb = NULL;
407 struct sk_buff *user_skb; /* to be queued to userspace */
408 struct nlattr *nla;
Thomas Graf795449d2013-11-30 13:21:32 +0100409 struct genl_info info = {
Thomas Graf8055a892013-12-13 15:22:20 +0100410 .dst_sk = ovs_dp_get_net(dp)->genl_sock,
Thomas Graf795449d2013-11-30 13:21:32 +0100411 .snd_portid = upcall_info->portid,
412 };
413 size_t len;
Thomas Grafbda56f12013-12-13 15:22:21 +0100414 unsigned int hlen;
Thomas Graf8055a892013-12-13 15:22:20 +0100415 int err, dp_ifindex;
416
417 dp_ifindex = get_dpifindex(dp);
418 if (!dp_ifindex)
419 return -ENODEV;
Jesse Grossccb13522011-10-25 19:26:31 -0700420
421 if (vlan_tx_tag_present(skb)) {
422 nskb = skb_clone(skb, GFP_ATOMIC);
423 if (!nskb)
424 return -ENOMEM;
425
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000426 nskb = __vlan_put_tag(nskb, nskb->vlan_proto, vlan_tx_tag_get(nskb));
Dan Carpenter8aa51d62012-05-13 08:44:18 +0000427 if (!nskb)
Jesse Grossccb13522011-10-25 19:26:31 -0700428 return -ENOMEM;
429
430 nskb->vlan_tci = 0;
431 skb = nskb;
432 }
433
434 if (nla_attr_size(skb->len) > USHRT_MAX) {
435 err = -EFBIG;
436 goto out;
437 }
438
Thomas Grafbda56f12013-12-13 15:22:21 +0100439 /* Complete checksum if needed */
440 if (skb->ip_summed == CHECKSUM_PARTIAL &&
441 (err = skb_checksum_help(skb)))
442 goto out;
443
444 /* Older versions of OVS user space enforce alignment of the last
445 * Netlink attribute to NLA_ALIGNTO which would require extensive
446 * padding logic. Only perform zerocopy if padding is not required.
447 */
448 if (dp->user_features & OVS_DP_F_UNALIGNED)
449 hlen = skb_zerocopy_headlen(skb);
450 else
451 hlen = skb->len;
452
453 len = upcall_msg_size(upcall_info->userdata, hlen);
Thomas Graf795449d2013-11-30 13:21:32 +0100454 user_skb = genlmsg_new_unicast(len, &info, GFP_ATOMIC);
Jesse Grossccb13522011-10-25 19:26:31 -0700455 if (!user_skb) {
456 err = -ENOMEM;
457 goto out;
458 }
459
460 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
461 0, upcall_info->cmd);
462 upcall->dp_ifindex = dp_ifindex;
463
464 nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_KEY);
Andy Zhouf53e3832014-07-17 15:17:44 -0700465 err = ovs_nla_put_flow(upcall_info->key, upcall_info->key, user_skb);
466 BUG_ON(err);
Jesse Grossccb13522011-10-25 19:26:31 -0700467 nla_nest_end(user_skb, nla);
468
469 if (upcall_info->userdata)
Ben Pfaff44901082013-02-15 17:29:22 -0800470 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
471 nla_len(upcall_info->userdata),
472 nla_data(upcall_info->userdata));
Jesse Grossccb13522011-10-25 19:26:31 -0700473
Thomas Grafbda56f12013-12-13 15:22:21 +0100474 /* Only reserve room for attribute header, packet data is added
475 * in skb_zerocopy() */
476 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
477 err = -ENOBUFS;
478 goto out;
479 }
480 nla->nla_len = nla_attr_size(skb->len);
Jesse Grossccb13522011-10-25 19:26:31 -0700481
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000482 err = skb_zerocopy(user_skb, skb, skb->len, hlen);
483 if (err)
484 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -0700485
Thomas Grafaea0bb42014-01-14 16:27:49 +0000486 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
487 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
488 size_t plen = NLA_ALIGN(user_skb->len) - user_skb->len;
489
490 if (plen > 0)
491 memset(skb_put(user_skb, plen), 0, plen);
492 }
493
Thomas Grafbda56f12013-12-13 15:22:21 +0100494 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
495
Thomas Graf8055a892013-12-13 15:22:20 +0100496 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
Jesse Grossccb13522011-10-25 19:26:31 -0700497out:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000498 if (err)
499 skb_tx_error(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700500 kfree_skb(nskb);
501 return err;
502}
503
Jesse Grossccb13522011-10-25 19:26:31 -0700504static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
505{
506 struct ovs_header *ovs_header = info->userhdr;
507 struct nlattr **a = info->attrs;
508 struct sw_flow_actions *acts;
509 struct sk_buff *packet;
510 struct sw_flow *flow;
511 struct datapath *dp;
512 struct ethhdr *eth;
513 int len;
514 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700515
516 err = -EINVAL;
517 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
Thomas Grafdded45fc2013-03-29 14:46:47 +0100518 !a[OVS_PACKET_ATTR_ACTIONS])
Jesse Grossccb13522011-10-25 19:26:31 -0700519 goto err;
520
521 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
522 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
523 err = -ENOMEM;
524 if (!packet)
525 goto err;
526 skb_reserve(packet, NET_IP_ALIGN);
527
Thomas Graf32686a92013-03-29 14:46:48 +0100528 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
Jesse Grossccb13522011-10-25 19:26:31 -0700529
530 skb_reset_mac_header(packet);
531 eth = eth_hdr(packet);
532
533 /* Normally, setting the skb 'protocol' field would be handled by a
534 * call to eth_type_trans(), but it assumes there's a sending
535 * device, which we may not have. */
Simon Hormane5c5d222013-03-28 13:38:25 +0900536 if (ntohs(eth->h_proto) >= ETH_P_802_3_MIN)
Jesse Grossccb13522011-10-25 19:26:31 -0700537 packet->protocol = eth->h_proto;
538 else
539 packet->protocol = htons(ETH_P_802_2);
540
541 /* Build an sw_flow for sending this packet. */
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700542 flow = ovs_flow_alloc();
Jesse Grossccb13522011-10-25 19:26:31 -0700543 err = PTR_ERR(flow);
544 if (IS_ERR(flow))
545 goto err_kfree_skb;
546
Andy Zhou03f0d912013-08-07 20:01:00 -0700547 err = ovs_flow_extract(packet, -1, &flow->key);
Jesse Grossccb13522011-10-25 19:26:31 -0700548 if (err)
549 goto err_flow_free;
550
Pravin B Shelare6445712013-10-03 18:16:47 -0700551 err = ovs_nla_get_flow_metadata(flow, a[OVS_PACKET_ATTR_KEY]);
Jesse Grossccb13522011-10-25 19:26:31 -0700552 if (err)
553 goto err_flow_free;
Pravin B Shelare6445712013-10-03 18:16:47 -0700554 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_PACKET_ATTR_ACTIONS]));
Jesse Grossccb13522011-10-25 19:26:31 -0700555 err = PTR_ERR(acts);
556 if (IS_ERR(acts))
557 goto err_flow_free;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700558
Pravin B Shelare6445712013-10-03 18:16:47 -0700559 err = ovs_nla_copy_actions(a[OVS_PACKET_ATTR_ACTIONS],
560 &flow->key, 0, &acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700561 rcu_assign_pointer(flow->sf_acts, acts);
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700562 if (err)
563 goto err_flow_free;
Jesse Grossccb13522011-10-25 19:26:31 -0700564
565 OVS_CB(packet)->flow = flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700566 OVS_CB(packet)->pkt_key = &flow->key;
Jesse Grossccb13522011-10-25 19:26:31 -0700567 packet->priority = flow->key.phy.priority;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800568 packet->mark = flow->key.phy.skb_mark;
Jesse Grossccb13522011-10-25 19:26:31 -0700569
570 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800571 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -0700572 err = -ENODEV;
573 if (!dp)
574 goto err_unlock;
575
576 local_bh_disable();
577 err = ovs_execute_actions(dp, packet);
578 local_bh_enable();
579 rcu_read_unlock();
580
Andy Zhou03f0d912013-08-07 20:01:00 -0700581 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700582 return err;
583
584err_unlock:
585 rcu_read_unlock();
586err_flow_free:
Andy Zhou03f0d912013-08-07 20:01:00 -0700587 ovs_flow_free(flow, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700588err_kfree_skb:
589 kfree_skb(packet);
590err:
591 return err;
592}
593
594static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
Thomas Grafdded45fc2013-03-29 14:46:47 +0100595 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
Jesse Grossccb13522011-10-25 19:26:31 -0700596 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
597 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
598};
599
Johannes Berg4534de82013-11-14 17:14:46 +0100600static const struct genl_ops dp_packet_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -0700601 { .cmd = OVS_PACKET_CMD_EXECUTE,
602 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
603 .policy = packet_policy,
604 .doit = ovs_packet_cmd_execute
605 }
606};
607
Pravin B Shelar0c200ef2014-05-06 16:44:50 -0700608static struct genl_family dp_packet_genl_family = {
609 .id = GENL_ID_GENERATE,
610 .hdrsize = sizeof(struct ovs_header),
611 .name = OVS_PACKET_FAMILY,
612 .version = OVS_PACKET_VERSION,
613 .maxattr = OVS_PACKET_ATTR_MAX,
614 .netnsok = true,
615 .parallel_ops = true,
616 .ops = dp_packet_genl_ops,
617 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
618};
619
Andy Zhou1bd71162013-10-22 10:42:46 -0700620static void get_dp_stats(struct datapath *dp, struct ovs_dp_stats *stats,
621 struct ovs_dp_megaflow_stats *mega_stats)
Jesse Grossccb13522011-10-25 19:26:31 -0700622{
623 int i;
Jesse Grossccb13522011-10-25 19:26:31 -0700624
Andy Zhou1bd71162013-10-22 10:42:46 -0700625 memset(mega_stats, 0, sizeof(*mega_stats));
626
Pravin B Shelarb637e492013-10-04 00:14:23 -0700627 stats->n_flows = ovs_flow_tbl_count(&dp->table);
Andy Zhou1bd71162013-10-22 10:42:46 -0700628 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
Jesse Grossccb13522011-10-25 19:26:31 -0700629
630 stats->n_hit = stats->n_missed = stats->n_lost = 0;
Andy Zhou1bd71162013-10-22 10:42:46 -0700631
Jesse Grossccb13522011-10-25 19:26:31 -0700632 for_each_possible_cpu(i) {
633 const struct dp_stats_percpu *percpu_stats;
634 struct dp_stats_percpu local_stats;
635 unsigned int start;
636
637 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
638
639 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700640 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
Jesse Grossccb13522011-10-25 19:26:31 -0700641 local_stats = *percpu_stats;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700642 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
Jesse Grossccb13522011-10-25 19:26:31 -0700643
644 stats->n_hit += local_stats.n_hit;
645 stats->n_missed += local_stats.n_missed;
646 stats->n_lost += local_stats.n_lost;
Andy Zhou1bd71162013-10-22 10:42:46 -0700647 mega_stats->n_mask_hit += local_stats.n_mask_hit;
Jesse Grossccb13522011-10-25 19:26:31 -0700648 }
649}
650
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100651static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts)
652{
653 return NLMSG_ALIGN(sizeof(struct ovs_header))
654 + nla_total_size(key_attr_size()) /* OVS_FLOW_ATTR_KEY */
Andy Zhou03f0d912013-08-07 20:01:00 -0700655 + nla_total_size(key_attr_size()) /* OVS_FLOW_ATTR_MASK */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +0100656 + nla_total_size(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
657 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
658 + nla_total_size(8) /* OVS_FLOW_ATTR_USED */
659 + nla_total_size(acts->actions_len); /* OVS_FLOW_ATTR_ACTIONS */
660}
661
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -0700662/* Called with ovs_mutex or RCU read lock. */
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700663static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000664 struct sk_buff *skb, u32 portid,
Jesse Grossccb13522011-10-25 19:26:31 -0700665 u32 seq, u32 flags, u8 cmd)
666{
667 const int skb_orig_len = skb->len;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700668 struct nlattr *start;
Jesse Grossccb13522011-10-25 19:26:31 -0700669 struct ovs_flow_stats stats;
Pravin B Shelare298e502013-10-29 17:22:21 -0700670 __be16 tcp_flags;
671 unsigned long used;
Jesse Grossccb13522011-10-25 19:26:31 -0700672 struct ovs_header *ovs_header;
673 struct nlattr *nla;
Jesse Grossccb13522011-10-25 19:26:31 -0700674 int err;
675
Eric W. Biederman15e47302012-09-07 20:12:54 +0000676 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family, flags, cmd);
Jesse Grossccb13522011-10-25 19:26:31 -0700677 if (!ovs_header)
678 return -EMSGSIZE;
679
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700680 ovs_header->dp_ifindex = dp_ifindex;
Jesse Grossccb13522011-10-25 19:26:31 -0700681
Andy Zhou03f0d912013-08-07 20:01:00 -0700682 /* Fill flow key. */
Jesse Grossccb13522011-10-25 19:26:31 -0700683 nla = nla_nest_start(skb, OVS_FLOW_ATTR_KEY);
684 if (!nla)
685 goto nla_put_failure;
Andy Zhou03f0d912013-08-07 20:01:00 -0700686
Pravin B Shelare6445712013-10-03 18:16:47 -0700687 err = ovs_nla_put_flow(&flow->unmasked_key, &flow->unmasked_key, skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700688 if (err)
689 goto error;
690 nla_nest_end(skb, nla);
691
Andy Zhou03f0d912013-08-07 20:01:00 -0700692 nla = nla_nest_start(skb, OVS_FLOW_ATTR_MASK);
693 if (!nla)
694 goto nla_put_failure;
695
Pravin B Shelare6445712013-10-03 18:16:47 -0700696 err = ovs_nla_put_flow(&flow->key, &flow->mask->key, skb);
Andy Zhou03f0d912013-08-07 20:01:00 -0700697 if (err)
698 goto error;
699
700 nla_nest_end(skb, nla);
701
Pravin B Shelare298e502013-10-29 17:22:21 -0700702 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700703
David S. Miller028d6a62012-03-29 23:20:48 -0400704 if (used &&
705 nla_put_u64(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used)))
706 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700707
David S. Miller028d6a62012-03-29 23:20:48 -0400708 if (stats.n_packets &&
Pravin B Shelare298e502013-10-29 17:22:21 -0700709 nla_put(skb, OVS_FLOW_ATTR_STATS, sizeof(struct ovs_flow_stats), &stats))
David S. Miller028d6a62012-03-29 23:20:48 -0400710 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700711
Pravin B Shelare298e502013-10-29 17:22:21 -0700712 if ((u8)ntohs(tcp_flags) &&
713 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
David S. Miller028d6a62012-03-29 23:20:48 -0400714 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700715
716 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
717 * this is the first flow to be dumped into 'skb'. This is unusual for
718 * Netlink but individual action lists can be longer than
719 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
720 * The userspace caller can always fetch the actions separately if it
721 * really wants them. (Most userspace callers in fact don't care.)
722 *
723 * This can only fail for dump operations because the skb is always
724 * properly sized for single flows.
725 */
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700726 start = nla_nest_start(skb, OVS_FLOW_ATTR_ACTIONS);
727 if (start) {
Pravin B Shelard57170b2013-07-30 15:39:39 -0700728 const struct sw_flow_actions *sf_acts;
729
Jesse Gross663efa32013-12-03 10:58:53 -0800730 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
Pravin B Shelare6445712013-10-03 18:16:47 -0700731 err = ovs_nla_put_actions(sf_acts->actions,
732 sf_acts->actions_len, skb);
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700733
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700734 if (!err)
735 nla_nest_end(skb, start);
736 else {
737 if (skb_orig_len)
738 goto error;
739
740 nla_nest_cancel(skb, start);
741 }
742 } else if (skb_orig_len)
743 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -0700744
745 return genlmsg_end(skb, ovs_header);
746
747nla_put_failure:
748 err = -EMSGSIZE;
749error:
750 genlmsg_cancel(skb, ovs_header);
751 return err;
752}
753
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700754/* May not be called with RCU read lock. */
755static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700756 struct genl_info *info,
757 bool always)
Jesse Grossccb13522011-10-25 19:26:31 -0700758{
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700759 struct sk_buff *skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700760
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700761 if (!always && !ovs_must_notify(info, &ovs_dp_flow_multicast_group))
762 return NULL;
763
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700764 skb = genlmsg_new_unicast(ovs_flow_cmd_msg_size(acts), info, GFP_KERNEL);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700765 if (!skb)
766 return ERR_PTR(-ENOMEM);
767
768 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700769}
770
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700771/* Called with ovs_mutex. */
772static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
773 int dp_ifindex,
774 struct genl_info *info, u8 cmd,
775 bool always)
Jesse Grossccb13522011-10-25 19:26:31 -0700776{
777 struct sk_buff *skb;
778 int retval;
779
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700780 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts), info,
781 always);
Himangi Saraogid0e992a2014-07-27 12:37:46 +0530782 if (IS_ERR_OR_NULL(skb))
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -0700783 return skb;
Jesse Grossccb13522011-10-25 19:26:31 -0700784
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -0700785 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
786 info->snd_portid, info->snd_seq, 0,
787 cmd);
Jesse Grossccb13522011-10-25 19:26:31 -0700788 BUG_ON(retval < 0);
789 return skb;
790}
791
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700792static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -0700793{
794 struct nlattr **a = info->attrs;
795 struct ovs_header *ovs_header = info->userhdr;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700796 struct sw_flow *flow, *new_flow;
Andy Zhou03f0d912013-08-07 20:01:00 -0700797 struct sw_flow_mask mask;
Jesse Grossccb13522011-10-25 19:26:31 -0700798 struct sk_buff *reply;
799 struct datapath *dp;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700800 struct sw_flow_actions *acts;
801 struct sw_flow_match match;
802 int error;
803
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700804 /* Must have key and actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700805 error = -EINVAL;
806 if (!a[OVS_FLOW_ATTR_KEY])
807 goto error;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700808 if (!a[OVS_FLOW_ATTR_ACTIONS])
809 goto error;
810
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700811 /* Most of the time we need to allocate a new flow, do it before
812 * locking.
813 */
814 new_flow = ovs_flow_alloc();
815 if (IS_ERR(new_flow)) {
816 error = PTR_ERR(new_flow);
817 goto error;
818 }
819
820 /* Extract key. */
821 ovs_match_init(&match, &new_flow->unmasked_key, &mask);
822 error = ovs_nla_get_match(&match,
823 a[OVS_FLOW_ATTR_KEY], a[OVS_FLOW_ATTR_MASK]);
824 if (error)
825 goto err_kfree_flow;
826
827 ovs_flow_mask_key(&new_flow->key, &new_flow->unmasked_key, &mask);
828
829 /* Validate actions. */
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700830 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_FLOW_ATTR_ACTIONS]));
831 error = PTR_ERR(acts);
832 if (IS_ERR(acts))
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700833 goto err_kfree_flow;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700834
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700835 error = ovs_nla_copy_actions(a[OVS_FLOW_ATTR_ACTIONS], &new_flow->key,
836 0, &acts);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700837 if (error) {
838 OVS_NLERR("Flow actions may not be safe on all matching packets.\n");
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700839 goto err_kfree_acts;
840 }
841
842 reply = ovs_flow_cmd_alloc_info(acts, info, false);
843 if (IS_ERR(reply)) {
844 error = PTR_ERR(reply);
845 goto err_kfree_acts;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700846 }
847
848 ovs_lock();
849 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700850 if (unlikely(!dp)) {
851 error = -ENODEV;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700852 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700853 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700854 /* Check if this is a duplicate flow */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700855 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->unmasked_key);
856 if (likely(!flow)) {
857 rcu_assign_pointer(new_flow->sf_acts, acts);
858
859 /* Put flow in bucket. */
860 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
861 if (unlikely(error)) {
862 acts = NULL;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700863 goto err_unlock_ovs;
864 }
865
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700866 if (unlikely(reply)) {
867 error = ovs_flow_cmd_fill_info(new_flow,
868 ovs_header->dp_ifindex,
869 reply, info->snd_portid,
870 info->snd_seq, 0,
871 OVS_FLOW_CMD_NEW);
872 BUG_ON(error < 0);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700873 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700874 ovs_unlock();
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700875 } else {
876 struct sw_flow_actions *old_acts;
877
878 /* Bail out if we're not allowed to modify an existing flow.
879 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
880 * because Generic Netlink treats the latter as a dump
881 * request. We also accept NLM_F_EXCL in case that bug ever
882 * gets fixed.
883 */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700884 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
885 | NLM_F_EXCL))) {
886 error = -EEXIST;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700887 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700888 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700889 /* The unmasked key has to be the same for flow updates. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700890 if (unlikely(!ovs_flow_cmp_unmasked_key(flow, &match))) {
Alex Wang4a46b242014-06-30 20:30:29 -0700891 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
892 if (!flow) {
893 error = -ENOENT;
894 goto err_unlock_ovs;
895 }
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700896 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700897 /* Update actions. */
898 old_acts = ovsl_dereference(flow->sf_acts);
899 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700900
901 if (unlikely(reply)) {
902 error = ovs_flow_cmd_fill_info(flow,
903 ovs_header->dp_ifindex,
904 reply, info->snd_portid,
905 info->snd_seq, 0,
906 OVS_FLOW_CMD_NEW);
907 BUG_ON(error < 0);
908 }
909 ovs_unlock();
910
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700911 ovs_nla_free_flow_actions(old_acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700912 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700913 }
914
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700915 if (reply)
916 ovs_notify(&dp_flow_genl_family, reply, info);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700917 return 0;
918
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700919err_unlock_ovs:
920 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700921 kfree_skb(reply);
922err_kfree_acts:
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700923 kfree(acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700924err_kfree_flow:
925 ovs_flow_free(new_flow, false);
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700926error:
927 return error;
928}
929
930static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
931{
932 struct nlattr **a = info->attrs;
933 struct ovs_header *ovs_header = info->userhdr;
934 struct sw_flow_key key, masked_key;
935 struct sw_flow *flow;
936 struct sw_flow_mask mask;
937 struct sk_buff *reply = NULL;
938 struct datapath *dp;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700939 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
Andy Zhou03f0d912013-08-07 20:01:00 -0700940 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -0700941 int error;
Jesse Grossccb13522011-10-25 19:26:31 -0700942
943 /* Extract key. */
944 error = -EINVAL;
945 if (!a[OVS_FLOW_ATTR_KEY])
946 goto error;
Andy Zhou03f0d912013-08-07 20:01:00 -0700947
948 ovs_match_init(&match, &key, &mask);
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700949 error = ovs_nla_get_match(&match,
Pravin B Shelare6445712013-10-03 18:16:47 -0700950 a[OVS_FLOW_ATTR_KEY], a[OVS_FLOW_ATTR_MASK]);
Jesse Grossccb13522011-10-25 19:26:31 -0700951 if (error)
952 goto error;
953
954 /* Validate actions. */
955 if (a[OVS_FLOW_ATTR_ACTIONS]) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700956 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_FLOW_ATTR_ACTIONS]));
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700957 error = PTR_ERR(acts);
958 if (IS_ERR(acts))
Jesse Grossccb13522011-10-25 19:26:31 -0700959 goto error;
Pravin B Shelar74f84a52013-06-17 17:50:12 -0700960
Pravin B Shelare6445712013-10-03 18:16:47 -0700961 ovs_flow_mask_key(&masked_key, &key, &mask);
962 error = ovs_nla_copy_actions(a[OVS_FLOW_ATTR_ACTIONS],
963 &masked_key, 0, &acts);
Andy Zhou03f0d912013-08-07 20:01:00 -0700964 if (error) {
965 OVS_NLERR("Flow actions may not be safe on all matching packets.\n");
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700966 goto err_kfree_acts;
967 }
968 }
969
970 /* Can allocate before locking if have acts. */
971 if (acts) {
972 reply = ovs_flow_cmd_alloc_info(acts, info, false);
973 if (IS_ERR(reply)) {
974 error = PTR_ERR(reply);
975 goto err_kfree_acts;
Andy Zhou03f0d912013-08-07 20:01:00 -0700976 }
Jesse Grossccb13522011-10-25 19:26:31 -0700977 }
978
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700979 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -0800980 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700981 if (unlikely(!dp)) {
982 error = -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -0700983 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700984 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700985 /* Check that the flow exists. */
Alex Wang4a46b242014-06-30 20:30:29 -0700986 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700987 if (unlikely(!flow)) {
988 error = -ENOENT;
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700989 goto err_unlock_ovs;
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700990 }
Alex Wang4a46b242014-06-30 20:30:29 -0700991
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700992 /* Update actions, if present. */
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700993 if (likely(acts)) {
Jarno Rajahalme37bdc872014-05-05 14:53:51 -0700994 old_acts = ovsl_dereference(flow->sf_acts);
Jesse Grossccb13522011-10-25 19:26:31 -0700995 rcu_assign_pointer(flow->sf_acts, acts);
Jarno Rajahalme893f1392014-05-05 15:22:25 -0700996
997 if (unlikely(reply)) {
998 error = ovs_flow_cmd_fill_info(flow,
999 ovs_header->dp_ifindex,
1000 reply, info->snd_portid,
1001 info->snd_seq, 0,
1002 OVS_FLOW_CMD_NEW);
1003 BUG_ON(error < 0);
1004 }
1005 } else {
1006 /* Could not alloc without acts before locking. */
1007 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
1008 info, OVS_FLOW_CMD_NEW, false);
1009 if (unlikely(IS_ERR(reply))) {
1010 error = PTR_ERR(reply);
1011 goto err_unlock_ovs;
1012 }
Jesse Grossccb13522011-10-25 19:26:31 -07001013 }
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001014
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001015 /* Clear stats. */
1016 if (a[OVS_FLOW_ATTR_CLEAR])
1017 ovs_flow_stats_clear(flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001018 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001019
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001020 if (reply)
1021 ovs_notify(&dp_flow_genl_family, reply, info);
1022 if (old_acts)
1023 ovs_nla_free_flow_actions(old_acts);
Jarno Rajahalmefb5d1e92014-05-05 13:13:14 -07001024
Jesse Grossccb13522011-10-25 19:26:31 -07001025 return 0;
1026
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001027err_unlock_ovs:
1028 ovs_unlock();
Jarno Rajahalme893f1392014-05-05 15:22:25 -07001029 kfree_skb(reply);
1030err_kfree_acts:
Pravin B Shelar74f84a52013-06-17 17:50:12 -07001031 kfree(acts);
Jesse Grossccb13522011-10-25 19:26:31 -07001032error:
1033 return error;
1034}
1035
1036static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1037{
1038 struct nlattr **a = info->attrs;
1039 struct ovs_header *ovs_header = info->userhdr;
1040 struct sw_flow_key key;
1041 struct sk_buff *reply;
1042 struct sw_flow *flow;
1043 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001044 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -07001045 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001046
Andy Zhou03f0d912013-08-07 20:01:00 -07001047 if (!a[OVS_FLOW_ATTR_KEY]) {
1048 OVS_NLERR("Flow get message rejected, Key attribute missing.\n");
Jesse Grossccb13522011-10-25 19:26:31 -07001049 return -EINVAL;
Andy Zhou03f0d912013-08-07 20:01:00 -07001050 }
1051
1052 ovs_match_init(&match, &key, NULL);
Jarno Rajahalme23dabf82014-03-27 12:35:23 -07001053 err = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY], NULL);
Jesse Grossccb13522011-10-25 19:26:31 -07001054 if (err)
1055 return err;
1056
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001057 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001058 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001059 if (!dp) {
1060 err = -ENODEV;
1061 goto unlock;
1062 }
Jesse Grossccb13522011-10-25 19:26:31 -07001063
Alex Wang4a46b242014-06-30 20:30:29 -07001064 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
1065 if (!flow) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001066 err = -ENOENT;
1067 goto unlock;
1068 }
Jesse Grossccb13522011-10-25 19:26:31 -07001069
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001070 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
1071 OVS_FLOW_CMD_NEW, true);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001072 if (IS_ERR(reply)) {
1073 err = PTR_ERR(reply);
1074 goto unlock;
1075 }
Jesse Grossccb13522011-10-25 19:26:31 -07001076
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001077 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001078 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001079unlock:
1080 ovs_unlock();
1081 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001082}
1083
1084static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1085{
1086 struct nlattr **a = info->attrs;
1087 struct ovs_header *ovs_header = info->userhdr;
1088 struct sw_flow_key key;
1089 struct sk_buff *reply;
1090 struct sw_flow *flow;
1091 struct datapath *dp;
Andy Zhou03f0d912013-08-07 20:01:00 -07001092 struct sw_flow_match match;
Jesse Grossccb13522011-10-25 19:26:31 -07001093 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001094
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001095 if (likely(a[OVS_FLOW_ATTR_KEY])) {
1096 ovs_match_init(&match, &key, NULL);
1097 err = ovs_nla_get_match(&match, a[OVS_FLOW_ATTR_KEY], NULL);
1098 if (unlikely(err))
1099 return err;
1100 }
1101
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001102 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001103 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001104 if (unlikely(!dp)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001105 err = -ENODEV;
1106 goto unlock;
1107 }
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001108
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001109 if (unlikely(!a[OVS_FLOW_ATTR_KEY])) {
Pravin B Shelarb637e492013-10-04 00:14:23 -07001110 err = ovs_flow_tbl_flush(&dp->table);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001111 goto unlock;
1112 }
Andy Zhou03f0d912013-08-07 20:01:00 -07001113
Alex Wang4a46b242014-06-30 20:30:29 -07001114 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
1115 if (unlikely(!flow)) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001116 err = -ENOENT;
1117 goto unlock;
1118 }
Jesse Grossccb13522011-10-25 19:26:31 -07001119
Pravin B Shelarb637e492013-10-04 00:14:23 -07001120 ovs_flow_tbl_remove(&dp->table, flow);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001121 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001122
Jarno Rajahalmeaed06772014-05-05 14:40:13 -07001123 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
1124 info, false);
1125 if (likely(reply)) {
1126 if (likely(!IS_ERR(reply))) {
1127 rcu_read_lock(); /*To keep RCU checker happy. */
1128 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1129 reply, info->snd_portid,
1130 info->snd_seq, 0,
1131 OVS_FLOW_CMD_DEL);
1132 rcu_read_unlock();
1133 BUG_ON(err < 0);
1134
1135 ovs_notify(&dp_flow_genl_family, reply, info);
1136 } else {
1137 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1138 }
1139 }
1140
1141 ovs_flow_free(flow, true);
Jesse Grossccb13522011-10-25 19:26:31 -07001142 return 0;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001143unlock:
1144 ovs_unlock();
1145 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001146}
1147
1148static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1149{
1150 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
Pravin B Shelarb637e492013-10-04 00:14:23 -07001151 struct table_instance *ti;
Jesse Grossccb13522011-10-25 19:26:31 -07001152 struct datapath *dp;
Jesse Grossccb13522011-10-25 19:26:31 -07001153
Pravin B Shelard57170b2013-07-30 15:39:39 -07001154 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001155 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001156 if (!dp) {
Pravin B Shelard57170b2013-07-30 15:39:39 -07001157 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001158 return -ENODEV;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001159 }
Jesse Grossccb13522011-10-25 19:26:31 -07001160
Pravin B Shelarb637e492013-10-04 00:14:23 -07001161 ti = rcu_dereference(dp->table.ti);
Jesse Grossccb13522011-10-25 19:26:31 -07001162 for (;;) {
1163 struct sw_flow *flow;
1164 u32 bucket, obj;
1165
1166 bucket = cb->args[0];
1167 obj = cb->args[1];
Pravin B Shelarb637e492013-10-04 00:14:23 -07001168 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
Jesse Grossccb13522011-10-25 19:26:31 -07001169 if (!flow)
1170 break;
1171
Jarno Rajahalme0e9796b2014-05-05 14:28:07 -07001172 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001173 NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001174 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1175 OVS_FLOW_CMD_NEW) < 0)
1176 break;
1177
1178 cb->args[0] = bucket;
1179 cb->args[1] = obj;
1180 }
Pravin B Shelard57170b2013-07-30 15:39:39 -07001181 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001182 return skb->len;
1183}
1184
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001185static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1186 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
1187 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1188 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
1189};
1190
stephen hemminger48e48a72014-07-16 11:25:52 -07001191static const struct genl_ops dp_flow_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001192 { .cmd = OVS_FLOW_CMD_NEW,
1193 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1194 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001195 .doit = ovs_flow_cmd_new
Jesse Grossccb13522011-10-25 19:26:31 -07001196 },
1197 { .cmd = OVS_FLOW_CMD_DEL,
1198 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1199 .policy = flow_policy,
1200 .doit = ovs_flow_cmd_del
1201 },
1202 { .cmd = OVS_FLOW_CMD_GET,
1203 .flags = 0, /* OK for unprivileged users. */
1204 .policy = flow_policy,
1205 .doit = ovs_flow_cmd_get,
1206 .dumpit = ovs_flow_cmd_dump
1207 },
1208 { .cmd = OVS_FLOW_CMD_SET,
1209 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1210 .policy = flow_policy,
Jarno Rajahalme37bdc872014-05-05 14:53:51 -07001211 .doit = ovs_flow_cmd_set,
Jesse Grossccb13522011-10-25 19:26:31 -07001212 },
1213};
1214
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001215static struct genl_family dp_flow_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001216 .id = GENL_ID_GENERATE,
1217 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001218 .name = OVS_FLOW_FAMILY,
1219 .version = OVS_FLOW_VERSION,
1220 .maxattr = OVS_FLOW_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001221 .netnsok = true,
1222 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001223 .ops = dp_flow_genl_ops,
1224 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1225 .mcgrps = &ovs_dp_flow_multicast_group,
1226 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001227};
1228
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001229static size_t ovs_dp_cmd_msg_size(void)
1230{
1231 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1232
1233 msgsize += nla_total_size(IFNAMSIZ);
1234 msgsize += nla_total_size(sizeof(struct ovs_dp_stats));
Andy Zhou1bd71162013-10-22 10:42:46 -07001235 msgsize += nla_total_size(sizeof(struct ovs_dp_megaflow_stats));
Daniele Di Proietto45fb9c32014-01-23 10:47:35 -08001236 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
Thomas Grafc3ff8cf2013-03-29 14:46:49 +01001237
1238 return msgsize;
1239}
1240
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001241/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001242static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001243 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001244{
1245 struct ovs_header *ovs_header;
1246 struct ovs_dp_stats dp_stats;
Andy Zhou1bd71162013-10-22 10:42:46 -07001247 struct ovs_dp_megaflow_stats dp_megaflow_stats;
Jesse Grossccb13522011-10-25 19:26:31 -07001248 int err;
1249
Eric W. Biederman15e47302012-09-07 20:12:54 +00001250 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001251 flags, cmd);
1252 if (!ovs_header)
1253 goto error;
1254
1255 ovs_header->dp_ifindex = get_dpifindex(dp);
1256
Jesse Grossccb13522011-10-25 19:26:31 -07001257 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001258 if (err)
1259 goto nla_put_failure;
1260
Andy Zhou1bd71162013-10-22 10:42:46 -07001261 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
1262 if (nla_put(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1263 &dp_stats))
1264 goto nla_put_failure;
1265
1266 if (nla_put(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1267 sizeof(struct ovs_dp_megaflow_stats),
1268 &dp_megaflow_stats))
David S. Miller028d6a62012-03-29 23:20:48 -04001269 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001270
Thomas Graf43d4be92013-12-13 15:22:18 +01001271 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1272 goto nla_put_failure;
1273
Jesse Grossccb13522011-10-25 19:26:31 -07001274 return genlmsg_end(skb, ovs_header);
1275
1276nla_put_failure:
1277 genlmsg_cancel(skb, ovs_header);
1278error:
1279 return -EMSGSIZE;
1280}
1281
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001282static struct sk_buff *ovs_dp_cmd_alloc_info(struct genl_info *info)
Jesse Grossccb13522011-10-25 19:26:31 -07001283{
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001284 return genlmsg_new_unicast(ovs_dp_cmd_msg_size(), info, GFP_KERNEL);
Jesse Grossccb13522011-10-25 19:26:31 -07001285}
1286
Jarno Rajahalmebb6f9a72014-05-05 11:32:17 -07001287/* Called with rcu_read_lock or ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001288static struct datapath *lookup_datapath(struct net *net,
1289 struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001290 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1291{
1292 struct datapath *dp;
1293
1294 if (!a[OVS_DP_ATTR_NAME])
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001295 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001296 else {
1297 struct vport *vport;
1298
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001299 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001300 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
Jesse Grossccb13522011-10-25 19:26:31 -07001301 }
1302 return dp ? dp : ERR_PTR(-ENODEV);
1303}
1304
Thomas Graf44da5ae2013-12-13 15:22:19 +01001305static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1306{
1307 struct datapath *dp;
1308
1309 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Jiri Pirko3c7eacf2014-02-14 11:42:36 +01001310 if (IS_ERR(dp))
Thomas Graf44da5ae2013-12-13 15:22:19 +01001311 return;
1312
1313 WARN(dp->user_features, "Dropping previously announced user features\n");
1314 dp->user_features = 0;
1315}
1316
Thomas Graf43d4be92013-12-13 15:22:18 +01001317static void ovs_dp_change(struct datapath *dp, struct nlattr **a)
1318{
1319 if (a[OVS_DP_ATTR_USER_FEATURES])
1320 dp->user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1321}
1322
Jesse Grossccb13522011-10-25 19:26:31 -07001323static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1324{
1325 struct nlattr **a = info->attrs;
1326 struct vport_parms parms;
1327 struct sk_buff *reply;
1328 struct datapath *dp;
1329 struct vport *vport;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001330 struct ovs_net *ovs_net;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001331 int err, i;
Jesse Grossccb13522011-10-25 19:26:31 -07001332
1333 err = -EINVAL;
1334 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1335 goto err;
1336
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001337 reply = ovs_dp_cmd_alloc_info(info);
1338 if (!reply)
1339 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001340
1341 err = -ENOMEM;
1342 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1343 if (dp == NULL)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001344 goto err_free_reply;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001345
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001346 ovs_dp_set_net(dp, hold_net(sock_net(skb->sk)));
Jesse Grossccb13522011-10-25 19:26:31 -07001347
1348 /* Allocate table. */
Pravin B Shelarb637e492013-10-04 00:14:23 -07001349 err = ovs_flow_tbl_init(&dp->table);
1350 if (err)
Jesse Grossccb13522011-10-25 19:26:31 -07001351 goto err_free_dp;
1352
WANG Cong1c213bd2014-02-13 11:46:28 -08001353 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
Jesse Grossccb13522011-10-25 19:26:31 -07001354 if (!dp->stats_percpu) {
1355 err = -ENOMEM;
1356 goto err_destroy_table;
1357 }
1358
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001359 dp->ports = kmalloc(DP_VPORT_HASH_BUCKETS * sizeof(struct hlist_head),
Pravin B Shelare6445712013-10-03 18:16:47 -07001360 GFP_KERNEL);
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001361 if (!dp->ports) {
1362 err = -ENOMEM;
1363 goto err_destroy_percpu;
1364 }
1365
1366 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1367 INIT_HLIST_HEAD(&dp->ports[i]);
1368
Jesse Grossccb13522011-10-25 19:26:31 -07001369 /* Set up our datapath device. */
1370 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1371 parms.type = OVS_VPORT_TYPE_INTERNAL;
1372 parms.options = NULL;
1373 parms.dp = dp;
1374 parms.port_no = OVSP_LOCAL;
Alex Wang5cd667b2014-07-17 15:14:13 -07001375 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001376
Thomas Graf43d4be92013-12-13 15:22:18 +01001377 ovs_dp_change(dp, a);
1378
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001379 /* So far only local changes have been made, now need the lock. */
1380 ovs_lock();
1381
Jesse Grossccb13522011-10-25 19:26:31 -07001382 vport = new_vport(&parms);
1383 if (IS_ERR(vport)) {
1384 err = PTR_ERR(vport);
1385 if (err == -EBUSY)
1386 err = -EEXIST;
1387
Thomas Graf44da5ae2013-12-13 15:22:19 +01001388 if (err == -EEXIST) {
1389 /* An outdated user space instance that does not understand
1390 * the concept of user_features has attempted to create a new
1391 * datapath and is likely to reuse it. Drop all user features.
1392 */
1393 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1394 ovs_dp_reset_user_features(skb, info);
1395 }
1396
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001397 goto err_destroy_ports_array;
Jesse Grossccb13522011-10-25 19:26:31 -07001398 }
1399
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001400 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1401 info->snd_seq, 0, OVS_DP_CMD_NEW);
1402 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001403
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001404 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001405 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001406
1407 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001408
Johannes Berg2a94fe42013-11-19 15:19:39 +01001409 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001410 return 0;
1411
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001412err_destroy_ports_array:
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001413 ovs_unlock();
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001414 kfree(dp->ports);
Jesse Grossccb13522011-10-25 19:26:31 -07001415err_destroy_percpu:
1416 free_percpu(dp->stats_percpu);
1417err_destroy_table:
Andy Zhoue80857c2014-01-21 09:31:04 -08001418 ovs_flow_tbl_destroy(&dp->table, false);
Jesse Grossccb13522011-10-25 19:26:31 -07001419err_free_dp:
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001420 release_net(ovs_dp_get_net(dp));
Jesse Grossccb13522011-10-25 19:26:31 -07001421 kfree(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001422err_free_reply:
1423 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001424err:
1425 return err;
1426}
1427
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001428/* Called with ovs_mutex. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001429static void __dp_destroy(struct datapath *dp)
Jesse Grossccb13522011-10-25 19:26:31 -07001430{
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001431 int i;
Jesse Grossccb13522011-10-25 19:26:31 -07001432
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001433 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1434 struct vport *vport;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001435 struct hlist_node *n;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001436
Sasha Levinb67bfe02013-02-27 17:06:00 -08001437 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001438 if (vport->port_no != OVSP_LOCAL)
1439 ovs_dp_detach_port(vport);
1440 }
Jesse Grossccb13522011-10-25 19:26:31 -07001441
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001442 list_del_rcu(&dp->list_node);
Jesse Grossccb13522011-10-25 19:26:31 -07001443
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001444 /* OVSP_LOCAL is datapath internal port. We need to make sure that
Andy Zhoue80857c2014-01-21 09:31:04 -08001445 * all ports in datapath are destroyed first before freeing datapath.
Jesse Grossccb13522011-10-25 19:26:31 -07001446 */
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001447 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
Jesse Grossccb13522011-10-25 19:26:31 -07001448
Andy Zhoue80857c2014-01-21 09:31:04 -08001449 /* RCU destroy the flow table */
1450 ovs_flow_tbl_destroy(&dp->table, true);
1451
Jesse Grossccb13522011-10-25 19:26:31 -07001452 call_rcu(&dp->rcu, destroy_dp_rcu);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001453}
1454
1455static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1456{
1457 struct sk_buff *reply;
1458 struct datapath *dp;
1459 int err;
1460
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001461 reply = ovs_dp_cmd_alloc_info(info);
1462 if (!reply)
1463 return -ENOMEM;
1464
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001465 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001466 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1467 err = PTR_ERR(dp);
1468 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001469 goto err_unlock_free;
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001470
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001471 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1472 info->snd_seq, 0, OVS_DP_CMD_DEL);
1473 BUG_ON(err < 0);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001474
1475 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001476 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001477
Johannes Berg2a94fe42013-11-19 15:19:39 +01001478 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001479
1480 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001481
1482err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001483 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001484 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001485 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001486}
1487
1488static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1489{
1490 struct sk_buff *reply;
1491 struct datapath *dp;
1492 int err;
1493
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001494 reply = ovs_dp_cmd_alloc_info(info);
1495 if (!reply)
1496 return -ENOMEM;
1497
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001498 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001499 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001500 err = PTR_ERR(dp);
Jesse Grossccb13522011-10-25 19:26:31 -07001501 if (IS_ERR(dp))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001502 goto err_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001503
Thomas Graf43d4be92013-12-13 15:22:18 +01001504 ovs_dp_change(dp, info->attrs);
1505
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001506 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1507 info->snd_seq, 0, OVS_DP_CMD_NEW);
1508 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001509
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001510 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001511 ovs_notify(&dp_datapath_genl_family, reply, info);
Jesse Grossccb13522011-10-25 19:26:31 -07001512
1513 return 0;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001514
1515err_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001516 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001517 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001518 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001519}
1520
1521static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1522{
1523 struct sk_buff *reply;
1524 struct datapath *dp;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001525 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001526
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001527 reply = ovs_dp_cmd_alloc_info(info);
1528 if (!reply)
1529 return -ENOMEM;
1530
1531 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001532 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001533 if (IS_ERR(dp)) {
1534 err = PTR_ERR(dp);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001535 goto err_unlock_free;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001536 }
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001537 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1538 info->snd_seq, 0, OVS_DP_CMD_NEW);
1539 BUG_ON(err < 0);
1540 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001541
Jesse Grossccb13522011-10-25 19:26:31 -07001542 return genlmsg_reply(reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001543
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001544err_unlock_free:
1545 rcu_read_unlock();
1546 kfree_skb(reply);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001547 return err;
Jesse Grossccb13522011-10-25 19:26:31 -07001548}
1549
1550static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1551{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001552 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
Jesse Grossccb13522011-10-25 19:26:31 -07001553 struct datapath *dp;
1554 int skip = cb->args[0];
1555 int i = 0;
1556
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001557 rcu_read_lock();
1558 list_for_each_entry_rcu(dp, &ovs_net->dps, list_node) {
Ben Pfaff77676fd2012-01-17 13:33:39 +00001559 if (i >= skip &&
Eric W. Biederman15e47302012-09-07 20:12:54 +00001560 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001561 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1562 OVS_DP_CMD_NEW) < 0)
1563 break;
1564 i++;
1565 }
Pravin B Shelar59a35d62013-07-30 15:42:19 -07001566 rcu_read_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001567
1568 cb->args[0] = i;
1569
1570 return skb->len;
1571}
1572
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001573static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1574 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1575 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1576 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1577};
1578
stephen hemminger48e48a72014-07-16 11:25:52 -07001579static const struct genl_ops dp_datapath_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001580 { .cmd = OVS_DP_CMD_NEW,
1581 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1582 .policy = datapath_policy,
1583 .doit = ovs_dp_cmd_new
1584 },
1585 { .cmd = OVS_DP_CMD_DEL,
1586 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1587 .policy = datapath_policy,
1588 .doit = ovs_dp_cmd_del
1589 },
1590 { .cmd = OVS_DP_CMD_GET,
1591 .flags = 0, /* OK for unprivileged users. */
1592 .policy = datapath_policy,
1593 .doit = ovs_dp_cmd_get,
1594 .dumpit = ovs_dp_cmd_dump
1595 },
1596 { .cmd = OVS_DP_CMD_SET,
1597 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1598 .policy = datapath_policy,
1599 .doit = ovs_dp_cmd_set,
1600 },
1601};
1602
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001603static struct genl_family dp_datapath_genl_family = {
Jesse Grossccb13522011-10-25 19:26:31 -07001604 .id = GENL_ID_GENERATE,
1605 .hdrsize = sizeof(struct ovs_header),
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001606 .name = OVS_DATAPATH_FAMILY,
1607 .version = OVS_DATAPATH_VERSION,
1608 .maxattr = OVS_DP_ATTR_MAX,
Pravin B Shelar3a4e0d62013-04-23 07:48:48 +00001609 .netnsok = true,
1610 .parallel_ops = true,
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001611 .ops = dp_datapath_genl_ops,
1612 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1613 .mcgrps = &ovs_dp_datapath_multicast_group,
1614 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001615};
1616
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001617/* Called with ovs_mutex or RCU read lock. */
Jesse Grossccb13522011-10-25 19:26:31 -07001618static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001619 u32 portid, u32 seq, u32 flags, u8 cmd)
Jesse Grossccb13522011-10-25 19:26:31 -07001620{
1621 struct ovs_header *ovs_header;
1622 struct ovs_vport_stats vport_stats;
1623 int err;
1624
Eric W. Biederman15e47302012-09-07 20:12:54 +00001625 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001626 flags, cmd);
1627 if (!ovs_header)
1628 return -EMSGSIZE;
1629
1630 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1631
David S. Miller028d6a62012-03-29 23:20:48 -04001632 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1633 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
Alex Wang5cd667b2014-07-17 15:14:13 -07001634 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
1635 vport->ops->get_name(vport)))
David S. Miller028d6a62012-03-29 23:20:48 -04001636 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001637
1638 ovs_vport_get_stats(vport, &vport_stats);
David S. Miller028d6a62012-03-29 23:20:48 -04001639 if (nla_put(skb, OVS_VPORT_ATTR_STATS, sizeof(struct ovs_vport_stats),
1640 &vport_stats))
1641 goto nla_put_failure;
Jesse Grossccb13522011-10-25 19:26:31 -07001642
Alex Wang5cd667b2014-07-17 15:14:13 -07001643 if (ovs_vport_get_upcall_portids(vport, skb))
1644 goto nla_put_failure;
1645
Jesse Grossccb13522011-10-25 19:26:31 -07001646 err = ovs_vport_get_options(vport, skb);
1647 if (err == -EMSGSIZE)
1648 goto error;
1649
1650 return genlmsg_end(skb, ovs_header);
1651
1652nla_put_failure:
1653 err = -EMSGSIZE;
1654error:
1655 genlmsg_cancel(skb, ovs_header);
1656 return err;
1657}
1658
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001659static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1660{
1661 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1662}
1663
1664/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
Eric W. Biederman15e47302012-09-07 20:12:54 +00001665struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, u32 portid,
Jesse Grossccb13522011-10-25 19:26:31 -07001666 u32 seq, u8 cmd)
1667{
1668 struct sk_buff *skb;
1669 int retval;
1670
1671 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1672 if (!skb)
1673 return ERR_PTR(-ENOMEM);
1674
Eric W. Biederman15e47302012-09-07 20:12:54 +00001675 retval = ovs_vport_cmd_fill_info(vport, skb, portid, seq, 0, cmd);
Jesse Grossa9341512013-03-26 15:48:38 -07001676 BUG_ON(retval < 0);
1677
Jesse Grossccb13522011-10-25 19:26:31 -07001678 return skb;
1679}
1680
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001681/* Called with ovs_mutex or RCU read lock. */
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001682static struct vport *lookup_vport(struct net *net,
1683 struct ovs_header *ovs_header,
Jesse Grossccb13522011-10-25 19:26:31 -07001684 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1685{
1686 struct datapath *dp;
1687 struct vport *vport;
1688
1689 if (a[OVS_VPORT_ATTR_NAME]) {
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001690 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
Jesse Grossccb13522011-10-25 19:26:31 -07001691 if (!vport)
1692 return ERR_PTR(-ENODEV);
Ben Pfaff651a68e2012-03-06 15:04:04 -08001693 if (ovs_header->dp_ifindex &&
1694 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1695 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001696 return vport;
1697 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1698 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1699
1700 if (port_no >= DP_MAX_PORTS)
1701 return ERR_PTR(-EFBIG);
1702
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001703 dp = get_dp(net, ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001704 if (!dp)
1705 return ERR_PTR(-ENODEV);
1706
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001707 vport = ovs_vport_ovsl_rcu(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001708 if (!vport)
Jarno Rajahalme14408db2013-01-09 14:27:35 -08001709 return ERR_PTR(-ENODEV);
Jesse Grossccb13522011-10-25 19:26:31 -07001710 return vport;
1711 } else
1712 return ERR_PTR(-EINVAL);
1713}
1714
1715static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1716{
1717 struct nlattr **a = info->attrs;
1718 struct ovs_header *ovs_header = info->userhdr;
1719 struct vport_parms parms;
1720 struct sk_buff *reply;
1721 struct vport *vport;
1722 struct datapath *dp;
1723 u32 port_no;
1724 int err;
1725
Jesse Grossccb13522011-10-25 19:26:31 -07001726 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
1727 !a[OVS_VPORT_ATTR_UPCALL_PID])
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001728 return -EINVAL;
1729
1730 port_no = a[OVS_VPORT_ATTR_PORT_NO]
1731 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
1732 if (port_no >= DP_MAX_PORTS)
1733 return -EFBIG;
1734
1735 reply = ovs_vport_cmd_alloc_info();
1736 if (!reply)
1737 return -ENOMEM;
Jesse Grossccb13522011-10-25 19:26:31 -07001738
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001739 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001740 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
Jesse Grossccb13522011-10-25 19:26:31 -07001741 err = -ENODEV;
1742 if (!dp)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001743 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001744
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001745 if (port_no) {
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001746 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001747 err = -EBUSY;
1748 if (vport)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001749 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001750 } else {
1751 for (port_no = 1; ; port_no++) {
1752 if (port_no >= DP_MAX_PORTS) {
1753 err = -EFBIG;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001754 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001755 }
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001756 vport = ovs_vport_ovsl(dp, port_no);
Jesse Grossccb13522011-10-25 19:26:31 -07001757 if (!vport)
1758 break;
1759 }
1760 }
1761
1762 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
1763 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1764 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
1765 parms.dp = dp;
1766 parms.port_no = port_no;
Alex Wang5cd667b2014-07-17 15:14:13 -07001767 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
Jesse Grossccb13522011-10-25 19:26:31 -07001768
1769 vport = new_vport(&parms);
1770 err = PTR_ERR(vport);
1771 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001772 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001773
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001774 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1775 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1776 BUG_ON(err < 0);
1777 ovs_unlock();
Thomas Grafed661182013-03-29 14:46:50 +01001778
Johannes Berg2a94fe42013-11-19 15:19:39 +01001779 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001780 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001781
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001782exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001783 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001784 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001785 return err;
1786}
1787
1788static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
1789{
1790 struct nlattr **a = info->attrs;
1791 struct sk_buff *reply;
1792 struct vport *vport;
1793 int err;
1794
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001795 reply = ovs_vport_cmd_alloc_info();
1796 if (!reply)
1797 return -ENOMEM;
1798
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001799 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001800 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001801 err = PTR_ERR(vport);
1802 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001803 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001804
Jesse Grossccb13522011-10-25 19:26:31 -07001805 if (a[OVS_VPORT_ATTR_TYPE] &&
Jesse Grossf44f3402013-05-13 08:15:26 -07001806 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
Jesse Grossccb13522011-10-25 19:26:31 -07001807 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001808 goto exit_unlock_free;
Jesse Grossa9341512013-03-26 15:48:38 -07001809 }
1810
Jesse Grossf44f3402013-05-13 08:15:26 -07001811 if (a[OVS_VPORT_ATTR_OPTIONS]) {
Jesse Grossccb13522011-10-25 19:26:31 -07001812 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
Jesse Grossf44f3402013-05-13 08:15:26 -07001813 if (err)
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001814 goto exit_unlock_free;
Jesse Grossf44f3402013-05-13 08:15:26 -07001815 }
Jesse Grossa9341512013-03-26 15:48:38 -07001816
Alex Wang5cd667b2014-07-17 15:14:13 -07001817
1818 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
1819 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
1820
1821 err = ovs_vport_set_upcall_portids(vport, ids);
1822 if (err)
1823 goto exit_unlock_free;
1824 }
Jesse Grossccb13522011-10-25 19:26:31 -07001825
Jesse Grossa9341512013-03-26 15:48:38 -07001826 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1827 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1828 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001829
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001830 ovs_unlock();
Johannes Berg2a94fe42013-11-19 15:19:39 +01001831 ovs_notify(&dp_vport_genl_family, reply, info);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001832 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001833
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001834exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001835 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001836 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001837 return err;
1838}
1839
1840static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
1841{
1842 struct nlattr **a = info->attrs;
1843 struct sk_buff *reply;
1844 struct vport *vport;
1845 int err;
1846
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001847 reply = ovs_vport_cmd_alloc_info();
1848 if (!reply)
1849 return -ENOMEM;
1850
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001851 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001852 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001853 err = PTR_ERR(vport);
1854 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001855 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001856
1857 if (vport->port_no == OVSP_LOCAL) {
1858 err = -EINVAL;
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001859 goto exit_unlock_free;
Jesse Grossccb13522011-10-25 19:26:31 -07001860 }
1861
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001862 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1863 info->snd_seq, 0, OVS_VPORT_CMD_DEL);
1864 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001865 ovs_dp_detach_port(vport);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001866 ovs_unlock();
Jesse Grossccb13522011-10-25 19:26:31 -07001867
Johannes Berg2a94fe42013-11-19 15:19:39 +01001868 ovs_notify(&dp_vport_genl_family, reply, info);
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001869 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001870
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001871exit_unlock_free:
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07001872 ovs_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001873 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001874 return err;
1875}
1876
1877static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
1878{
1879 struct nlattr **a = info->attrs;
1880 struct ovs_header *ovs_header = info->userhdr;
1881 struct sk_buff *reply;
1882 struct vport *vport;
1883 int err;
1884
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001885 reply = ovs_vport_cmd_alloc_info();
1886 if (!reply)
1887 return -ENOMEM;
1888
Jesse Grossccb13522011-10-25 19:26:31 -07001889 rcu_read_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08001890 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
Jesse Grossccb13522011-10-25 19:26:31 -07001891 err = PTR_ERR(vport);
1892 if (IS_ERR(vport))
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001893 goto exit_unlock_free;
1894 err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1895 info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1896 BUG_ON(err < 0);
Jesse Grossccb13522011-10-25 19:26:31 -07001897 rcu_read_unlock();
1898
1899 return genlmsg_reply(reply, info);
1900
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001901exit_unlock_free:
Jesse Grossccb13522011-10-25 19:26:31 -07001902 rcu_read_unlock();
Jarno Rajahalme6093ae92014-05-05 14:13:32 -07001903 kfree_skb(reply);
Jesse Grossccb13522011-10-25 19:26:31 -07001904 return err;
1905}
1906
1907static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1908{
1909 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
1910 struct datapath *dp;
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001911 int bucket = cb->args[0], skip = cb->args[1];
1912 int i, j = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001913
Jesse Grossccb13522011-10-25 19:26:31 -07001914 rcu_read_lock();
Jarno Rajahalme42ee19e2014-02-15 17:42:29 -08001915 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1916 if (!dp) {
1917 rcu_read_unlock();
1918 return -ENODEV;
1919 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001920 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07001921 struct vport *vport;
1922
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001923 j = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001924 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001925 if (j >= skip &&
1926 ovs_vport_cmd_fill_info(vport, skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001927 NETLINK_CB(cb->skb).portid,
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001928 cb->nlh->nlmsg_seq,
1929 NLM_F_MULTI,
1930 OVS_VPORT_CMD_NEW) < 0)
1931 goto out;
Jesse Grossccb13522011-10-25 19:26:31 -07001932
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001933 j++;
1934 }
1935 skip = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001936 }
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001937out:
Jesse Grossccb13522011-10-25 19:26:31 -07001938 rcu_read_unlock();
1939
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001940 cb->args[0] = i;
1941 cb->args[1] = j;
Jesse Grossccb13522011-10-25 19:26:31 -07001942
Pravin B Shelar15eac2a2012-08-23 12:40:54 -07001943 return skb->len;
Jesse Grossccb13522011-10-25 19:26:31 -07001944}
1945
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001946static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
1947 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1948 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
1949 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
1950 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
1951 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1952 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
1953};
1954
stephen hemminger48e48a72014-07-16 11:25:52 -07001955static const struct genl_ops dp_vport_genl_ops[] = {
Jesse Grossccb13522011-10-25 19:26:31 -07001956 { .cmd = OVS_VPORT_CMD_NEW,
1957 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1958 .policy = vport_policy,
1959 .doit = ovs_vport_cmd_new
1960 },
1961 { .cmd = OVS_VPORT_CMD_DEL,
1962 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1963 .policy = vport_policy,
1964 .doit = ovs_vport_cmd_del
1965 },
1966 { .cmd = OVS_VPORT_CMD_GET,
1967 .flags = 0, /* OK for unprivileged users. */
1968 .policy = vport_policy,
1969 .doit = ovs_vport_cmd_get,
1970 .dumpit = ovs_vport_cmd_dump
1971 },
1972 { .cmd = OVS_VPORT_CMD_SET,
1973 .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1974 .policy = vport_policy,
1975 .doit = ovs_vport_cmd_set,
1976 },
1977};
1978
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001979struct genl_family dp_vport_genl_family = {
1980 .id = GENL_ID_GENERATE,
1981 .hdrsize = sizeof(struct ovs_header),
1982 .name = OVS_VPORT_FAMILY,
1983 .version = OVS_VPORT_VERSION,
1984 .maxattr = OVS_VPORT_ATTR_MAX,
1985 .netnsok = true,
1986 .parallel_ops = true,
1987 .ops = dp_vport_genl_ops,
1988 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
1989 .mcgrps = &ovs_dp_vport_multicast_group,
1990 .n_mcgrps = 1,
Jesse Grossccb13522011-10-25 19:26:31 -07001991};
1992
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07001993static struct genl_family * const dp_genl_families[] = {
1994 &dp_datapath_genl_family,
1995 &dp_vport_genl_family,
1996 &dp_flow_genl_family,
1997 &dp_packet_genl_family,
Jesse Grossccb13522011-10-25 19:26:31 -07001998};
1999
2000static void dp_unregister_genl(int n_families)
2001{
2002 int i;
2003
2004 for (i = 0; i < n_families; i++)
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002005 genl_unregister_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002006}
2007
2008static int dp_register_genl(void)
2009{
Jesse Grossccb13522011-10-25 19:26:31 -07002010 int err;
2011 int i;
2012
Jesse Grossccb13522011-10-25 19:26:31 -07002013 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
Jesse Grossccb13522011-10-25 19:26:31 -07002014
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002015 err = genl_register_family(dp_genl_families[i]);
Jesse Grossccb13522011-10-25 19:26:31 -07002016 if (err)
2017 goto error;
Jesse Grossccb13522011-10-25 19:26:31 -07002018 }
2019
2020 return 0;
2021
2022error:
Pravin B Shelar0c200ef2014-05-06 16:44:50 -07002023 dp_unregister_genl(i);
Jesse Grossccb13522011-10-25 19:26:31 -07002024 return err;
2025}
2026
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002027static int __net_init ovs_init_net(struct net *net)
2028{
2029 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2030
2031 INIT_LIST_HEAD(&ovs_net->dps);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002032 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002033 return 0;
2034}
2035
2036static void __net_exit ovs_exit_net(struct net *net)
2037{
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002038 struct datapath *dp, *dp_next;
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002039 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002040
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002041 ovs_lock();
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002042 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2043 __dp_destroy(dp);
Pravin B Shelar8e4e1712013-04-15 13:23:03 -07002044 ovs_unlock();
2045
2046 cancel_work_sync(&ovs_net->dp_notify_work);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002047}
2048
2049static struct pernet_operations ovs_net_ops = {
2050 .init = ovs_init_net,
2051 .exit = ovs_exit_net,
2052 .id = &ovs_net_id,
2053 .size = sizeof(struct ovs_net),
2054};
2055
Jesse Grossccb13522011-10-25 19:26:31 -07002056static int __init dp_init(void)
2057{
Jesse Grossccb13522011-10-25 19:26:31 -07002058 int err;
2059
YOSHIFUJI Hideaki / 吉藤英明3523b292013-01-09 07:19:55 +00002060 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
Jesse Grossccb13522011-10-25 19:26:31 -07002061
2062 pr_info("Open vSwitch switching datapath\n");
2063
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002064 err = ovs_internal_dev_rtnl_link_register();
Jesse Grossccb13522011-10-25 19:26:31 -07002065 if (err)
2066 goto error;
2067
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002068 err = ovs_flow_init();
2069 if (err)
2070 goto error_unreg_rtnl_link;
2071
Jesse Grossccb13522011-10-25 19:26:31 -07002072 err = ovs_vport_init();
2073 if (err)
2074 goto error_flow_exit;
2075
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002076 err = register_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002077 if (err)
2078 goto error_vport_exit;
2079
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002080 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2081 if (err)
2082 goto error_netns_exit;
2083
Jesse Grossccb13522011-10-25 19:26:31 -07002084 err = dp_register_genl();
2085 if (err < 0)
2086 goto error_unreg_notifier;
2087
Jesse Grossccb13522011-10-25 19:26:31 -07002088 return 0;
2089
2090error_unreg_notifier:
2091 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002092error_netns_exit:
2093 unregister_pernet_device(&ovs_net_ops);
Jesse Grossccb13522011-10-25 19:26:31 -07002094error_vport_exit:
2095 ovs_vport_exit();
2096error_flow_exit:
2097 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002098error_unreg_rtnl_link:
2099 ovs_internal_dev_rtnl_link_unregister();
Jesse Grossccb13522011-10-25 19:26:31 -07002100error:
2101 return err;
2102}
2103
2104static void dp_cleanup(void)
2105{
Jesse Grossccb13522011-10-25 19:26:31 -07002106 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
2107 unregister_netdevice_notifier(&ovs_dp_device_notifier);
Pravin B Shelar46df7b82012-02-22 19:58:59 -08002108 unregister_pernet_device(&ovs_net_ops);
2109 rcu_barrier();
Jesse Grossccb13522011-10-25 19:26:31 -07002110 ovs_vport_exit();
2111 ovs_flow_exit();
Jiri Pirko5b9e7e12014-06-26 09:58:26 +02002112 ovs_internal_dev_rtnl_link_unregister();
Jesse Grossccb13522011-10-25 19:26:31 -07002113}
2114
2115module_init(dp_init);
2116module_exit(dp_cleanup);
2117
2118MODULE_DESCRIPTION("Open vSwitch switching datapath");
2119MODULE_LICENSE("GPL");