Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[linux-2.6-block.git] / net / openvswitch / datapath.c
CommitLineData
ccb1352e 1/*
ad552007 2 * Copyright (c) 2007-2014 Nicira, Inc.
ccb1352e
JG
3 *
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>
ccb1352e
JG
39#include <linux/ethtool.h>
40#include <linux/wait.h>
ccb1352e
JG
41#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>
ccb1352e 50#include <net/genetlink.h>
46df7b81
PS
51#include <net/net_namespace.h>
52#include <net/netns/generic.h>
ccb1352e
JG
53
54#include "datapath.h"
55#include "flow.h"
e80857cc 56#include "flow_table.h"
e6445719 57#include "flow_netlink.h"
96fbc13d 58#include "meter.h"
ccb1352e 59#include "vport-internal_dev.h"
cff63a52 60#include "vport-netdev.h"
ccb1352e 61
c7d03a00 62unsigned int ovs_net_id __read_mostly;
8e4e1713 63
0c200ef9
PS
64static struct genl_family dp_packet_genl_family;
65static struct genl_family dp_flow_genl_family;
66static struct genl_family dp_datapath_genl_family;
67
74ed7ab9
JS
68static const struct nla_policy flow_policy[];
69
48e48a70 70static const struct genl_multicast_group ovs_dp_flow_multicast_group = {
71 .name = OVS_FLOW_MCGROUP,
0c200ef9
PS
72};
73
48e48a70 74static const struct genl_multicast_group ovs_dp_datapath_multicast_group = {
75 .name = OVS_DATAPATH_MCGROUP,
0c200ef9
PS
76};
77
48e48a70 78static const struct genl_multicast_group ovs_dp_vport_multicast_group = {
79 .name = OVS_VPORT_MCGROUP,
0c200ef9
PS
80};
81
fb5d1e9e
JR
82/* Check if need to build a reply message.
83 * OVS userspace sets the NLM_F_ECHO flag if it needs the reply. */
9b67aa4a
SG
84static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
85 unsigned int group)
fb5d1e9e
JR
86{
87 return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
f8403a2e 88 genl_has_listeners(family, genl_info_net(info), group);
fb5d1e9e
JR
89}
90
68eb5503 91static void ovs_notify(struct genl_family *family,
2a94fe48 92 struct sk_buff *skb, struct genl_info *info)
ed661185 93{
92c14d9b 94 genl_notify(family, skb, info, 0, GFP_KERNEL);
ed661185
TG
95}
96
ccb1352e
JG
97/**
98 * DOC: Locking:
99 *
8e4e1713
PS
100 * All writes e.g. Writes to device state (add/remove datapath, port, set
101 * operations on vports, etc.), Writes to other state (flow table
102 * modifications, set miscellaneous datapath parameters, etc.) are protected
103 * by ovs_lock.
ccb1352e
JG
104 *
105 * Reads are protected by RCU.
106 *
107 * There are a few special cases (mostly stats) that have their own
108 * synchronization but they nest under all of above and don't interact with
109 * each other.
8e4e1713
PS
110 *
111 * The RTNL lock nests inside ovs_mutex.
ccb1352e
JG
112 */
113
8e4e1713
PS
114static DEFINE_MUTEX(ovs_mutex);
115
116void ovs_lock(void)
117{
118 mutex_lock(&ovs_mutex);
119}
120
121void ovs_unlock(void)
122{
123 mutex_unlock(&ovs_mutex);
124}
125
126#ifdef CONFIG_LOCKDEP
127int lockdep_ovsl_is_held(void)
128{
129 if (debug_locks)
130 return lockdep_is_held(&ovs_mutex);
131 else
132 return 1;
133}
134#endif
135
ccb1352e 136static struct vport *new_vport(const struct vport_parms *);
8055a89c 137static int queue_gso_packets(struct datapath *dp, struct sk_buff *,
e8eedb85 138 const struct sw_flow_key *,
f2a4d086
WT
139 const struct dp_upcall_info *,
140 uint32_t cutlen);
8055a89c 141static int queue_userspace_packet(struct datapath *dp, struct sk_buff *,
e8eedb85 142 const struct sw_flow_key *,
f2a4d086
WT
143 const struct dp_upcall_info *,
144 uint32_t cutlen);
ccb1352e 145
8e4e1713 146/* Must be called with rcu_read_lock or ovs_mutex. */
971427f3 147const char *ovs_dp_name(const struct datapath *dp)
ccb1352e 148{
8e4e1713 149 struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
c9db965c 150 return ovs_vport_name(vport);
ccb1352e
JG
151}
152
12eb18f7 153static int get_dpifindex(const struct datapath *dp)
ccb1352e
JG
154{
155 struct vport *local;
156 int ifindex;
157
158 rcu_read_lock();
159
15eac2a7 160 local = ovs_vport_rcu(dp, OVSP_LOCAL);
ccb1352e 161 if (local)
be4ace6e 162 ifindex = local->dev->ifindex;
ccb1352e
JG
163 else
164 ifindex = 0;
165
166 rcu_read_unlock();
167
168 return ifindex;
169}
170
171static void destroy_dp_rcu(struct rcu_head *rcu)
172{
173 struct datapath *dp = container_of(rcu, struct datapath, rcu);
174
9b996e54 175 ovs_flow_tbl_destroy(&dp->table);
ccb1352e 176 free_percpu(dp->stats_percpu);
15eac2a7 177 kfree(dp->ports);
96fbc13d 178 ovs_meters_exit(dp);
ccb1352e
JG
179 kfree(dp);
180}
181
15eac2a7
PS
182static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
183 u16 port_no)
184{
185 return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
186}
187
bb6f9a70 188/* Called with ovs_mutex or RCU read lock. */
15eac2a7
PS
189struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
190{
191 struct vport *vport;
15eac2a7
PS
192 struct hlist_head *head;
193
194 head = vport_hash_bucket(dp, port_no);
b67bfe0d 195 hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
15eac2a7
PS
196 if (vport->port_no == port_no)
197 return vport;
198 }
199 return NULL;
200}
201
8e4e1713 202/* Called with ovs_mutex. */
ccb1352e
JG
203static struct vport *new_vport(const struct vport_parms *parms)
204{
205 struct vport *vport;
206
207 vport = ovs_vport_add(parms);
208 if (!IS_ERR(vport)) {
209 struct datapath *dp = parms->dp;
15eac2a7 210 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
ccb1352e 211
15eac2a7 212 hlist_add_head_rcu(&vport->dp_hash_node, head);
ccb1352e 213 }
ccb1352e
JG
214 return vport;
215}
216
ccb1352e
JG
217void ovs_dp_detach_port(struct vport *p)
218{
8e4e1713 219 ASSERT_OVSL();
ccb1352e
JG
220
221 /* First drop references to device. */
15eac2a7 222 hlist_del_rcu(&p->dp_hash_node);
ccb1352e
JG
223
224 /* Then destroy it. */
225 ovs_vport_del(p);
226}
227
228/* Must be called with rcu_read_lock. */
8c8b1b83 229void ovs_dp_process_packet(struct sk_buff *skb, struct sw_flow_key *key)
ccb1352e 230{
83c8df26 231 const struct vport *p = OVS_CB(skb)->input_vport;
ccb1352e
JG
232 struct datapath *dp = p->dp;
233 struct sw_flow *flow;
d98612b8 234 struct sw_flow_actions *sf_acts;
ccb1352e 235 struct dp_stats_percpu *stats;
ccb1352e 236 u64 *stats_counter;
1bd7116f 237 u32 n_mask_hit;
ccb1352e 238
404f2f10 239 stats = this_cpu_ptr(dp->stats_percpu);
ccb1352e 240
ccb1352e 241 /* Look up flow. */
8c8b1b83 242 flow = ovs_flow_tbl_lookup_stats(&dp->table, key, &n_mask_hit);
ccb1352e
JG
243 if (unlikely(!flow)) {
244 struct dp_upcall_info upcall;
8c8b1b83 245 int error;
ccb1352e 246
ccea7445 247 memset(&upcall, 0, sizeof(upcall));
ccb1352e 248 upcall.cmd = OVS_PACKET_CMD_MISS;
5cd667b0 249 upcall.portid = ovs_vport_find_upcall_portid(p, skb);
7f8a436e 250 upcall.mru = OVS_CB(skb)->mru;
f2a4d086 251 error = ovs_dp_upcall(dp, skb, key, &upcall, 0);
c5eba0b6
LR
252 if (unlikely(error))
253 kfree_skb(skb);
254 else
255 consume_skb(skb);
ccb1352e
JG
256 stats_counter = &stats->n_missed;
257 goto out;
258 }
259
d98612b8
LJ
260 ovs_flow_stats_update(flow, key->tp.flags, skb);
261 sf_acts = rcu_dereference(flow->sf_acts);
262 ovs_execute_actions(dp, skb, sf_acts, key);
ccb1352e 263
e298e505 264 stats_counter = &stats->n_hit;
ccb1352e
JG
265
266out:
267 /* Update datapath statistics. */
df9d9fdf 268 u64_stats_update_begin(&stats->syncp);
ccb1352e 269 (*stats_counter)++;
1bd7116f 270 stats->n_mask_hit += n_mask_hit;
df9d9fdf 271 u64_stats_update_end(&stats->syncp);
ccb1352e
JG
272}
273
ccb1352e 274int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
e8eedb85 275 const struct sw_flow_key *key,
f2a4d086
WT
276 const struct dp_upcall_info *upcall_info,
277 uint32_t cutlen)
ccb1352e
JG
278{
279 struct dp_stats_percpu *stats;
ccb1352e
JG
280 int err;
281
15e47304 282 if (upcall_info->portid == 0) {
ccb1352e
JG
283 err = -ENOTCONN;
284 goto err;
285 }
286
ccb1352e 287 if (!skb_is_gso(skb))
f2a4d086 288 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
ccb1352e 289 else
f2a4d086 290 err = queue_gso_packets(dp, skb, key, upcall_info, cutlen);
ccb1352e
JG
291 if (err)
292 goto err;
293
294 return 0;
295
296err:
404f2f10 297 stats = this_cpu_ptr(dp->stats_percpu);
ccb1352e 298
df9d9fdf 299 u64_stats_update_begin(&stats->syncp);
ccb1352e 300 stats->n_lost++;
df9d9fdf 301 u64_stats_update_end(&stats->syncp);
ccb1352e
JG
302
303 return err;
304}
305
8055a89c 306static int queue_gso_packets(struct datapath *dp, struct sk_buff *skb,
e8eedb85 307 const struct sw_flow_key *key,
f2a4d086
WT
308 const struct dp_upcall_info *upcall_info,
309 uint32_t cutlen)
ccb1352e 310{
2734166e 311 unsigned int gso_type = skb_shinfo(skb)->gso_type;
0c19f846 312 struct sw_flow_key later_key;
ccb1352e
JG
313 struct sk_buff *segs, *nskb;
314 int err;
315
9207f9d4 316 BUILD_BUG_ON(sizeof(*OVS_CB(skb)) > SKB_SGO_CB_OFFSET);
09c5e605 317 segs = __skb_gso_segment(skb, NETIF_F_SG, false);
92e5dfc3
PS
318 if (IS_ERR(segs))
319 return PTR_ERR(segs);
330966e5
FW
320 if (segs == NULL)
321 return -EINVAL;
ccb1352e 322
0c19f846
WB
323 if (gso_type & SKB_GSO_UDP) {
324 /* The initial flow key extracted by ovs_flow_key_extract()
325 * in this case is for a first fragment, so we need to
326 * properly mark later fragments.
327 */
328 later_key = *key;
329 later_key.ip.frag = OVS_FRAG_TYPE_LATER;
330 }
331
ccb1352e
JG
332 /* Queue all of the segments. */
333 skb = segs;
334 do {
0c19f846
WB
335 if (gso_type & SKB_GSO_UDP && skb != segs)
336 key = &later_key;
337
f2a4d086 338 err = queue_userspace_packet(dp, skb, key, upcall_info, cutlen);
ccb1352e
JG
339 if (err)
340 break;
341
ccb1352e
JG
342 } while ((skb = skb->next));
343
344 /* Free all of the segments. */
345 skb = segs;
346 do {
347 nskb = skb->next;
348 if (err)
349 kfree_skb(skb);
350 else
351 consume_skb(skb);
352 } while ((skb = nskb));
353 return err;
354}
355
8f0aad6f 356static size_t upcall_msg_size(const struct dp_upcall_info *upcall_info,
494bea39 357 unsigned int hdrlen, int actions_attrlen)
c3ff8cfe
TG
358{
359 size_t size = NLMSG_ALIGN(sizeof(struct ovs_header))
bda56f14 360 + nla_total_size(hdrlen) /* OVS_PACKET_ATTR_PACKET */
b95e5928
WT
361 + nla_total_size(ovs_key_attr_size()) /* OVS_PACKET_ATTR_KEY */
362 + nla_total_size(sizeof(unsigned int)); /* OVS_PACKET_ATTR_LEN */
c3ff8cfe
TG
363
364 /* OVS_PACKET_ATTR_USERDATA */
8f0aad6f
WZ
365 if (upcall_info->userdata)
366 size += NLA_ALIGN(upcall_info->userdata->nla_len);
367
368 /* OVS_PACKET_ATTR_EGRESS_TUN_KEY */
369 if (upcall_info->egress_tun_info)
370 size += nla_total_size(ovs_tun_key_attr_size());
c3ff8cfe 371
ccea7445
NM
372 /* OVS_PACKET_ATTR_ACTIONS */
373 if (upcall_info->actions_len)
494bea39 374 size += nla_total_size(actions_attrlen);
ccea7445 375
7f8a436e
JS
376 /* OVS_PACKET_ATTR_MRU */
377 if (upcall_info->mru)
378 size += nla_total_size(sizeof(upcall_info->mru));
379
c3ff8cfe
TG
380 return size;
381}
382
7f8a436e
JS
383static void pad_packet(struct datapath *dp, struct sk_buff *skb)
384{
385 if (!(dp->user_features & OVS_DP_F_UNALIGNED)) {
386 size_t plen = NLA_ALIGN(skb->len) - skb->len;
387
388 if (plen > 0)
b080db58 389 skb_put_zero(skb, plen);
7f8a436e
JS
390 }
391}
392
8055a89c 393static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
e8eedb85 394 const struct sw_flow_key *key,
f2a4d086
WT
395 const struct dp_upcall_info *upcall_info,
396 uint32_t cutlen)
ccb1352e
JG
397{
398 struct ovs_header *upcall;
399 struct sk_buff *nskb = NULL;
4ee45ea0 400 struct sk_buff *user_skb = NULL; /* to be queued to userspace */
ccb1352e 401 struct nlattr *nla;
795449d8 402 size_t len;
bda56f14 403 unsigned int hlen;
8055a89c
TG
404 int err, dp_ifindex;
405
406 dp_ifindex = get_dpifindex(dp);
407 if (!dp_ifindex)
408 return -ENODEV;
ccb1352e 409
df8a39de 410 if (skb_vlan_tag_present(skb)) {
ccb1352e
JG
411 nskb = skb_clone(skb, GFP_ATOMIC);
412 if (!nskb)
413 return -ENOMEM;
414
5968250c 415 nskb = __vlan_hwaccel_push_inside(nskb);
8aa51d64 416 if (!nskb)
ccb1352e
JG
417 return -ENOMEM;
418
ccb1352e
JG
419 skb = nskb;
420 }
421
422 if (nla_attr_size(skb->len) > USHRT_MAX) {
423 err = -EFBIG;
424 goto out;
425 }
426
bda56f14
TG
427 /* Complete checksum if needed */
428 if (skb->ip_summed == CHECKSUM_PARTIAL &&
7529390d 429 (err = skb_csum_hwoffload_help(skb, 0)))
bda56f14
TG
430 goto out;
431
432 /* Older versions of OVS user space enforce alignment of the last
433 * Netlink attribute to NLA_ALIGNTO which would require extensive
434 * padding logic. Only perform zerocopy if padding is not required.
435 */
436 if (dp->user_features & OVS_DP_F_UNALIGNED)
437 hlen = skb_zerocopy_headlen(skb);
438 else
439 hlen = skb->len;
440
494bea39
LZ
441 len = upcall_msg_size(upcall_info, hlen - cutlen,
442 OVS_CB(skb)->acts_origlen);
551ddc05 443 user_skb = genlmsg_new(len, GFP_ATOMIC);
ccb1352e
JG
444 if (!user_skb) {
445 err = -ENOMEM;
446 goto out;
447 }
448
449 upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
450 0, upcall_info->cmd);
6f19893b
KL
451 if (!upcall) {
452 err = -EINVAL;
453 goto out;
454 }
ccb1352e
JG
455 upcall->dp_ifindex = dp_ifindex;
456
5b4237bb 457 err = ovs_nla_put_key(key, key, OVS_PACKET_ATTR_KEY, false, user_skb);
a734d1f4
EC
458 if (err)
459 goto out;
ccb1352e
JG
460
461 if (upcall_info->userdata)
4490108b
BP
462 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
463 nla_len(upcall_info->userdata),
464 nla_data(upcall_info->userdata));
ccb1352e 465
8f0aad6f 466 if (upcall_info->egress_tun_info) {
ae0be8de
MK
467 nla = nla_nest_start_noflag(user_skb,
468 OVS_PACKET_ATTR_EGRESS_TUN_KEY);
0fff9bd4
KL
469 if (!nla) {
470 err = -EMSGSIZE;
471 goto out;
472 }
fc4099f1
PS
473 err = ovs_nla_put_tunnel_info(user_skb,
474 upcall_info->egress_tun_info);
a734d1f4
EC
475 if (err)
476 goto out;
477
8f0aad6f
WZ
478 nla_nest_end(user_skb, nla);
479 }
480
ccea7445 481 if (upcall_info->actions_len) {
ae0be8de 482 nla = nla_nest_start_noflag(user_skb, OVS_PACKET_ATTR_ACTIONS);
0fff9bd4
KL
483 if (!nla) {
484 err = -EMSGSIZE;
485 goto out;
486 }
ccea7445
NM
487 err = ovs_nla_put_actions(upcall_info->actions,
488 upcall_info->actions_len,
489 user_skb);
490 if (!err)
491 nla_nest_end(user_skb, nla);
492 else
493 nla_nest_cancel(user_skb, nla);
494 }
495
7f8a436e
JS
496 /* Add OVS_PACKET_ATTR_MRU */
497 if (upcall_info->mru) {
498 if (nla_put_u16(user_skb, OVS_PACKET_ATTR_MRU,
499 upcall_info->mru)) {
500 err = -ENOBUFS;
501 goto out;
502 }
503 pad_packet(dp, user_skb);
504 }
505
b95e5928
WT
506 /* Add OVS_PACKET_ATTR_LEN when packet is truncated */
507 if (cutlen > 0) {
508 if (nla_put_u32(user_skb, OVS_PACKET_ATTR_LEN,
509 skb->len)) {
510 err = -ENOBUFS;
511 goto out;
512 }
513 pad_packet(dp, user_skb);
514 }
515
bda56f14
TG
516 /* Only reserve room for attribute header, packet data is added
517 * in skb_zerocopy() */
518 if (!(nla = nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, 0))) {
519 err = -ENOBUFS;
520 goto out;
521 }
f2a4d086 522 nla->nla_len = nla_attr_size(skb->len - cutlen);
ccb1352e 523
f2a4d086 524 err = skb_zerocopy(user_skb, skb, skb->len - cutlen, hlen);
36d5fe6a
ZK
525 if (err)
526 goto out;
ccb1352e 527
aea0bb4f 528 /* Pad OVS_PACKET_ATTR_PACKET if linear copy was performed */
7f8a436e 529 pad_packet(dp, user_skb);
aea0bb4f 530
bda56f14 531 ((struct nlmsghdr *) user_skb->data)->nlmsg_len = user_skb->len;
ccb1352e 532
bda56f14 533 err = genlmsg_unicast(ovs_dp_get_net(dp), user_skb, upcall_info->portid);
4ee45ea0 534 user_skb = NULL;
ccb1352e 535out:
36d5fe6a
ZK
536 if (err)
537 skb_tx_error(skb);
4ee45ea0 538 kfree_skb(user_skb);
ccb1352e
JG
539 kfree_skb(nskb);
540 return err;
541}
542
ccb1352e
JG
543static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
544{
545 struct ovs_header *ovs_header = info->userhdr;
7f8a436e 546 struct net *net = sock_net(skb->sk);
ccb1352e
JG
547 struct nlattr **a = info->attrs;
548 struct sw_flow_actions *acts;
549 struct sk_buff *packet;
550 struct sw_flow *flow;
d98612b8 551 struct sw_flow_actions *sf_acts;
ccb1352e 552 struct datapath *dp;
83c8df26 553 struct vport *input_vport;
7f8a436e 554 u16 mru = 0;
ccb1352e
JG
555 int len;
556 int err;
1ba39804 557 bool log = !a[OVS_PACKET_ATTR_PROBE];
ccb1352e
JG
558
559 err = -EINVAL;
560 if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
dded45fc 561 !a[OVS_PACKET_ATTR_ACTIONS])
ccb1352e
JG
562 goto err;
563
564 len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
565 packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
566 err = -ENOMEM;
567 if (!packet)
568 goto err;
569 skb_reserve(packet, NET_IP_ALIGN);
570
32686a9d 571 nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
ccb1352e 572
7f8a436e
JS
573 /* Set packet's mru */
574 if (a[OVS_PACKET_ATTR_MRU]) {
575 mru = nla_get_u16(a[OVS_PACKET_ATTR_MRU]);
576 packet->ignore_df = 1;
577 }
578 OVS_CB(packet)->mru = mru;
579
ccb1352e 580 /* Build an sw_flow for sending this packet. */
23dabf88 581 flow = ovs_flow_alloc();
ccb1352e
JG
582 err = PTR_ERR(flow);
583 if (IS_ERR(flow))
584 goto err_kfree_skb;
585
c2ac6673
JS
586 err = ovs_flow_key_extract_userspace(net, a[OVS_PACKET_ATTR_KEY],
587 packet, &flow->key, log);
ccb1352e
JG
588 if (err)
589 goto err_flow_free;
590
7f8a436e 591 err = ovs_nla_copy_actions(net, a[OVS_PACKET_ATTR_ACTIONS],
05da5898 592 &flow->key, &acts, log);
74f84a57
PS
593 if (err)
594 goto err_flow_free;
ccb1352e 595
f5796684 596 rcu_assign_pointer(flow->sf_acts, acts);
ccb1352e 597 packet->priority = flow->key.phy.priority;
39c7caeb 598 packet->mark = flow->key.phy.skb_mark;
ccb1352e
JG
599
600 rcu_read_lock();
7f8a436e 601 dp = get_dp_rcu(net, ovs_header->dp_ifindex);
ccb1352e
JG
602 err = -ENODEV;
603 if (!dp)
604 goto err_unlock;
605
83c8df26
PS
606 input_vport = ovs_vport_rcu(dp, flow->key.phy.in_port);
607 if (!input_vport)
608 input_vport = ovs_vport_rcu(dp, OVSP_LOCAL);
609
610 if (!input_vport)
611 goto err_unlock;
612
7f8a436e 613 packet->dev = input_vport->dev;
83c8df26 614 OVS_CB(packet)->input_vport = input_vport;
d98612b8 615 sf_acts = rcu_dereference(flow->sf_acts);
83c8df26 616
ccb1352e 617 local_bh_disable();
d98612b8 618 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key);
ccb1352e
JG
619 local_bh_enable();
620 rcu_read_unlock();
621
03f0d916 622 ovs_flow_free(flow, false);
ccb1352e
JG
623 return err;
624
625err_unlock:
626 rcu_read_unlock();
627err_flow_free:
03f0d916 628 ovs_flow_free(flow, false);
ccb1352e
JG
629err_kfree_skb:
630 kfree_skb(packet);
631err:
632 return err;
633}
634
635static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
dded45fc 636 [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
ccb1352e
JG
637 [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
638 [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
1ba39804 639 [OVS_PACKET_ATTR_PROBE] = { .type = NLA_FLAG },
7f8a436e 640 [OVS_PACKET_ATTR_MRU] = { .type = NLA_U16 },
ccb1352e
JG
641};
642
4534de83 643static const struct genl_ops dp_packet_genl_ops[] = {
ccb1352e 644 { .cmd = OVS_PACKET_CMD_EXECUTE,
ef6243ac 645 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 646 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
ccb1352e
JG
647 .doit = ovs_packet_cmd_execute
648 }
649};
650
56989f6d 651static struct genl_family dp_packet_genl_family __ro_after_init = {
0c200ef9
PS
652 .hdrsize = sizeof(struct ovs_header),
653 .name = OVS_PACKET_FAMILY,
654 .version = OVS_PACKET_VERSION,
655 .maxattr = OVS_PACKET_ATTR_MAX,
3b0f31f2 656 .policy = packet_policy,
0c200ef9
PS
657 .netnsok = true,
658 .parallel_ops = true,
659 .ops = dp_packet_genl_ops,
660 .n_ops = ARRAY_SIZE(dp_packet_genl_ops),
489111e5 661 .module = THIS_MODULE,
0c200ef9
PS
662};
663
12eb18f7 664static void get_dp_stats(const struct datapath *dp, struct ovs_dp_stats *stats,
1bd7116f 665 struct ovs_dp_megaflow_stats *mega_stats)
ccb1352e
JG
666{
667 int i;
ccb1352e 668
1bd7116f
AZ
669 memset(mega_stats, 0, sizeof(*mega_stats));
670
b637e498 671 stats->n_flows = ovs_flow_tbl_count(&dp->table);
1bd7116f 672 mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
ccb1352e
JG
673
674 stats->n_hit = stats->n_missed = stats->n_lost = 0;
1bd7116f 675
ccb1352e
JG
676 for_each_possible_cpu(i) {
677 const struct dp_stats_percpu *percpu_stats;
678 struct dp_stats_percpu local_stats;
679 unsigned int start;
680
681 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
682
683 do {
57a7744e 684 start = u64_stats_fetch_begin_irq(&percpu_stats->syncp);
ccb1352e 685 local_stats = *percpu_stats;
57a7744e 686 } while (u64_stats_fetch_retry_irq(&percpu_stats->syncp, start));
ccb1352e
JG
687
688 stats->n_hit += local_stats.n_hit;
689 stats->n_missed += local_stats.n_missed;
690 stats->n_lost += local_stats.n_lost;
1bd7116f 691 mega_stats->n_mask_hit += local_stats.n_mask_hit;
ccb1352e
JG
692 }
693}
694
74ed7ab9
JS
695static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags)
696{
697 return ovs_identifier_is_ufid(sfid) &&
698 !(ufid_flags & OVS_UFID_F_OMIT_KEY);
699}
700
701static bool should_fill_mask(uint32_t ufid_flags)
702{
703 return !(ufid_flags & OVS_UFID_F_OMIT_MASK);
704}
705
706static bool should_fill_actions(uint32_t ufid_flags)
c3ff8cfe 707{
74ed7ab9
JS
708 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS);
709}
710
711static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts,
712 const struct sw_flow_id *sfid,
713 uint32_t ufid_flags)
714{
715 size_t len = NLMSG_ALIGN(sizeof(struct ovs_header));
716
717 /* OVS_FLOW_ATTR_UFID */
718 if (sfid && ovs_identifier_is_ufid(sfid))
719 len += nla_total_size(sfid->ufid_len);
720
721 /* OVS_FLOW_ATTR_KEY */
722 if (!sfid || should_fill_key(sfid, ufid_flags))
723 len += nla_total_size(ovs_key_attr_size());
724
725 /* OVS_FLOW_ATTR_MASK */
726 if (should_fill_mask(ufid_flags))
727 len += nla_total_size(ovs_key_attr_size());
728
729 /* OVS_FLOW_ATTR_ACTIONS */
730 if (should_fill_actions(ufid_flags))
8e2fed1c 731 len += nla_total_size(acts->orig_len);
74ed7ab9
JS
732
733 return len
66c7a5ee 734 + nla_total_size_64bit(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
c3ff8cfe 735 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
66c7a5ee 736 + nla_total_size_64bit(8); /* OVS_FLOW_ATTR_USED */
c3ff8cfe
TG
737}
738
ca7105f2
JS
739/* Called with ovs_mutex or RCU read lock. */
740static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
741 struct sk_buff *skb)
742{
743 struct ovs_flow_stats stats;
744 __be16 tcp_flags;
745 unsigned long used;
ccb1352e 746
e298e505 747 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
0e9796b4 748
028d6a67 749 if (used &&
0238b720
ND
750 nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
751 OVS_FLOW_ATTR_PAD))
ca7105f2 752 return -EMSGSIZE;
ccb1352e 753
028d6a67 754 if (stats.n_packets &&
66c7a5ee
ND
755 nla_put_64bit(skb, OVS_FLOW_ATTR_STATS,
756 sizeof(struct ovs_flow_stats), &stats,
757 OVS_FLOW_ATTR_PAD))
ca7105f2 758 return -EMSGSIZE;
ccb1352e 759
e298e505
PS
760 if ((u8)ntohs(tcp_flags) &&
761 nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
ca7105f2
JS
762 return -EMSGSIZE;
763
764 return 0;
765}
766
767/* Called with ovs_mutex or RCU read lock. */
768static int ovs_flow_cmd_fill_actions(const struct sw_flow *flow,
769 struct sk_buff *skb, int skb_orig_len)
770{
771 struct nlattr *start;
772 int err;
ccb1352e
JG
773
774 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
775 * this is the first flow to be dumped into 'skb'. This is unusual for
776 * Netlink but individual action lists can be longer than
777 * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
778 * The userspace caller can always fetch the actions separately if it
779 * really wants them. (Most userspace callers in fact don't care.)
780 *
781 * This can only fail for dump operations because the skb is always
782 * properly sized for single flows.
783 */
ae0be8de 784 start = nla_nest_start_noflag(skb, OVS_FLOW_ATTR_ACTIONS);
74f84a57 785 if (start) {
d57170b1
PS
786 const struct sw_flow_actions *sf_acts;
787
663efa36 788 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
e6445719
PS
789 err = ovs_nla_put_actions(sf_acts->actions,
790 sf_acts->actions_len, skb);
0e9796b4 791
74f84a57
PS
792 if (!err)
793 nla_nest_end(skb, start);
794 else {
795 if (skb_orig_len)
ca7105f2 796 return err;
74f84a57
PS
797
798 nla_nest_cancel(skb, start);
799 }
ca7105f2
JS
800 } else if (skb_orig_len) {
801 return -EMSGSIZE;
802 }
803
804 return 0;
805}
806
807/* Called with ovs_mutex or RCU read lock. */
808static int ovs_flow_cmd_fill_info(const struct sw_flow *flow, int dp_ifindex,
809 struct sk_buff *skb, u32 portid,
74ed7ab9 810 u32 seq, u32 flags, u8 cmd, u32 ufid_flags)
ca7105f2
JS
811{
812 const int skb_orig_len = skb->len;
813 struct ovs_header *ovs_header;
814 int err;
815
816 ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family,
817 flags, cmd);
818 if (!ovs_header)
819 return -EMSGSIZE;
820
821 ovs_header->dp_ifindex = dp_ifindex;
822
74ed7ab9 823 err = ovs_nla_put_identifier(flow, skb);
5b4237bb
JS
824 if (err)
825 goto error;
826
74ed7ab9
JS
827 if (should_fill_key(&flow->id, ufid_flags)) {
828 err = ovs_nla_put_masked_key(flow, skb);
829 if (err)
830 goto error;
831 }
832
833 if (should_fill_mask(ufid_flags)) {
834 err = ovs_nla_put_mask(flow, skb);
835 if (err)
836 goto error;
837 }
ca7105f2
JS
838
839 err = ovs_flow_cmd_fill_stats(flow, skb);
840 if (err)
841 goto error;
842
74ed7ab9
JS
843 if (should_fill_actions(ufid_flags)) {
844 err = ovs_flow_cmd_fill_actions(flow, skb, skb_orig_len);
845 if (err)
846 goto error;
847 }
ccb1352e 848
053c095a
JB
849 genlmsg_end(skb, ovs_header);
850 return 0;
ccb1352e 851
ccb1352e
JG
852error:
853 genlmsg_cancel(skb, ovs_header);
854 return err;
855}
856
0e9796b4
JR
857/* May not be called with RCU read lock. */
858static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts,
74ed7ab9 859 const struct sw_flow_id *sfid,
fb5d1e9e 860 struct genl_info *info,
74ed7ab9
JS
861 bool always,
862 uint32_t ufid_flags)
ccb1352e 863{
fb5d1e9e 864 struct sk_buff *skb;
74ed7ab9 865 size_t len;
ccb1352e 866
9b67aa4a 867 if (!always && !ovs_must_notify(&dp_flow_genl_family, info, 0))
fb5d1e9e
JR
868 return NULL;
869
74ed7ab9 870 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags);
551ddc05 871 skb = genlmsg_new(len, GFP_KERNEL);
fb5d1e9e
JR
872 if (!skb)
873 return ERR_PTR(-ENOMEM);
874
875 return skb;
ccb1352e
JG
876}
877
0e9796b4
JR
878/* Called with ovs_mutex. */
879static struct sk_buff *ovs_flow_cmd_build_info(const struct sw_flow *flow,
880 int dp_ifindex,
881 struct genl_info *info, u8 cmd,
74ed7ab9 882 bool always, u32 ufid_flags)
ccb1352e
JG
883{
884 struct sk_buff *skb;
885 int retval;
886
74ed7ab9
JS
887 skb = ovs_flow_cmd_alloc_info(ovsl_dereference(flow->sf_acts),
888 &flow->id, info, always, ufid_flags);
d0e992aa 889 if (IS_ERR_OR_NULL(skb))
fb5d1e9e 890 return skb;
ccb1352e 891
0e9796b4
JR
892 retval = ovs_flow_cmd_fill_info(flow, dp_ifindex, skb,
893 info->snd_portid, info->snd_seq, 0,
74ed7ab9 894 cmd, ufid_flags);
ccb1352e
JG
895 BUG_ON(retval < 0);
896 return skb;
897}
898
37bdc87b 899static int ovs_flow_cmd_new(struct sk_buff *skb, struct genl_info *info)
ccb1352e 900{
7f8a436e 901 struct net *net = sock_net(skb->sk);
ccb1352e
JG
902 struct nlattr **a = info->attrs;
903 struct ovs_header *ovs_header = info->userhdr;
74ed7ab9 904 struct sw_flow *flow = NULL, *new_flow;
03f0d916 905 struct sw_flow_mask mask;
ccb1352e
JG
906 struct sk_buff *reply;
907 struct datapath *dp;
37bdc87b 908 struct sw_flow_actions *acts;
03f0d916 909 struct sw_flow_match match;
74ed7ab9 910 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
ccb1352e 911 int error;
05da5898 912 bool log = !a[OVS_FLOW_ATTR_PROBE];
ccb1352e 913
893f139b 914 /* Must have key and actions. */
ccb1352e 915 error = -EINVAL;
426cda5c 916 if (!a[OVS_FLOW_ATTR_KEY]) {
05da5898 917 OVS_NLERR(log, "Flow key attr not present in new flow.");
ccb1352e 918 goto error;
426cda5c
JG
919 }
920 if (!a[OVS_FLOW_ATTR_ACTIONS]) {
05da5898 921 OVS_NLERR(log, "Flow actions attr not present in new flow.");
893f139b 922 goto error;
426cda5c 923 }
03f0d916 924
893f139b
JR
925 /* Most of the time we need to allocate a new flow, do it before
926 * locking.
927 */
928 new_flow = ovs_flow_alloc();
929 if (IS_ERR(new_flow)) {
930 error = PTR_ERR(new_flow);
931 goto error;
932 }
933
934 /* Extract key. */
2279994d 935 ovs_match_init(&match, &new_flow->key, false, &mask);
c2ac6673 936 error = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
05da5898 937 a[OVS_FLOW_ATTR_MASK], log);
ccb1352e 938 if (error)
893f139b 939 goto err_kfree_flow;
ccb1352e 940
74ed7ab9
JS
941 /* Extract flow identifier. */
942 error = ovs_nla_get_identifier(&new_flow->id, a[OVS_FLOW_ATTR_UFID],
190aa3e7 943 &new_flow->key, log);
74ed7ab9
JS
944 if (error)
945 goto err_kfree_flow;
74f84a57 946
190aa3e7 947 /* unmasked key is needed to match when ufid is not used. */
948 if (ovs_identifier_is_key(&new_flow->id))
949 match.key = new_flow->id.unmasked_key;
950
951 ovs_flow_mask_key(&new_flow->key, &new_flow->key, true, &mask);
952
893f139b 953 /* Validate actions. */
7f8a436e
JS
954 error = ovs_nla_copy_actions(net, a[OVS_FLOW_ATTR_ACTIONS],
955 &new_flow->key, &acts, log);
37bdc87b 956 if (error) {
05da5898 957 OVS_NLERR(log, "Flow actions may not be safe on all matching packets.");
2fdb957d 958 goto err_kfree_flow;
893f139b
JR
959 }
960
74ed7ab9
JS
961 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false,
962 ufid_flags);
893f139b
JR
963 if (IS_ERR(reply)) {
964 error = PTR_ERR(reply);
965 goto err_kfree_acts;
ccb1352e
JG
966 }
967
8e4e1713 968 ovs_lock();
7f8a436e 969 dp = get_dp(net, ovs_header->dp_ifindex);
893f139b
JR
970 if (unlikely(!dp)) {
971 error = -ENODEV;
8e4e1713 972 goto err_unlock_ovs;
893f139b 973 }
74ed7ab9 974
03f0d916 975 /* Check if this is a duplicate flow */
74ed7ab9
JS
976 if (ovs_identifier_is_ufid(&new_flow->id))
977 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &new_flow->id);
978 if (!flow)
190aa3e7 979 flow = ovs_flow_tbl_lookup(&dp->table, &new_flow->key);
893f139b
JR
980 if (likely(!flow)) {
981 rcu_assign_pointer(new_flow->sf_acts, acts);
ccb1352e
JG
982
983 /* Put flow in bucket. */
893f139b
JR
984 error = ovs_flow_tbl_insert(&dp->table, new_flow, &mask);
985 if (unlikely(error)) {
618ed0c8 986 acts = NULL;
893f139b
JR
987 goto err_unlock_ovs;
988 }
989
990 if (unlikely(reply)) {
991 error = ovs_flow_cmd_fill_info(new_flow,
992 ovs_header->dp_ifindex,
993 reply, info->snd_portid,
994 info->snd_seq, 0,
74ed7ab9
JS
995 OVS_FLOW_CMD_NEW,
996 ufid_flags);
893f139b 997 BUG_ON(error < 0);
618ed0c8 998 }
893f139b 999 ovs_unlock();
ccb1352e 1000 } else {
37bdc87b
JR
1001 struct sw_flow_actions *old_acts;
1002
ccb1352e
JG
1003 /* Bail out if we're not allowed to modify an existing flow.
1004 * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1005 * because Generic Netlink treats the latter as a dump
1006 * request. We also accept NLM_F_EXCL in case that bug ever
1007 * gets fixed.
1008 */
893f139b
JR
1009 if (unlikely(info->nlhdr->nlmsg_flags & (NLM_F_CREATE
1010 | NLM_F_EXCL))) {
1011 error = -EEXIST;
8e4e1713 1012 goto err_unlock_ovs;
893f139b 1013 }
74ed7ab9
JS
1014 /* The flow identifier has to be the same for flow updates.
1015 * Look for any overlapping flow.
1016 */
1017 if (unlikely(!ovs_flow_cmp(flow, &match))) {
1018 if (ovs_identifier_is_key(&flow->id))
1019 flow = ovs_flow_tbl_lookup_exact(&dp->table,
1020 &match);
1021 else /* UFID matches but key is different */
1022 flow = NULL;
4a46b24e
AW
1023 if (!flow) {
1024 error = -ENOENT;
1025 goto err_unlock_ovs;
1026 }
893f139b 1027 }
37bdc87b
JR
1028 /* Update actions. */
1029 old_acts = ovsl_dereference(flow->sf_acts);
1030 rcu_assign_pointer(flow->sf_acts, acts);
37bdc87b 1031
893f139b
JR
1032 if (unlikely(reply)) {
1033 error = ovs_flow_cmd_fill_info(flow,
1034 ovs_header->dp_ifindex,
1035 reply, info->snd_portid,
1036 info->snd_seq, 0,
74ed7ab9
JS
1037 OVS_FLOW_CMD_NEW,
1038 ufid_flags);
893f139b
JR
1039 BUG_ON(error < 0);
1040 }
1041 ovs_unlock();
37bdc87b 1042
34ae932a 1043 ovs_nla_free_flow_actions_rcu(old_acts);
893f139b 1044 ovs_flow_free(new_flow, false);
37bdc87b 1045 }
893f139b
JR
1046
1047 if (reply)
1048 ovs_notify(&dp_flow_genl_family, reply, info);
37bdc87b
JR
1049 return 0;
1050
37bdc87b
JR
1051err_unlock_ovs:
1052 ovs_unlock();
893f139b
JR
1053 kfree_skb(reply);
1054err_kfree_acts:
34ae932a 1055 ovs_nla_free_flow_actions(acts);
893f139b
JR
1056err_kfree_flow:
1057 ovs_flow_free(new_flow, false);
37bdc87b
JR
1058error:
1059 return error;
1060}
ccb1352e 1061
2fdb957d 1062/* Factor out action copy to avoid "Wframe-larger-than=1024" warning. */
7f8a436e
JS
1063static struct sw_flow_actions *get_flow_actions(struct net *net,
1064 const struct nlattr *a,
6b205b2c 1065 const struct sw_flow_key *key,
05da5898
JR
1066 const struct sw_flow_mask *mask,
1067 bool log)
6b205b2c
JG
1068{
1069 struct sw_flow_actions *acts;
1070 struct sw_flow_key masked_key;
1071 int error;
1072
ae5f2fb1 1073 ovs_flow_mask_key(&masked_key, key, true, mask);
7f8a436e 1074 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log);
6b205b2c 1075 if (error) {
05da5898
JR
1076 OVS_NLERR(log,
1077 "Actions may not be safe on all matching packets");
6b205b2c
JG
1078 return ERR_PTR(error);
1079 }
1080
1081 return acts;
1082}
1083
9cc9a5cb
TZ
1084/* Factor out match-init and action-copy to avoid
1085 * "Wframe-larger-than=1024" warning. Because mask is only
1086 * used to get actions, we new a function to save some
1087 * stack space.
1088 *
1089 * If there are not key and action attrs, we return 0
1090 * directly. In the case, the caller will also not use the
1091 * match as before. If there is action attr, we try to get
1092 * actions and save them to *acts. Before returning from
1093 * the function, we reset the match->mask pointer. Because
1094 * we should not to return match object with dangling reference
1095 * to mask.
1096 * */
1097static int ovs_nla_init_match_and_action(struct net *net,
1098 struct sw_flow_match *match,
1099 struct sw_flow_key *key,
1100 struct nlattr **a,
1101 struct sw_flow_actions **acts,
1102 bool log)
1103{
1104 struct sw_flow_mask mask;
1105 int error = 0;
1106
1107 if (a[OVS_FLOW_ATTR_KEY]) {
1108 ovs_match_init(match, key, true, &mask);
1109 error = ovs_nla_get_match(net, match, a[OVS_FLOW_ATTR_KEY],
1110 a[OVS_FLOW_ATTR_MASK], log);
1111 if (error)
1112 goto error;
1113 }
1114
1115 if (a[OVS_FLOW_ATTR_ACTIONS]) {
1116 if (!a[OVS_FLOW_ATTR_KEY]) {
1117 OVS_NLERR(log,
1118 "Flow key attribute not present in set flow.");
5829e62a
CJ
1119 error = -EINVAL;
1120 goto error;
9cc9a5cb
TZ
1121 }
1122
1123 *acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], key,
1124 &mask, log);
1125 if (IS_ERR(*acts)) {
1126 error = PTR_ERR(*acts);
1127 goto error;
1128 }
1129 }
1130
1131 /* On success, error is 0. */
1132error:
1133 match->mask = NULL;
1134 return error;
1135}
1136
37bdc87b
JR
1137static int ovs_flow_cmd_set(struct sk_buff *skb, struct genl_info *info)
1138{
7f8a436e 1139 struct net *net = sock_net(skb->sk);
37bdc87b
JR
1140 struct nlattr **a = info->attrs;
1141 struct ovs_header *ovs_header = info->userhdr;
6b205b2c 1142 struct sw_flow_key key;
37bdc87b 1143 struct sw_flow *flow;
37bdc87b
JR
1144 struct sk_buff *reply = NULL;
1145 struct datapath *dp;
893f139b 1146 struct sw_flow_actions *old_acts = NULL, *acts = NULL;
37bdc87b 1147 struct sw_flow_match match;
74ed7ab9
JS
1148 struct sw_flow_id sfid;
1149 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
6f15cdbf 1150 int error = 0;
05da5898 1151 bool log = !a[OVS_FLOW_ATTR_PROBE];
74ed7ab9 1152 bool ufid_present;
37bdc87b 1153
74ed7ab9 1154 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log);
9cc9a5cb 1155 if (!a[OVS_FLOW_ATTR_KEY] && !ufid_present) {
6f15cdbf
SG
1156 OVS_NLERR(log,
1157 "Flow set message rejected, Key attribute missing.");
9cc9a5cb 1158 return -EINVAL;
6f15cdbf 1159 }
9cc9a5cb
TZ
1160
1161 error = ovs_nla_init_match_and_action(net, &match, &key, a,
1162 &acts, log);
37bdc87b
JR
1163 if (error)
1164 goto error;
1165
9cc9a5cb 1166 if (acts) {
2fdb957d 1167 /* Can allocate before locking if have acts. */
74ed7ab9
JS
1168 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false,
1169 ufid_flags);
893f139b
JR
1170 if (IS_ERR(reply)) {
1171 error = PTR_ERR(reply);
1172 goto err_kfree_acts;
be52c9e9 1173 }
37bdc87b 1174 }
0e9796b4 1175
37bdc87b 1176 ovs_lock();
7f8a436e 1177 dp = get_dp(net, ovs_header->dp_ifindex);
893f139b
JR
1178 if (unlikely(!dp)) {
1179 error = -ENODEV;
37bdc87b 1180 goto err_unlock_ovs;
893f139b 1181 }
37bdc87b 1182 /* Check that the flow exists. */
74ed7ab9
JS
1183 if (ufid_present)
1184 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &sfid);
1185 else
1186 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
893f139b
JR
1187 if (unlikely(!flow)) {
1188 error = -ENOENT;
37bdc87b 1189 goto err_unlock_ovs;
893f139b 1190 }
4a46b24e 1191
37bdc87b 1192 /* Update actions, if present. */
893f139b 1193 if (likely(acts)) {
37bdc87b
JR
1194 old_acts = ovsl_dereference(flow->sf_acts);
1195 rcu_assign_pointer(flow->sf_acts, acts);
893f139b
JR
1196
1197 if (unlikely(reply)) {
1198 error = ovs_flow_cmd_fill_info(flow,
1199 ovs_header->dp_ifindex,
1200 reply, info->snd_portid,
1201 info->snd_seq, 0,
804fe108 1202 OVS_FLOW_CMD_SET,
74ed7ab9 1203 ufid_flags);
893f139b
JR
1204 BUG_ON(error < 0);
1205 }
1206 } else {
1207 /* Could not alloc without acts before locking. */
1208 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex,
804fe108 1209 info, OVS_FLOW_CMD_SET, false,
74ed7ab9
JS
1210 ufid_flags);
1211
b5ffe634 1212 if (IS_ERR(reply)) {
893f139b
JR
1213 error = PTR_ERR(reply);
1214 goto err_unlock_ovs;
1215 }
ccb1352e 1216 }
37bdc87b 1217
37bdc87b
JR
1218 /* Clear stats. */
1219 if (a[OVS_FLOW_ATTR_CLEAR])
1220 ovs_flow_stats_clear(flow);
8e4e1713 1221 ovs_unlock();
ccb1352e 1222
893f139b
JR
1223 if (reply)
1224 ovs_notify(&dp_flow_genl_family, reply, info);
1225 if (old_acts)
34ae932a 1226 ovs_nla_free_flow_actions_rcu(old_acts);
fb5d1e9e 1227
ccb1352e
JG
1228 return 0;
1229
8e4e1713
PS
1230err_unlock_ovs:
1231 ovs_unlock();
893f139b
JR
1232 kfree_skb(reply);
1233err_kfree_acts:
34ae932a 1234 ovs_nla_free_flow_actions(acts);
ccb1352e
JG
1235error:
1236 return error;
1237}
1238
1239static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1240{
1241 struct nlattr **a = info->attrs;
1242 struct ovs_header *ovs_header = info->userhdr;
c2ac6673 1243 struct net *net = sock_net(skb->sk);
ccb1352e
JG
1244 struct sw_flow_key key;
1245 struct sk_buff *reply;
1246 struct sw_flow *flow;
1247 struct datapath *dp;
03f0d916 1248 struct sw_flow_match match;
74ed7ab9
JS
1249 struct sw_flow_id ufid;
1250 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
1251 int err = 0;
05da5898 1252 bool log = !a[OVS_FLOW_ATTR_PROBE];
74ed7ab9 1253 bool ufid_present;
ccb1352e 1254
74ed7ab9
JS
1255 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1256 if (a[OVS_FLOW_ATTR_KEY]) {
2279994d 1257 ovs_match_init(&match, &key, true, NULL);
c2ac6673 1258 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY], NULL,
74ed7ab9
JS
1259 log);
1260 } else if (!ufid_present) {
05da5898
JR
1261 OVS_NLERR(log,
1262 "Flow get message rejected, Key attribute missing.");
74ed7ab9 1263 err = -EINVAL;
03f0d916 1264 }
ccb1352e
JG
1265 if (err)
1266 return err;
1267
8e4e1713 1268 ovs_lock();
46df7b81 1269 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
8e4e1713
PS
1270 if (!dp) {
1271 err = -ENODEV;
1272 goto unlock;
1273 }
ccb1352e 1274
74ed7ab9
JS
1275 if (ufid_present)
1276 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1277 else
1278 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
4a46b24e 1279 if (!flow) {
8e4e1713
PS
1280 err = -ENOENT;
1281 goto unlock;
1282 }
ccb1352e 1283
0e9796b4 1284 reply = ovs_flow_cmd_build_info(flow, ovs_header->dp_ifindex, info,
804fe108 1285 OVS_FLOW_CMD_GET, true, ufid_flags);
8e4e1713
PS
1286 if (IS_ERR(reply)) {
1287 err = PTR_ERR(reply);
1288 goto unlock;
1289 }
ccb1352e 1290
8e4e1713 1291 ovs_unlock();
ccb1352e 1292 return genlmsg_reply(reply, info);
8e4e1713
PS
1293unlock:
1294 ovs_unlock();
1295 return err;
ccb1352e
JG
1296}
1297
1298static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1299{
1300 struct nlattr **a = info->attrs;
1301 struct ovs_header *ovs_header = info->userhdr;
c2ac6673 1302 struct net *net = sock_net(skb->sk);
ccb1352e
JG
1303 struct sw_flow_key key;
1304 struct sk_buff *reply;
74ed7ab9 1305 struct sw_flow *flow = NULL;
ccb1352e 1306 struct datapath *dp;
03f0d916 1307 struct sw_flow_match match;
74ed7ab9
JS
1308 struct sw_flow_id ufid;
1309 u32 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
ccb1352e 1310 int err;
05da5898 1311 bool log = !a[OVS_FLOW_ATTR_PROBE];
74ed7ab9 1312 bool ufid_present;
ccb1352e 1313
74ed7ab9
JS
1314 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1315 if (a[OVS_FLOW_ATTR_KEY]) {
2279994d 1316 ovs_match_init(&match, &key, true, NULL);
c2ac6673
JS
1317 err = ovs_nla_get_match(net, &match, a[OVS_FLOW_ATTR_KEY],
1318 NULL, log);
aed06778
JR
1319 if (unlikely(err))
1320 return err;
1321 }
1322
8e4e1713 1323 ovs_lock();
46df7b81 1324 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
aed06778 1325 if (unlikely(!dp)) {
8e4e1713
PS
1326 err = -ENODEV;
1327 goto unlock;
1328 }
46df7b81 1329
74ed7ab9 1330 if (unlikely(!a[OVS_FLOW_ATTR_KEY] && !ufid_present)) {
b637e498 1331 err = ovs_flow_tbl_flush(&dp->table);
8e4e1713
PS
1332 goto unlock;
1333 }
03f0d916 1334
74ed7ab9
JS
1335 if (ufid_present)
1336 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1337 else
1338 flow = ovs_flow_tbl_lookup_exact(&dp->table, &match);
4a46b24e 1339 if (unlikely(!flow)) {
8e4e1713
PS
1340 err = -ENOENT;
1341 goto unlock;
1342 }
ccb1352e 1343
b637e498 1344 ovs_flow_tbl_remove(&dp->table, flow);
aed06778 1345 ovs_unlock();
ccb1352e 1346
aed06778 1347 reply = ovs_flow_cmd_alloc_info((const struct sw_flow_actions __force *) flow->sf_acts,
74ed7ab9 1348 &flow->id, info, false, ufid_flags);
aed06778
JR
1349 if (likely(reply)) {
1350 if (likely(!IS_ERR(reply))) {
1351 rcu_read_lock(); /*To keep RCU checker happy. */
1352 err = ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex,
1353 reply, info->snd_portid,
1354 info->snd_seq, 0,
74ed7ab9
JS
1355 OVS_FLOW_CMD_DEL,
1356 ufid_flags);
aed06778
JR
1357 rcu_read_unlock();
1358 BUG_ON(err < 0);
1359
1360 ovs_notify(&dp_flow_genl_family, reply, info);
1361 } else {
1362 netlink_set_err(sock_net(skb->sk)->genl_sock, 0, 0, PTR_ERR(reply));
1363 }
fb5d1e9e 1364 }
ccb1352e 1365
aed06778 1366 ovs_flow_free(flow, true);
ccb1352e 1367 return 0;
8e4e1713
PS
1368unlock:
1369 ovs_unlock();
1370 return err;
ccb1352e
JG
1371}
1372
1373static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1374{
74ed7ab9 1375 struct nlattr *a[__OVS_FLOW_ATTR_MAX];
ccb1352e 1376 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
b637e498 1377 struct table_instance *ti;
ccb1352e 1378 struct datapath *dp;
74ed7ab9
JS
1379 u32 ufid_flags;
1380 int err;
1381
8cb08174
JB
1382 err = genlmsg_parse_deprecated(cb->nlh, &dp_flow_genl_family, a,
1383 OVS_FLOW_ATTR_MAX, flow_policy, NULL);
74ed7ab9
JS
1384 if (err)
1385 return err;
1386 ufid_flags = ovs_nla_get_ufid_flags(a[OVS_FLOW_ATTR_UFID_FLAGS]);
ccb1352e 1387
d57170b1 1388 rcu_read_lock();
cc3a5ae6 1389 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
8e4e1713 1390 if (!dp) {
d57170b1 1391 rcu_read_unlock();
ccb1352e 1392 return -ENODEV;
8e4e1713 1393 }
ccb1352e 1394
b637e498 1395 ti = rcu_dereference(dp->table.ti);
ccb1352e
JG
1396 for (;;) {
1397 struct sw_flow *flow;
1398 u32 bucket, obj;
1399
1400 bucket = cb->args[0];
1401 obj = cb->args[1];
b637e498 1402 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
ccb1352e
JG
1403 if (!flow)
1404 break;
1405
0e9796b4 1406 if (ovs_flow_cmd_fill_info(flow, ovs_header->dp_ifindex, skb,
15e47304 1407 NETLINK_CB(cb->skb).portid,
ccb1352e 1408 cb->nlh->nlmsg_seq, NLM_F_MULTI,
804fe108 1409 OVS_FLOW_CMD_GET, ufid_flags) < 0)
ccb1352e
JG
1410 break;
1411
1412 cb->args[0] = bucket;
1413 cb->args[1] = obj;
1414 }
d57170b1 1415 rcu_read_unlock();
ccb1352e
JG
1416 return skb->len;
1417}
1418
0c200ef9
PS
1419static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
1420 [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
05da5898 1421 [OVS_FLOW_ATTR_MASK] = { .type = NLA_NESTED },
0c200ef9
PS
1422 [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
1423 [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
05da5898 1424 [OVS_FLOW_ATTR_PROBE] = { .type = NLA_FLAG },
74ed7ab9
JS
1425 [OVS_FLOW_ATTR_UFID] = { .type = NLA_UNSPEC, .len = 1 },
1426 [OVS_FLOW_ATTR_UFID_FLAGS] = { .type = NLA_U32 },
0c200ef9
PS
1427};
1428
48e48a70 1429static const struct genl_ops dp_flow_genl_ops[] = {
ccb1352e 1430 { .cmd = OVS_FLOW_CMD_NEW,
ef6243ac 1431 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 1432 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
37bdc87b 1433 .doit = ovs_flow_cmd_new
ccb1352e
JG
1434 },
1435 { .cmd = OVS_FLOW_CMD_DEL,
ef6243ac 1436 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 1437 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
ccb1352e
JG
1438 .doit = ovs_flow_cmd_del
1439 },
1440 { .cmd = OVS_FLOW_CMD_GET,
ef6243ac 1441 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
ccb1352e 1442 .flags = 0, /* OK for unprivileged users. */
ccb1352e
JG
1443 .doit = ovs_flow_cmd_get,
1444 .dumpit = ovs_flow_cmd_dump
1445 },
1446 { .cmd = OVS_FLOW_CMD_SET,
ef6243ac 1447 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 1448 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
37bdc87b 1449 .doit = ovs_flow_cmd_set,
ccb1352e
JG
1450 },
1451};
1452
56989f6d 1453static struct genl_family dp_flow_genl_family __ro_after_init = {
ccb1352e 1454 .hdrsize = sizeof(struct ovs_header),
0c200ef9
PS
1455 .name = OVS_FLOW_FAMILY,
1456 .version = OVS_FLOW_VERSION,
1457 .maxattr = OVS_FLOW_ATTR_MAX,
3b0f31f2 1458 .policy = flow_policy,
3a4e0d6a
PS
1459 .netnsok = true,
1460 .parallel_ops = true,
0c200ef9
PS
1461 .ops = dp_flow_genl_ops,
1462 .n_ops = ARRAY_SIZE(dp_flow_genl_ops),
1463 .mcgrps = &ovs_dp_flow_multicast_group,
1464 .n_mcgrps = 1,
489111e5 1465 .module = THIS_MODULE,
ccb1352e
JG
1466};
1467
c3ff8cfe
TG
1468static size_t ovs_dp_cmd_msg_size(void)
1469{
1470 size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1471
1472 msgsize += nla_total_size(IFNAMSIZ);
66c7a5ee
ND
1473 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_stats));
1474 msgsize += nla_total_size_64bit(sizeof(struct ovs_dp_megaflow_stats));
45fb9c35 1475 msgsize += nla_total_size(sizeof(u32)); /* OVS_DP_ATTR_USER_FEATURES */
c3ff8cfe
TG
1476
1477 return msgsize;
1478}
1479
8ec609d8 1480/* Called with ovs_mutex. */
ccb1352e 1481static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
15e47304 1482 u32 portid, u32 seq, u32 flags, u8 cmd)
ccb1352e
JG
1483{
1484 struct ovs_header *ovs_header;
1485 struct ovs_dp_stats dp_stats;
1bd7116f 1486 struct ovs_dp_megaflow_stats dp_megaflow_stats;
ccb1352e
JG
1487 int err;
1488
15e47304 1489 ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
ccb1352e
JG
1490 flags, cmd);
1491 if (!ovs_header)
1492 goto error;
1493
1494 ovs_header->dp_ifindex = get_dpifindex(dp);
1495
ccb1352e 1496 err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
ccb1352e
JG
1497 if (err)
1498 goto nla_put_failure;
1499
1bd7116f 1500 get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
66c7a5ee
ND
1501 if (nla_put_64bit(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1502 &dp_stats, OVS_DP_ATTR_PAD))
1bd7116f
AZ
1503 goto nla_put_failure;
1504
66c7a5ee
ND
1505 if (nla_put_64bit(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1506 sizeof(struct ovs_dp_megaflow_stats),
1507 &dp_megaflow_stats, OVS_DP_ATTR_PAD))
028d6a67 1508 goto nla_put_failure;
ccb1352e 1509
43d4be9c
TG
1510 if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1511 goto nla_put_failure;
1512
053c095a
JB
1513 genlmsg_end(skb, ovs_header);
1514 return 0;
ccb1352e
JG
1515
1516nla_put_failure:
1517 genlmsg_cancel(skb, ovs_header);
1518error:
1519 return -EMSGSIZE;
1520}
1521
263ea090 1522static struct sk_buff *ovs_dp_cmd_alloc_info(void)
ccb1352e 1523{
551ddc05 1524 return genlmsg_new(ovs_dp_cmd_msg_size(), GFP_KERNEL);
ccb1352e
JG
1525}
1526
bb6f9a70 1527/* Called with rcu_read_lock or ovs_mutex. */
46df7b81 1528static struct datapath *lookup_datapath(struct net *net,
12eb18f7 1529 const struct ovs_header *ovs_header,
ccb1352e
JG
1530 struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1531{
1532 struct datapath *dp;
1533
1534 if (!a[OVS_DP_ATTR_NAME])
46df7b81 1535 dp = get_dp(net, ovs_header->dp_ifindex);
ccb1352e
JG
1536 else {
1537 struct vport *vport;
1538
46df7b81 1539 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
ccb1352e 1540 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
ccb1352e
JG
1541 }
1542 return dp ? dp : ERR_PTR(-ENODEV);
1543}
1544
44da5ae5
TG
1545static void ovs_dp_reset_user_features(struct sk_buff *skb, struct genl_info *info)
1546{
1547 struct datapath *dp;
1548
1549 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
3c7eacfc 1550 if (IS_ERR(dp))
44da5ae5
TG
1551 return;
1552
1553 WARN(dp->user_features, "Dropping previously announced user features\n");
1554 dp->user_features = 0;
1555}
1556
12eb18f7 1557static void ovs_dp_change(struct datapath *dp, struct nlattr *a[])
43d4be9c
TG
1558{
1559 if (a[OVS_DP_ATTR_USER_FEATURES])
1560 dp->user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1561}
1562
ccb1352e
JG
1563static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1564{
1565 struct nlattr **a = info->attrs;
1566 struct vport_parms parms;
1567 struct sk_buff *reply;
1568 struct datapath *dp;
1569 struct vport *vport;
46df7b81 1570 struct ovs_net *ovs_net;
15eac2a7 1571 int err, i;
ccb1352e
JG
1572
1573 err = -EINVAL;
1574 if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1575 goto err;
1576
263ea090 1577 reply = ovs_dp_cmd_alloc_info();
6093ae9a
JR
1578 if (!reply)
1579 return -ENOMEM;
ccb1352e
JG
1580
1581 err = -ENOMEM;
1582 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1583 if (dp == NULL)
6093ae9a 1584 goto err_free_reply;
46df7b81 1585
efd7ef1c 1586 ovs_dp_set_net(dp, sock_net(skb->sk));
ccb1352e
JG
1587
1588 /* Allocate table. */
b637e498
PS
1589 err = ovs_flow_tbl_init(&dp->table);
1590 if (err)
ccb1352e
JG
1591 goto err_free_dp;
1592
1c213bd2 1593 dp->stats_percpu = netdev_alloc_pcpu_stats(struct dp_stats_percpu);
ccb1352e
JG
1594 if (!dp->stats_percpu) {
1595 err = -ENOMEM;
1596 goto err_destroy_table;
1597 }
1598
6da2ec56
KC
1599 dp->ports = kmalloc_array(DP_VPORT_HASH_BUCKETS,
1600 sizeof(struct hlist_head),
1601 GFP_KERNEL);
15eac2a7
PS
1602 if (!dp->ports) {
1603 err = -ENOMEM;
1604 goto err_destroy_percpu;
1605 }
1606
1607 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1608 INIT_HLIST_HEAD(&dp->ports[i]);
1609
96fbc13d
AZ
1610 err = ovs_meters_init(dp);
1611 if (err)
1612 goto err_destroy_ports_array;
1613
ccb1352e
JG
1614 /* Set up our datapath device. */
1615 parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1616 parms.type = OVS_VPORT_TYPE_INTERNAL;
1617 parms.options = NULL;
1618 parms.dp = dp;
1619 parms.port_no = OVSP_LOCAL;
5cd667b0 1620 parms.upcall_portids = a[OVS_DP_ATTR_UPCALL_PID];
ccb1352e 1621
43d4be9c
TG
1622 ovs_dp_change(dp, a);
1623
6093ae9a
JR
1624 /* So far only local changes have been made, now need the lock. */
1625 ovs_lock();
1626
ccb1352e
JG
1627 vport = new_vport(&parms);
1628 if (IS_ERR(vport)) {
1629 err = PTR_ERR(vport);
1630 if (err == -EBUSY)
1631 err = -EEXIST;
1632
44da5ae5
TG
1633 if (err == -EEXIST) {
1634 /* An outdated user space instance that does not understand
1635 * the concept of user_features has attempted to create a new
1636 * datapath and is likely to reuse it. Drop all user features.
1637 */
1638 if (info->genlhdr->version < OVS_DP_VER_FEATURES)
1639 ovs_dp_reset_user_features(skb, info);
1640 }
1641
96fbc13d 1642 goto err_destroy_meters;
ccb1352e
JG
1643 }
1644
6093ae9a
JR
1645 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1646 info->snd_seq, 0, OVS_DP_CMD_NEW);
1647 BUG_ON(err < 0);
ccb1352e 1648
46df7b81 1649 ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
59a35d60 1650 list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
8e4e1713
PS
1651
1652 ovs_unlock();
ccb1352e 1653
2a94fe48 1654 ovs_notify(&dp_datapath_genl_family, reply, info);
ccb1352e
JG
1655 return 0;
1656
96fbc13d 1657err_destroy_meters:
6093ae9a 1658 ovs_unlock();
96fbc13d
AZ
1659 ovs_meters_exit(dp);
1660err_destroy_ports_array:
15eac2a7 1661 kfree(dp->ports);
ccb1352e
JG
1662err_destroy_percpu:
1663 free_percpu(dp->stats_percpu);
1664err_destroy_table:
9b996e54 1665 ovs_flow_tbl_destroy(&dp->table);
ccb1352e
JG
1666err_free_dp:
1667 kfree(dp);
6093ae9a
JR
1668err_free_reply:
1669 kfree_skb(reply);
ccb1352e
JG
1670err:
1671 return err;
1672}
1673
8e4e1713 1674/* Called with ovs_mutex. */
46df7b81 1675static void __dp_destroy(struct datapath *dp)
ccb1352e 1676{
15eac2a7 1677 int i;
ccb1352e 1678
15eac2a7
PS
1679 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1680 struct vport *vport;
b67bfe0d 1681 struct hlist_node *n;
15eac2a7 1682
b67bfe0d 1683 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
15eac2a7
PS
1684 if (vport->port_no != OVSP_LOCAL)
1685 ovs_dp_detach_port(vport);
1686 }
ccb1352e 1687
59a35d60 1688 list_del_rcu(&dp->list_node);
ccb1352e 1689
8e4e1713 1690 /* OVSP_LOCAL is datapath internal port. We need to make sure that
e80857cc 1691 * all ports in datapath are destroyed first before freeing datapath.
ccb1352e 1692 */
8e4e1713 1693 ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
ccb1352e 1694
e80857cc 1695 /* RCU destroy the flow table */
ccb1352e 1696 call_rcu(&dp->rcu, destroy_dp_rcu);
46df7b81
PS
1697}
1698
1699static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1700{
1701 struct sk_buff *reply;
1702 struct datapath *dp;
1703 int err;
1704
263ea090 1705 reply = ovs_dp_cmd_alloc_info();
6093ae9a
JR
1706 if (!reply)
1707 return -ENOMEM;
1708
8e4e1713 1709 ovs_lock();
46df7b81
PS
1710 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1711 err = PTR_ERR(dp);
1712 if (IS_ERR(dp))
6093ae9a 1713 goto err_unlock_free;
46df7b81 1714
6093ae9a
JR
1715 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
1716 info->snd_seq, 0, OVS_DP_CMD_DEL);
1717 BUG_ON(err < 0);
46df7b81
PS
1718
1719 __dp_destroy(dp);
8e4e1713 1720 ovs_unlock();
ccb1352e 1721
2a94fe48 1722 ovs_notify(&dp_datapath_genl_family, reply, info);
ccb1352e
JG
1723
1724 return 0;
6093ae9a
JR
1725
1726err_unlock_free:
8e4e1713 1727 ovs_unlock();
6093ae9a 1728 kfree_skb(reply);
8e4e1713 1729 return err;
ccb1352e
JG
1730}
1731
1732static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1733{
1734 struct sk_buff *reply;
1735 struct datapath *dp;
1736 int err;
1737
263ea090 1738 reply = ovs_dp_cmd_alloc_info();
6093ae9a
JR
1739 if (!reply)
1740 return -ENOMEM;
1741
8e4e1713 1742 ovs_lock();
46df7b81 1743 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
8e4e1713 1744 err = PTR_ERR(dp);
ccb1352e 1745 if (IS_ERR(dp))
6093ae9a 1746 goto err_unlock_free;
ccb1352e 1747
43d4be9c
TG
1748 ovs_dp_change(dp, info->attrs);
1749
6093ae9a 1750 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
804fe108 1751 info->snd_seq, 0, OVS_DP_CMD_SET);
6093ae9a 1752 BUG_ON(err < 0);
ccb1352e 1753
8e4e1713 1754 ovs_unlock();
2a94fe48 1755 ovs_notify(&dp_datapath_genl_family, reply, info);
ccb1352e
JG
1756
1757 return 0;
6093ae9a
JR
1758
1759err_unlock_free:
8e4e1713 1760 ovs_unlock();
6093ae9a 1761 kfree_skb(reply);
8e4e1713 1762 return err;
ccb1352e
JG
1763}
1764
1765static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1766{
1767 struct sk_buff *reply;
1768 struct datapath *dp;
8e4e1713 1769 int err;
ccb1352e 1770
263ea090 1771 reply = ovs_dp_cmd_alloc_info();
6093ae9a
JR
1772 if (!reply)
1773 return -ENOMEM;
1774
8ec609d8 1775 ovs_lock();
46df7b81 1776 dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
8e4e1713
PS
1777 if (IS_ERR(dp)) {
1778 err = PTR_ERR(dp);
6093ae9a 1779 goto err_unlock_free;
8e4e1713 1780 }
6093ae9a 1781 err = ovs_dp_cmd_fill_info(dp, reply, info->snd_portid,
804fe108 1782 info->snd_seq, 0, OVS_DP_CMD_GET);
6093ae9a 1783 BUG_ON(err < 0);
8ec609d8 1784 ovs_unlock();
ccb1352e
JG
1785
1786 return genlmsg_reply(reply, info);
8e4e1713 1787
6093ae9a 1788err_unlock_free:
8ec609d8 1789 ovs_unlock();
6093ae9a 1790 kfree_skb(reply);
8e4e1713 1791 return err;
ccb1352e
JG
1792}
1793
1794static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1795{
46df7b81 1796 struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
ccb1352e
JG
1797 struct datapath *dp;
1798 int skip = cb->args[0];
1799 int i = 0;
1800
8ec609d8
PS
1801 ovs_lock();
1802 list_for_each_entry(dp, &ovs_net->dps, list_node) {
77676fdb 1803 if (i >= skip &&
15e47304 1804 ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
ccb1352e 1805 cb->nlh->nlmsg_seq, NLM_F_MULTI,
804fe108 1806 OVS_DP_CMD_GET) < 0)
ccb1352e
JG
1807 break;
1808 i++;
1809 }
8ec609d8 1810 ovs_unlock();
ccb1352e
JG
1811
1812 cb->args[0] = i;
1813
1814 return skb->len;
1815}
1816
0c200ef9
PS
1817static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1818 [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1819 [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1820 [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1821};
1822
48e48a70 1823static const struct genl_ops dp_datapath_genl_ops[] = {
ccb1352e 1824 { .cmd = OVS_DP_CMD_NEW,
ef6243ac 1825 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 1826 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
ccb1352e
JG
1827 .doit = ovs_dp_cmd_new
1828 },
1829 { .cmd = OVS_DP_CMD_DEL,
ef6243ac 1830 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 1831 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
ccb1352e
JG
1832 .doit = ovs_dp_cmd_del
1833 },
1834 { .cmd = OVS_DP_CMD_GET,
ef6243ac 1835 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
ccb1352e 1836 .flags = 0, /* OK for unprivileged users. */
ccb1352e
JG
1837 .doit = ovs_dp_cmd_get,
1838 .dumpit = ovs_dp_cmd_dump
1839 },
1840 { .cmd = OVS_DP_CMD_SET,
ef6243ac 1841 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 1842 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
ccb1352e
JG
1843 .doit = ovs_dp_cmd_set,
1844 },
1845};
1846
56989f6d 1847static struct genl_family dp_datapath_genl_family __ro_after_init = {
ccb1352e 1848 .hdrsize = sizeof(struct ovs_header),
0c200ef9
PS
1849 .name = OVS_DATAPATH_FAMILY,
1850 .version = OVS_DATAPATH_VERSION,
1851 .maxattr = OVS_DP_ATTR_MAX,
3b0f31f2 1852 .policy = datapath_policy,
3a4e0d6a
PS
1853 .netnsok = true,
1854 .parallel_ops = true,
0c200ef9
PS
1855 .ops = dp_datapath_genl_ops,
1856 .n_ops = ARRAY_SIZE(dp_datapath_genl_ops),
1857 .mcgrps = &ovs_dp_datapath_multicast_group,
1858 .n_mcgrps = 1,
489111e5 1859 .module = THIS_MODULE,
ccb1352e
JG
1860};
1861
8e4e1713 1862/* Called with ovs_mutex or RCU read lock. */
ccb1352e 1863static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
9354d452
JB
1864 struct net *net, u32 portid, u32 seq,
1865 u32 flags, u8 cmd)
ccb1352e
JG
1866{
1867 struct ovs_header *ovs_header;
1868 struct ovs_vport_stats vport_stats;
1869 int err;
1870
15e47304 1871 ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
ccb1352e
JG
1872 flags, cmd);
1873 if (!ovs_header)
1874 return -EMSGSIZE;
1875
1876 ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1877
028d6a67
DM
1878 if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1879 nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
5cd667b0 1880 nla_put_string(skb, OVS_VPORT_ATTR_NAME,
9354d452
JB
1881 ovs_vport_name(vport)) ||
1882 nla_put_u32(skb, OVS_VPORT_ATTR_IFINDEX, vport->dev->ifindex))
028d6a67 1883 goto nla_put_failure;
ccb1352e 1884
9354d452
JB
1885 if (!net_eq(net, dev_net(vport->dev))) {
1886 int id = peernet2id_alloc(net, dev_net(vport->dev));
1887
1888 if (nla_put_s32(skb, OVS_VPORT_ATTR_NETNSID, id))
1889 goto nla_put_failure;
1890 }
1891
ccb1352e 1892 ovs_vport_get_stats(vport, &vport_stats);
66c7a5ee
ND
1893 if (nla_put_64bit(skb, OVS_VPORT_ATTR_STATS,
1894 sizeof(struct ovs_vport_stats), &vport_stats,
1895 OVS_VPORT_ATTR_PAD))
028d6a67 1896 goto nla_put_failure;
ccb1352e 1897
5cd667b0
AW
1898 if (ovs_vport_get_upcall_portids(vport, skb))
1899 goto nla_put_failure;
1900
ccb1352e
JG
1901 err = ovs_vport_get_options(vport, skb);
1902 if (err == -EMSGSIZE)
1903 goto error;
1904
053c095a
JB
1905 genlmsg_end(skb, ovs_header);
1906 return 0;
ccb1352e
JG
1907
1908nla_put_failure:
1909 err = -EMSGSIZE;
1910error:
1911 genlmsg_cancel(skb, ovs_header);
1912 return err;
1913}
1914
6093ae9a
JR
1915static struct sk_buff *ovs_vport_cmd_alloc_info(void)
1916{
1917 return nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1918}
1919
1920/* Called with ovs_mutex, only via ovs_dp_notify_wq(). */
9354d452
JB
1921struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, struct net *net,
1922 u32 portid, u32 seq, u8 cmd)
ccb1352e
JG
1923{
1924 struct sk_buff *skb;
1925 int retval;
1926
1927 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1928 if (!skb)
1929 return ERR_PTR(-ENOMEM);
1930
9354d452 1931 retval = ovs_vport_cmd_fill_info(vport, skb, net, portid, seq, 0, cmd);
a9341512
JG
1932 BUG_ON(retval < 0);
1933
ccb1352e
JG
1934 return skb;
1935}
1936
8e4e1713 1937/* Called with ovs_mutex or RCU read lock. */
46df7b81 1938static struct vport *lookup_vport(struct net *net,
12eb18f7 1939 const struct ovs_header *ovs_header,
ccb1352e
JG
1940 struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1941{
1942 struct datapath *dp;
1943 struct vport *vport;
1944
9354d452
JB
1945 if (a[OVS_VPORT_ATTR_IFINDEX])
1946 return ERR_PTR(-EOPNOTSUPP);
ccb1352e 1947 if (a[OVS_VPORT_ATTR_NAME]) {
46df7b81 1948 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
ccb1352e
JG
1949 if (!vport)
1950 return ERR_PTR(-ENODEV);
651a68ea
BP
1951 if (ovs_header->dp_ifindex &&
1952 ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1953 return ERR_PTR(-ENODEV);
ccb1352e
JG
1954 return vport;
1955 } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1956 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1957
1958 if (port_no >= DP_MAX_PORTS)
1959 return ERR_PTR(-EFBIG);
1960
46df7b81 1961 dp = get_dp(net, ovs_header->dp_ifindex);
ccb1352e
JG
1962 if (!dp)
1963 return ERR_PTR(-ENODEV);
1964
8e4e1713 1965 vport = ovs_vport_ovsl_rcu(dp, port_no);
ccb1352e 1966 if (!vport)
14408dba 1967 return ERR_PTR(-ENODEV);
ccb1352e
JG
1968 return vport;
1969 } else
1970 return ERR_PTR(-EINVAL);
9354d452 1971
ccb1352e
JG
1972}
1973
3a927bc7
PA
1974/* Called with ovs_mutex */
1975static void update_headroom(struct datapath *dp)
1976{
1977 unsigned dev_headroom, max_headroom = 0;
1978 struct net_device *dev;
1979 struct vport *vport;
1980 int i;
1981
1982 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1983 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
1984 dev = vport->dev;
1985 dev_headroom = netdev_get_fwd_headroom(dev);
1986 if (dev_headroom > max_headroom)
1987 max_headroom = dev_headroom;
1988 }
1989 }
1990
1991 dp->max_headroom = max_headroom;
1992 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1993 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node)
1994 netdev_set_rx_headroom(vport->dev, max_headroom);
1995}
1996
ccb1352e
JG
1997static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1998{
1999 struct nlattr **a = info->attrs;
2000 struct ovs_header *ovs_header = info->userhdr;
2001 struct vport_parms parms;
2002 struct sk_buff *reply;
2003 struct vport *vport;
2004 struct datapath *dp;
2005 u32 port_no;
2006 int err;
2007
ccb1352e
JG
2008 if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
2009 !a[OVS_VPORT_ATTR_UPCALL_PID])
6093ae9a 2010 return -EINVAL;
9354d452
JB
2011 if (a[OVS_VPORT_ATTR_IFINDEX])
2012 return -EOPNOTSUPP;
6093ae9a
JR
2013
2014 port_no = a[OVS_VPORT_ATTR_PORT_NO]
2015 ? nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]) : 0;
2016 if (port_no >= DP_MAX_PORTS)
2017 return -EFBIG;
2018
2019 reply = ovs_vport_cmd_alloc_info();
2020 if (!reply)
2021 return -ENOMEM;
ccb1352e 2022
8e4e1713 2023 ovs_lock();
62b9c8d0 2024restart:
46df7b81 2025 dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
ccb1352e
JG
2026 err = -ENODEV;
2027 if (!dp)
6093ae9a 2028 goto exit_unlock_free;
ccb1352e 2029
6093ae9a 2030 if (port_no) {
8e4e1713 2031 vport = ovs_vport_ovsl(dp, port_no);
ccb1352e
JG
2032 err = -EBUSY;
2033 if (vport)
6093ae9a 2034 goto exit_unlock_free;
ccb1352e
JG
2035 } else {
2036 for (port_no = 1; ; port_no++) {
2037 if (port_no >= DP_MAX_PORTS) {
2038 err = -EFBIG;
6093ae9a 2039 goto exit_unlock_free;
ccb1352e 2040 }
8e4e1713 2041 vport = ovs_vport_ovsl(dp, port_no);
ccb1352e
JG
2042 if (!vport)
2043 break;
2044 }
2045 }
2046
2047 parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
2048 parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
2049 parms.options = a[OVS_VPORT_ATTR_OPTIONS];
2050 parms.dp = dp;
2051 parms.port_no = port_no;
5cd667b0 2052 parms.upcall_portids = a[OVS_VPORT_ATTR_UPCALL_PID];
ccb1352e
JG
2053
2054 vport = new_vport(&parms);
2055 err = PTR_ERR(vport);
62b9c8d0
TG
2056 if (IS_ERR(vport)) {
2057 if (err == -EAGAIN)
2058 goto restart;
6093ae9a 2059 goto exit_unlock_free;
62b9c8d0 2060 }
ccb1352e 2061
9354d452
JB
2062 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2063 info->snd_portid, info->snd_seq, 0,
2064 OVS_VPORT_CMD_NEW);
3a927bc7
PA
2065
2066 if (netdev_get_fwd_headroom(vport->dev) > dp->max_headroom)
2067 update_headroom(dp);
2068 else
2069 netdev_set_rx_headroom(vport->dev, dp->max_headroom);
2070
6093ae9a
JR
2071 BUG_ON(err < 0);
2072 ovs_unlock();
ed661185 2073
2a94fe48 2074 ovs_notify(&dp_vport_genl_family, reply, info);
6093ae9a 2075 return 0;
ccb1352e 2076
6093ae9a 2077exit_unlock_free:
8e4e1713 2078 ovs_unlock();
6093ae9a 2079 kfree_skb(reply);
ccb1352e
JG
2080 return err;
2081}
2082
2083static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
2084{
2085 struct nlattr **a = info->attrs;
2086 struct sk_buff *reply;
2087 struct vport *vport;
2088 int err;
2089
6093ae9a
JR
2090 reply = ovs_vport_cmd_alloc_info();
2091 if (!reply)
2092 return -ENOMEM;
2093
8e4e1713 2094 ovs_lock();
46df7b81 2095 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
ccb1352e
JG
2096 err = PTR_ERR(vport);
2097 if (IS_ERR(vport))
6093ae9a 2098 goto exit_unlock_free;
ccb1352e 2099
ccb1352e 2100 if (a[OVS_VPORT_ATTR_TYPE] &&
f44f3408 2101 nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
ccb1352e 2102 err = -EINVAL;
6093ae9a 2103 goto exit_unlock_free;
a9341512
JG
2104 }
2105
f44f3408 2106 if (a[OVS_VPORT_ATTR_OPTIONS]) {
ccb1352e 2107 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
f44f3408 2108 if (err)
6093ae9a 2109 goto exit_unlock_free;
f44f3408 2110 }
a9341512 2111
5cd667b0
AW
2112
2113 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
2114 struct nlattr *ids = a[OVS_VPORT_ATTR_UPCALL_PID];
2115
2116 err = ovs_vport_set_upcall_portids(vport, ids);
2117 if (err)
2118 goto exit_unlock_free;
2119 }
ccb1352e 2120
9354d452
JB
2121 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2122 info->snd_portid, info->snd_seq, 0,
804fe108 2123 OVS_VPORT_CMD_SET);
a9341512 2124 BUG_ON(err < 0);
ccb1352e 2125
8e4e1713 2126 ovs_unlock();
2a94fe48 2127 ovs_notify(&dp_vport_genl_family, reply, info);
8e4e1713 2128 return 0;
ccb1352e 2129
6093ae9a 2130exit_unlock_free:
8e4e1713 2131 ovs_unlock();
6093ae9a 2132 kfree_skb(reply);
ccb1352e
JG
2133 return err;
2134}
2135
2136static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2137{
3a927bc7 2138 bool must_update_headroom = false;
ccb1352e
JG
2139 struct nlattr **a = info->attrs;
2140 struct sk_buff *reply;
3a927bc7 2141 struct datapath *dp;
ccb1352e
JG
2142 struct vport *vport;
2143 int err;
2144
6093ae9a
JR
2145 reply = ovs_vport_cmd_alloc_info();
2146 if (!reply)
2147 return -ENOMEM;
2148
8e4e1713 2149 ovs_lock();
46df7b81 2150 vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
ccb1352e
JG
2151 err = PTR_ERR(vport);
2152 if (IS_ERR(vport))
6093ae9a 2153 goto exit_unlock_free;
ccb1352e
JG
2154
2155 if (vport->port_no == OVSP_LOCAL) {
2156 err = -EINVAL;
6093ae9a 2157 goto exit_unlock_free;
ccb1352e
JG
2158 }
2159
9354d452
JB
2160 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2161 info->snd_portid, info->snd_seq, 0,
2162 OVS_VPORT_CMD_DEL);
6093ae9a 2163 BUG_ON(err < 0);
3a927bc7
PA
2164
2165 /* the vport deletion may trigger dp headroom update */
2166 dp = vport->dp;
2167 if (netdev_get_fwd_headroom(vport->dev) == dp->max_headroom)
2168 must_update_headroom = true;
2169 netdev_reset_rx_headroom(vport->dev);
ccb1352e 2170 ovs_dp_detach_port(vport);
3a927bc7
PA
2171
2172 if (must_update_headroom)
2173 update_headroom(dp);
6093ae9a 2174 ovs_unlock();
ccb1352e 2175
2a94fe48 2176 ovs_notify(&dp_vport_genl_family, reply, info);
6093ae9a 2177 return 0;
ccb1352e 2178
6093ae9a 2179exit_unlock_free:
8e4e1713 2180 ovs_unlock();
6093ae9a 2181 kfree_skb(reply);
ccb1352e
JG
2182 return err;
2183}
2184
2185static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2186{
2187 struct nlattr **a = info->attrs;
2188 struct ovs_header *ovs_header = info->userhdr;
2189 struct sk_buff *reply;
2190 struct vport *vport;
2191 int err;
2192
6093ae9a
JR
2193 reply = ovs_vport_cmd_alloc_info();
2194 if (!reply)
2195 return -ENOMEM;
2196
ccb1352e 2197 rcu_read_lock();
46df7b81 2198 vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
ccb1352e
JG
2199 err = PTR_ERR(vport);
2200 if (IS_ERR(vport))
6093ae9a 2201 goto exit_unlock_free;
9354d452
JB
2202 err = ovs_vport_cmd_fill_info(vport, reply, genl_info_net(info),
2203 info->snd_portid, info->snd_seq, 0,
804fe108 2204 OVS_VPORT_CMD_GET);
6093ae9a 2205 BUG_ON(err < 0);
ccb1352e
JG
2206 rcu_read_unlock();
2207
2208 return genlmsg_reply(reply, info);
2209
6093ae9a 2210exit_unlock_free:
ccb1352e 2211 rcu_read_unlock();
6093ae9a 2212 kfree_skb(reply);
ccb1352e
JG
2213 return err;
2214}
2215
2216static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2217{
2218 struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2219 struct datapath *dp;
15eac2a7
PS
2220 int bucket = cb->args[0], skip = cb->args[1];
2221 int i, j = 0;
ccb1352e 2222
42ee19e2 2223 rcu_read_lock();
cc3a5ae6 2224 dp = get_dp_rcu(sock_net(skb->sk), ovs_header->dp_ifindex);
42ee19e2
JR
2225 if (!dp) {
2226 rcu_read_unlock();
ccb1352e 2227 return -ENODEV;
42ee19e2 2228 }
15eac2a7 2229 for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
ccb1352e 2230 struct vport *vport;
15eac2a7
PS
2231
2232 j = 0;
b67bfe0d 2233 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
15eac2a7
PS
2234 if (j >= skip &&
2235 ovs_vport_cmd_fill_info(vport, skb,
9354d452 2236 sock_net(skb->sk),
15e47304 2237 NETLINK_CB(cb->skb).portid,
15eac2a7
PS
2238 cb->nlh->nlmsg_seq,
2239 NLM_F_MULTI,
804fe108 2240 OVS_VPORT_CMD_GET) < 0)
15eac2a7
PS
2241 goto out;
2242
2243 j++;
2244 }
2245 skip = 0;
ccb1352e 2246 }
15eac2a7 2247out:
ccb1352e
JG
2248 rcu_read_unlock();
2249
15eac2a7
PS
2250 cb->args[0] = i;
2251 cb->args[1] = j;
ccb1352e 2252
15eac2a7 2253 return skb->len;
ccb1352e
JG
2254}
2255
0c200ef9
PS
2256static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
2257 [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
2258 [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
2259 [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
2260 [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
2261 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
2262 [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
9354d452
JB
2263 [OVS_VPORT_ATTR_IFINDEX] = { .type = NLA_U32 },
2264 [OVS_VPORT_ATTR_NETNSID] = { .type = NLA_S32 },
0c200ef9
PS
2265};
2266
48e48a70 2267static const struct genl_ops dp_vport_genl_ops[] = {
ccb1352e 2268 { .cmd = OVS_VPORT_CMD_NEW,
ef6243ac 2269 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 2270 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
ccb1352e
JG
2271 .doit = ovs_vport_cmd_new
2272 },
2273 { .cmd = OVS_VPORT_CMD_DEL,
ef6243ac 2274 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 2275 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
ccb1352e
JG
2276 .doit = ovs_vport_cmd_del
2277 },
2278 { .cmd = OVS_VPORT_CMD_GET,
ef6243ac 2279 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
ccb1352e 2280 .flags = 0, /* OK for unprivileged users. */
ccb1352e
JG
2281 .doit = ovs_vport_cmd_get,
2282 .dumpit = ovs_vport_cmd_dump
2283 },
2284 { .cmd = OVS_VPORT_CMD_SET,
ef6243ac 2285 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
4a92602a 2286 .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
ccb1352e
JG
2287 .doit = ovs_vport_cmd_set,
2288 },
2289};
2290
56989f6d 2291struct genl_family dp_vport_genl_family __ro_after_init = {
0c200ef9
PS
2292 .hdrsize = sizeof(struct ovs_header),
2293 .name = OVS_VPORT_FAMILY,
2294 .version = OVS_VPORT_VERSION,
2295 .maxattr = OVS_VPORT_ATTR_MAX,
3b0f31f2 2296 .policy = vport_policy,
0c200ef9
PS
2297 .netnsok = true,
2298 .parallel_ops = true,
2299 .ops = dp_vport_genl_ops,
2300 .n_ops = ARRAY_SIZE(dp_vport_genl_ops),
2301 .mcgrps = &ovs_dp_vport_multicast_group,
2302 .n_mcgrps = 1,
489111e5 2303 .module = THIS_MODULE,
ccb1352e
JG
2304};
2305
0c200ef9
PS
2306static struct genl_family * const dp_genl_families[] = {
2307 &dp_datapath_genl_family,
2308 &dp_vport_genl_family,
2309 &dp_flow_genl_family,
2310 &dp_packet_genl_family,
96fbc13d 2311 &dp_meter_genl_family,
11efd5cb
YHW
2312#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
2313 &dp_ct_limit_genl_family,
2314#endif
ccb1352e
JG
2315};
2316
2317static void dp_unregister_genl(int n_families)
2318{
2319 int i;
2320
2321 for (i = 0; i < n_families; i++)
0c200ef9 2322 genl_unregister_family(dp_genl_families[i]);
ccb1352e
JG
2323}
2324
56989f6d 2325static int __init dp_register_genl(void)
ccb1352e 2326{
ccb1352e
JG
2327 int err;
2328 int i;
2329
ccb1352e 2330 for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
ccb1352e 2331
0c200ef9 2332 err = genl_register_family(dp_genl_families[i]);
ccb1352e
JG
2333 if (err)
2334 goto error;
ccb1352e
JG
2335 }
2336
2337 return 0;
2338
2339error:
0c200ef9 2340 dp_unregister_genl(i);
ccb1352e
JG
2341 return err;
2342}
2343
46df7b81
PS
2344static int __net_init ovs_init_net(struct net *net)
2345{
2346 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2347
2348 INIT_LIST_HEAD(&ovs_net->dps);
8e4e1713 2349 INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
11efd5cb 2350 return ovs_ct_init(net);
46df7b81
PS
2351}
2352
7b4577a9
PS
2353static void __net_exit list_vports_from_net(struct net *net, struct net *dnet,
2354 struct list_head *head)
46df7b81 2355{
8e4e1713 2356 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
7b4577a9
PS
2357 struct datapath *dp;
2358
2359 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2360 int i;
2361
2362 for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
2363 struct vport *vport;
2364
2365 hlist_for_each_entry(vport, &dp->ports[i], dp_hash_node) {
7b4577a9
PS
2366 if (vport->ops->type != OVS_VPORT_TYPE_INTERNAL)
2367 continue;
2368
be4ace6e 2369 if (dev_net(vport->dev) == dnet)
7b4577a9
PS
2370 list_add(&vport->detach_list, head);
2371 }
2372 }
2373 }
2374}
2375
2376static void __net_exit ovs_exit_net(struct net *dnet)
2377{
2378 struct datapath *dp, *dp_next;
2379 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id);
2380 struct vport *vport, *vport_next;
2381 struct net *net;
2382 LIST_HEAD(head);
46df7b81 2383
c2ac6673 2384 ovs_ct_exit(dnet);
8e4e1713 2385 ovs_lock();
46df7b81
PS
2386 list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2387 __dp_destroy(dp);
7b4577a9 2388
f0b07bb1 2389 down_read(&net_rwsem);
7b4577a9
PS
2390 for_each_net(net)
2391 list_vports_from_net(net, dnet, &head);
f0b07bb1 2392 up_read(&net_rwsem);
7b4577a9
PS
2393
2394 /* Detach all vports from given namespace. */
2395 list_for_each_entry_safe(vport, vport_next, &head, detach_list) {
2396 list_del(&vport->detach_list);
2397 ovs_dp_detach_port(vport);
2398 }
2399
8e4e1713
PS
2400 ovs_unlock();
2401
2402 cancel_work_sync(&ovs_net->dp_notify_work);
46df7b81
PS
2403}
2404
2405static struct pernet_operations ovs_net_ops = {
2406 .init = ovs_init_net,
2407 .exit = ovs_exit_net,
2408 .id = &ovs_net_id,
2409 .size = sizeof(struct ovs_net),
2410};
2411
ccb1352e
JG
2412static int __init dp_init(void)
2413{
ccb1352e
JG
2414 int err;
2415
3523b29b 2416 BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
ccb1352e
JG
2417
2418 pr_info("Open vSwitch switching datapath\n");
2419
971427f3 2420 err = action_fifos_init();
ccb1352e
JG
2421 if (err)
2422 goto error;
2423
971427f3
AZ
2424 err = ovs_internal_dev_rtnl_link_register();
2425 if (err)
2426 goto error_action_fifos_exit;
2427
5b9e7e16
JP
2428 err = ovs_flow_init();
2429 if (err)
2430 goto error_unreg_rtnl_link;
2431
ccb1352e
JG
2432 err = ovs_vport_init();
2433 if (err)
2434 goto error_flow_exit;
2435
46df7b81 2436 err = register_pernet_device(&ovs_net_ops);
ccb1352e
JG
2437 if (err)
2438 goto error_vport_exit;
2439
46df7b81
PS
2440 err = register_netdevice_notifier(&ovs_dp_device_notifier);
2441 if (err)
2442 goto error_netns_exit;
2443
62b9c8d0
TG
2444 err = ovs_netdev_init();
2445 if (err)
2446 goto error_unreg_notifier;
2447
ccb1352e
JG
2448 err = dp_register_genl();
2449 if (err < 0)
62b9c8d0 2450 goto error_unreg_netdev;
ccb1352e 2451
ccb1352e
JG
2452 return 0;
2453
62b9c8d0
TG
2454error_unreg_netdev:
2455 ovs_netdev_exit();
ccb1352e
JG
2456error_unreg_notifier:
2457 unregister_netdevice_notifier(&ovs_dp_device_notifier);
46df7b81
PS
2458error_netns_exit:
2459 unregister_pernet_device(&ovs_net_ops);
ccb1352e
JG
2460error_vport_exit:
2461 ovs_vport_exit();
2462error_flow_exit:
2463 ovs_flow_exit();
5b9e7e16
JP
2464error_unreg_rtnl_link:
2465 ovs_internal_dev_rtnl_link_unregister();
971427f3
AZ
2466error_action_fifos_exit:
2467 action_fifos_exit();
ccb1352e
JG
2468error:
2469 return err;
2470}
2471
2472static void dp_cleanup(void)
2473{
ccb1352e 2474 dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
62b9c8d0 2475 ovs_netdev_exit();
ccb1352e 2476 unregister_netdevice_notifier(&ovs_dp_device_notifier);
46df7b81
PS
2477 unregister_pernet_device(&ovs_net_ops);
2478 rcu_barrier();
ccb1352e
JG
2479 ovs_vport_exit();
2480 ovs_flow_exit();
5b9e7e16 2481 ovs_internal_dev_rtnl_link_unregister();
971427f3 2482 action_fifos_exit();
ccb1352e
JG
2483}
2484
2485module_init(dp_init);
2486module_exit(dp_cleanup);
2487
2488MODULE_DESCRIPTION("Open vSwitch switching datapath");
2489MODULE_LICENSE("GPL");
ed227099
TLSC
2490MODULE_ALIAS_GENL_FAMILY(OVS_DATAPATH_FAMILY);
2491MODULE_ALIAS_GENL_FAMILY(OVS_VPORT_FAMILY);
2492MODULE_ALIAS_GENL_FAMILY(OVS_FLOW_FAMILY);
2493MODULE_ALIAS_GENL_FAMILY(OVS_PACKET_FAMILY);
96fbc13d 2494MODULE_ALIAS_GENL_FAMILY(OVS_METER_FAMILY);
11efd5cb 2495MODULE_ALIAS_GENL_FAMILY(OVS_CT_LIMIT_FAMILY);