spectrum_flower.c 14.8 KB
Newer Older
1 2
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
/* Copyright (c) 2017-2018 Mellanox Technologies. All rights reserved */
3 4 5 6

#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/netdevice.h>
7
#include <net/net_namespace.h>
8 9 10 11
#include <net/flow_dissector.h>
#include <net/pkt_cls.h>
#include <net/tc_act/tc_gact.h>
#include <net/tc_act/tc_mirred.h>
12
#include <net/tc_act/tc_vlan.h>
13 14 15 16 17

#include "spectrum.h"
#include "core_acl_flex_keys.h"

static int mlxsw_sp_flower_parse_actions(struct mlxsw_sp *mlxsw_sp,
18
					 struct mlxsw_sp_acl_block *block,
19
					 struct mlxsw_sp_acl_rule_info *rulei,
20
					 struct flow_action *flow_action,
21
					 struct netlink_ext_ack *extack)
22
{
23
	const struct flow_action_entry *act;
24
	int err, i;
25

26
	if (!flow_action_has_entries(flow_action))
27 28
		return 0;

29
	/* Count action is inserted first */
30
	err = mlxsw_sp_acl_rulei_act_count(mlxsw_sp, rulei, extack);
31 32 33
	if (err)
		return err;

34 35 36
	flow_action_for_each(i, act, flow_action) {
		switch (act->id) {
		case FLOW_ACTION_ACCEPT:
37
			err = mlxsw_sp_acl_rulei_act_terminate(rulei);
38 39
			if (err) {
				NL_SET_ERR_MSG_MOD(extack, "Cannot append terminate action");
40
				return err;
41
			}
42 43
			break;
		case FLOW_ACTION_DROP:
44
			err = mlxsw_sp_acl_rulei_act_drop(rulei);
45 46
			if (err) {
				NL_SET_ERR_MSG_MOD(extack, "Cannot append drop action");
47
				return err;
48
			}
49 50
			break;
		case FLOW_ACTION_TRAP:
51
			err = mlxsw_sp_acl_rulei_act_trap(rulei);
52 53
			if (err) {
				NL_SET_ERR_MSG_MOD(extack, "Cannot append trap action");
54
				return err;
55
			}
56 57 58
			break;
		case FLOW_ACTION_GOTO: {
			u32 chain_index = act->chain_index;
59 60 61
			struct mlxsw_sp_acl_ruleset *ruleset;
			u16 group_id;

62
			ruleset = mlxsw_sp_acl_ruleset_lookup(mlxsw_sp, block,
63 64 65 66 67 68
							      chain_index,
							      MLXSW_SP_ACL_PROFILE_FLOWER);
			if (IS_ERR(ruleset))
				return PTR_ERR(ruleset);

			group_id = mlxsw_sp_acl_ruleset_group_id(ruleset);
69
			err = mlxsw_sp_acl_rulei_act_jump(rulei, group_id);
70 71
			if (err) {
				NL_SET_ERR_MSG_MOD(extack, "Cannot append jump action");
72
				return err;
73
			}
74 75 76
			}
			break;
		case FLOW_ACTION_REDIRECT: {
77
			struct net_device *out_dev;
78 79
			struct mlxsw_sp_fid *fid;
			u16 fid_index;
80

81 82
			fid = mlxsw_sp_acl_dummy_fid(mlxsw_sp);
			fid_index = mlxsw_sp_fid_index(fid);
83
			err = mlxsw_sp_acl_rulei_act_fid_set(mlxsw_sp, rulei,
84
							     fid_index, extack);
85 86 87
			if (err)
				return err;

88
			out_dev = act->dev;
89
			err = mlxsw_sp_acl_rulei_act_fwd(mlxsw_sp, rulei,
90
							 out_dev, extack);
91 92
			if (err)
				return err;
93 94 95 96
			}
			break;
		case FLOW_ACTION_MIRRED: {
			struct net_device *out_dev = act->dev;
97 98

			err = mlxsw_sp_acl_rulei_act_mirror(mlxsw_sp, rulei,
99 100
							    block, out_dev,
							    extack);
101 102
			if (err)
				return err;
103 104
			}
			break;
105
		case FLOW_ACTION_VLAN_MANGLE: {
106 107 108
			u16 proto = be16_to_cpu(act->vlan.proto);
			u8 prio = act->vlan.prio;
			u16 vid = act->vlan.vid;
109 110

			return mlxsw_sp_acl_rulei_act_vlan(mlxsw_sp, rulei,
111
							   act->id, vid,
112
							   proto, prio, extack);
113 114
			}
		default:
115
			NL_SET_ERR_MSG_MOD(extack, "Unsupported action");
116 117 118 119 120 121 122 123 124 125
			dev_err(mlxsw_sp->bus_info->dev, "Unsupported action\n");
			return -EOPNOTSUPP;
		}
	}
	return 0;
}

static void mlxsw_sp_flower_parse_ipv4(struct mlxsw_sp_acl_rule_info *rulei,
				       struct tc_cls_flower_offload *f)
{
126 127 128
	struct flow_match_ipv4_addrs match;

	flow_rule_match_ipv4_addrs(f->rule, &match);
129

130
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_SRC_IP_0_31,
131 132
				       (char *) &match.key->src,
				       (char *) &match.mask->src, 4);
133
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_DST_IP_0_31,
134 135
				       (char *) &match.key->dst,
				       (char *) &match.mask->dst, 4);
136 137 138 139 140
}

static void mlxsw_sp_flower_parse_ipv6(struct mlxsw_sp_acl_rule_info *rulei,
				       struct tc_cls_flower_offload *f)
{
141 142 143
	struct flow_match_ipv6_addrs match;

	flow_rule_match_ipv6_addrs(f->rule, &match);
144 145

	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_SRC_IP_96_127,
146 147
				       &match.key->src.s6_addr[0x0],
				       &match.mask->src.s6_addr[0x0], 4);
148
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_SRC_IP_64_95,
149 150
				       &match.key->src.s6_addr[0x4],
				       &match.mask->src.s6_addr[0x4], 4);
151
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_SRC_IP_32_63,
152 153
				       &match.key->src.s6_addr[0x8],
				       &match.mask->src.s6_addr[0x8], 4);
154
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_SRC_IP_0_31,
155 156
				       &match.key->src.s6_addr[0xC],
				       &match.mask->src.s6_addr[0xC], 4);
157
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_DST_IP_96_127,
158 159
				       &match.key->dst.s6_addr[0x0],
				       &match.mask->dst.s6_addr[0x0], 4);
160
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_DST_IP_64_95,
161 162
				       &match.key->dst.s6_addr[0x4],
				       &match.mask->dst.s6_addr[0x4], 4);
163
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_DST_IP_32_63,
164 165
				       &match.key->dst.s6_addr[0x8],
				       &match.mask->dst.s6_addr[0x8], 4);
166
	mlxsw_sp_acl_rulei_keymask_buf(rulei, MLXSW_AFK_ELEMENT_DST_IP_0_31,
167 168
				       &match.key->dst.s6_addr[0xC],
				       &match.mask->dst.s6_addr[0xC], 4);
169 170 171 172 173 174 175
}

static int mlxsw_sp_flower_parse_ports(struct mlxsw_sp *mlxsw_sp,
				       struct mlxsw_sp_acl_rule_info *rulei,
				       struct tc_cls_flower_offload *f,
				       u8 ip_proto)
{
176 177
	const struct flow_rule *rule = tc_cls_flower_offload_flow_rule(f);
	struct flow_match_ports match;
178

179
	if (!flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_PORTS))
180 181 182
		return 0;

	if (ip_proto != IPPROTO_TCP && ip_proto != IPPROTO_UDP) {
183
		NL_SET_ERR_MSG_MOD(f->common.extack, "Only UDP and TCP keys are supported");
184 185 186 187
		dev_err(mlxsw_sp->bus_info->dev, "Only UDP and TCP keys are supported\n");
		return -EINVAL;
	}

188
	flow_rule_match_ports(rule, &match);
189
	mlxsw_sp_acl_rulei_keymask_u32(rulei, MLXSW_AFK_ELEMENT_DST_L4_PORT,
190 191
				       ntohs(match.key->dst),
				       ntohs(match.mask->dst));
192
	mlxsw_sp_acl_rulei_keymask_u32(rulei, MLXSW_AFK_ELEMENT_SRC_L4_PORT,
193 194
				       ntohs(match.key->src),
				       ntohs(match.mask->src));
195 196 197
	return 0;
}

198 199 200 201 202
static int mlxsw_sp_flower_parse_tcp(struct mlxsw_sp *mlxsw_sp,
				     struct mlxsw_sp_acl_rule_info *rulei,
				     struct tc_cls_flower_offload *f,
				     u8 ip_proto)
{
203 204
	const struct flow_rule *rule = tc_cls_flower_offload_flow_rule(f);
	struct flow_match_tcp match;
205

206
	if (!flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_TCP))
207 208 209
		return 0;

	if (ip_proto != IPPROTO_TCP) {
210
		NL_SET_ERR_MSG_MOD(f->common.extack, "TCP keys supported only for TCP");
211 212 213 214
		dev_err(mlxsw_sp->bus_info->dev, "TCP keys supported only for TCP\n");
		return -EINVAL;
	}

215 216
	flow_rule_match_tcp(rule, &match);

217
	mlxsw_sp_acl_rulei_keymask_u32(rulei, MLXSW_AFK_ELEMENT_TCP_FLAGS,
218 219
				       ntohs(match.key->flags),
				       ntohs(match.mask->flags));
220 221 222
	return 0;
}

223 224 225 226 227
static int mlxsw_sp_flower_parse_ip(struct mlxsw_sp *mlxsw_sp,
				    struct mlxsw_sp_acl_rule_info *rulei,
				    struct tc_cls_flower_offload *f,
				    u16 n_proto)
{
228 229
	const struct flow_rule *rule = tc_cls_flower_offload_flow_rule(f);
	struct flow_match_ip match;
230

231
	if (!flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_IP))
232 233 234
		return 0;

	if (n_proto != ETH_P_IP && n_proto != ETH_P_IPV6) {
235
		NL_SET_ERR_MSG_MOD(f->common.extack, "IP keys supported only for IPv4/6");
236 237 238 239
		dev_err(mlxsw_sp->bus_info->dev, "IP keys supported only for IPv4/6\n");
		return -EINVAL;
	}

240 241
	flow_rule_match_ip(rule, &match);

242
	mlxsw_sp_acl_rulei_keymask_u32(rulei, MLXSW_AFK_ELEMENT_IP_TTL_,
243
				       match.key->ttl, match.mask->ttl);
244 245

	mlxsw_sp_acl_rulei_keymask_u32(rulei, MLXSW_AFK_ELEMENT_IP_ECN,
246 247
				       match.key->tos & 0x3,
				       match.mask->tos & 0x3);
248 249

	mlxsw_sp_acl_rulei_keymask_u32(rulei, MLXSW_AFK_ELEMENT_IP_DSCP,
250 251
				       match.key->tos >> 6,
				       match.mask->tos >> 6);
252

253 254 255
	return 0;
}

256
static int mlxsw_sp_flower_parse(struct mlxsw_sp *mlxsw_sp,
257
				 struct mlxsw_sp_acl_block *block,
258 259 260
				 struct mlxsw_sp_acl_rule_info *rulei,
				 struct tc_cls_flower_offload *f)
{
261 262
	struct flow_rule *rule = tc_cls_flower_offload_flow_rule(f);
	struct flow_dissector *dissector = rule->match.dissector;
263 264
	u16 n_proto_mask = 0;
	u16 n_proto_key = 0;
265 266 267 268
	u16 addr_type = 0;
	u8 ip_proto = 0;
	int err;

269
	if (dissector->used_keys &
270 271 272 273 274
	    ~(BIT(FLOW_DISSECTOR_KEY_CONTROL) |
	      BIT(FLOW_DISSECTOR_KEY_BASIC) |
	      BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS) |
	      BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS) |
	      BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS) |
275
	      BIT(FLOW_DISSECTOR_KEY_PORTS) |
276
	      BIT(FLOW_DISSECTOR_KEY_TCP) |
277
	      BIT(FLOW_DISSECTOR_KEY_IP) |
278
	      BIT(FLOW_DISSECTOR_KEY_VLAN))) {
279
		dev_err(mlxsw_sp->bus_info->dev, "Unsupported key\n");
280
		NL_SET_ERR_MSG_MOD(f->common.extack, "Unsupported key");
281 282 283
		return -EOPNOTSUPP;
	}

284
	mlxsw_sp_acl_rulei_priority(rulei, f->common.prio);
285

286 287 288 289 290
	if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_CONTROL)) {
		struct flow_match_control match;

		flow_rule_match_control(rule, &match);
		addr_type = match.key->addr_type;
291 292
	}

293 294 295 296 297 298
	if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_BASIC)) {
		struct flow_match_basic match;

		flow_rule_match_basic(rule, &match);
		n_proto_key = ntohs(match.key->n_proto);
		n_proto_mask = ntohs(match.mask->n_proto);
299 300 301 302 303

		if (n_proto_key == ETH_P_ALL) {
			n_proto_key = 0;
			n_proto_mask = 0;
		}
304 305
		mlxsw_sp_acl_rulei_keymask_u32(rulei,
					       MLXSW_AFK_ELEMENT_ETHERTYPE,
306 307
					       n_proto_key, n_proto_mask);

308
		ip_proto = match.key->ip_proto;
309 310
		mlxsw_sp_acl_rulei_keymask_u32(rulei,
					       MLXSW_AFK_ELEMENT_IP_PROTO,
311 312
					       match.key->ip_proto,
					       match.mask->ip_proto);
313 314
	}

315 316
	if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_ETH_ADDRS)) {
		struct flow_match_eth_addrs match;
317

318
		flow_rule_match_eth_addrs(rule, &match);
319
		mlxsw_sp_acl_rulei_keymask_buf(rulei,
320
					       MLXSW_AFK_ELEMENT_DMAC_32_47,
321 322
					       match.key->dst,
					       match.mask->dst, 2);
323 324
		mlxsw_sp_acl_rulei_keymask_buf(rulei,
					       MLXSW_AFK_ELEMENT_DMAC_0_31,
325 326
					       match.key->dst + 2,
					       match.mask->dst + 2, 4);
327 328
		mlxsw_sp_acl_rulei_keymask_buf(rulei,
					       MLXSW_AFK_ELEMENT_SMAC_32_47,
329 330
					       match.key->src,
					       match.mask->src, 2);
331
		mlxsw_sp_acl_rulei_keymask_buf(rulei,
332
					       MLXSW_AFK_ELEMENT_SMAC_0_31,
333 334
					       match.key->src + 2,
					       match.mask->src + 2, 4);
335 336
	}

337 338
	if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_VLAN)) {
		struct flow_match_vlan match;
339

340
		flow_rule_match_vlan(rule, &match);
341 342 343 344
		if (mlxsw_sp_acl_block_is_egress_bound(block)) {
			NL_SET_ERR_MSG_MOD(f->common.extack, "vlan_id key is not supported on egress");
			return -EOPNOTSUPP;
		}
345
		if (match.mask->vlan_id != 0)
346 347
			mlxsw_sp_acl_rulei_keymask_u32(rulei,
						       MLXSW_AFK_ELEMENT_VID,
348 349 350
						       match.key->vlan_id,
						       match.mask->vlan_id);
		if (match.mask->vlan_priority != 0)
351 352
			mlxsw_sp_acl_rulei_keymask_u32(rulei,
						       MLXSW_AFK_ELEMENT_PCP,
353 354
						       match.key->vlan_priority,
						       match.mask->vlan_priority);
355 356
	}

357 358 359 360 361 362 363
	if (addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS)
		mlxsw_sp_flower_parse_ipv4(rulei, f);

	if (addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS)
		mlxsw_sp_flower_parse_ipv6(rulei, f);

	err = mlxsw_sp_flower_parse_ports(mlxsw_sp, rulei, f, ip_proto);
364 365 366
	if (err)
		return err;
	err = mlxsw_sp_flower_parse_tcp(mlxsw_sp, rulei, f, ip_proto);
367 368 369
	if (err)
		return err;

370 371 372 373
	err = mlxsw_sp_flower_parse_ip(mlxsw_sp, rulei, f, n_proto_key & n_proto_mask);
	if (err)
		return err;

374 375
	return mlxsw_sp_flower_parse_actions(mlxsw_sp, block, rulei,
					     &f->rule->action,
376
					     f->common.extack);
377 378
}

379 380
int mlxsw_sp_flower_replace(struct mlxsw_sp *mlxsw_sp,
			    struct mlxsw_sp_acl_block *block,
381
			    struct tc_cls_flower_offload *f)
382 383 384 385 386 387
{
	struct mlxsw_sp_acl_rule_info *rulei;
	struct mlxsw_sp_acl_ruleset *ruleset;
	struct mlxsw_sp_acl_rule *rule;
	int err;

388
	ruleset = mlxsw_sp_acl_ruleset_get(mlxsw_sp, block,
389
					   f->common.chain_index,
390
					   MLXSW_SP_ACL_PROFILE_FLOWER, NULL);
391 392 393
	if (IS_ERR(ruleset))
		return PTR_ERR(ruleset);

394
	rule = mlxsw_sp_acl_rule_create(mlxsw_sp, ruleset, f->cookie, NULL,
395
					f->common.extack);
396 397 398 399 400 401
	if (IS_ERR(rule)) {
		err = PTR_ERR(rule);
		goto err_rule_create;
	}

	rulei = mlxsw_sp_acl_rule_rulei(rule);
402
	err = mlxsw_sp_flower_parse(mlxsw_sp, block, rulei, f);
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
	if (err)
		goto err_flower_parse;

	err = mlxsw_sp_acl_rulei_commit(rulei);
	if (err)
		goto err_rulei_commit;

	err = mlxsw_sp_acl_rule_add(mlxsw_sp, rule);
	if (err)
		goto err_rule_add;

	mlxsw_sp_acl_ruleset_put(mlxsw_sp, ruleset);
	return 0;

err_rule_add:
err_rulei_commit:
err_flower_parse:
	mlxsw_sp_acl_rule_destroy(mlxsw_sp, rule);
err_rule_create:
	mlxsw_sp_acl_ruleset_put(mlxsw_sp, ruleset);
	return err;
}

426 427
void mlxsw_sp_flower_destroy(struct mlxsw_sp *mlxsw_sp,
			     struct mlxsw_sp_acl_block *block,
428 429 430 431 432
			     struct tc_cls_flower_offload *f)
{
	struct mlxsw_sp_acl_ruleset *ruleset;
	struct mlxsw_sp_acl_rule *rule;

433 434
	ruleset = mlxsw_sp_acl_ruleset_get(mlxsw_sp, block,
					   f->common.chain_index,
435
					   MLXSW_SP_ACL_PROFILE_FLOWER, NULL);
436
	if (IS_ERR(ruleset))
437 438 439
		return;

	rule = mlxsw_sp_acl_rule_lookup(mlxsw_sp, ruleset, f->cookie);
440
	if (rule) {
441 442 443 444 445 446
		mlxsw_sp_acl_rule_del(mlxsw_sp, rule);
		mlxsw_sp_acl_rule_destroy(mlxsw_sp, rule);
	}

	mlxsw_sp_acl_ruleset_put(mlxsw_sp, ruleset);
}
447

448 449
int mlxsw_sp_flower_stats(struct mlxsw_sp *mlxsw_sp,
			  struct mlxsw_sp_acl_block *block,
450 451 452 453 454 455 456 457 458
			  struct tc_cls_flower_offload *f)
{
	struct mlxsw_sp_acl_ruleset *ruleset;
	struct mlxsw_sp_acl_rule *rule;
	u64 packets;
	u64 lastuse;
	u64 bytes;
	int err;

459 460
	ruleset = mlxsw_sp_acl_ruleset_get(mlxsw_sp, block,
					   f->common.chain_index,
461
					   MLXSW_SP_ACL_PROFILE_FLOWER, NULL);
462 463 464 465 466 467 468
	if (WARN_ON(IS_ERR(ruleset)))
		return -EINVAL;

	rule = mlxsw_sp_acl_rule_lookup(mlxsw_sp, ruleset, f->cookie);
	if (!rule)
		return -EINVAL;

469
	err = mlxsw_sp_acl_rule_get_stats(mlxsw_sp, rule, &packets, &bytes,
470 471 472 473
					  &lastuse);
	if (err)
		goto err_rule_get_stats;

474
	flow_stats_update(&f->stats, bytes, packets, lastuse);
475 476 477 478 479 480 481 482

	mlxsw_sp_acl_ruleset_put(mlxsw_sp, ruleset);
	return 0;

err_rule_get_stats:
	mlxsw_sp_acl_ruleset_put(mlxsw_sp, ruleset);
	return err;
}
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499

int mlxsw_sp_flower_tmplt_create(struct mlxsw_sp *mlxsw_sp,
				 struct mlxsw_sp_acl_block *block,
				 struct tc_cls_flower_offload *f)
{
	struct mlxsw_sp_acl_ruleset *ruleset;
	struct mlxsw_sp_acl_rule_info rulei;
	int err;

	memset(&rulei, 0, sizeof(rulei));
	err = mlxsw_sp_flower_parse(mlxsw_sp, block, &rulei, f);
	if (err)
		return err;
	ruleset = mlxsw_sp_acl_ruleset_get(mlxsw_sp, block,
					   f->common.chain_index,
					   MLXSW_SP_ACL_PROFILE_FLOWER,
					   &rulei.values.elusage);
500

501
	/* keep the reference to the ruleset */
502
	return PTR_ERR_OR_ZERO(ruleset);
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
}

void mlxsw_sp_flower_tmplt_destroy(struct mlxsw_sp *mlxsw_sp,
				   struct mlxsw_sp_acl_block *block,
				   struct tc_cls_flower_offload *f)
{
	struct mlxsw_sp_acl_ruleset *ruleset;

	ruleset = mlxsw_sp_acl_ruleset_get(mlxsw_sp, block,
					   f->common.chain_index,
					   MLXSW_SP_ACL_PROFILE_FLOWER, NULL);
	if (IS_ERR(ruleset))
		return;
	/* put the reference to the ruleset kept in create */
	mlxsw_sp_acl_ruleset_put(mlxsw_sp, ruleset);
	mlxsw_sp_acl_ruleset_put(mlxsw_sp, ruleset);
}