cls_flower.c 72.7 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
J
Jiri Pirko 已提交
2 3 4 5 6 7 8 9 10 11
/*
 * net/sched/cls_flower.c		Flower classifier
 *
 * Copyright (c) 2015 Jiri Pirko <jiri@resnulli.us>
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/rhashtable.h>
12
#include <linux/workqueue.h>
13
#include <linux/refcount.h>
J
Jiri Pirko 已提交
14 15 16 17

#include <linux/if_ether.h>
#include <linux/in6.h>
#include <linux/ip.h>
18
#include <linux/mpls.h>
J
Jiri Pirko 已提交
19 20 21 22 23

#include <net/sch_generic.h>
#include <net/pkt_cls.h>
#include <net/ip.h>
#include <net/flow_dissector.h>
24
#include <net/geneve.h>
J
Jiri Pirko 已提交
25

26 27 28
#include <net/dst.h>
#include <net/dst_metadata.h>

29 30
#include <uapi/linux/netfilter/nf_conntrack_common.h>

J
Jiri Pirko 已提交
31
struct fl_flow_key {
32
	struct flow_dissector_key_meta meta;
33
	struct flow_dissector_key_control control;
34
	struct flow_dissector_key_control enc_control;
J
Jiri Pirko 已提交
35 36
	struct flow_dissector_key_basic basic;
	struct flow_dissector_key_eth_addrs eth;
37
	struct flow_dissector_key_vlan vlan;
38
	struct flow_dissector_key_vlan cvlan;
J
Jiri Pirko 已提交
39
	union {
40
		struct flow_dissector_key_ipv4_addrs ipv4;
J
Jiri Pirko 已提交
41 42 43
		struct flow_dissector_key_ipv6_addrs ipv6;
	};
	struct flow_dissector_key_ports tp;
44
	struct flow_dissector_key_icmp icmp;
45
	struct flow_dissector_key_arp arp;
46 47 48 49 50
	struct flow_dissector_key_keyid enc_key_id;
	union {
		struct flow_dissector_key_ipv4_addrs enc_ipv4;
		struct flow_dissector_key_ipv6_addrs enc_ipv6;
	};
51
	struct flow_dissector_key_ports enc_tp;
52
	struct flow_dissector_key_mpls mpls;
53
	struct flow_dissector_key_tcp tcp;
54
	struct flow_dissector_key_ip ip;
55
	struct flow_dissector_key_ip enc_ip;
56
	struct flow_dissector_key_enc_opts enc_opts;
57 58
	struct flow_dissector_key_ports tp_min;
	struct flow_dissector_key_ports tp_max;
59
	struct flow_dissector_key_ct ct;
J
Jiri Pirko 已提交
60 61 62 63 64 65 66 67 68 69
} __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */

struct fl_flow_mask_range {
	unsigned short int start;
	unsigned short int end;
};

struct fl_flow_mask {
	struct fl_flow_key key;
	struct fl_flow_mask_range range;
70
	u32 flags;
71 72 73 74 75
	struct rhash_head ht_node;
	struct rhashtable ht;
	struct rhashtable_params filter_ht_params;
	struct flow_dissector dissector;
	struct list_head filters;
76
	struct rcu_work rwork;
77
	struct list_head list;
78
	refcount_t refcnt;
J
Jiri Pirko 已提交
79 80
};

81 82 83 84 85 86 87
struct fl_flow_tmplt {
	struct fl_flow_key dummy_key;
	struct fl_flow_key mask;
	struct flow_dissector dissector;
	struct tcf_chain *chain;
};

J
Jiri Pirko 已提交
88 89
struct cls_fl_head {
	struct rhashtable ht;
90
	spinlock_t masks_lock; /* Protect masks list */
91
	struct list_head masks;
92
	struct list_head hw_filters;
C
Cong Wang 已提交
93
	struct rcu_work rwork;
94
	struct idr handle_idr;
J
Jiri Pirko 已提交
95 96 97
};

struct cls_fl_filter {
98
	struct fl_flow_mask *mask;
J
Jiri Pirko 已提交
99 100 101 102 103 104
	struct rhash_head ht_node;
	struct fl_flow_key mkey;
	struct tcf_exts exts;
	struct tcf_result res;
	struct fl_flow_key key;
	struct list_head list;
105
	struct list_head hw_list;
J
Jiri Pirko 已提交
106
	u32 handle;
107
	u32 flags;
108
	u32 in_hw_count;
C
Cong Wang 已提交
109
	struct rcu_work rwork;
110
	struct net_device *hw_dev;
111 112 113 114 115
	/* Flower classifier is unlocked, which means that its reference counter
	 * can be changed concurrently without any kind of external
	 * synchronization. Use atomic reference counter to be concurrency-safe.
	 */
	refcount_t refcnt;
116
	bool deleted;
J
Jiri Pirko 已提交
117 118
};

119 120 121 122 123 124 125
static const struct rhashtable_params mask_ht_params = {
	.key_offset = offsetof(struct fl_flow_mask, key),
	.key_len = sizeof(struct fl_flow_key),
	.head_offset = offsetof(struct fl_flow_mask, ht_node),
	.automatic_shrinking = true,
};

J
Jiri Pirko 已提交
126 127 128 129 130 131 132 133 134
static unsigned short int fl_mask_range(const struct fl_flow_mask *mask)
{
	return mask->range.end - mask->range.start;
}

static void fl_mask_update_range(struct fl_flow_mask *mask)
{
	const u8 *bytes = (const u8 *) &mask->key;
	size_t size = sizeof(mask->key);
135
	size_t i, first = 0, last;
J
Jiri Pirko 已提交
136

137 138 139 140 141 142 143 144
	for (i = 0; i < size; i++) {
		if (bytes[i]) {
			first = i;
			break;
		}
	}
	last = first;
	for (i = size - 1; i != first; i--) {
J
Jiri Pirko 已提交
145 146
		if (bytes[i]) {
			last = i;
147
			break;
J
Jiri Pirko 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
		}
	}
	mask->range.start = rounddown(first, sizeof(long));
	mask->range.end = roundup(last + 1, sizeof(long));
}

static void *fl_key_get_start(struct fl_flow_key *key,
			      const struct fl_flow_mask *mask)
{
	return (u8 *) key + mask->range.start;
}

static void fl_set_masked_key(struct fl_flow_key *mkey, struct fl_flow_key *key,
			      struct fl_flow_mask *mask)
{
	const long *lkey = fl_key_get_start(key, mask);
	const long *lmask = fl_key_get_start(&mask->key, mask);
	long *lmkey = fl_key_get_start(mkey, mask);
	int i;

	for (i = 0; i < fl_mask_range(mask); i += sizeof(long))
		*lmkey++ = *lkey++ & *lmask++;
}

172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
static bool fl_mask_fits_tmplt(struct fl_flow_tmplt *tmplt,
			       struct fl_flow_mask *mask)
{
	const long *lmask = fl_key_get_start(&mask->key, mask);
	const long *ltmplt;
	int i;

	if (!tmplt)
		return true;
	ltmplt = fl_key_get_start(&tmplt->mask, mask);
	for (i = 0; i < fl_mask_range(mask); i += sizeof(long)) {
		if (~*ltmplt++ & *lmask++)
			return false;
	}
	return true;
}

J
Jiri Pirko 已提交
189 190 191 192 193 194
static void fl_clear_masked_range(struct fl_flow_key *key,
				  struct fl_flow_mask *mask)
{
	memset(fl_key_get_start(key, mask), 0, fl_mask_range(mask));
}

195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
static bool fl_range_port_dst_cmp(struct cls_fl_filter *filter,
				  struct fl_flow_key *key,
				  struct fl_flow_key *mkey)
{
	__be16 min_mask, max_mask, min_val, max_val;

	min_mask = htons(filter->mask->key.tp_min.dst);
	max_mask = htons(filter->mask->key.tp_max.dst);
	min_val = htons(filter->key.tp_min.dst);
	max_val = htons(filter->key.tp_max.dst);

	if (min_mask && max_mask) {
		if (htons(key->tp.dst) < min_val ||
		    htons(key->tp.dst) > max_val)
			return false;

		/* skb does not have min and max values */
		mkey->tp_min.dst = filter->mkey.tp_min.dst;
		mkey->tp_max.dst = filter->mkey.tp_max.dst;
	}
	return true;
}

static bool fl_range_port_src_cmp(struct cls_fl_filter *filter,
				  struct fl_flow_key *key,
				  struct fl_flow_key *mkey)
{
	__be16 min_mask, max_mask, min_val, max_val;

	min_mask = htons(filter->mask->key.tp_min.src);
	max_mask = htons(filter->mask->key.tp_max.src);
	min_val = htons(filter->key.tp_min.src);
	max_val = htons(filter->key.tp_max.src);

	if (min_mask && max_mask) {
		if (htons(key->tp.src) < min_val ||
		    htons(key->tp.src) > max_val)
			return false;

		/* skb does not have min and max values */
		mkey->tp_min.src = filter->mkey.tp_min.src;
		mkey->tp_max.src = filter->mkey.tp_max.src;
	}
	return true;
}

static struct cls_fl_filter *__fl_lookup(struct fl_flow_mask *mask,
					 struct fl_flow_key *mkey)
243
{
244 245
	return rhashtable_lookup_fast(&mask->ht, fl_key_get_start(mkey, mask),
				      mask->filter_ht_params);
246 247
}

248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
static struct cls_fl_filter *fl_lookup_range(struct fl_flow_mask *mask,
					     struct fl_flow_key *mkey,
					     struct fl_flow_key *key)
{
	struct cls_fl_filter *filter, *f;

	list_for_each_entry_rcu(filter, &mask->filters, list) {
		if (!fl_range_port_dst_cmp(filter, key, mkey))
			continue;

		if (!fl_range_port_src_cmp(filter, key, mkey))
			continue;

		f = __fl_lookup(mask, mkey);
		if (f)
			return f;
	}
	return NULL;
}

static struct cls_fl_filter *fl_lookup(struct fl_flow_mask *mask,
				       struct fl_flow_key *mkey,
				       struct fl_flow_key *key)
{
	if ((mask->flags & TCA_FLOWER_MASK_FLAGS_RANGE))
		return fl_lookup_range(mask, mkey, key);

	return __fl_lookup(mask, mkey);
}

278 279 280 281 282 283 284 285 286 287 288 289 290
static u16 fl_ct_info_to_flower_map[] = {
	[IP_CT_ESTABLISHED] =		TCA_FLOWER_KEY_CT_FLAGS_TRACKED |
					TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED,
	[IP_CT_RELATED] =		TCA_FLOWER_KEY_CT_FLAGS_TRACKED |
					TCA_FLOWER_KEY_CT_FLAGS_RELATED,
	[IP_CT_ESTABLISHED_REPLY] =	TCA_FLOWER_KEY_CT_FLAGS_TRACKED |
					TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED,
	[IP_CT_RELATED_REPLY] =		TCA_FLOWER_KEY_CT_FLAGS_TRACKED |
					TCA_FLOWER_KEY_CT_FLAGS_RELATED,
	[IP_CT_NEW] =			TCA_FLOWER_KEY_CT_FLAGS_TRACKED |
					TCA_FLOWER_KEY_CT_FLAGS_NEW,
};

J
Jiri Pirko 已提交
291 292 293 294 295
static int fl_classify(struct sk_buff *skb, const struct tcf_proto *tp,
		       struct tcf_result *res)
{
	struct cls_fl_head *head = rcu_dereference_bh(tp->root);
	struct fl_flow_key skb_mkey;
296 297 298
	struct fl_flow_key skb_key;
	struct fl_flow_mask *mask;
	struct cls_fl_filter *f;
J
Jiri Pirko 已提交
299

300 301
	list_for_each_entry_rcu(mask, &head->masks, list) {
		fl_clear_masked_range(&skb_key, mask);
302

303
		skb_flow_dissect_meta(skb, &mask->dissector, &skb_key);
304 305 306 307 308
		/* skb_flow_dissect() does not set n_proto in case an unknown
		 * protocol, so do it rather here.
		 */
		skb_key.basic.n_proto = skb->protocol;
		skb_flow_dissect_tunnel_info(skb, &mask->dissector, &skb_key);
309 310 311
		skb_flow_dissect_ct(skb, &mask->dissector, &skb_key,
				    fl_ct_info_to_flower_map,
				    ARRAY_SIZE(fl_ct_info_to_flower_map));
312
		skb_flow_dissect(skb, &mask->dissector, &skb_key, 0);
J
Jiri Pirko 已提交
313

314
		fl_set_masked_key(&skb_mkey, &skb_key, mask);
J
Jiri Pirko 已提交
315

316
		f = fl_lookup(mask, &skb_mkey, &skb_key);
317 318 319 320
		if (f && !tc_skip_sw(f->flags)) {
			*res = f->res;
			return tcf_exts_exec(skb, &f->exts, res);
		}
J
Jiri Pirko 已提交
321 322 323 324 325 326 327 328 329 330 331 332
	}
	return -1;
}

static int fl_init(struct tcf_proto *tp)
{
	struct cls_fl_head *head;

	head = kzalloc(sizeof(*head), GFP_KERNEL);
	if (!head)
		return -ENOBUFS;

333
	spin_lock_init(&head->masks_lock);
334
	INIT_LIST_HEAD_RCU(&head->masks);
335
	INIT_LIST_HEAD(&head->hw_filters);
J
Jiri Pirko 已提交
336
	rcu_assign_pointer(tp->root, head);
337
	idr_init(&head->handle_idr);
J
Jiri Pirko 已提交
338

339 340 341
	return rhashtable_init(&head->ht, &mask_ht_params);
}

342
static void fl_mask_free(struct fl_flow_mask *mask, bool mask_init_done)
343
{
344 345 346 347 348
	/* temporary masks don't have their filters list and ht initialized */
	if (mask_init_done) {
		WARN_ON(!list_empty(&mask->filters));
		rhashtable_destroy(&mask->ht);
	}
349 350 351 352 353 354 355 356
	kfree(mask);
}

static void fl_mask_free_work(struct work_struct *work)
{
	struct fl_flow_mask *mask = container_of(to_rcu_work(work),
						 struct fl_flow_mask, rwork);

357 358 359 360 361 362 363 364 365
	fl_mask_free(mask, true);
}

static void fl_uninit_mask_free_work(struct work_struct *work)
{
	struct fl_flow_mask *mask = container_of(to_rcu_work(work),
						 struct fl_flow_mask, rwork);

	fl_mask_free(mask, false);
366 367
}

368
static bool fl_mask_put(struct cls_fl_head *head, struct fl_flow_mask *mask)
369
{
370
	if (!refcount_dec_and_test(&mask->refcnt))
371 372 373
		return false;

	rhashtable_remove_fast(&head->ht, &mask->ht_node, mask_ht_params);
374 375

	spin_lock(&head->masks_lock);
376
	list_del_rcu(&mask->list);
377 378
	spin_unlock(&head->masks_lock);

379
	tcf_queue_work(&mask->rwork, fl_mask_free_work);
380 381

	return true;
J
Jiri Pirko 已提交
382 383
}

384 385 386 387 388 389 390 391 392 393
static struct cls_fl_head *fl_head_dereference(struct tcf_proto *tp)
{
	/* Flower classifier only changes root pointer during init and destroy.
	 * Users must obtain reference to tcf_proto instance before calling its
	 * API, so tp->root pointer is protected from concurrent call to
	 * fl_destroy() by reference counting.
	 */
	return rcu_dereference_raw(tp->root);
}

394 395 396 397 398 399 400
static void __fl_destroy_filter(struct cls_fl_filter *f)
{
	tcf_exts_destroy(&f->exts);
	tcf_exts_put_net(&f->exts);
	kfree(f);
}

401
static void fl_destroy_filter_work(struct work_struct *work)
J
Jiri Pirko 已提交
402
{
C
Cong Wang 已提交
403 404
	struct cls_fl_filter *f = container_of(to_rcu_work(work),
					struct cls_fl_filter, rwork);
J
Jiri Pirko 已提交
405

406
	__fl_destroy_filter(f);
407 408
}

409
static void fl_hw_destroy_filter(struct tcf_proto *tp, struct cls_fl_filter *f,
410
				 bool rtnl_held, struct netlink_ext_ack *extack)
411
{
412
	struct tc_cls_flower_offload cls_flower = {};
413
	struct tcf_block *block = tp->chain->block;
414

415 416 417
	if (!rtnl_held)
		rtnl_lock();

418
	tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, extack);
419 420
	cls_flower.command = TC_CLSFLOWER_DESTROY;
	cls_flower.cookie = (unsigned long) f;
421

422
	tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, false);
423
	spin_lock(&tp->lock);
424
	list_del_init(&f->hw_list);
425
	tcf_block_offload_dec(block, &f->flags);
426
	spin_unlock(&tp->lock);
427 428 429

	if (!rtnl_held)
		rtnl_unlock();
430 431
}

432
static int fl_hw_replace_filter(struct tcf_proto *tp,
433
				struct cls_fl_filter *f, bool rtnl_held,
434
				struct netlink_ext_ack *extack)
435
{
436
	struct cls_fl_head *head = fl_head_dereference(tp);
437
	struct tc_cls_flower_offload cls_flower = {};
438
	struct tcf_block *block = tp->chain->block;
439
	bool skip_sw = tc_skip_sw(f->flags);
440 441 442 443
	int err = 0;

	if (!rtnl_held)
		rtnl_lock();
444

445
	cls_flower.rule = flow_rule_alloc(tcf_exts_num_actions(&f->exts));
446 447 448 449
	if (!cls_flower.rule) {
		err = -ENOMEM;
		goto errout;
	}
450

451
	tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, extack);
452 453
	cls_flower.command = TC_CLSFLOWER_REPLACE;
	cls_flower.cookie = (unsigned long) f;
454 455 456
	cls_flower.rule->match.dissector = &f->mask->dissector;
	cls_flower.rule->match.mask = &f->mask->key;
	cls_flower.rule->match.key = &f->mkey;
457
	cls_flower.classid = f->res.classid;
458

459 460 461
	err = tc_setup_flow_action(&cls_flower.rule->action, &f->exts);
	if (err) {
		kfree(cls_flower.rule);
462
		if (skip_sw)
463
			NL_SET_ERR_MSG_MOD(extack, "Failed to setup flow action");
464 465 466
		else
			err = 0;
		goto errout;
467 468
	}

469
	err = tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, skip_sw);
470 471
	kfree(cls_flower.rule);

472
	if (err < 0) {
473 474
		fl_hw_destroy_filter(tp, f, true, NULL);
		goto errout;
475
	} else if (err > 0) {
476
		f->in_hw_count = err;
477
		err = 0;
478
		spin_lock(&tp->lock);
479
		tcf_block_offload_inc(block, &f->flags);
480
		spin_unlock(&tp->lock);
481 482
	}

483 484 485 486
	if (skip_sw && !(f->flags & TCA_CLS_FLAGS_IN_HW)) {
		err = -EINVAL;
		goto errout;
	}
487

488 489 490
	spin_lock(&tp->lock);
	list_add(&f->hw_list, &head->hw_filters);
	spin_unlock(&tp->lock);
491 492 493 494 495
errout:
	if (!rtnl_held)
		rtnl_unlock();

	return err;
496 497
}

498 499
static void fl_hw_update_stats(struct tcf_proto *tp, struct cls_fl_filter *f,
			       bool rtnl_held)
500
{
501
	struct tc_cls_flower_offload cls_flower = {};
502
	struct tcf_block *block = tp->chain->block;
503

504 505 506
	if (!rtnl_held)
		rtnl_lock();

507
	tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, NULL);
508 509
	cls_flower.command = TC_CLSFLOWER_STATS;
	cls_flower.cookie = (unsigned long) f;
510
	cls_flower.classid = f->res.classid;
511

512
	tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, false);
513 514 515 516

	tcf_exts_stats_update(&f->exts, cls_flower.stats.bytes,
			      cls_flower.stats.pkts,
			      cls_flower.stats.lastused);
517 518 519

	if (!rtnl_held)
		rtnl_unlock();
520 521
}

522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
static void __fl_put(struct cls_fl_filter *f)
{
	if (!refcount_dec_and_test(&f->refcnt))
		return;

	if (tcf_exts_get_net(&f->exts))
		tcf_queue_work(&f->rwork, fl_destroy_filter_work);
	else
		__fl_destroy_filter(f);
}

static struct cls_fl_filter *__fl_get(struct cls_fl_head *head, u32 handle)
{
	struct cls_fl_filter *f;

	rcu_read_lock();
	f = idr_find(&head->handle_idr, handle);
	if (f && !refcount_inc_not_zero(&f->refcnt))
		f = NULL;
	rcu_read_unlock();

	return f;
}

546
static int __fl_delete(struct tcf_proto *tp, struct cls_fl_filter *f,
547 548
		       bool *last, bool rtnl_held,
		       struct netlink_ext_ack *extack)
549
{
550
	struct cls_fl_head *head = fl_head_dereference(tp);
551

552 553
	*last = false;

554 555 556
	spin_lock(&tp->lock);
	if (f->deleted) {
		spin_unlock(&tp->lock);
557
		return -ENOENT;
558
	}
559 560 561 562

	f->deleted = true;
	rhashtable_remove_fast(&f->mask->ht, &f->ht_node,
			       f->mask->filter_ht_params);
563
	idr_remove(&head->handle_idr, f->handle);
564
	list_del_rcu(&f->list);
565 566
	spin_unlock(&tp->lock);

567
	*last = fl_mask_put(head, f->mask);
568
	if (!tc_skip_hw(f->flags))
569
		fl_hw_destroy_filter(tp, f, rtnl_held, extack);
570
	tcf_unbind_filter(tp, &f->res);
571
	__fl_put(f);
572

573
	return 0;
574 575
}

576 577
static void fl_destroy_sleepable(struct work_struct *work)
{
C
Cong Wang 已提交
578 579 580
	struct cls_fl_head *head = container_of(to_rcu_work(work),
						struct cls_fl_head,
						rwork);
581 582

	rhashtable_destroy(&head->ht);
583 584 585 586
	kfree(head);
	module_put(THIS_MODULE);
}

587 588
static void fl_destroy(struct tcf_proto *tp, bool rtnl_held,
		       struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
589
{
590
	struct cls_fl_head *head = fl_head_dereference(tp);
591
	struct fl_flow_mask *mask, *next_mask;
J
Jiri Pirko 已提交
592
	struct cls_fl_filter *f, *next;
593
	bool last;
J
Jiri Pirko 已提交
594

595 596
	list_for_each_entry_safe(mask, next_mask, &head->masks, list) {
		list_for_each_entry_safe(f, next, &mask->filters, list) {
597
			__fl_delete(tp, f, &last, rtnl_held, extack);
598
			if (last)
599 600 601
				break;
		}
	}
602
	idr_destroy(&head->handle_idr);
603 604

	__module_get(THIS_MODULE);
C
Cong Wang 已提交
605
	tcf_queue_work(&head->rwork, fl_destroy_sleepable);
J
Jiri Pirko 已提交
606 607
}

608 609 610 611 612 613 614
static void fl_put(struct tcf_proto *tp, void *arg)
{
	struct cls_fl_filter *f = arg;

	__fl_put(f);
}

615
static void *fl_get(struct tcf_proto *tp, u32 handle)
J
Jiri Pirko 已提交
616
{
617
	struct cls_fl_head *head = fl_head_dereference(tp);
J
Jiri Pirko 已提交
618

619
	return __fl_get(head, handle);
J
Jiri Pirko 已提交
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
}

static const struct nla_policy fl_policy[TCA_FLOWER_MAX + 1] = {
	[TCA_FLOWER_UNSPEC]		= { .type = NLA_UNSPEC },
	[TCA_FLOWER_CLASSID]		= { .type = NLA_U32 },
	[TCA_FLOWER_INDEV]		= { .type = NLA_STRING,
					    .len = IFNAMSIZ },
	[TCA_FLOWER_KEY_ETH_DST]	= { .len = ETH_ALEN },
	[TCA_FLOWER_KEY_ETH_DST_MASK]	= { .len = ETH_ALEN },
	[TCA_FLOWER_KEY_ETH_SRC]	= { .len = ETH_ALEN },
	[TCA_FLOWER_KEY_ETH_SRC_MASK]	= { .len = ETH_ALEN },
	[TCA_FLOWER_KEY_ETH_TYPE]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_IP_PROTO]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_IPV4_SRC]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_IPV4_SRC_MASK]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_IPV4_DST]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_IPV4_DST_MASK]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_IPV6_SRC]	= { .len = sizeof(struct in6_addr) },
	[TCA_FLOWER_KEY_IPV6_SRC_MASK]	= { .len = sizeof(struct in6_addr) },
	[TCA_FLOWER_KEY_IPV6_DST]	= { .len = sizeof(struct in6_addr) },
	[TCA_FLOWER_KEY_IPV6_DST_MASK]	= { .len = sizeof(struct in6_addr) },
	[TCA_FLOWER_KEY_TCP_SRC]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_TCP_DST]	= { .type = NLA_U16 },
J
Jamal Hadi Salim 已提交
643 644
	[TCA_FLOWER_KEY_UDP_SRC]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_UDP_DST]	= { .type = NLA_U16 },
645 646 647
	[TCA_FLOWER_KEY_VLAN_ID]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_VLAN_PRIO]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_VLAN_ETH_TYPE]	= { .type = NLA_U16 },
648 649 650 651 652 653 654 655 656
	[TCA_FLOWER_KEY_ENC_KEY_ID]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ENC_IPV4_SRC]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK] = { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ENC_IPV4_DST]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ENC_IPV4_DST_MASK] = { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ENC_IPV6_SRC]	= { .len = sizeof(struct in6_addr) },
	[TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK] = { .len = sizeof(struct in6_addr) },
	[TCA_FLOWER_KEY_ENC_IPV6_DST]	= { .len = sizeof(struct in6_addr) },
	[TCA_FLOWER_KEY_ENC_IPV6_DST_MASK] = { .len = sizeof(struct in6_addr) },
657 658 659 660
	[TCA_FLOWER_KEY_TCP_SRC_MASK]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_TCP_DST_MASK]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_UDP_SRC_MASK]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_UDP_DST_MASK]	= { .type = NLA_U16 },
661 662 663 664
	[TCA_FLOWER_KEY_SCTP_SRC_MASK]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_SCTP_DST_MASK]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_SCTP_SRC]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_SCTP_DST]	= { .type = NLA_U16 },
665 666 667 668
	[TCA_FLOWER_KEY_ENC_UDP_SRC_PORT]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_ENC_UDP_SRC_PORT_MASK]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_ENC_UDP_DST_PORT]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_ENC_UDP_DST_PORT_MASK]	= { .type = NLA_U16 },
669 670
	[TCA_FLOWER_KEY_FLAGS]		= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_FLAGS_MASK]	= { .type = NLA_U32 },
671 672 673 674 675 676 677 678
	[TCA_FLOWER_KEY_ICMPV4_TYPE]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ICMPV4_TYPE_MASK] = { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ICMPV4_CODE]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ICMPV4_CODE_MASK] = { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ICMPV6_TYPE]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ICMPV6_TYPE_MASK] = { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ICMPV6_CODE]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ICMPV6_CODE_MASK] = { .type = NLA_U8 },
679 680 681 682 683 684 685 686 687 688
	[TCA_FLOWER_KEY_ARP_SIP]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ARP_SIP_MASK]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ARP_TIP]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ARP_TIP_MASK]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_ARP_OP]		= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ARP_OP_MASK]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ARP_SHA]	= { .len = ETH_ALEN },
	[TCA_FLOWER_KEY_ARP_SHA_MASK]	= { .len = ETH_ALEN },
	[TCA_FLOWER_KEY_ARP_THA]	= { .len = ETH_ALEN },
	[TCA_FLOWER_KEY_ARP_THA_MASK]	= { .len = ETH_ALEN },
689 690 691 692
	[TCA_FLOWER_KEY_MPLS_TTL]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_MPLS_BOS]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_MPLS_TC]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_MPLS_LABEL]	= { .type = NLA_U32 },
693 694
	[TCA_FLOWER_KEY_TCP_FLAGS]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_TCP_FLAGS_MASK]	= { .type = NLA_U16 },
695 696 697 698
	[TCA_FLOWER_KEY_IP_TOS]		= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_IP_TOS_MASK]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_IP_TTL]		= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_IP_TTL_MASK]	= { .type = NLA_U8 },
699 700 701
	[TCA_FLOWER_KEY_CVLAN_ID]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_CVLAN_PRIO]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_CVLAN_ETH_TYPE]	= { .type = NLA_U16 },
702 703 704 705
	[TCA_FLOWER_KEY_ENC_IP_TOS]	= { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ENC_IP_TOS_MASK] = { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ENC_IP_TTL]	 = { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ENC_IP_TTL_MASK] = { .type = NLA_U8 },
706 707
	[TCA_FLOWER_KEY_ENC_OPTS]	= { .type = NLA_NESTED },
	[TCA_FLOWER_KEY_ENC_OPTS_MASK]	= { .type = NLA_NESTED },
708 709 710 711 712 713 714 715 716 717
	[TCA_FLOWER_KEY_CT_STATE]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_CT_STATE_MASK]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_CT_ZONE]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_CT_ZONE_MASK]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_CT_MARK]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_CT_MARK_MASK]	= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_CT_LABELS]	= { .type = NLA_BINARY,
					    .len = 128 / BITS_PER_BYTE },
	[TCA_FLOWER_KEY_CT_LABELS_MASK]	= { .type = NLA_BINARY,
					    .len = 128 / BITS_PER_BYTE },
718 719 720 721 722 723 724 725 726 727 728 729 730
};

static const struct nla_policy
enc_opts_policy[TCA_FLOWER_KEY_ENC_OPTS_MAX + 1] = {
	[TCA_FLOWER_KEY_ENC_OPTS_GENEVE]        = { .type = NLA_NESTED },
};

static const struct nla_policy
geneve_opt_policy[TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX + 1] = {
	[TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS]      = { .type = NLA_U16 },
	[TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE]       = { .type = NLA_U8 },
	[TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA]       = { .type = NLA_BINARY,
						       .len = 128 },
J
Jiri Pirko 已提交
731 732 733 734 735 736 737 738
};

static void fl_set_key_val(struct nlattr **tb,
			   void *val, int val_type,
			   void *mask, int mask_type, int len)
{
	if (!tb[val_type])
		return;
739
	nla_memcpy(val, tb[val_type], len);
J
Jiri Pirko 已提交
740 741 742
	if (mask_type == TCA_FLOWER_UNSPEC || !tb[mask_type])
		memset(mask, 0xff, len);
	else
743
		nla_memcpy(mask, tb[mask_type], len);
J
Jiri Pirko 已提交
744 745
}

746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
static int fl_set_key_port_range(struct nlattr **tb, struct fl_flow_key *key,
				 struct fl_flow_key *mask)
{
	fl_set_key_val(tb, &key->tp_min.dst,
		       TCA_FLOWER_KEY_PORT_DST_MIN, &mask->tp_min.dst,
		       TCA_FLOWER_UNSPEC, sizeof(key->tp_min.dst));
	fl_set_key_val(tb, &key->tp_max.dst,
		       TCA_FLOWER_KEY_PORT_DST_MAX, &mask->tp_max.dst,
		       TCA_FLOWER_UNSPEC, sizeof(key->tp_max.dst));
	fl_set_key_val(tb, &key->tp_min.src,
		       TCA_FLOWER_KEY_PORT_SRC_MIN, &mask->tp_min.src,
		       TCA_FLOWER_UNSPEC, sizeof(key->tp_min.src));
	fl_set_key_val(tb, &key->tp_max.src,
		       TCA_FLOWER_KEY_PORT_SRC_MAX, &mask->tp_max.src,
		       TCA_FLOWER_UNSPEC, sizeof(key->tp_max.src));

	if ((mask->tp_min.dst && mask->tp_max.dst &&
	     htons(key->tp_max.dst) <= htons(key->tp_min.dst)) ||
	     (mask->tp_min.src && mask->tp_max.src &&
	      htons(key->tp_max.src) <= htons(key->tp_min.src)))
		return -EINVAL;

	return 0;
}

771 772 773
static int fl_set_key_mpls(struct nlattr **tb,
			   struct flow_dissector_key_mpls *key_val,
			   struct flow_dissector_key_mpls *key_mask)
774 775 776 777 778 779
{
	if (tb[TCA_FLOWER_KEY_MPLS_TTL]) {
		key_val->mpls_ttl = nla_get_u8(tb[TCA_FLOWER_KEY_MPLS_TTL]);
		key_mask->mpls_ttl = MPLS_TTL_MASK;
	}
	if (tb[TCA_FLOWER_KEY_MPLS_BOS]) {
780 781 782 783 784
		u8 bos = nla_get_u8(tb[TCA_FLOWER_KEY_MPLS_BOS]);

		if (bos & ~MPLS_BOS_MASK)
			return -EINVAL;
		key_val->mpls_bos = bos;
785 786 787
		key_mask->mpls_bos = MPLS_BOS_MASK;
	}
	if (tb[TCA_FLOWER_KEY_MPLS_TC]) {
788 789 790 791 792
		u8 tc = nla_get_u8(tb[TCA_FLOWER_KEY_MPLS_TC]);

		if (tc & ~MPLS_TC_MASK)
			return -EINVAL;
		key_val->mpls_tc = tc;
793 794 795
		key_mask->mpls_tc = MPLS_TC_MASK;
	}
	if (tb[TCA_FLOWER_KEY_MPLS_LABEL]) {
796 797 798 799 800
		u32 label = nla_get_u32(tb[TCA_FLOWER_KEY_MPLS_LABEL]);

		if (label & ~MPLS_LABEL_MASK)
			return -EINVAL;
		key_val->mpls_label = label;
801 802
		key_mask->mpls_label = MPLS_LABEL_MASK;
	}
803
	return 0;
804 805
}

806
static void fl_set_key_vlan(struct nlattr **tb,
807
			    __be16 ethertype,
808
			    int vlan_id_key, int vlan_prio_key,
809 810 811 812 813
			    struct flow_dissector_key_vlan *key_val,
			    struct flow_dissector_key_vlan *key_mask)
{
#define VLAN_PRIORITY_MASK	0x7

814
	if (tb[vlan_id_key]) {
815
		key_val->vlan_id =
816
			nla_get_u16(tb[vlan_id_key]) & VLAN_VID_MASK;
817 818
		key_mask->vlan_id = VLAN_VID_MASK;
	}
819
	if (tb[vlan_prio_key]) {
820
		key_val->vlan_priority =
821
			nla_get_u8(tb[vlan_prio_key]) &
822 823 824
			VLAN_PRIORITY_MASK;
		key_mask->vlan_priority = VLAN_PRIORITY_MASK;
	}
825 826
	key_val->vlan_tpid = ethertype;
	key_mask->vlan_tpid = cpu_to_be16(~0);
827 828
}

829 830 831 832 833 834 835 836 837 838 839
static void fl_set_key_flag(u32 flower_key, u32 flower_mask,
			    u32 *dissector_key, u32 *dissector_mask,
			    u32 flower_flag_bit, u32 dissector_flag_bit)
{
	if (flower_mask & flower_flag_bit) {
		*dissector_mask |= dissector_flag_bit;
		if (flower_key & flower_flag_bit)
			*dissector_key |= dissector_flag_bit;
	}
}

840 841
static int fl_set_key_flags(struct nlattr **tb,
			    u32 *flags_key, u32 *flags_mask)
842 843 844
{
	u32 key, mask;

845 846 847
	/* mask is mandatory for flags */
	if (!tb[TCA_FLOWER_KEY_FLAGS_MASK])
		return -EINVAL;
848 849

	key = be32_to_cpu(nla_get_u32(tb[TCA_FLOWER_KEY_FLAGS]));
850
	mask = be32_to_cpu(nla_get_u32(tb[TCA_FLOWER_KEY_FLAGS_MASK]));
851 852 853 854 855 856

	*flags_key  = 0;
	*flags_mask = 0;

	fl_set_key_flag(key, mask, flags_key, flags_mask,
			TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT, FLOW_DIS_IS_FRAGMENT);
857 858 859
	fl_set_key_flag(key, mask, flags_key, flags_mask,
			TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST,
			FLOW_DIS_FIRST_FRAG);
860 861

	return 0;
862 863
}

864
static void fl_set_key_ip(struct nlattr **tb, bool encap,
865 866 867
			  struct flow_dissector_key_ip *key,
			  struct flow_dissector_key_ip *mask)
{
868 869 870 871
	int tos_key = encap ? TCA_FLOWER_KEY_ENC_IP_TOS : TCA_FLOWER_KEY_IP_TOS;
	int ttl_key = encap ? TCA_FLOWER_KEY_ENC_IP_TTL : TCA_FLOWER_KEY_IP_TTL;
	int tos_mask = encap ? TCA_FLOWER_KEY_ENC_IP_TOS_MASK : TCA_FLOWER_KEY_IP_TOS_MASK;
	int ttl_mask = encap ? TCA_FLOWER_KEY_ENC_IP_TTL_MASK : TCA_FLOWER_KEY_IP_TTL_MASK;
872

873 874
	fl_set_key_val(tb, &key->tos, tos_key, &mask->tos, tos_mask, sizeof(key->tos));
	fl_set_key_val(tb, &key->ttl, ttl_key, &mask->ttl, ttl_mask, sizeof(key->ttl));
875 876
}

877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
static int fl_set_geneve_opt(const struct nlattr *nla, struct fl_flow_key *key,
			     int depth, int option_len,
			     struct netlink_ext_ack *extack)
{
	struct nlattr *tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX + 1];
	struct nlattr *class = NULL, *type = NULL, *data = NULL;
	struct geneve_opt *opt;
	int err, data_len = 0;

	if (option_len > sizeof(struct geneve_opt))
		data_len = option_len - sizeof(struct geneve_opt);

	opt = (struct geneve_opt *)&key->enc_opts.data[key->enc_opts.len];
	memset(opt, 0xff, option_len);
	opt->length = data_len / 4;
	opt->r1 = 0;
	opt->r2 = 0;
	opt->r3 = 0;

	/* If no mask has been prodived we assume an exact match. */
	if (!depth)
		return sizeof(struct geneve_opt) + data_len;

	if (nla_type(nla) != TCA_FLOWER_KEY_ENC_OPTS_GENEVE) {
		NL_SET_ERR_MSG(extack, "Non-geneve option type for mask");
		return -EINVAL;
	}

905 906 907
	err = nla_parse_nested_deprecated(tb,
					  TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX,
					  nla, geneve_opt_policy, extack);
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
	if (err < 0)
		return err;

	/* We are not allowed to omit any of CLASS, TYPE or DATA
	 * fields from the key.
	 */
	if (!option_len &&
	    (!tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS] ||
	     !tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE] ||
	     !tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA])) {
		NL_SET_ERR_MSG(extack, "Missing tunnel key geneve option class, type or data");
		return -EINVAL;
	}

	/* Omitting any of CLASS, TYPE or DATA fields is allowed
	 * for the mask.
	 */
	if (tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA]) {
		int new_len = key->enc_opts.len;

		data = tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA];
		data_len = nla_len(data);
		if (data_len < 4) {
			NL_SET_ERR_MSG(extack, "Tunnel key geneve option data is less than 4 bytes long");
			return -ERANGE;
		}
		if (data_len % 4) {
			NL_SET_ERR_MSG(extack, "Tunnel key geneve option data is not a multiple of 4 bytes long");
			return -ERANGE;
		}

		new_len += sizeof(struct geneve_opt) + data_len;
		BUILD_BUG_ON(FLOW_DIS_TUN_OPTS_MAX != IP_TUNNEL_OPTS_MAX);
		if (new_len > FLOW_DIS_TUN_OPTS_MAX) {
			NL_SET_ERR_MSG(extack, "Tunnel options exceeds max size");
			return -ERANGE;
		}
		opt->length = data_len / 4;
		memcpy(opt->opt_data, nla_data(data), data_len);
	}

	if (tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS]) {
		class = tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS];
		opt->opt_class = nla_get_be16(class);
	}

	if (tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE]) {
		type = tb[TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE];
		opt->type = nla_get_u8(type);
	}

	return sizeof(struct geneve_opt) + data_len;
}

static int fl_set_enc_opt(struct nlattr **tb, struct fl_flow_key *key,
			  struct fl_flow_key *mask,
			  struct netlink_ext_ack *extack)
{
	const struct nlattr *nla_enc_key, *nla_opt_key, *nla_opt_msk = NULL;
967 968
	int err, option_len, key_depth, msk_depth = 0;

969 970 971
	err = nla_validate_nested_deprecated(tb[TCA_FLOWER_KEY_ENC_OPTS],
					     TCA_FLOWER_KEY_ENC_OPTS_MAX,
					     enc_opts_policy, extack);
972 973
	if (err)
		return err;
974 975 976 977

	nla_enc_key = nla_data(tb[TCA_FLOWER_KEY_ENC_OPTS]);

	if (tb[TCA_FLOWER_KEY_ENC_OPTS_MASK]) {
978 979 980
		err = nla_validate_nested_deprecated(tb[TCA_FLOWER_KEY_ENC_OPTS_MASK],
						     TCA_FLOWER_KEY_ENC_OPTS_MAX,
						     enc_opts_policy, extack);
981 982 983
		if (err)
			return err;

984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
		nla_opt_msk = nla_data(tb[TCA_FLOWER_KEY_ENC_OPTS_MASK]);
		msk_depth = nla_len(tb[TCA_FLOWER_KEY_ENC_OPTS_MASK]);
	}

	nla_for_each_attr(nla_opt_key, nla_enc_key,
			  nla_len(tb[TCA_FLOWER_KEY_ENC_OPTS]), key_depth) {
		switch (nla_type(nla_opt_key)) {
		case TCA_FLOWER_KEY_ENC_OPTS_GENEVE:
			option_len = 0;
			key->enc_opts.dst_opt_type = TUNNEL_GENEVE_OPT;
			option_len = fl_set_geneve_opt(nla_opt_key, key,
						       key_depth, option_len,
						       extack);
			if (option_len < 0)
				return option_len;

			key->enc_opts.len += option_len;
			/* At the same time we need to parse through the mask
			 * in order to verify exact and mask attribute lengths.
			 */
			mask->enc_opts.dst_opt_type = TUNNEL_GENEVE_OPT;
			option_len = fl_set_geneve_opt(nla_opt_msk, mask,
						       msk_depth, option_len,
						       extack);
			if (option_len < 0)
				return option_len;

			mask->enc_opts.len += option_len;
			if (key->enc_opts.len != mask->enc_opts.len) {
				NL_SET_ERR_MSG(extack, "Key and mask miss aligned");
				return -EINVAL;
			}

			if (msk_depth)
				nla_opt_msk = nla_next(nla_opt_msk, &msk_depth);
			break;
		default:
			NL_SET_ERR_MSG(extack, "Unknown tunnel option type");
			return -EINVAL;
		}
	}

	return 0;
}

1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
static int fl_set_key_ct(struct nlattr **tb,
			 struct flow_dissector_key_ct *key,
			 struct flow_dissector_key_ct *mask,
			 struct netlink_ext_ack *extack)
{
	if (tb[TCA_FLOWER_KEY_CT_STATE]) {
		if (!IS_ENABLED(CONFIG_NF_CONNTRACK)) {
			NL_SET_ERR_MSG(extack, "Conntrack isn't enabled");
			return -EOPNOTSUPP;
		}
		fl_set_key_val(tb, &key->ct_state, TCA_FLOWER_KEY_CT_STATE,
			       &mask->ct_state, TCA_FLOWER_KEY_CT_STATE_MASK,
			       sizeof(key->ct_state));
	}
	if (tb[TCA_FLOWER_KEY_CT_ZONE]) {
		if (!IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES)) {
			NL_SET_ERR_MSG(extack, "Conntrack zones isn't enabled");
			return -EOPNOTSUPP;
		}
		fl_set_key_val(tb, &key->ct_zone, TCA_FLOWER_KEY_CT_ZONE,
			       &mask->ct_zone, TCA_FLOWER_KEY_CT_ZONE_MASK,
			       sizeof(key->ct_zone));
	}
	if (tb[TCA_FLOWER_KEY_CT_MARK]) {
		if (!IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)) {
			NL_SET_ERR_MSG(extack, "Conntrack mark isn't enabled");
			return -EOPNOTSUPP;
		}
		fl_set_key_val(tb, &key->ct_mark, TCA_FLOWER_KEY_CT_MARK,
			       &mask->ct_mark, TCA_FLOWER_KEY_CT_MARK_MASK,
			       sizeof(key->ct_mark));
	}
	if (tb[TCA_FLOWER_KEY_CT_LABELS]) {
		if (!IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS)) {
			NL_SET_ERR_MSG(extack, "Conntrack labels aren't enabled");
			return -EOPNOTSUPP;
		}
		fl_set_key_val(tb, key->ct_labels, TCA_FLOWER_KEY_CT_LABELS,
			       mask->ct_labels, TCA_FLOWER_KEY_CT_LABELS_MASK,
			       sizeof(key->ct_labels));
	}

	return 0;
}

J
Jiri Pirko 已提交
1074
static int fl_set_key(struct net *net, struct nlattr **tb,
1075 1076
		      struct fl_flow_key *key, struct fl_flow_key *mask,
		      struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
1077
{
1078
	__be16 ethertype;
1079
	int ret = 0;
1080

J
Jiri Pirko 已提交
1081
	if (tb[TCA_FLOWER_INDEV]) {
1082
		int err = tcf_change_indev(net, tb[TCA_FLOWER_INDEV], extack);
J
Jiri Pirko 已提交
1083 1084
		if (err < 0)
			return err;
1085 1086
		key->meta.ingress_ifindex = err;
		mask->meta.ingress_ifindex = 0xffffffff;
J
Jiri Pirko 已提交
1087 1088 1089 1090 1091 1092 1093 1094
	}

	fl_set_key_val(tb, key->eth.dst, TCA_FLOWER_KEY_ETH_DST,
		       mask->eth.dst, TCA_FLOWER_KEY_ETH_DST_MASK,
		       sizeof(key->eth.dst));
	fl_set_key_val(tb, key->eth.src, TCA_FLOWER_KEY_ETH_SRC,
		       mask->eth.src, TCA_FLOWER_KEY_ETH_SRC_MASK,
		       sizeof(key->eth.src));
1095

1096
	if (tb[TCA_FLOWER_KEY_ETH_TYPE]) {
1097 1098
		ethertype = nla_get_be16(tb[TCA_FLOWER_KEY_ETH_TYPE]);

1099
		if (eth_type_vlan(ethertype)) {
1100 1101 1102 1103
			fl_set_key_vlan(tb, ethertype, TCA_FLOWER_KEY_VLAN_ID,
					TCA_FLOWER_KEY_VLAN_PRIO, &key->vlan,
					&mask->vlan);

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
			if (tb[TCA_FLOWER_KEY_VLAN_ETH_TYPE]) {
				ethertype = nla_get_be16(tb[TCA_FLOWER_KEY_VLAN_ETH_TYPE]);
				if (eth_type_vlan(ethertype)) {
					fl_set_key_vlan(tb, ethertype,
							TCA_FLOWER_KEY_CVLAN_ID,
							TCA_FLOWER_KEY_CVLAN_PRIO,
							&key->cvlan, &mask->cvlan);
					fl_set_key_val(tb, &key->basic.n_proto,
						       TCA_FLOWER_KEY_CVLAN_ETH_TYPE,
						       &mask->basic.n_proto,
						       TCA_FLOWER_UNSPEC,
						       sizeof(key->basic.n_proto));
				} else {
					key->basic.n_proto = ethertype;
					mask->basic.n_proto = cpu_to_be16(~0);
				}
1120
			}
1121 1122 1123 1124
		} else {
			key->basic.n_proto = ethertype;
			mask->basic.n_proto = cpu_to_be16(~0);
		}
1125
	}
1126

J
Jiri Pirko 已提交
1127 1128 1129 1130 1131
	if (key->basic.n_proto == htons(ETH_P_IP) ||
	    key->basic.n_proto == htons(ETH_P_IPV6)) {
		fl_set_key_val(tb, &key->basic.ip_proto, TCA_FLOWER_KEY_IP_PROTO,
			       &mask->basic.ip_proto, TCA_FLOWER_UNSPEC,
			       sizeof(key->basic.ip_proto));
1132
		fl_set_key_ip(tb, false, &key->ip, &mask->ip);
J
Jiri Pirko 已提交
1133
	}
1134 1135 1136

	if (tb[TCA_FLOWER_KEY_IPV4_SRC] || tb[TCA_FLOWER_KEY_IPV4_DST]) {
		key->control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS;
1137
		mask->control.addr_type = ~0;
J
Jiri Pirko 已提交
1138 1139 1140 1141 1142 1143
		fl_set_key_val(tb, &key->ipv4.src, TCA_FLOWER_KEY_IPV4_SRC,
			       &mask->ipv4.src, TCA_FLOWER_KEY_IPV4_SRC_MASK,
			       sizeof(key->ipv4.src));
		fl_set_key_val(tb, &key->ipv4.dst, TCA_FLOWER_KEY_IPV4_DST,
			       &mask->ipv4.dst, TCA_FLOWER_KEY_IPV4_DST_MASK,
			       sizeof(key->ipv4.dst));
1144 1145
	} else if (tb[TCA_FLOWER_KEY_IPV6_SRC] || tb[TCA_FLOWER_KEY_IPV6_DST]) {
		key->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
1146
		mask->control.addr_type = ~0;
J
Jiri Pirko 已提交
1147 1148 1149 1150 1151 1152 1153
		fl_set_key_val(tb, &key->ipv6.src, TCA_FLOWER_KEY_IPV6_SRC,
			       &mask->ipv6.src, TCA_FLOWER_KEY_IPV6_SRC_MASK,
			       sizeof(key->ipv6.src));
		fl_set_key_val(tb, &key->ipv6.dst, TCA_FLOWER_KEY_IPV6_DST,
			       &mask->ipv6.dst, TCA_FLOWER_KEY_IPV6_DST_MASK,
			       sizeof(key->ipv6.dst));
	}
1154

J
Jiri Pirko 已提交
1155 1156
	if (key->basic.ip_proto == IPPROTO_TCP) {
		fl_set_key_val(tb, &key->tp.src, TCA_FLOWER_KEY_TCP_SRC,
1157
			       &mask->tp.src, TCA_FLOWER_KEY_TCP_SRC_MASK,
J
Jiri Pirko 已提交
1158 1159
			       sizeof(key->tp.src));
		fl_set_key_val(tb, &key->tp.dst, TCA_FLOWER_KEY_TCP_DST,
1160
			       &mask->tp.dst, TCA_FLOWER_KEY_TCP_DST_MASK,
J
Jiri Pirko 已提交
1161
			       sizeof(key->tp.dst));
1162 1163 1164
		fl_set_key_val(tb, &key->tcp.flags, TCA_FLOWER_KEY_TCP_FLAGS,
			       &mask->tcp.flags, TCA_FLOWER_KEY_TCP_FLAGS_MASK,
			       sizeof(key->tcp.flags));
J
Jiri Pirko 已提交
1165 1166
	} else if (key->basic.ip_proto == IPPROTO_UDP) {
		fl_set_key_val(tb, &key->tp.src, TCA_FLOWER_KEY_UDP_SRC,
1167
			       &mask->tp.src, TCA_FLOWER_KEY_UDP_SRC_MASK,
J
Jiri Pirko 已提交
1168 1169
			       sizeof(key->tp.src));
		fl_set_key_val(tb, &key->tp.dst, TCA_FLOWER_KEY_UDP_DST,
1170
			       &mask->tp.dst, TCA_FLOWER_KEY_UDP_DST_MASK,
J
Jiri Pirko 已提交
1171
			       sizeof(key->tp.dst));
1172 1173 1174 1175 1176 1177 1178
	} else if (key->basic.ip_proto == IPPROTO_SCTP) {
		fl_set_key_val(tb, &key->tp.src, TCA_FLOWER_KEY_SCTP_SRC,
			       &mask->tp.src, TCA_FLOWER_KEY_SCTP_SRC_MASK,
			       sizeof(key->tp.src));
		fl_set_key_val(tb, &key->tp.dst, TCA_FLOWER_KEY_SCTP_DST,
			       &mask->tp.dst, TCA_FLOWER_KEY_SCTP_DST_MASK,
			       sizeof(key->tp.dst));
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194
	} else if (key->basic.n_proto == htons(ETH_P_IP) &&
		   key->basic.ip_proto == IPPROTO_ICMP) {
		fl_set_key_val(tb, &key->icmp.type, TCA_FLOWER_KEY_ICMPV4_TYPE,
			       &mask->icmp.type,
			       TCA_FLOWER_KEY_ICMPV4_TYPE_MASK,
			       sizeof(key->icmp.type));
		fl_set_key_val(tb, &key->icmp.code, TCA_FLOWER_KEY_ICMPV4_CODE,
			       &mask->icmp.code,
			       TCA_FLOWER_KEY_ICMPV4_CODE_MASK,
			       sizeof(key->icmp.code));
	} else if (key->basic.n_proto == htons(ETH_P_IPV6) &&
		   key->basic.ip_proto == IPPROTO_ICMPV6) {
		fl_set_key_val(tb, &key->icmp.type, TCA_FLOWER_KEY_ICMPV6_TYPE,
			       &mask->icmp.type,
			       TCA_FLOWER_KEY_ICMPV6_TYPE_MASK,
			       sizeof(key->icmp.type));
1195
		fl_set_key_val(tb, &key->icmp.code, TCA_FLOWER_KEY_ICMPV6_CODE,
1196
			       &mask->icmp.code,
1197
			       TCA_FLOWER_KEY_ICMPV6_CODE_MASK,
1198
			       sizeof(key->icmp.code));
1199 1200
	} else if (key->basic.n_proto == htons(ETH_P_MPLS_UC) ||
		   key->basic.n_proto == htons(ETH_P_MPLS_MC)) {
1201 1202 1203
		ret = fl_set_key_mpls(tb, &key->mpls, &mask->mpls);
		if (ret)
			return ret;
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
	} else if (key->basic.n_proto == htons(ETH_P_ARP) ||
		   key->basic.n_proto == htons(ETH_P_RARP)) {
		fl_set_key_val(tb, &key->arp.sip, TCA_FLOWER_KEY_ARP_SIP,
			       &mask->arp.sip, TCA_FLOWER_KEY_ARP_SIP_MASK,
			       sizeof(key->arp.sip));
		fl_set_key_val(tb, &key->arp.tip, TCA_FLOWER_KEY_ARP_TIP,
			       &mask->arp.tip, TCA_FLOWER_KEY_ARP_TIP_MASK,
			       sizeof(key->arp.tip));
		fl_set_key_val(tb, &key->arp.op, TCA_FLOWER_KEY_ARP_OP,
			       &mask->arp.op, TCA_FLOWER_KEY_ARP_OP_MASK,
			       sizeof(key->arp.op));
		fl_set_key_val(tb, key->arp.sha, TCA_FLOWER_KEY_ARP_SHA,
			       mask->arp.sha, TCA_FLOWER_KEY_ARP_SHA_MASK,
			       sizeof(key->arp.sha));
		fl_set_key_val(tb, key->arp.tha, TCA_FLOWER_KEY_ARP_THA,
			       mask->arp.tha, TCA_FLOWER_KEY_ARP_THA_MASK,
			       sizeof(key->arp.tha));
J
Jiri Pirko 已提交
1221 1222
	}

1223 1224 1225 1226 1227 1228 1229 1230
	if (key->basic.ip_proto == IPPROTO_TCP ||
	    key->basic.ip_proto == IPPROTO_UDP ||
	    key->basic.ip_proto == IPPROTO_SCTP) {
		ret = fl_set_key_port_range(tb, key, mask);
		if (ret)
			return ret;
	}

1231 1232 1233
	if (tb[TCA_FLOWER_KEY_ENC_IPV4_SRC] ||
	    tb[TCA_FLOWER_KEY_ENC_IPV4_DST]) {
		key->enc_control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS;
1234
		mask->enc_control.addr_type = ~0;
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
		fl_set_key_val(tb, &key->enc_ipv4.src,
			       TCA_FLOWER_KEY_ENC_IPV4_SRC,
			       &mask->enc_ipv4.src,
			       TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK,
			       sizeof(key->enc_ipv4.src));
		fl_set_key_val(tb, &key->enc_ipv4.dst,
			       TCA_FLOWER_KEY_ENC_IPV4_DST,
			       &mask->enc_ipv4.dst,
			       TCA_FLOWER_KEY_ENC_IPV4_DST_MASK,
			       sizeof(key->enc_ipv4.dst));
	}

	if (tb[TCA_FLOWER_KEY_ENC_IPV6_SRC] ||
	    tb[TCA_FLOWER_KEY_ENC_IPV6_DST]) {
		key->enc_control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
1250
		mask->enc_control.addr_type = ~0;
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
		fl_set_key_val(tb, &key->enc_ipv6.src,
			       TCA_FLOWER_KEY_ENC_IPV6_SRC,
			       &mask->enc_ipv6.src,
			       TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK,
			       sizeof(key->enc_ipv6.src));
		fl_set_key_val(tb, &key->enc_ipv6.dst,
			       TCA_FLOWER_KEY_ENC_IPV6_DST,
			       &mask->enc_ipv6.dst,
			       TCA_FLOWER_KEY_ENC_IPV6_DST_MASK,
			       sizeof(key->enc_ipv6.dst));
	}

	fl_set_key_val(tb, &key->enc_key_id.keyid, TCA_FLOWER_KEY_ENC_KEY_ID,
1264
		       &mask->enc_key_id.keyid, TCA_FLOWER_UNSPEC,
1265 1266
		       sizeof(key->enc_key_id.keyid));

1267 1268 1269 1270 1271 1272 1273 1274
	fl_set_key_val(tb, &key->enc_tp.src, TCA_FLOWER_KEY_ENC_UDP_SRC_PORT,
		       &mask->enc_tp.src, TCA_FLOWER_KEY_ENC_UDP_SRC_PORT_MASK,
		       sizeof(key->enc_tp.src));

	fl_set_key_val(tb, &key->enc_tp.dst, TCA_FLOWER_KEY_ENC_UDP_DST_PORT,
		       &mask->enc_tp.dst, TCA_FLOWER_KEY_ENC_UDP_DST_PORT_MASK,
		       sizeof(key->enc_tp.dst));

1275 1276
	fl_set_key_ip(tb, true, &key->enc_ip, &mask->enc_ip);

1277 1278 1279 1280 1281 1282
	if (tb[TCA_FLOWER_KEY_ENC_OPTS]) {
		ret = fl_set_enc_opt(tb, key, mask, extack);
		if (ret)
			return ret;
	}

1283 1284 1285 1286
	ret = fl_set_key_ct(tb, &key->ct, &mask->ct, extack);
	if (ret)
		return ret;

1287 1288
	if (tb[TCA_FLOWER_KEY_FLAGS])
		ret = fl_set_key_flags(tb, &key->control.flags, &mask->control.flags);
1289

1290
	return ret;
J
Jiri Pirko 已提交
1291 1292
}

1293 1294
static void fl_mask_copy(struct fl_flow_mask *dst,
			 struct fl_flow_mask *src)
J
Jiri Pirko 已提交
1295
{
1296 1297
	const void *psrc = fl_key_get_start(&src->key, src);
	void *pdst = fl_key_get_start(&dst->key, src);
J
Jiri Pirko 已提交
1298

1299 1300
	memcpy(pdst, psrc, fl_mask_range(src));
	dst->range = src->range;
J
Jiri Pirko 已提交
1301 1302 1303 1304 1305 1306 1307 1308
}

static const struct rhashtable_params fl_ht_params = {
	.key_offset = offsetof(struct cls_fl_filter, mkey), /* base offset */
	.head_offset = offsetof(struct cls_fl_filter, ht_node),
	.automatic_shrinking = true,
};

1309
static int fl_init_mask_hashtable(struct fl_flow_mask *mask)
J
Jiri Pirko 已提交
1310
{
1311 1312 1313
	mask->filter_ht_params = fl_ht_params;
	mask->filter_ht_params.key_len = fl_mask_range(mask);
	mask->filter_ht_params.key_offset += mask->range.start;
J
Jiri Pirko 已提交
1314

1315
	return rhashtable_init(&mask->ht, &mask->filter_ht_params);
J
Jiri Pirko 已提交
1316 1317 1318
}

#define FL_KEY_MEMBER_OFFSET(member) offsetof(struct fl_flow_key, member)
1319
#define FL_KEY_MEMBER_SIZE(member) FIELD_SIZEOF(struct fl_flow_key, member)
J
Jiri Pirko 已提交
1320

1321 1322 1323
#define FL_KEY_IS_MASKED(mask, member)						\
	memchr_inv(((char *)mask) + FL_KEY_MEMBER_OFFSET(member),		\
		   0, FL_KEY_MEMBER_SIZE(member))				\
J
Jiri Pirko 已提交
1324 1325 1326 1327 1328 1329 1330 1331

#define FL_KEY_SET(keys, cnt, id, member)					\
	do {									\
		keys[cnt].key_id = id;						\
		keys[cnt].offset = FL_KEY_MEMBER_OFFSET(member);		\
		cnt++;								\
	} while(0);

1332
#define FL_KEY_SET_IF_MASKED(mask, keys, cnt, id, member)			\
J
Jiri Pirko 已提交
1333
	do {									\
1334
		if (FL_KEY_IS_MASKED(mask, member))				\
J
Jiri Pirko 已提交
1335 1336 1337
			FL_KEY_SET(keys, cnt, id, member);			\
	} while(0);

1338 1339
static void fl_init_dissector(struct flow_dissector *dissector,
			      struct fl_flow_key *mask)
J
Jiri Pirko 已提交
1340 1341 1342 1343
{
	struct flow_dissector_key keys[FLOW_DISSECTOR_KEY_MAX];
	size_t cnt = 0;

1344 1345
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
			     FLOW_DISSECTOR_KEY_META, meta);
1346
	FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_CONTROL, control);
J
Jiri Pirko 已提交
1347
	FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_BASIC, basic);
1348
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1349
			     FLOW_DISSECTOR_KEY_ETH_ADDRS, eth);
1350
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1351
			     FLOW_DISSECTOR_KEY_IPV4_ADDRS, ipv4);
1352
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1353
			     FLOW_DISSECTOR_KEY_IPV6_ADDRS, ipv6);
1354 1355 1356
	if (FL_KEY_IS_MASKED(mask, tp) ||
	    FL_KEY_IS_MASKED(mask, tp_min) || FL_KEY_IS_MASKED(mask, tp_max))
		FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_PORTS, tp);
1357
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1358
			     FLOW_DISSECTOR_KEY_IP, ip);
1359
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1360
			     FLOW_DISSECTOR_KEY_TCP, tcp);
1361
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1362
			     FLOW_DISSECTOR_KEY_ICMP, icmp);
1363
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1364
			     FLOW_DISSECTOR_KEY_ARP, arp);
1365
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1366
			     FLOW_DISSECTOR_KEY_MPLS, mpls);
1367
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1368
			     FLOW_DISSECTOR_KEY_VLAN, vlan);
1369
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1370
			     FLOW_DISSECTOR_KEY_CVLAN, cvlan);
1371
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1372
			     FLOW_DISSECTOR_KEY_ENC_KEYID, enc_key_id);
1373
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1374
			     FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS, enc_ipv4);
1375
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1376
			     FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS, enc_ipv6);
1377 1378
	if (FL_KEY_IS_MASKED(mask, enc_ipv4) ||
	    FL_KEY_IS_MASKED(mask, enc_ipv6))
1379 1380
		FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_ENC_CONTROL,
			   enc_control);
1381
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1382
			     FLOW_DISSECTOR_KEY_ENC_PORTS, enc_tp);
1383
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
1384
			     FLOW_DISSECTOR_KEY_ENC_IP, enc_ip);
1385 1386
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
			     FLOW_DISSECTOR_KEY_ENC_OPTS, enc_opts);
1387 1388
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
			     FLOW_DISSECTOR_KEY_CT, ct);
J
Jiri Pirko 已提交
1389

1390
	skb_flow_dissector_init(dissector, keys, cnt);
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
}

static struct fl_flow_mask *fl_create_new_mask(struct cls_fl_head *head,
					       struct fl_flow_mask *mask)
{
	struct fl_flow_mask *newmask;
	int err;

	newmask = kzalloc(sizeof(*newmask), GFP_KERNEL);
	if (!newmask)
		return ERR_PTR(-ENOMEM);

	fl_mask_copy(newmask, mask);

1405 1406 1407 1408
	if ((newmask->key.tp_min.dst && newmask->key.tp_max.dst) ||
	    (newmask->key.tp_min.src && newmask->key.tp_max.src))
		newmask->flags |= TCA_FLOWER_MASK_FLAGS_RANGE;

1409 1410 1411 1412
	err = fl_init_mask_hashtable(newmask);
	if (err)
		goto errout_free;

1413
	fl_init_dissector(&newmask->dissector, &newmask->key);
1414 1415 1416

	INIT_LIST_HEAD_RCU(&newmask->filters);

1417
	refcount_set(&newmask->refcnt, 1);
1418 1419
	err = rhashtable_replace_fast(&head->ht, &mask->ht_node,
				      &newmask->ht_node, mask_ht_params);
1420 1421 1422
	if (err)
		goto errout_destroy;

1423
	spin_lock(&head->masks_lock);
1424
	list_add_tail_rcu(&newmask->list, &head->masks);
1425
	spin_unlock(&head->masks_lock);
1426 1427 1428 1429 1430 1431 1432 1433 1434

	return newmask;

errout_destroy:
	rhashtable_destroy(&newmask->ht);
errout_free:
	kfree(newmask);

	return ERR_PTR(err);
J
Jiri Pirko 已提交
1435 1436 1437
}

static int fl_check_assign_mask(struct cls_fl_head *head,
1438 1439
				struct cls_fl_filter *fnew,
				struct cls_fl_filter *fold,
J
Jiri Pirko 已提交
1440 1441
				struct fl_flow_mask *mask)
{
1442
	struct fl_flow_mask *newmask;
1443
	int ret = 0;
J
Jiri Pirko 已提交
1444

1445
	rcu_read_lock();
1446 1447 1448

	/* Insert mask as temporary node to prevent concurrent creation of mask
	 * with same key. Any concurrent lookups with same key will return
1449
	 * -EAGAIN because mask's refcnt is zero.
1450 1451 1452 1453
	 */
	fnew->mask = rhashtable_lookup_get_insert_fast(&head->ht,
						       &mask->ht_node,
						       mask_ht_params);
1454
	if (!fnew->mask) {
1455 1456
		rcu_read_unlock();

1457 1458 1459 1460
		if (fold) {
			ret = -EINVAL;
			goto errout_cleanup;
		}
J
Jiri Pirko 已提交
1461

1462
		newmask = fl_create_new_mask(head, mask);
1463 1464 1465 1466
		if (IS_ERR(newmask)) {
			ret = PTR_ERR(newmask);
			goto errout_cleanup;
		}
J
Jiri Pirko 已提交
1467

1468
		fnew->mask = newmask;
1469
		return 0;
1470 1471
	} else if (IS_ERR(fnew->mask)) {
		ret = PTR_ERR(fnew->mask);
1472
	} else if (fold && fold->mask != fnew->mask) {
1473 1474 1475 1476
		ret = -EINVAL;
	} else if (!refcount_inc_not_zero(&fnew->mask->refcnt)) {
		/* Mask was deleted concurrently, try again */
		ret = -EAGAIN;
1477
	}
1478 1479
	rcu_read_unlock();
	return ret;
1480 1481 1482 1483 1484

errout_cleanup:
	rhashtable_remove_fast(&head->ht, &mask->ht_node,
			       mask_ht_params);
	return ret;
J
Jiri Pirko 已提交
1485 1486 1487 1488 1489
}

static int fl_set_parms(struct net *net, struct tcf_proto *tp,
			struct cls_fl_filter *f, struct fl_flow_mask *mask,
			unsigned long base, struct nlattr **tb,
1490
			struct nlattr *est, bool ovr,
1491
			struct fl_flow_tmplt *tmplt, bool rtnl_held,
1492
			struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
1493 1494 1495
{
	int err;

1496
	err = tcf_exts_validate(net, tp, tb, est, &f->exts, ovr, rtnl_held,
1497
				extack);
J
Jiri Pirko 已提交
1498 1499 1500 1501 1502
	if (err < 0)
		return err;

	if (tb[TCA_FLOWER_CLASSID]) {
		f->res.classid = nla_get_u32(tb[TCA_FLOWER_CLASSID]);
1503 1504
		if (!rtnl_held)
			rtnl_lock();
J
Jiri Pirko 已提交
1505
		tcf_bind_filter(tp, &f->res, base);
1506 1507
		if (!rtnl_held)
			rtnl_unlock();
J
Jiri Pirko 已提交
1508 1509
	}

1510
	err = fl_set_key(net, tb, &f->key, &mask->key, extack);
J
Jiri Pirko 已提交
1511
	if (err)
1512
		return err;
J
Jiri Pirko 已提交
1513 1514 1515 1516

	fl_mask_update_range(mask);
	fl_set_masked_key(&f->mkey, &f->key, mask);

1517 1518 1519 1520 1521
	if (!fl_mask_fits_tmplt(tmplt, mask)) {
		NL_SET_ERR_MSG_MOD(extack, "Mask does not fit the template");
		return -EINVAL;
	}

J
Jiri Pirko 已提交
1522 1523 1524
	return 0;
}

1525 1526 1527 1528 1529 1530 1531
static int fl_ht_insert_unique(struct cls_fl_filter *fnew,
			       struct cls_fl_filter *fold,
			       bool *in_ht)
{
	struct fl_flow_mask *mask = fnew->mask;
	int err;

1532 1533 1534
	err = rhashtable_lookup_insert_fast(&mask->ht,
					    &fnew->ht_node,
					    mask->filter_ht_params);
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
	if (err) {
		*in_ht = false;
		/* It is okay if filter with same key exists when
		 * overwriting.
		 */
		return fold && err == -EEXIST ? 0 : err;
	}

	*in_ht = true;
	return 0;
}

J
Jiri Pirko 已提交
1547 1548 1549
static int fl_change(struct net *net, struct sk_buff *in_skb,
		     struct tcf_proto *tp, unsigned long base,
		     u32 handle, struct nlattr **tca,
1550 1551
		     void **arg, bool ovr, bool rtnl_held,
		     struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
1552
{
1553
	struct cls_fl_head *head = fl_head_dereference(tp);
1554
	struct cls_fl_filter *fold = *arg;
J
Jiri Pirko 已提交
1555
	struct cls_fl_filter *fnew;
1556
	struct fl_flow_mask *mask;
1557
	struct nlattr **tb;
1558
	bool in_ht;
J
Jiri Pirko 已提交
1559 1560
	int err;

1561 1562 1563 1564
	if (!tca[TCA_OPTIONS]) {
		err = -EINVAL;
		goto errout_fold;
	}
J
Jiri Pirko 已提交
1565

1566
	mask = kzalloc(sizeof(struct fl_flow_mask), GFP_KERNEL);
1567 1568 1569 1570
	if (!mask) {
		err = -ENOBUFS;
		goto errout_fold;
	}
1571

1572 1573 1574 1575 1576 1577
	tb = kcalloc(TCA_FLOWER_MAX + 1, sizeof(struct nlattr *), GFP_KERNEL);
	if (!tb) {
		err = -ENOBUFS;
		goto errout_mask_alloc;
	}

1578 1579
	err = nla_parse_nested_deprecated(tb, TCA_FLOWER_MAX,
					  tca[TCA_OPTIONS], fl_policy, NULL);
J
Jiri Pirko 已提交
1580
	if (err < 0)
1581
		goto errout_tb;
J
Jiri Pirko 已提交
1582

1583 1584 1585 1586
	if (fold && handle && fold->handle != handle) {
		err = -EINVAL;
		goto errout_tb;
	}
J
Jiri Pirko 已提交
1587 1588

	fnew = kzalloc(sizeof(*fnew), GFP_KERNEL);
1589 1590 1591 1592
	if (!fnew) {
		err = -ENOBUFS;
		goto errout_tb;
	}
1593
	INIT_LIST_HEAD(&fnew->hw_list);
1594
	refcount_set(&fnew->refcnt, 1);
J
Jiri Pirko 已提交
1595

1596
	err = tcf_exts_init(&fnew->exts, net, TCA_FLOWER_ACT, 0);
1597 1598
	if (err < 0)
		goto errout;
J
Jiri Pirko 已提交
1599

1600 1601 1602 1603 1604
	if (tb[TCA_FLOWER_FLAGS]) {
		fnew->flags = nla_get_u32(tb[TCA_FLOWER_FLAGS]);

		if (!tc_flags_valid(fnew->flags)) {
			err = -EINVAL;
1605
			goto errout;
1606 1607
		}
	}
1608

1609
	err = fl_set_parms(net, tp, fnew, mask, base, tb, tca[TCA_RATE], ovr,
1610
			   tp->chain->tmplt_priv, rtnl_held, extack);
J
Jiri Pirko 已提交
1611
	if (err)
1612
		goto errout;
J
Jiri Pirko 已提交
1613

1614
	err = fl_check_assign_mask(head, fnew, fold, mask);
J
Jiri Pirko 已提交
1615
	if (err)
1616 1617
		goto errout;

1618 1619 1620 1621
	err = fl_ht_insert_unique(fnew, fold, &in_ht);
	if (err)
		goto errout_mask;

1622
	if (!tc_skip_hw(fnew->flags)) {
1623
		err = fl_hw_replace_filter(tp, fnew, rtnl_held, extack);
1624
		if (err)
1625
			goto errout_ht;
1626
	}
1627

1628 1629 1630
	if (!tc_in_hw(fnew->flags))
		fnew->flags |= TCA_CLS_FLAGS_NOT_IN_HW;

1631 1632
	spin_lock(&tp->lock);

1633 1634 1635 1636 1637 1638 1639 1640
	/* tp was deleted concurrently. -EAGAIN will cause caller to lookup
	 * proto again or create new one, if necessary.
	 */
	if (tp->deleting) {
		err = -EAGAIN;
		goto errout_hw;
	}

1641
	if (fold) {
1642 1643 1644 1645 1646 1647
		/* Fold filter was deleted concurrently. Retry lookup. */
		if (fold->deleted) {
			err = -EAGAIN;
			goto errout_hw;
		}

1648 1649
		fnew->handle = handle;

1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
		if (!in_ht) {
			struct rhashtable_params params =
				fnew->mask->filter_ht_params;

			err = rhashtable_insert_fast(&fnew->mask->ht,
						     &fnew->ht_node,
						     params);
			if (err)
				goto errout_hw;
			in_ht = true;
		}
1661

1662
		refcount_inc(&fnew->refcnt);
1663 1664 1665
		rhashtable_remove_fast(&fold->mask->ht,
				       &fold->ht_node,
				       fold->mask->filter_ht_params);
1666
		idr_replace(&head->handle_idr, fnew, fnew->handle);
1667
		list_replace_rcu(&fold->list, &fnew->list);
1668
		fold->deleted = true;
1669

1670 1671
		spin_unlock(&tp->lock);

1672
		fl_mask_put(head, fold->mask);
1673
		if (!tc_skip_hw(fold->flags))
1674
			fl_hw_destroy_filter(tp, fold, rtnl_held, NULL);
J
Jiri Pirko 已提交
1675
		tcf_unbind_filter(tp, &fold->res);
1676 1677 1678 1679 1680
		/* Caller holds reference to fold, so refcnt is always > 0
		 * after this.
		 */
		refcount_dec(&fold->refcnt);
		__fl_put(fold);
J
Jiri Pirko 已提交
1681
	} else {
1682 1683 1684 1685
		if (handle) {
			/* user specifies a handle and it doesn't exist */
			err = idr_alloc_u32(&head->handle_idr, fnew, &handle,
					    handle, GFP_ATOMIC);
1686 1687 1688 1689 1690 1691 1692 1693 1694

			/* Filter with specified handle was concurrently
			 * inserted after initial check in cls_api. This is not
			 * necessarily an error if NLM_F_EXCL is not set in
			 * message flags. Returning EAGAIN will cause cls_api to
			 * try to update concurrently inserted rule.
			 */
			if (err == -ENOSPC)
				err = -EAGAIN;
1695 1696 1697 1698 1699 1700 1701 1702
		} else {
			handle = 1;
			err = idr_alloc_u32(&head->handle_idr, fnew, &handle,
					    INT_MAX, GFP_ATOMIC);
		}
		if (err)
			goto errout_hw;

1703
		refcount_inc(&fnew->refcnt);
1704
		fnew->handle = handle;
1705
		list_add_tail_rcu(&fnew->list, &fnew->mask->filters);
1706
		spin_unlock(&tp->lock);
J
Jiri Pirko 已提交
1707 1708
	}

1709 1710
	*arg = fnew;

1711
	kfree(tb);
1712
	tcf_queue_work(&mask->rwork, fl_uninit_mask_free_work);
J
Jiri Pirko 已提交
1713 1714
	return 0;

1715 1716
errout_ht:
	spin_lock(&tp->lock);
1717
errout_hw:
1718
	fnew->deleted = true;
1719
	spin_unlock(&tp->lock);
1720
	if (!tc_skip_hw(fnew->flags))
1721
		fl_hw_destroy_filter(tp, fnew, rtnl_held, NULL);
1722 1723 1724
	if (in_ht)
		rhashtable_remove_fast(&fnew->mask->ht, &fnew->ht_node,
				       fnew->mask->filter_ht_params);
1725
errout_mask:
1726
	fl_mask_put(head, fnew->mask);
J
Jiri Pirko 已提交
1727
errout:
1728
	__fl_put(fnew);
1729 1730
errout_tb:
	kfree(tb);
1731
errout_mask_alloc:
1732
	tcf_queue_work(&mask->rwork, fl_uninit_mask_free_work);
1733 1734 1735
errout_fold:
	if (fold)
		__fl_put(fold);
J
Jiri Pirko 已提交
1736 1737 1738
	return err;
}

1739
static int fl_delete(struct tcf_proto *tp, void *arg, bool *last,
1740
		     bool rtnl_held, struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
1741
{
1742
	struct cls_fl_head *head = fl_head_dereference(tp);
1743
	struct cls_fl_filter *f = arg;
1744 1745
	bool last_on_mask;
	int err = 0;
J
Jiri Pirko 已提交
1746

1747
	err = __fl_delete(tp, f, &last_on_mask, rtnl_held, extack);
1748
	*last = list_empty(&head->masks);
1749 1750
	__fl_put(f);

1751
	return err;
J
Jiri Pirko 已提交
1752 1753
}

1754 1755
static void fl_walk(struct tcf_proto *tp, struct tcf_walker *arg,
		    bool rtnl_held)
J
Jiri Pirko 已提交
1756
{
1757 1758
	struct cls_fl_head *head = fl_head_dereference(tp);
	unsigned long id = arg->cookie, tmp;
J
Jiri Pirko 已提交
1759
	struct cls_fl_filter *f;
1760

1761 1762
	arg->count = arg->skip;

1763 1764 1765 1766
	idr_for_each_entry_continue_ul(&head->handle_idr, f, tmp, id) {
		/* don't return filters that are being deleted */
		if (!refcount_inc_not_zero(&f->refcnt))
			continue;
1767
		if (arg->fn(tp, f, arg) < 0) {
1768
			__fl_put(f);
1769 1770
			arg->stop = 1;
			break;
1771
		}
1772
		__fl_put(f);
1773
		arg->count++;
J
Jiri Pirko 已提交
1774
	}
1775
	arg->cookie = id;
J
Jiri Pirko 已提交
1776 1777
}

1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802
static struct cls_fl_filter *
fl_get_next_hw_filter(struct tcf_proto *tp, struct cls_fl_filter *f, bool add)
{
	struct cls_fl_head *head = fl_head_dereference(tp);

	spin_lock(&tp->lock);
	if (list_empty(&head->hw_filters)) {
		spin_unlock(&tp->lock);
		return NULL;
	}

	if (!f)
		f = list_entry(&head->hw_filters, struct cls_fl_filter,
			       hw_list);
	list_for_each_entry_continue(f, &head->hw_filters, hw_list) {
		if (!(add && f->deleted) && refcount_inc_not_zero(&f->refcnt)) {
			spin_unlock(&tp->lock);
			return f;
		}
	}

	spin_unlock(&tp->lock);
	return NULL;
}

1803 1804 1805 1806 1807
static int fl_reoffload(struct tcf_proto *tp, bool add, tc_setup_cb_t *cb,
			void *cb_priv, struct netlink_ext_ack *extack)
{
	struct tc_cls_flower_offload cls_flower = {};
	struct tcf_block *block = tp->chain->block;
1808
	struct cls_fl_filter *f = NULL;
1809 1810
	int err;

1811 1812 1813 1814 1815
	/* hw_filters list can only be changed by hw offload functions after
	 * obtaining rtnl lock. Make sure it is not changed while reoffload is
	 * iterating it.
	 */
	ASSERT_RTNL();
1816

1817
	while ((f = fl_get_next_hw_filter(tp, f, add))) {
1818 1819 1820 1821 1822 1823
		cls_flower.rule =
			flow_rule_alloc(tcf_exts_num_actions(&f->exts));
		if (!cls_flower.rule) {
			__fl_put(f);
			return -ENOMEM;
		}
1824

1825
		tc_cls_common_offload_init(&cls_flower.common, tp, f->flags,
1826
					   extack);
1827 1828 1829 1830 1831 1832 1833 1834 1835
		cls_flower.command = add ?
			TC_CLSFLOWER_REPLACE : TC_CLSFLOWER_DESTROY;
		cls_flower.cookie = (unsigned long)f;
		cls_flower.rule->match.dissector = &f->mask->dissector;
		cls_flower.rule->match.mask = &f->mask->key;
		cls_flower.rule->match.key = &f->mkey;

		err = tc_setup_flow_action(&cls_flower.rule->action, &f->exts);
		if (err) {
1836
			kfree(cls_flower.rule);
1837 1838 1839 1840
			if (tc_skip_sw(f->flags)) {
				NL_SET_ERR_MSG_MOD(extack, "Failed to setup flow action");
				__fl_put(f);
				return err;
1841
			}
1842 1843
			goto next_flow;
		}
1844

1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
		cls_flower.classid = f->res.classid;

		err = cb(TC_SETUP_CLSFLOWER, &cls_flower, cb_priv);
		kfree(cls_flower.rule);

		if (err) {
			if (add && tc_skip_sw(f->flags)) {
				__fl_put(f);
				return err;
			}
			goto next_flow;
1856
		}
1857 1858 1859 1860 1861 1862 1863

		spin_lock(&tp->lock);
		tc_cls_offload_cnt_update(block, &f->in_hw_count, &f->flags,
					  add);
		spin_unlock(&tp->lock);
next_flow:
		__fl_put(f);
1864 1865 1866 1867 1868
	}

	return 0;
}

1869 1870
static int fl_hw_create_tmplt(struct tcf_chain *chain,
			      struct fl_flow_tmplt *tmplt)
1871 1872 1873 1874
{
	struct tc_cls_flower_offload cls_flower = {};
	struct tcf_block *block = chain->block;

1875
	cls_flower.rule = flow_rule_alloc(0);
1876 1877 1878
	if (!cls_flower.rule)
		return -ENOMEM;

1879 1880 1881
	cls_flower.common.chain_index = chain->index;
	cls_flower.command = TC_CLSFLOWER_TMPLT_CREATE;
	cls_flower.cookie = (unsigned long) tmplt;
1882 1883 1884
	cls_flower.rule->match.dissector = &tmplt->dissector;
	cls_flower.rule->match.mask = &tmplt->mask;
	cls_flower.rule->match.key = &tmplt->dummy_key;
1885 1886 1887 1888

	/* We don't care if driver (any of them) fails to handle this
	 * call. It serves just as a hint for it.
	 */
1889
	tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, false);
1890 1891 1892
	kfree(cls_flower.rule);

	return 0;
1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904
}

static void fl_hw_destroy_tmplt(struct tcf_chain *chain,
				struct fl_flow_tmplt *tmplt)
{
	struct tc_cls_flower_offload cls_flower = {};
	struct tcf_block *block = chain->block;

	cls_flower.common.chain_index = chain->index;
	cls_flower.command = TC_CLSFLOWER_TMPLT_DESTROY;
	cls_flower.cookie = (unsigned long) tmplt;

1905
	tc_setup_cb_call(block, TC_SETUP_CLSFLOWER, &cls_flower, false);
1906 1907
}

1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921
static void *fl_tmplt_create(struct net *net, struct tcf_chain *chain,
			     struct nlattr **tca,
			     struct netlink_ext_ack *extack)
{
	struct fl_flow_tmplt *tmplt;
	struct nlattr **tb;
	int err;

	if (!tca[TCA_OPTIONS])
		return ERR_PTR(-EINVAL);

	tb = kcalloc(TCA_FLOWER_MAX + 1, sizeof(struct nlattr *), GFP_KERNEL);
	if (!tb)
		return ERR_PTR(-ENOBUFS);
1922 1923
	err = nla_parse_nested_deprecated(tb, TCA_FLOWER_MAX,
					  tca[TCA_OPTIONS], fl_policy, NULL);
1924 1925 1926 1927
	if (err)
		goto errout_tb;

	tmplt = kzalloc(sizeof(*tmplt), GFP_KERNEL);
1928 1929
	if (!tmplt) {
		err = -ENOMEM;
1930
		goto errout_tb;
1931
	}
1932 1933 1934 1935 1936 1937 1938
	tmplt->chain = chain;
	err = fl_set_key(net, tb, &tmplt->dummy_key, &tmplt->mask, extack);
	if (err)
		goto errout_tmplt;

	fl_init_dissector(&tmplt->dissector, &tmplt->mask);

1939 1940 1941
	err = fl_hw_create_tmplt(chain, tmplt);
	if (err)
		goto errout_tmplt;
1942

1943
	kfree(tb);
1944 1945 1946 1947 1948 1949 1950 1951 1952
	return tmplt;

errout_tmplt:
	kfree(tmplt);
errout_tb:
	kfree(tb);
	return ERR_PTR(err);
}

1953 1954 1955 1956
static void fl_tmplt_destroy(void *tmplt_priv)
{
	struct fl_flow_tmplt *tmplt = tmplt_priv;

1957 1958
	fl_hw_destroy_tmplt(tmplt->chain, tmplt);
	kfree(tmplt);
1959 1960
}

J
Jiri Pirko 已提交
1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979
static int fl_dump_key_val(struct sk_buff *skb,
			   void *val, int val_type,
			   void *mask, int mask_type, int len)
{
	int err;

	if (!memchr_inv(mask, 0, len))
		return 0;
	err = nla_put(skb, val_type, len, val);
	if (err)
		return err;
	if (mask_type != TCA_FLOWER_UNSPEC) {
		err = nla_put(skb, mask_type, len, mask);
		if (err)
			return err;
	}
	return 0;
}

1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999
static int fl_dump_key_port_range(struct sk_buff *skb, struct fl_flow_key *key,
				  struct fl_flow_key *mask)
{
	if (fl_dump_key_val(skb, &key->tp_min.dst, TCA_FLOWER_KEY_PORT_DST_MIN,
			    &mask->tp_min.dst, TCA_FLOWER_UNSPEC,
			    sizeof(key->tp_min.dst)) ||
	    fl_dump_key_val(skb, &key->tp_max.dst, TCA_FLOWER_KEY_PORT_DST_MAX,
			    &mask->tp_max.dst, TCA_FLOWER_UNSPEC,
			    sizeof(key->tp_max.dst)) ||
	    fl_dump_key_val(skb, &key->tp_min.src, TCA_FLOWER_KEY_PORT_SRC_MIN,
			    &mask->tp_min.src, TCA_FLOWER_UNSPEC,
			    sizeof(key->tp_min.src)) ||
	    fl_dump_key_val(skb, &key->tp_max.src, TCA_FLOWER_KEY_PORT_SRC_MAX,
			    &mask->tp_max.src, TCA_FLOWER_UNSPEC,
			    sizeof(key->tp_max.src)))
		return -1;

	return 0;
}

2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034
static int fl_dump_key_mpls(struct sk_buff *skb,
			    struct flow_dissector_key_mpls *mpls_key,
			    struct flow_dissector_key_mpls *mpls_mask)
{
	int err;

	if (!memchr_inv(mpls_mask, 0, sizeof(*mpls_mask)))
		return 0;
	if (mpls_mask->mpls_ttl) {
		err = nla_put_u8(skb, TCA_FLOWER_KEY_MPLS_TTL,
				 mpls_key->mpls_ttl);
		if (err)
			return err;
	}
	if (mpls_mask->mpls_tc) {
		err = nla_put_u8(skb, TCA_FLOWER_KEY_MPLS_TC,
				 mpls_key->mpls_tc);
		if (err)
			return err;
	}
	if (mpls_mask->mpls_label) {
		err = nla_put_u32(skb, TCA_FLOWER_KEY_MPLS_LABEL,
				  mpls_key->mpls_label);
		if (err)
			return err;
	}
	if (mpls_mask->mpls_bos) {
		err = nla_put_u8(skb, TCA_FLOWER_KEY_MPLS_BOS,
				 mpls_key->mpls_bos);
		if (err)
			return err;
	}
	return 0;
}

2035
static int fl_dump_key_ip(struct sk_buff *skb, bool encap,
2036 2037 2038
			  struct flow_dissector_key_ip *key,
			  struct flow_dissector_key_ip *mask)
{
2039 2040 2041 2042 2043 2044 2045
	int tos_key = encap ? TCA_FLOWER_KEY_ENC_IP_TOS : TCA_FLOWER_KEY_IP_TOS;
	int ttl_key = encap ? TCA_FLOWER_KEY_ENC_IP_TTL : TCA_FLOWER_KEY_IP_TTL;
	int tos_mask = encap ? TCA_FLOWER_KEY_ENC_IP_TOS_MASK : TCA_FLOWER_KEY_IP_TOS_MASK;
	int ttl_mask = encap ? TCA_FLOWER_KEY_ENC_IP_TTL_MASK : TCA_FLOWER_KEY_IP_TTL_MASK;

	if (fl_dump_key_val(skb, &key->tos, tos_key, &mask->tos, tos_mask, sizeof(key->tos)) ||
	    fl_dump_key_val(skb, &key->ttl, ttl_key, &mask->ttl, ttl_mask, sizeof(key->ttl)))
2046 2047 2048 2049 2050
		return -1;

	return 0;
}

2051
static int fl_dump_key_vlan(struct sk_buff *skb,
2052
			    int vlan_id_key, int vlan_prio_key,
2053 2054 2055 2056 2057 2058 2059 2060
			    struct flow_dissector_key_vlan *vlan_key,
			    struct flow_dissector_key_vlan *vlan_mask)
{
	int err;

	if (!memchr_inv(vlan_mask, 0, sizeof(*vlan_mask)))
		return 0;
	if (vlan_mask->vlan_id) {
2061
		err = nla_put_u16(skb, vlan_id_key,
2062 2063 2064 2065 2066
				  vlan_key->vlan_id);
		if (err)
			return err;
	}
	if (vlan_mask->vlan_priority) {
2067
		err = nla_put_u8(skb, vlan_prio_key,
2068 2069 2070 2071 2072 2073 2074
				 vlan_key->vlan_priority);
		if (err)
			return err;
	}
	return 0;
}

2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099
static void fl_get_key_flag(u32 dissector_key, u32 dissector_mask,
			    u32 *flower_key, u32 *flower_mask,
			    u32 flower_flag_bit, u32 dissector_flag_bit)
{
	if (dissector_mask & dissector_flag_bit) {
		*flower_mask |= flower_flag_bit;
		if (dissector_key & dissector_flag_bit)
			*flower_key |= flower_flag_bit;
	}
}

static int fl_dump_key_flags(struct sk_buff *skb, u32 flags_key, u32 flags_mask)
{
	u32 key, mask;
	__be32 _key, _mask;
	int err;

	if (!memchr_inv(&flags_mask, 0, sizeof(flags_mask)))
		return 0;

	key = 0;
	mask = 0;

	fl_get_key_flag(flags_key, flags_mask, &key, &mask,
			TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT, FLOW_DIS_IS_FRAGMENT);
2100 2101 2102
	fl_get_key_flag(flags_key, flags_mask, &key, &mask,
			TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST,
			FLOW_DIS_FIRST_FRAG);
2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113

	_key = cpu_to_be32(key);
	_mask = cpu_to_be32(mask);

	err = nla_put(skb, TCA_FLOWER_KEY_FLAGS, 4, &_key);
	if (err)
		return err;

	return nla_put(skb, TCA_FLOWER_KEY_FLAGS_MASK, 4, &_mask);
}

2114 2115 2116 2117 2118 2119 2120
static int fl_dump_key_geneve_opt(struct sk_buff *skb,
				  struct flow_dissector_key_enc_opts *enc_opts)
{
	struct geneve_opt *opt;
	struct nlattr *nest;
	int opt_off = 0;

2121
	nest = nla_nest_start_noflag(skb, TCA_FLOWER_KEY_ENC_OPTS_GENEVE);
2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147
	if (!nest)
		goto nla_put_failure;

	while (enc_opts->len > opt_off) {
		opt = (struct geneve_opt *)&enc_opts->data[opt_off];

		if (nla_put_be16(skb, TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS,
				 opt->opt_class))
			goto nla_put_failure;
		if (nla_put_u8(skb, TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE,
			       opt->type))
			goto nla_put_failure;
		if (nla_put(skb, TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA,
			    opt->length * 4, opt->opt_data))
			goto nla_put_failure;

		opt_off += sizeof(struct geneve_opt) + opt->length * 4;
	}
	nla_nest_end(skb, nest);
	return 0;

nla_put_failure:
	nla_nest_cancel(skb, nest);
	return -EMSGSIZE;
}

2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181
static int fl_dump_key_ct(struct sk_buff *skb,
			  struct flow_dissector_key_ct *key,
			  struct flow_dissector_key_ct *mask)
{
	if (IS_ENABLED(CONFIG_NF_CONNTRACK) &&
	    fl_dump_key_val(skb, &key->ct_state, TCA_FLOWER_KEY_CT_STATE,
			    &mask->ct_state, TCA_FLOWER_KEY_CT_STATE_MASK,
			    sizeof(key->ct_state)))
		goto nla_put_failure;

	if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
	    fl_dump_key_val(skb, &key->ct_zone, TCA_FLOWER_KEY_CT_ZONE,
			    &mask->ct_zone, TCA_FLOWER_KEY_CT_ZONE_MASK,
			    sizeof(key->ct_zone)))
		goto nla_put_failure;

	if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) &&
	    fl_dump_key_val(skb, &key->ct_mark, TCA_FLOWER_KEY_CT_MARK,
			    &mask->ct_mark, TCA_FLOWER_KEY_CT_MARK_MASK,
			    sizeof(key->ct_mark)))
		goto nla_put_failure;

	if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
	    fl_dump_key_val(skb, &key->ct_labels, TCA_FLOWER_KEY_CT_LABELS,
			    &mask->ct_labels, TCA_FLOWER_KEY_CT_LABELS_MASK,
			    sizeof(key->ct_labels)))
		goto nla_put_failure;

	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

2182 2183 2184 2185 2186 2187 2188 2189 2190
static int fl_dump_key_options(struct sk_buff *skb, int enc_opt_type,
			       struct flow_dissector_key_enc_opts *enc_opts)
{
	struct nlattr *nest;
	int err;

	if (!enc_opts->len)
		return 0;

2191
	nest = nla_nest_start_noflag(skb, enc_opt_type);
2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224
	if (!nest)
		goto nla_put_failure;

	switch (enc_opts->dst_opt_type) {
	case TUNNEL_GENEVE_OPT:
		err = fl_dump_key_geneve_opt(skb, enc_opts);
		if (err)
			goto nla_put_failure;
		break;
	default:
		goto nla_put_failure;
	}
	nla_nest_end(skb, nest);
	return 0;

nla_put_failure:
	nla_nest_cancel(skb, nest);
	return -EMSGSIZE;
}

static int fl_dump_key_enc_opt(struct sk_buff *skb,
			       struct flow_dissector_key_enc_opts *key_opts,
			       struct flow_dissector_key_enc_opts *msk_opts)
{
	int err;

	err = fl_dump_key_options(skb, TCA_FLOWER_KEY_ENC_OPTS, key_opts);
	if (err)
		return err;

	return fl_dump_key_options(skb, TCA_FLOWER_KEY_ENC_OPTS_MASK, msk_opts);
}

2225 2226
static int fl_dump_key(struct sk_buff *skb, struct net *net,
		       struct fl_flow_key *key, struct fl_flow_key *mask)
J
Jiri Pirko 已提交
2227
{
2228
	if (mask->meta.ingress_ifindex) {
J
Jiri Pirko 已提交
2229 2230
		struct net_device *dev;

2231
		dev = __dev_get_by_index(net, key->meta.ingress_ifindex);
J
Jiri Pirko 已提交
2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245
		if (dev && nla_put_string(skb, TCA_FLOWER_INDEV, dev->name))
			goto nla_put_failure;
	}

	if (fl_dump_key_val(skb, key->eth.dst, TCA_FLOWER_KEY_ETH_DST,
			    mask->eth.dst, TCA_FLOWER_KEY_ETH_DST_MASK,
			    sizeof(key->eth.dst)) ||
	    fl_dump_key_val(skb, key->eth.src, TCA_FLOWER_KEY_ETH_SRC,
			    mask->eth.src, TCA_FLOWER_KEY_ETH_SRC_MASK,
			    sizeof(key->eth.src)) ||
	    fl_dump_key_val(skb, &key->basic.n_proto, TCA_FLOWER_KEY_ETH_TYPE,
			    &mask->basic.n_proto, TCA_FLOWER_UNSPEC,
			    sizeof(key->basic.n_proto)))
		goto nla_put_failure;
2246

2247 2248 2249
	if (fl_dump_key_mpls(skb, &key->mpls, &mask->mpls))
		goto nla_put_failure;

2250 2251
	if (fl_dump_key_vlan(skb, TCA_FLOWER_KEY_VLAN_ID,
			     TCA_FLOWER_KEY_VLAN_PRIO, &key->vlan, &mask->vlan))
2252 2253
		goto nla_put_failure;

2254 2255 2256 2257
	if (fl_dump_key_vlan(skb, TCA_FLOWER_KEY_CVLAN_ID,
			     TCA_FLOWER_KEY_CVLAN_PRIO,
			     &key->cvlan, &mask->cvlan) ||
	    (mask->cvlan.vlan_tpid &&
2258 2259
	     nla_put_be16(skb, TCA_FLOWER_KEY_VLAN_ETH_TYPE,
			  key->cvlan.vlan_tpid)))
2260 2261
		goto nla_put_failure;

2262 2263 2264 2265 2266 2267 2268 2269 2270 2271
	if (mask->basic.n_proto) {
		if (mask->cvlan.vlan_tpid) {
			if (nla_put_be16(skb, TCA_FLOWER_KEY_CVLAN_ETH_TYPE,
					 key->basic.n_proto))
				goto nla_put_failure;
		} else if (mask->vlan.vlan_tpid) {
			if (nla_put_be16(skb, TCA_FLOWER_KEY_VLAN_ETH_TYPE,
					 key->basic.n_proto))
				goto nla_put_failure;
		}
2272 2273
	}

J
Jiri Pirko 已提交
2274 2275
	if ((key->basic.n_proto == htons(ETH_P_IP) ||
	     key->basic.n_proto == htons(ETH_P_IPV6)) &&
2276
	    (fl_dump_key_val(skb, &key->basic.ip_proto, TCA_FLOWER_KEY_IP_PROTO,
J
Jiri Pirko 已提交
2277
			    &mask->basic.ip_proto, TCA_FLOWER_UNSPEC,
2278
			    sizeof(key->basic.ip_proto)) ||
2279
	    fl_dump_key_ip(skb, false, &key->ip, &mask->ip)))
J
Jiri Pirko 已提交
2280 2281
		goto nla_put_failure;

2282
	if (key->control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS &&
J
Jiri Pirko 已提交
2283 2284 2285 2286 2287 2288 2289
	    (fl_dump_key_val(skb, &key->ipv4.src, TCA_FLOWER_KEY_IPV4_SRC,
			     &mask->ipv4.src, TCA_FLOWER_KEY_IPV4_SRC_MASK,
			     sizeof(key->ipv4.src)) ||
	     fl_dump_key_val(skb, &key->ipv4.dst, TCA_FLOWER_KEY_IPV4_DST,
			     &mask->ipv4.dst, TCA_FLOWER_KEY_IPV4_DST_MASK,
			     sizeof(key->ipv4.dst))))
		goto nla_put_failure;
2290
	else if (key->control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS &&
J
Jiri Pirko 已提交
2291 2292 2293 2294 2295 2296 2297 2298 2299 2300
		 (fl_dump_key_val(skb, &key->ipv6.src, TCA_FLOWER_KEY_IPV6_SRC,
				  &mask->ipv6.src, TCA_FLOWER_KEY_IPV6_SRC_MASK,
				  sizeof(key->ipv6.src)) ||
		  fl_dump_key_val(skb, &key->ipv6.dst, TCA_FLOWER_KEY_IPV6_DST,
				  &mask->ipv6.dst, TCA_FLOWER_KEY_IPV6_DST_MASK,
				  sizeof(key->ipv6.dst))))
		goto nla_put_failure;

	if (key->basic.ip_proto == IPPROTO_TCP &&
	    (fl_dump_key_val(skb, &key->tp.src, TCA_FLOWER_KEY_TCP_SRC,
2301
			     &mask->tp.src, TCA_FLOWER_KEY_TCP_SRC_MASK,
J
Jiri Pirko 已提交
2302 2303
			     sizeof(key->tp.src)) ||
	     fl_dump_key_val(skb, &key->tp.dst, TCA_FLOWER_KEY_TCP_DST,
2304
			     &mask->tp.dst, TCA_FLOWER_KEY_TCP_DST_MASK,
2305 2306 2307 2308
			     sizeof(key->tp.dst)) ||
	     fl_dump_key_val(skb, &key->tcp.flags, TCA_FLOWER_KEY_TCP_FLAGS,
			     &mask->tcp.flags, TCA_FLOWER_KEY_TCP_FLAGS_MASK,
			     sizeof(key->tcp.flags))))
J
Jiri Pirko 已提交
2309 2310 2311
		goto nla_put_failure;
	else if (key->basic.ip_proto == IPPROTO_UDP &&
		 (fl_dump_key_val(skb, &key->tp.src, TCA_FLOWER_KEY_UDP_SRC,
2312
				  &mask->tp.src, TCA_FLOWER_KEY_UDP_SRC_MASK,
J
Jiri Pirko 已提交
2313 2314
				  sizeof(key->tp.src)) ||
		  fl_dump_key_val(skb, &key->tp.dst, TCA_FLOWER_KEY_UDP_DST,
2315
				  &mask->tp.dst, TCA_FLOWER_KEY_UDP_DST_MASK,
2316 2317 2318 2319 2320 2321 2322 2323
				  sizeof(key->tp.dst))))
		goto nla_put_failure;
	else if (key->basic.ip_proto == IPPROTO_SCTP &&
		 (fl_dump_key_val(skb, &key->tp.src, TCA_FLOWER_KEY_SCTP_SRC,
				  &mask->tp.src, TCA_FLOWER_KEY_SCTP_SRC_MASK,
				  sizeof(key->tp.src)) ||
		  fl_dump_key_val(skb, &key->tp.dst, TCA_FLOWER_KEY_SCTP_DST,
				  &mask->tp.dst, TCA_FLOWER_KEY_SCTP_DST_MASK,
J
Jiri Pirko 已提交
2324 2325
				  sizeof(key->tp.dst))))
		goto nla_put_failure;
2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347
	else if (key->basic.n_proto == htons(ETH_P_IP) &&
		 key->basic.ip_proto == IPPROTO_ICMP &&
		 (fl_dump_key_val(skb, &key->icmp.type,
				  TCA_FLOWER_KEY_ICMPV4_TYPE, &mask->icmp.type,
				  TCA_FLOWER_KEY_ICMPV4_TYPE_MASK,
				  sizeof(key->icmp.type)) ||
		  fl_dump_key_val(skb, &key->icmp.code,
				  TCA_FLOWER_KEY_ICMPV4_CODE, &mask->icmp.code,
				  TCA_FLOWER_KEY_ICMPV4_CODE_MASK,
				  sizeof(key->icmp.code))))
		goto nla_put_failure;
	else if (key->basic.n_proto == htons(ETH_P_IPV6) &&
		 key->basic.ip_proto == IPPROTO_ICMPV6 &&
		 (fl_dump_key_val(skb, &key->icmp.type,
				  TCA_FLOWER_KEY_ICMPV6_TYPE, &mask->icmp.type,
				  TCA_FLOWER_KEY_ICMPV6_TYPE_MASK,
				  sizeof(key->icmp.type)) ||
		  fl_dump_key_val(skb, &key->icmp.code,
				  TCA_FLOWER_KEY_ICMPV6_CODE, &mask->icmp.code,
				  TCA_FLOWER_KEY_ICMPV6_CODE_MASK,
				  sizeof(key->icmp.code))))
		goto nla_put_failure;
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
	else if ((key->basic.n_proto == htons(ETH_P_ARP) ||
		  key->basic.n_proto == htons(ETH_P_RARP)) &&
		 (fl_dump_key_val(skb, &key->arp.sip,
				  TCA_FLOWER_KEY_ARP_SIP, &mask->arp.sip,
				  TCA_FLOWER_KEY_ARP_SIP_MASK,
				  sizeof(key->arp.sip)) ||
		  fl_dump_key_val(skb, &key->arp.tip,
				  TCA_FLOWER_KEY_ARP_TIP, &mask->arp.tip,
				  TCA_FLOWER_KEY_ARP_TIP_MASK,
				  sizeof(key->arp.tip)) ||
		  fl_dump_key_val(skb, &key->arp.op,
				  TCA_FLOWER_KEY_ARP_OP, &mask->arp.op,
				  TCA_FLOWER_KEY_ARP_OP_MASK,
				  sizeof(key->arp.op)) ||
		  fl_dump_key_val(skb, key->arp.sha, TCA_FLOWER_KEY_ARP_SHA,
				  mask->arp.sha, TCA_FLOWER_KEY_ARP_SHA_MASK,
				  sizeof(key->arp.sha)) ||
		  fl_dump_key_val(skb, key->arp.tha, TCA_FLOWER_KEY_ARP_THA,
				  mask->arp.tha, TCA_FLOWER_KEY_ARP_THA_MASK,
				  sizeof(key->arp.tha))))
		goto nla_put_failure;
J
Jiri Pirko 已提交
2369

2370 2371 2372 2373 2374 2375
	if ((key->basic.ip_proto == IPPROTO_TCP ||
	     key->basic.ip_proto == IPPROTO_UDP ||
	     key->basic.ip_proto == IPPROTO_SCTP) &&
	     fl_dump_key_port_range(skb, key, mask))
		goto nla_put_failure;

2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398
	if (key->enc_control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS &&
	    (fl_dump_key_val(skb, &key->enc_ipv4.src,
			    TCA_FLOWER_KEY_ENC_IPV4_SRC, &mask->enc_ipv4.src,
			    TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK,
			    sizeof(key->enc_ipv4.src)) ||
	     fl_dump_key_val(skb, &key->enc_ipv4.dst,
			     TCA_FLOWER_KEY_ENC_IPV4_DST, &mask->enc_ipv4.dst,
			     TCA_FLOWER_KEY_ENC_IPV4_DST_MASK,
			     sizeof(key->enc_ipv4.dst))))
		goto nla_put_failure;
	else if (key->enc_control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS &&
		 (fl_dump_key_val(skb, &key->enc_ipv6.src,
			    TCA_FLOWER_KEY_ENC_IPV6_SRC, &mask->enc_ipv6.src,
			    TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK,
			    sizeof(key->enc_ipv6.src)) ||
		 fl_dump_key_val(skb, &key->enc_ipv6.dst,
				 TCA_FLOWER_KEY_ENC_IPV6_DST,
				 &mask->enc_ipv6.dst,
				 TCA_FLOWER_KEY_ENC_IPV6_DST_MASK,
			    sizeof(key->enc_ipv6.dst))))
		goto nla_put_failure;

	if (fl_dump_key_val(skb, &key->enc_key_id, TCA_FLOWER_KEY_ENC_KEY_ID,
2399
			    &mask->enc_key_id, TCA_FLOWER_UNSPEC,
2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
			    sizeof(key->enc_key_id)) ||
	    fl_dump_key_val(skb, &key->enc_tp.src,
			    TCA_FLOWER_KEY_ENC_UDP_SRC_PORT,
			    &mask->enc_tp.src,
			    TCA_FLOWER_KEY_ENC_UDP_SRC_PORT_MASK,
			    sizeof(key->enc_tp.src)) ||
	    fl_dump_key_val(skb, &key->enc_tp.dst,
			    TCA_FLOWER_KEY_ENC_UDP_DST_PORT,
			    &mask->enc_tp.dst,
			    TCA_FLOWER_KEY_ENC_UDP_DST_PORT_MASK,
2410
			    sizeof(key->enc_tp.dst)) ||
2411 2412
	    fl_dump_key_ip(skb, true, &key->enc_ip, &mask->enc_ip) ||
	    fl_dump_key_enc_opt(skb, &key->enc_opts, &mask->enc_opts))
2413 2414
		goto nla_put_failure;

2415 2416 2417
	if (fl_dump_key_ct(skb, &key->ct, &mask->ct))
		goto nla_put_failure;

2418 2419 2420
	if (fl_dump_key_flags(skb, key->control.flags, mask->control.flags))
		goto nla_put_failure;

2421 2422 2423 2424 2425 2426 2427
	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

static int fl_dump(struct net *net, struct tcf_proto *tp, void *fh,
2428
		   struct sk_buff *skb, struct tcmsg *t, bool rtnl_held)
2429 2430 2431 2432
{
	struct cls_fl_filter *f = fh;
	struct nlattr *nest;
	struct fl_flow_key *key, *mask;
2433
	bool skip_hw;
2434 2435 2436 2437 2438 2439

	if (!f)
		return skb->len;

	t->tcm_handle = f->handle;

2440
	nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
2441 2442 2443
	if (!nest)
		goto nla_put_failure;

2444 2445
	spin_lock(&tp->lock);

2446 2447
	if (f->res.classid &&
	    nla_put_u32(skb, TCA_FLOWER_CLASSID, f->res.classid))
2448
		goto nla_put_failure_locked;
2449 2450 2451

	key = &f->key;
	mask = &f->mask->key;
2452
	skip_hw = tc_skip_hw(f->flags);
2453 2454

	if (fl_dump_key(skb, net, key, mask))
2455
		goto nla_put_failure_locked;
2456

2457
	if (f->flags && nla_put_u32(skb, TCA_FLOWER_FLAGS, f->flags))
2458 2459 2460 2461 2462
		goto nla_put_failure_locked;

	spin_unlock(&tp->lock);

	if (!skip_hw)
2463
		fl_hw_update_stats(tp, f, rtnl_held);
2464

2465 2466 2467
	if (nla_put_u32(skb, TCA_FLOWER_IN_HW_COUNT, f->in_hw_count))
		goto nla_put_failure;

J
Jiri Pirko 已提交
2468 2469 2470 2471 2472 2473 2474 2475 2476 2477
	if (tcf_exts_dump(skb, &f->exts))
		goto nla_put_failure;

	nla_nest_end(skb, nest);

	if (tcf_exts_dump_stats(skb, &f->exts) < 0)
		goto nla_put_failure;

	return skb->len;

2478 2479
nla_put_failure_locked:
	spin_unlock(&tp->lock);
J
Jiri Pirko 已提交
2480 2481 2482 2483 2484
nla_put_failure:
	nla_nest_cancel(skb, nest);
	return -1;
}

2485 2486 2487 2488 2489 2490
static int fl_tmplt_dump(struct sk_buff *skb, struct net *net, void *tmplt_priv)
{
	struct fl_flow_tmplt *tmplt = tmplt_priv;
	struct fl_flow_key *key, *mask;
	struct nlattr *nest;

2491
	nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509
	if (!nest)
		goto nla_put_failure;

	key = &tmplt->dummy_key;
	mask = &tmplt->mask;

	if (fl_dump_key(skb, net, key, mask))
		goto nla_put_failure;

	nla_nest_end(skb, nest);

	return skb->len;

nla_put_failure:
	nla_nest_cancel(skb, nest);
	return -EMSGSIZE;
}

2510 2511 2512 2513 2514 2515 2516 2517
static void fl_bind_class(void *fh, u32 classid, unsigned long cl)
{
	struct cls_fl_filter *f = fh;

	if (f && f->res.classid == classid)
		f->res.class = cl;
}

J
Jiri Pirko 已提交
2518 2519 2520 2521 2522 2523
static struct tcf_proto_ops cls_fl_ops __read_mostly = {
	.kind		= "flower",
	.classify	= fl_classify,
	.init		= fl_init,
	.destroy	= fl_destroy,
	.get		= fl_get,
2524
	.put		= fl_put,
J
Jiri Pirko 已提交
2525 2526 2527
	.change		= fl_change,
	.delete		= fl_delete,
	.walk		= fl_walk,
2528
	.reoffload	= fl_reoffload,
J
Jiri Pirko 已提交
2529
	.dump		= fl_dump,
2530
	.bind_class	= fl_bind_class,
2531 2532 2533
	.tmplt_create	= fl_tmplt_create,
	.tmplt_destroy	= fl_tmplt_destroy,
	.tmplt_dump	= fl_tmplt_dump,
J
Jiri Pirko 已提交
2534
	.owner		= THIS_MODULE,
2535
	.flags		= TCF_PROTO_OPS_DOIT_UNLOCKED,
J
Jiri Pirko 已提交
2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553
};

static int __init cls_fl_init(void)
{
	return register_tcf_proto_ops(&cls_fl_ops);
}

static void __exit cls_fl_exit(void)
{
	unregister_tcf_proto_ops(&cls_fl_ops);
}

module_init(cls_fl_init);
module_exit(cls_fl_exit);

MODULE_AUTHOR("Jiri Pirko <jiri@resnulli.us>");
MODULE_DESCRIPTION("Flower classifier");
MODULE_LICENSE("GPL v2");