cls_flower.c 50.1 KB
Newer Older
J
Jiri Pirko 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * net/sched/cls_flower.c		Flower classifier
 *
 * Copyright (c) 2015 Jiri Pirko <jiri@resnulli.us>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/rhashtable.h>
16
#include <linux/workqueue.h>
J
Jiri Pirko 已提交
17 18 19 20

#include <linux/if_ether.h>
#include <linux/in6.h>
#include <linux/ip.h>
21
#include <linux/mpls.h>
J
Jiri Pirko 已提交
22 23 24 25 26 27

#include <net/sch_generic.h>
#include <net/pkt_cls.h>
#include <net/ip.h>
#include <net/flow_dissector.h>

28 29 30
#include <net/dst.h>
#include <net/dst_metadata.h>

J
Jiri Pirko 已提交
31 32
struct fl_flow_key {
	int	indev_ifindex;
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;
J
Jiri Pirko 已提交
56 57 58 59 60 61 62 63 64 65
} __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;
66 67 68 69 70
	struct rhash_head ht_node;
	struct rhashtable ht;
	struct rhashtable_params filter_ht_params;
	struct flow_dissector dissector;
	struct list_head filters;
71
	struct rcu_work rwork;
72
	struct list_head list;
J
Jiri Pirko 已提交
73 74
};

75 76 77 78 79 80 81
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 已提交
82 83
struct cls_fl_head {
	struct rhashtable ht;
84
	struct list_head masks;
C
Cong Wang 已提交
85
	struct rcu_work rwork;
86
	struct idr handle_idr;
J
Jiri Pirko 已提交
87 88 89
};

struct cls_fl_filter {
90
	struct fl_flow_mask *mask;
J
Jiri Pirko 已提交
91 92 93 94 95 96 97
	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;
	u32 handle;
98
	u32 flags;
99
	unsigned int in_hw_count;
C
Cong Wang 已提交
100
	struct rcu_work rwork;
101
	struct net_device *hw_dev;
J
Jiri Pirko 已提交
102 103
};

104 105 106 107 108 109 110
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 已提交
111 112 113 114 115 116 117 118 119
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);
120
	size_t i, first = 0, last;
J
Jiri Pirko 已提交
121

122 123 124 125 126 127 128 129
	for (i = 0; i < size; i++) {
		if (bytes[i]) {
			first = i;
			break;
		}
	}
	last = first;
	for (i = size - 1; i != first; i--) {
J
Jiri Pirko 已提交
130 131
		if (bytes[i]) {
			last = i;
132
			break;
J
Jiri Pirko 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
		}
	}
	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++;
}

157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
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 已提交
174 175 176 177 178 179
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));
}

180
static struct cls_fl_filter *fl_lookup(struct fl_flow_mask *mask,
181 182
				       struct fl_flow_key *mkey)
{
183 184
	return rhashtable_lookup_fast(&mask->ht, fl_key_get_start(mkey, mask),
				      mask->filter_ht_params);
185 186
}

J
Jiri Pirko 已提交
187 188 189 190 191
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 cls_fl_filter *f;
192
	struct fl_flow_mask *mask;
J
Jiri Pirko 已提交
193 194 195
	struct fl_flow_key skb_key;
	struct fl_flow_key skb_mkey;

196 197
	list_for_each_entry_rcu(mask, &head->masks, list) {
		fl_clear_masked_range(&skb_key, mask);
198

199 200 201 202 203 204 205
		skb_key.indev_ifindex = skb->skb_iif;
		/* 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);
		skb_flow_dissect(skb, &mask->dissector, &skb_key, 0);
J
Jiri Pirko 已提交
206

207
		fl_set_masked_key(&skb_mkey, &skb_key, mask);
J
Jiri Pirko 已提交
208

209 210 211 212 213
		f = fl_lookup(mask, &skb_mkey);
		if (f && !tc_skip_sw(f->flags)) {
			*res = f->res;
			return tcf_exts_exec(skb, &f->exts, res);
		}
J
Jiri Pirko 已提交
214 215 216 217 218 219 220 221 222 223 224 225
	}
	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;

226
	INIT_LIST_HEAD_RCU(&head->masks);
J
Jiri Pirko 已提交
227
	rcu_assign_pointer(tp->root, head);
228
	idr_init(&head->handle_idr);
J
Jiri Pirko 已提交
229

230 231 232
	return rhashtable_init(&head->ht, &mask_ht_params);
}

233 234 235 236 237 238 239 240 241 242 243 244 245 246
static void fl_mask_free(struct fl_flow_mask *mask)
{
	rhashtable_destroy(&mask->ht);
	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);

	fl_mask_free(mask);
}

247 248 249 250 251 252 253 254 255
static bool fl_mask_put(struct cls_fl_head *head, struct fl_flow_mask *mask,
			bool async)
{
	if (!list_empty(&mask->filters))
		return false;

	rhashtable_remove_fast(&head->ht, &mask->ht_node, mask_ht_params);
	list_del_rcu(&mask->list);
	if (async)
256
		tcf_queue_work(&mask->rwork, fl_mask_free_work);
257
	else
258
		fl_mask_free(mask);
259 260

	return true;
J
Jiri Pirko 已提交
261 262
}

263 264 265 266 267 268 269
static void __fl_destroy_filter(struct cls_fl_filter *f)
{
	tcf_exts_destroy(&f->exts);
	tcf_exts_put_net(&f->exts);
	kfree(f);
}

270
static void fl_destroy_filter_work(struct work_struct *work)
J
Jiri Pirko 已提交
271
{
C
Cong Wang 已提交
272 273
	struct cls_fl_filter *f = container_of(to_rcu_work(work),
					struct cls_fl_filter, rwork);
J
Jiri Pirko 已提交
274

275
	rtnl_lock();
276
	__fl_destroy_filter(f);
277 278 279
	rtnl_unlock();
}

280 281
static void fl_hw_destroy_filter(struct tcf_proto *tp, struct cls_fl_filter *f,
				 struct netlink_ext_ack *extack)
282
{
283
	struct tc_cls_flower_offload cls_flower = {};
284
	struct tcf_block *block = tp->chain->block;
285

286
	tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, extack);
287 288
	cls_flower.command = TC_CLSFLOWER_DESTROY;
	cls_flower.cookie = (unsigned long) f;
289

290
	tc_setup_cb_call(block, &f->exts, TC_SETUP_CLSFLOWER,
291
			 &cls_flower, false);
292
	tcf_block_offload_dec(block, &f->flags);
293 294
}

295
static int fl_hw_replace_filter(struct tcf_proto *tp,
296 297
				struct cls_fl_filter *f,
				struct netlink_ext_ack *extack)
298
{
299
	struct tc_cls_flower_offload cls_flower = {};
300
	struct tcf_block *block = tp->chain->block;
301
	bool skip_sw = tc_skip_sw(f->flags);
302
	int err;
303

304
	tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, extack);
305 306
	cls_flower.command = TC_CLSFLOWER_REPLACE;
	cls_flower.cookie = (unsigned long) f;
307 308
	cls_flower.dissector = &f->mask->dissector;
	cls_flower.mask = &f->mask->key;
309 310
	cls_flower.key = &f->mkey;
	cls_flower.exts = &f->exts;
311
	cls_flower.classid = f->res.classid;
312

313
	err = tc_setup_cb_call(block, &f->exts, TC_SETUP_CLSFLOWER,
314 315
			       &cls_flower, skip_sw);
	if (err < 0) {
316
		fl_hw_destroy_filter(tp, f, NULL);
317
		return err;
318
	} else if (err > 0) {
319
		f->in_hw_count = err;
320
		tcf_block_offload_inc(block, &f->flags);
321 322 323 324 325
	}

	if (skip_sw && !(f->flags & TCA_CLS_FLAGS_IN_HW))
		return -EINVAL;

326
	return 0;
327 328
}

329 330
static void fl_hw_update_stats(struct tcf_proto *tp, struct cls_fl_filter *f)
{
331
	struct tc_cls_flower_offload cls_flower = {};
332
	struct tcf_block *block = tp->chain->block;
333

334
	tc_cls_common_offload_init(&cls_flower.common, tp, f->flags, NULL);
335 336 337
	cls_flower.command = TC_CLSFLOWER_STATS;
	cls_flower.cookie = (unsigned long) f;
	cls_flower.exts = &f->exts;
338
	cls_flower.classid = f->res.classid;
339

340
	tc_setup_cb_call(block, &f->exts, TC_SETUP_CLSFLOWER,
341
			 &cls_flower, false);
342 343
}

344
static bool __fl_delete(struct tcf_proto *tp, struct cls_fl_filter *f,
345
			struct netlink_ext_ack *extack)
346
{
347
	struct cls_fl_head *head = rtnl_dereference(tp->root);
348 349
	bool async = tcf_exts_get_net(&f->exts);
	bool last;
350

351
	idr_remove(&head->handle_idr, f->handle);
352
	list_del_rcu(&f->list);
353
	last = fl_mask_put(head, f->mask, async);
354
	if (!tc_skip_hw(f->flags))
355
		fl_hw_destroy_filter(tp, f, extack);
356
	tcf_unbind_filter(tp, &f->res);
357
	if (async)
C
Cong Wang 已提交
358
		tcf_queue_work(&f->rwork, fl_destroy_filter_work);
359 360
	else
		__fl_destroy_filter(f);
361 362

	return last;
363 364
}

365 366
static void fl_destroy_sleepable(struct work_struct *work)
{
C
Cong Wang 已提交
367 368 369
	struct cls_fl_head *head = container_of(to_rcu_work(work),
						struct cls_fl_head,
						rwork);
370 371

	rhashtable_destroy(&head->ht);
372 373 374 375
	kfree(head);
	module_put(THIS_MODULE);
}

376
static void fl_destroy(struct tcf_proto *tp, struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
377 378
{
	struct cls_fl_head *head = rtnl_dereference(tp->root);
379
	struct fl_flow_mask *mask, *next_mask;
J
Jiri Pirko 已提交
380 381
	struct cls_fl_filter *f, *next;

382 383 384 385 386 387
	list_for_each_entry_safe(mask, next_mask, &head->masks, list) {
		list_for_each_entry_safe(f, next, &mask->filters, list) {
			if (__fl_delete(tp, f, extack))
				break;
		}
	}
388
	idr_destroy(&head->handle_idr);
389 390

	__module_get(THIS_MODULE);
C
Cong Wang 已提交
391
	tcf_queue_work(&head->rwork, fl_destroy_sleepable);
J
Jiri Pirko 已提交
392 393
}

394
static void *fl_get(struct tcf_proto *tp, u32 handle)
J
Jiri Pirko 已提交
395 396 397
{
	struct cls_fl_head *head = rtnl_dereference(tp->root);

398
	return idr_find(&head->handle_idr, handle);
J
Jiri Pirko 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
}

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 已提交
422 423
	[TCA_FLOWER_KEY_UDP_SRC]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_UDP_DST]	= { .type = NLA_U16 },
424 425 426
	[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 },
427 428 429 430 431 432 433 434 435
	[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) },
436 437 438 439
	[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 },
440 441 442 443
	[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 },
444 445 446 447
	[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 },
448 449
	[TCA_FLOWER_KEY_FLAGS]		= { .type = NLA_U32 },
	[TCA_FLOWER_KEY_FLAGS_MASK]	= { .type = NLA_U32 },
450 451 452 453 454 455 456 457
	[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 },
458 459 460 461 462 463 464 465 466 467
	[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 },
468 469 470 471
	[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 },
472 473
	[TCA_FLOWER_KEY_TCP_FLAGS]	= { .type = NLA_U16 },
	[TCA_FLOWER_KEY_TCP_FLAGS_MASK]	= { .type = NLA_U16 },
474 475 476 477
	[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 },
478 479 480
	[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 },
481 482 483 484
	[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 },
J
Jiri Pirko 已提交
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
};

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;
	memcpy(val, nla_data(tb[val_type]), len);
	if (mask_type == TCA_FLOWER_UNSPEC || !tb[mask_type])
		memset(mask, 0xff, len);
	else
		memcpy(mask, nla_data(tb[mask_type]), len);
}

500 501 502
static int fl_set_key_mpls(struct nlattr **tb,
			   struct flow_dissector_key_mpls *key_val,
			   struct flow_dissector_key_mpls *key_mask)
503 504 505 506 507 508
{
	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]) {
509 510 511 512 513
		u8 bos = nla_get_u8(tb[TCA_FLOWER_KEY_MPLS_BOS]);

		if (bos & ~MPLS_BOS_MASK)
			return -EINVAL;
		key_val->mpls_bos = bos;
514 515 516
		key_mask->mpls_bos = MPLS_BOS_MASK;
	}
	if (tb[TCA_FLOWER_KEY_MPLS_TC]) {
517 518 519 520 521
		u8 tc = nla_get_u8(tb[TCA_FLOWER_KEY_MPLS_TC]);

		if (tc & ~MPLS_TC_MASK)
			return -EINVAL;
		key_val->mpls_tc = tc;
522 523 524
		key_mask->mpls_tc = MPLS_TC_MASK;
	}
	if (tb[TCA_FLOWER_KEY_MPLS_LABEL]) {
525 526 527 528 529
		u32 label = nla_get_u32(tb[TCA_FLOWER_KEY_MPLS_LABEL]);

		if (label & ~MPLS_LABEL_MASK)
			return -EINVAL;
		key_val->mpls_label = label;
530 531
		key_mask->mpls_label = MPLS_LABEL_MASK;
	}
532
	return 0;
533 534
}

535
static void fl_set_key_vlan(struct nlattr **tb,
536
			    __be16 ethertype,
537
			    int vlan_id_key, int vlan_prio_key,
538 539 540 541 542
			    struct flow_dissector_key_vlan *key_val,
			    struct flow_dissector_key_vlan *key_mask)
{
#define VLAN_PRIORITY_MASK	0x7

543
	if (tb[vlan_id_key]) {
544
		key_val->vlan_id =
545
			nla_get_u16(tb[vlan_id_key]) & VLAN_VID_MASK;
546 547
		key_mask->vlan_id = VLAN_VID_MASK;
	}
548
	if (tb[vlan_prio_key]) {
549
		key_val->vlan_priority =
550
			nla_get_u8(tb[vlan_prio_key]) &
551 552 553
			VLAN_PRIORITY_MASK;
		key_mask->vlan_priority = VLAN_PRIORITY_MASK;
	}
554 555
	key_val->vlan_tpid = ethertype;
	key_mask->vlan_tpid = cpu_to_be16(~0);
556 557
}

558 559 560 561 562 563 564 565 566 567 568
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;
	}
}

569 570
static int fl_set_key_flags(struct nlattr **tb,
			    u32 *flags_key, u32 *flags_mask)
571 572 573
{
	u32 key, mask;

574 575 576
	/* mask is mandatory for flags */
	if (!tb[TCA_FLOWER_KEY_FLAGS_MASK])
		return -EINVAL;
577 578

	key = be32_to_cpu(nla_get_u32(tb[TCA_FLOWER_KEY_FLAGS]));
579
	mask = be32_to_cpu(nla_get_u32(tb[TCA_FLOWER_KEY_FLAGS_MASK]));
580 581 582 583 584 585

	*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);
586 587 588
	fl_set_key_flag(key, mask, flags_key, flags_mask,
			TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST,
			FLOW_DIS_FIRST_FRAG);
589 590

	return 0;
591 592
}

593
static void fl_set_key_ip(struct nlattr **tb, bool encap,
594 595 596
			  struct flow_dissector_key_ip *key,
			  struct flow_dissector_key_ip *mask)
{
597 598 599 600
	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;
601

602 603
	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));
604 605
}

J
Jiri Pirko 已提交
606
static int fl_set_key(struct net *net, struct nlattr **tb,
607 608
		      struct fl_flow_key *key, struct fl_flow_key *mask,
		      struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
609
{
610
	__be16 ethertype;
611
	int ret = 0;
B
Brian Haley 已提交
612
#ifdef CONFIG_NET_CLS_IND
J
Jiri Pirko 已提交
613
	if (tb[TCA_FLOWER_INDEV]) {
614
		int err = tcf_change_indev(net, tb[TCA_FLOWER_INDEV], extack);
J
Jiri Pirko 已提交
615 616 617 618 619
		if (err < 0)
			return err;
		key->indev_ifindex = err;
		mask->indev_ifindex = 0xffffffff;
	}
B
Brian Haley 已提交
620
#endif
J
Jiri Pirko 已提交
621 622 623 624 625 626 627

	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));
628

629
	if (tb[TCA_FLOWER_KEY_ETH_TYPE]) {
630 631
		ethertype = nla_get_be16(tb[TCA_FLOWER_KEY_ETH_TYPE]);

632
		if (eth_type_vlan(ethertype)) {
633 634 635 636
			fl_set_key_vlan(tb, ethertype, TCA_FLOWER_KEY_VLAN_ID,
					TCA_FLOWER_KEY_VLAN_PRIO, &key->vlan,
					&mask->vlan);

637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
			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);
				}
653
			}
654 655 656 657
		} else {
			key->basic.n_proto = ethertype;
			mask->basic.n_proto = cpu_to_be16(~0);
		}
658
	}
659

J
Jiri Pirko 已提交
660 661 662 663 664
	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));
665
		fl_set_key_ip(tb, false, &key->ip, &mask->ip);
J
Jiri Pirko 已提交
666
	}
667 668 669

	if (tb[TCA_FLOWER_KEY_IPV4_SRC] || tb[TCA_FLOWER_KEY_IPV4_DST]) {
		key->control.addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS;
670
		mask->control.addr_type = ~0;
J
Jiri Pirko 已提交
671 672 673 674 675 676
		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));
677 678
	} else if (tb[TCA_FLOWER_KEY_IPV6_SRC] || tb[TCA_FLOWER_KEY_IPV6_DST]) {
		key->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
679
		mask->control.addr_type = ~0;
J
Jiri Pirko 已提交
680 681 682 683 684 685 686
		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));
	}
687

J
Jiri Pirko 已提交
688 689
	if (key->basic.ip_proto == IPPROTO_TCP) {
		fl_set_key_val(tb, &key->tp.src, TCA_FLOWER_KEY_TCP_SRC,
690
			       &mask->tp.src, TCA_FLOWER_KEY_TCP_SRC_MASK,
J
Jiri Pirko 已提交
691 692
			       sizeof(key->tp.src));
		fl_set_key_val(tb, &key->tp.dst, TCA_FLOWER_KEY_TCP_DST,
693
			       &mask->tp.dst, TCA_FLOWER_KEY_TCP_DST_MASK,
J
Jiri Pirko 已提交
694
			       sizeof(key->tp.dst));
695 696 697
		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 已提交
698 699
	} else if (key->basic.ip_proto == IPPROTO_UDP) {
		fl_set_key_val(tb, &key->tp.src, TCA_FLOWER_KEY_UDP_SRC,
700
			       &mask->tp.src, TCA_FLOWER_KEY_UDP_SRC_MASK,
J
Jiri Pirko 已提交
701 702
			       sizeof(key->tp.src));
		fl_set_key_val(tb, &key->tp.dst, TCA_FLOWER_KEY_UDP_DST,
703
			       &mask->tp.dst, TCA_FLOWER_KEY_UDP_DST_MASK,
J
Jiri Pirko 已提交
704
			       sizeof(key->tp.dst));
705 706 707 708 709 710 711
	} 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));
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
	} 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));
728
		fl_set_key_val(tb, &key->icmp.code, TCA_FLOWER_KEY_ICMPV6_CODE,
729
			       &mask->icmp.code,
730
			       TCA_FLOWER_KEY_ICMPV6_CODE_MASK,
731
			       sizeof(key->icmp.code));
732 733
	} else if (key->basic.n_proto == htons(ETH_P_MPLS_UC) ||
		   key->basic.n_proto == htons(ETH_P_MPLS_MC)) {
734 735 736
		ret = fl_set_key_mpls(tb, &key->mpls, &mask->mpls);
		if (ret)
			return ret;
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
	} 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 已提交
754 755
	}

756 757 758
	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;
759
		mask->enc_control.addr_type = ~0;
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
		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;
775
		mask->enc_control.addr_type = ~0;
776 777 778 779 780 781 782 783 784 785 786 787 788
		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,
789
		       &mask->enc_key_id.keyid, TCA_FLOWER_UNSPEC,
790 791
		       sizeof(key->enc_key_id.keyid));

792 793 794 795 796 797 798 799
	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));

800 801
	fl_set_key_ip(tb, true, &key->enc_ip, &mask->enc_ip);

802 803
	if (tb[TCA_FLOWER_KEY_FLAGS])
		ret = fl_set_key_flags(tb, &key->control.flags, &mask->control.flags);
804

805
	return ret;
J
Jiri Pirko 已提交
806 807
}

808 809
static void fl_mask_copy(struct fl_flow_mask *dst,
			 struct fl_flow_mask *src)
J
Jiri Pirko 已提交
810
{
811 812
	const void *psrc = fl_key_get_start(&src->key, src);
	void *pdst = fl_key_get_start(&dst->key, src);
J
Jiri Pirko 已提交
813

814 815
	memcpy(pdst, psrc, fl_mask_range(src));
	dst->range = src->range;
J
Jiri Pirko 已提交
816 817 818 819 820 821 822 823
}

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,
};

824
static int fl_init_mask_hashtable(struct fl_flow_mask *mask)
J
Jiri Pirko 已提交
825
{
826 827 828
	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 已提交
829

830
	return rhashtable_init(&mask->ht, &mask->filter_ht_params);
J
Jiri Pirko 已提交
831 832 833 834 835
}

#define FL_KEY_MEMBER_OFFSET(member) offsetof(struct fl_flow_key, member)
#define FL_KEY_MEMBER_SIZE(member) (sizeof(((struct fl_flow_key *) 0)->member))

836 837 838
#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 已提交
839 840 841 842 843 844 845 846

#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);

847
#define FL_KEY_SET_IF_MASKED(mask, keys, cnt, id, member)			\
J
Jiri Pirko 已提交
848
	do {									\
849
		if (FL_KEY_IS_MASKED(mask, member))				\
J
Jiri Pirko 已提交
850 851 852
			FL_KEY_SET(keys, cnt, id, member);			\
	} while(0);

853 854
static void fl_init_dissector(struct flow_dissector *dissector,
			      struct fl_flow_key *mask)
J
Jiri Pirko 已提交
855 856 857 858
{
	struct flow_dissector_key keys[FLOW_DISSECTOR_KEY_MAX];
	size_t cnt = 0;

859
	FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_CONTROL, control);
J
Jiri Pirko 已提交
860
	FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_BASIC, basic);
861
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
862
			     FLOW_DISSECTOR_KEY_ETH_ADDRS, eth);
863
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
864
			     FLOW_DISSECTOR_KEY_IPV4_ADDRS, ipv4);
865
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
866
			     FLOW_DISSECTOR_KEY_IPV6_ADDRS, ipv6);
867
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
868
			     FLOW_DISSECTOR_KEY_PORTS, tp);
869
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
870
			     FLOW_DISSECTOR_KEY_IP, ip);
871
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
872
			     FLOW_DISSECTOR_KEY_TCP, tcp);
873
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
874
			     FLOW_DISSECTOR_KEY_ICMP, icmp);
875
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
876
			     FLOW_DISSECTOR_KEY_ARP, arp);
877
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
878
			     FLOW_DISSECTOR_KEY_MPLS, mpls);
879
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
880
			     FLOW_DISSECTOR_KEY_VLAN, vlan);
881
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
882
			     FLOW_DISSECTOR_KEY_CVLAN, cvlan);
883
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
884
			     FLOW_DISSECTOR_KEY_ENC_KEYID, enc_key_id);
885
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
886
			     FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS, enc_ipv4);
887
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
888
			     FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS, enc_ipv6);
889 890
	if (FL_KEY_IS_MASKED(mask, enc_ipv4) ||
	    FL_KEY_IS_MASKED(mask, enc_ipv6))
891 892
		FL_KEY_SET(keys, cnt, FLOW_DISSECTOR_KEY_ENC_CONTROL,
			   enc_control);
893
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
894
			     FLOW_DISSECTOR_KEY_ENC_PORTS, enc_tp);
895
	FL_KEY_SET_IF_MASKED(mask, keys, cnt,
896
			     FLOW_DISSECTOR_KEY_ENC_IP, enc_ip);
J
Jiri Pirko 已提交
897

898
	skb_flow_dissector_init(dissector, keys, cnt);
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
}

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);

	err = fl_init_mask_hashtable(newmask);
	if (err)
		goto errout_free;

917
	fl_init_dissector(&newmask->dissector, &newmask->key);
918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935

	INIT_LIST_HEAD_RCU(&newmask->filters);

	err = rhashtable_insert_fast(&head->ht, &newmask->ht_node,
				     mask_ht_params);
	if (err)
		goto errout_destroy;

	list_add_tail_rcu(&newmask->list, &head->masks);

	return newmask;

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

	return ERR_PTR(err);
J
Jiri Pirko 已提交
936 937 938
}

static int fl_check_assign_mask(struct cls_fl_head *head,
939 940
				struct cls_fl_filter *fnew,
				struct cls_fl_filter *fold,
J
Jiri Pirko 已提交
941 942
				struct fl_flow_mask *mask)
{
943
	struct fl_flow_mask *newmask;
J
Jiri Pirko 已提交
944

945 946 947
	fnew->mask = rhashtable_lookup_fast(&head->ht, mask, mask_ht_params);
	if (!fnew->mask) {
		if (fold)
J
Jiri Pirko 已提交
948 949
			return -EINVAL;

950 951 952
		newmask = fl_create_new_mask(head, mask);
		if (IS_ERR(newmask))
			return PTR_ERR(newmask);
J
Jiri Pirko 已提交
953

954
		fnew->mask = newmask;
955
	} else if (fold && fold->mask != fnew->mask) {
956 957
		return -EINVAL;
	}
J
Jiri Pirko 已提交
958 959 960 961 962 963 964

	return 0;
}

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,
965
			struct nlattr *est, bool ovr,
966
			struct fl_flow_tmplt *tmplt,
967
			struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
968 969 970
{
	int err;

971
	err = tcf_exts_validate(net, tp, tb, est, &f->exts, ovr, extack);
J
Jiri Pirko 已提交
972 973 974 975 976 977 978 979
	if (err < 0)
		return err;

	if (tb[TCA_FLOWER_CLASSID]) {
		f->res.classid = nla_get_u32(tb[TCA_FLOWER_CLASSID]);
		tcf_bind_filter(tp, &f->res, base);
	}

980
	err = fl_set_key(net, tb, &f->key, &mask->key, extack);
J
Jiri Pirko 已提交
981
	if (err)
982
		return err;
J
Jiri Pirko 已提交
983 984 985 986

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

987 988 989 990 991
	if (!fl_mask_fits_tmplt(tmplt, mask)) {
		NL_SET_ERR_MSG_MOD(extack, "Mask does not fit the template");
		return -EINVAL;
	}

J
Jiri Pirko 已提交
992 993 994 995 996 997
	return 0;
}

static int fl_change(struct net *net, struct sk_buff *in_skb,
		     struct tcf_proto *tp, unsigned long base,
		     u32 handle, struct nlattr **tca,
998
		     void **arg, bool ovr, struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
999 1000
{
	struct cls_fl_head *head = rtnl_dereference(tp->root);
1001
	struct cls_fl_filter *fold = *arg;
J
Jiri Pirko 已提交
1002
	struct cls_fl_filter *fnew;
1003
	struct nlattr **tb;
J
Jiri Pirko 已提交
1004 1005 1006 1007 1008 1009
	struct fl_flow_mask mask = {};
	int err;

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

1010 1011 1012 1013
	tb = kcalloc(TCA_FLOWER_MAX + 1, sizeof(struct nlattr *), GFP_KERNEL);
	if (!tb)
		return -ENOBUFS;

1014 1015
	err = nla_parse_nested(tb, TCA_FLOWER_MAX, tca[TCA_OPTIONS],
			       fl_policy, NULL);
J
Jiri Pirko 已提交
1016
	if (err < 0)
1017
		goto errout_tb;
J
Jiri Pirko 已提交
1018

1019 1020 1021 1022
	if (fold && handle && fold->handle != handle) {
		err = -EINVAL;
		goto errout_tb;
	}
J
Jiri Pirko 已提交
1023 1024

	fnew = kzalloc(sizeof(*fnew), GFP_KERNEL);
1025 1026 1027 1028
	if (!fnew) {
		err = -ENOBUFS;
		goto errout_tb;
	}
J
Jiri Pirko 已提交
1029

1030 1031 1032
	err = tcf_exts_init(&fnew->exts, TCA_FLOWER_ACT, 0);
	if (err < 0)
		goto errout;
J
Jiri Pirko 已提交
1033 1034

	if (!handle) {
1035 1036 1037 1038 1039 1040 1041
		handle = 1;
		err = idr_alloc_u32(&head->handle_idr, fnew, &handle,
				    INT_MAX, GFP_KERNEL);
	} else if (!fold) {
		/* user specifies a handle and it doesn't exist */
		err = idr_alloc_u32(&head->handle_idr, fnew, &handle,
				    handle, GFP_KERNEL);
J
Jiri Pirko 已提交
1042
	}
1043 1044 1045
	if (err)
		goto errout;
	fnew->handle = handle;
J
Jiri Pirko 已提交
1046

1047 1048 1049 1050 1051
	if (tb[TCA_FLOWER_FLAGS]) {
		fnew->flags = nla_get_u32(tb[TCA_FLOWER_FLAGS]);

		if (!tc_flags_valid(fnew->flags)) {
			err = -EINVAL;
1052
			goto errout_idr;
1053 1054
		}
	}
1055

1056
	err = fl_set_parms(net, tp, fnew, &mask, base, tb, tca[TCA_RATE], ovr,
1057
			   tp->chain->tmplt_priv, extack);
J
Jiri Pirko 已提交
1058
	if (err)
1059
		goto errout_idr;
J
Jiri Pirko 已提交
1060

1061
	err = fl_check_assign_mask(head, fnew, fold, &mask);
J
Jiri Pirko 已提交
1062
	if (err)
1063
		goto errout_idr;
J
Jiri Pirko 已提交
1064

1065
	if (!tc_skip_sw(fnew->flags)) {
1066
		if (!fold && fl_lookup(fnew->mask, &fnew->mkey)) {
1067
			err = -EEXIST;
1068
			goto errout_mask;
1069 1070
		}

1071 1072
		err = rhashtable_insert_fast(&fnew->mask->ht, &fnew->ht_node,
					     fnew->mask->filter_ht_params);
1073
		if (err)
1074
			goto errout_mask;
1075
	}
1076

1077
	if (!tc_skip_hw(fnew->flags)) {
1078
		err = fl_hw_replace_filter(tp, fnew, extack);
1079
		if (err)
1080
			goto errout_mask;
1081
	}
1082

1083 1084 1085
	if (!tc_in_hw(fnew->flags))
		fnew->flags |= TCA_CLS_FLAGS_NOT_IN_HW;

1086
	if (fold) {
1087
		if (!tc_skip_sw(fold->flags))
1088 1089 1090
			rhashtable_remove_fast(&fold->mask->ht,
					       &fold->ht_node,
					       fold->mask->filter_ht_params);
1091
		if (!tc_skip_hw(fold->flags))
1092
			fl_hw_destroy_filter(tp, fold, NULL);
1093
	}
J
Jiri Pirko 已提交
1094

1095
	*arg = fnew;
J
Jiri Pirko 已提交
1096 1097

	if (fold) {
1098
		idr_replace(&head->handle_idr, fnew, fnew->handle);
1099
		list_replace_rcu(&fold->list, &fnew->list);
J
Jiri Pirko 已提交
1100
		tcf_unbind_filter(tp, &fold->res);
1101
		tcf_exts_get_net(&fold->exts);
C
Cong Wang 已提交
1102
		tcf_queue_work(&fold->rwork, fl_destroy_filter_work);
J
Jiri Pirko 已提交
1103
	} else {
1104
		list_add_tail_rcu(&fnew->list, &fnew->mask->filters);
J
Jiri Pirko 已提交
1105 1106
	}

1107
	kfree(tb);
J
Jiri Pirko 已提交
1108 1109
	return 0;

1110 1111 1112
errout_mask:
	fl_mask_put(head, fnew->mask, false);

1113
errout_idr:
1114
	if (!fold)
1115
		idr_remove(&head->handle_idr, fnew->handle);
J
Jiri Pirko 已提交
1116
errout:
1117
	tcf_exts_destroy(&fnew->exts);
J
Jiri Pirko 已提交
1118
	kfree(fnew);
1119 1120
errout_tb:
	kfree(tb);
J
Jiri Pirko 已提交
1121 1122 1123
	return err;
}

1124 1125
static int fl_delete(struct tcf_proto *tp, void *arg, bool *last,
		     struct netlink_ext_ack *extack)
J
Jiri Pirko 已提交
1126 1127
{
	struct cls_fl_head *head = rtnl_dereference(tp->root);
1128
	struct cls_fl_filter *f = arg;
J
Jiri Pirko 已提交
1129

1130
	if (!tc_skip_sw(f->flags))
1131 1132
		rhashtable_remove_fast(&f->mask->ht, &f->ht_node,
				       f->mask->filter_ht_params);
1133
	__fl_delete(tp, f, extack);
1134
	*last = list_empty(&head->masks);
J
Jiri Pirko 已提交
1135 1136 1137 1138 1139 1140 1141
	return 0;
}

static void fl_walk(struct tcf_proto *tp, struct tcf_walker *arg)
{
	struct cls_fl_head *head = rtnl_dereference(tp->root);
	struct cls_fl_filter *f;
1142

1143 1144 1145 1146 1147 1148 1149
	arg->count = arg->skip;

	while ((f = idr_get_next_ul(&head->handle_idr,
				    &arg->cookie)) != NULL) {
		if (arg->fn(tp, f, arg) < 0) {
			arg->stop = 1;
			break;
1150
		}
1151 1152
		arg->cookie = f->handle + 1;
		arg->count++;
J
Jiri Pirko 已提交
1153 1154 1155
	}
}

1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
static int fl_reoffload(struct tcf_proto *tp, bool add, tc_setup_cb_t *cb,
			void *cb_priv, struct netlink_ext_ack *extack)
{
	struct cls_fl_head *head = rtnl_dereference(tp->root);
	struct tc_cls_flower_offload cls_flower = {};
	struct tcf_block *block = tp->chain->block;
	struct fl_flow_mask *mask;
	struct cls_fl_filter *f;
	int err;

	list_for_each_entry(mask, &head->masks, list) {
		list_for_each_entry(f, &mask->filters, list) {
			if (tc_skip_hw(f->flags))
				continue;

			tc_cls_common_offload_init(&cls_flower.common, tp,
						   f->flags, extack);
			cls_flower.command = add ?
				TC_CLSFLOWER_REPLACE : TC_CLSFLOWER_DESTROY;
			cls_flower.cookie = (unsigned long)f;
			cls_flower.dissector = &mask->dissector;
			cls_flower.mask = &f->mkey;
			cls_flower.key = &f->key;
			cls_flower.exts = &f->exts;
			cls_flower.classid = f->res.classid;

			err = cb(TC_SETUP_CLSFLOWER, &cls_flower, cb_priv);
			if (err) {
				if (add && tc_skip_sw(f->flags))
					return err;
				continue;
			}

			tc_cls_offload_cnt_update(block, &f->in_hw_count,
						  &f->flags, add);
		}
	}

	return 0;
}

1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
static void fl_hw_create_tmplt(struct tcf_chain *chain,
			       struct fl_flow_tmplt *tmplt)
{
	struct tc_cls_flower_offload cls_flower = {};
	struct tcf_block *block = chain->block;
	struct tcf_exts dummy_exts = { 0, };

	cls_flower.common.chain_index = chain->index;
	cls_flower.command = TC_CLSFLOWER_TMPLT_CREATE;
	cls_flower.cookie = (unsigned long) tmplt;
	cls_flower.dissector = &tmplt->dissector;
	cls_flower.mask = &tmplt->mask;
	cls_flower.key = &tmplt->dummy_key;
	cls_flower.exts = &dummy_exts;

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

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;

	tc_setup_cb_call(block, NULL, TC_SETUP_CLSFLOWER,
			 &cls_flower, false);
}

1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
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);
	err = nla_parse_nested(tb, TCA_FLOWER_MAX, tca[TCA_OPTIONS],
			       fl_policy, NULL);
	if (err)
		goto errout_tb;

	tmplt = kzalloc(sizeof(*tmplt), GFP_KERNEL);
	if (!tmplt)
		goto errout_tb;
	tmplt->chain = chain;
	err = fl_set_key(net, tb, &tmplt->dummy_key, &tmplt->mask, extack);
	if (err)
		goto errout_tmplt;
	kfree(tb);

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

1263 1264
	fl_hw_create_tmplt(chain, tmplt);

1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277
	return tmplt;

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

static void fl_tmplt_destroy(void *tmplt_priv)
{
	struct fl_flow_tmplt *tmplt = tmplt_priv;

1278
	fl_hw_destroy_tmplt(tmplt->chain, tmplt);
1279 1280 1281
	kfree(tmplt);
}

J
Jiri Pirko 已提交
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
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;
}

1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
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;
}

1336
static int fl_dump_key_ip(struct sk_buff *skb, bool encap,
1337 1338 1339
			  struct flow_dissector_key_ip *key,
			  struct flow_dissector_key_ip *mask)
{
1340 1341 1342 1343 1344 1345 1346
	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)))
1347 1348 1349 1350 1351
		return -1;

	return 0;
}

1352
static int fl_dump_key_vlan(struct sk_buff *skb,
1353
			    int vlan_id_key, int vlan_prio_key,
1354 1355 1356 1357 1358 1359 1360 1361
			    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) {
1362
		err = nla_put_u16(skb, vlan_id_key,
1363 1364 1365 1366 1367
				  vlan_key->vlan_id);
		if (err)
			return err;
	}
	if (vlan_mask->vlan_priority) {
1368
		err = nla_put_u8(skb, vlan_prio_key,
1369 1370 1371 1372 1373 1374 1375
				 vlan_key->vlan_priority);
		if (err)
			return err;
	}
	return 0;
}

1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
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);
1401 1402 1403
	fl_get_key_flag(flags_key, flags_mask, &key, &mask,
			TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST,
			FLOW_DIS_FIRST_FRAG);
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414

	_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);
}

1415 1416
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 已提交
1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
{
	if (mask->indev_ifindex) {
		struct net_device *dev;

		dev = __dev_get_by_index(net, key->indev_ifindex);
		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;
1436

1437 1438 1439
	if (fl_dump_key_mpls(skb, &key->mpls, &mask->mpls))
		goto nla_put_failure;

1440 1441
	if (fl_dump_key_vlan(skb, TCA_FLOWER_KEY_VLAN_ID,
			     TCA_FLOWER_KEY_VLAN_PRIO, &key->vlan, &mask->vlan))
1442 1443
		goto nla_put_failure;

1444 1445 1446 1447 1448 1449
	if (fl_dump_key_vlan(skb, TCA_FLOWER_KEY_CVLAN_ID,
			     TCA_FLOWER_KEY_CVLAN_PRIO,
			     &key->cvlan, &mask->cvlan) ||
	    (mask->cvlan.vlan_tpid &&
	     nla_put_u16(skb, TCA_FLOWER_KEY_VLAN_ETH_TYPE,
			 key->cvlan.vlan_tpid)))
1450 1451
		goto nla_put_failure;

1452 1453 1454 1455 1456 1457 1458 1459 1460 1461
	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;
		}
1462 1463
	}

J
Jiri Pirko 已提交
1464 1465
	if ((key->basic.n_proto == htons(ETH_P_IP) ||
	     key->basic.n_proto == htons(ETH_P_IPV6)) &&
1466
	    (fl_dump_key_val(skb, &key->basic.ip_proto, TCA_FLOWER_KEY_IP_PROTO,
J
Jiri Pirko 已提交
1467
			    &mask->basic.ip_proto, TCA_FLOWER_UNSPEC,
1468
			    sizeof(key->basic.ip_proto)) ||
1469
	    fl_dump_key_ip(skb, false, &key->ip, &mask->ip)))
J
Jiri Pirko 已提交
1470 1471
		goto nla_put_failure;

1472
	if (key->control.addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS &&
J
Jiri Pirko 已提交
1473 1474 1475 1476 1477 1478 1479
	    (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;
1480
	else if (key->control.addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS &&
J
Jiri Pirko 已提交
1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
		 (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,
1491
			     &mask->tp.src, TCA_FLOWER_KEY_TCP_SRC_MASK,
J
Jiri Pirko 已提交
1492 1493
			     sizeof(key->tp.src)) ||
	     fl_dump_key_val(skb, &key->tp.dst, TCA_FLOWER_KEY_TCP_DST,
1494
			     &mask->tp.dst, TCA_FLOWER_KEY_TCP_DST_MASK,
1495 1496 1497 1498
			     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 已提交
1499 1500 1501
		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,
1502
				  &mask->tp.src, TCA_FLOWER_KEY_UDP_SRC_MASK,
J
Jiri Pirko 已提交
1503 1504
				  sizeof(key->tp.src)) ||
		  fl_dump_key_val(skb, &key->tp.dst, TCA_FLOWER_KEY_UDP_DST,
1505
				  &mask->tp.dst, TCA_FLOWER_KEY_UDP_DST_MASK,
1506 1507 1508 1509 1510 1511 1512 1513
				  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 已提交
1514 1515
				  sizeof(key->tp.dst))))
		goto nla_put_failure;
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
	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;
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
	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 已提交
1559

1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582
	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,
1583
			    &mask->enc_key_id, TCA_FLOWER_UNSPEC,
1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
			    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,
1594 1595
			    sizeof(key->enc_tp.dst)) ||
	    fl_dump_key_ip(skb, true, &key->enc_ip, &mask->enc_ip))
1596 1597
		goto nla_put_failure;

1598 1599 1600
	if (fl_dump_key_flags(skb, key->control.flags, mask->control.flags))
		goto nla_put_failure;

1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

static int fl_dump(struct net *net, struct tcf_proto *tp, void *fh,
		   struct sk_buff *skb, struct tcmsg *t)
{
	struct cls_fl_filter *f = fh;
	struct nlattr *nest;
	struct fl_flow_key *key, *mask;

	if (!f)
		return skb->len;

	t->tcm_handle = f->handle;

	nest = nla_nest_start(skb, TCA_OPTIONS);
	if (!nest)
		goto nla_put_failure;

	if (f->res.classid &&
	    nla_put_u32(skb, TCA_FLOWER_CLASSID, f->res.classid))
		goto nla_put_failure;

	key = &f->key;
	mask = &f->mask->key;

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

	if (!tc_skip_hw(f->flags))
		fl_hw_update_stats(tp, f);

1636 1637
	if (f->flags && nla_put_u32(skb, TCA_FLOWER_FLAGS, f->flags))
		goto nla_put_failure;
1638

J
Jiri Pirko 已提交
1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
	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;

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

1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678
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;

	nest = nla_nest_start(skb, TCA_OPTIONS);
	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;
}

1679 1680 1681 1682 1683 1684 1685 1686
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 已提交
1687 1688 1689 1690 1691 1692 1693 1694 1695
static struct tcf_proto_ops cls_fl_ops __read_mostly = {
	.kind		= "flower",
	.classify	= fl_classify,
	.init		= fl_init,
	.destroy	= fl_destroy,
	.get		= fl_get,
	.change		= fl_change,
	.delete		= fl_delete,
	.walk		= fl_walk,
1696
	.reoffload	= fl_reoffload,
J
Jiri Pirko 已提交
1697
	.dump		= fl_dump,
1698
	.bind_class	= fl_bind_class,
1699 1700 1701
	.tmplt_create	= fl_tmplt_create,
	.tmplt_destroy	= fl_tmplt_destroy,
	.tmplt_dump	= fl_tmplt_dump,
J
Jiri Pirko 已提交
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
	.owner		= THIS_MODULE,
};

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");