act_api.c 23.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * net/sched/act_api.c	Packet action API.
 *
 *		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.
 *
 * Author:	Jamal Hadi Salim
 *
 *
 */

#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
18
#include <linux/slab.h>
L
Linus Torvalds 已提交
19 20 21
#include <linux/skbuff.h>
#include <linux/init.h>
#include <linux/kmod.h>
22
#include <linux/err.h>
23
#include <linux/module.h>
24 25
#include <net/net_namespace.h>
#include <net/sock.h>
L
Linus Torvalds 已提交
26 27
#include <net/sch_generic.h>
#include <net/act_api.h>
28
#include <net/netlink.h>
L
Linus Torvalds 已提交
29

30
void tcf_hash_destroy(struct tc_action *a)
31
{
32 33 34
	struct tcf_common *p = a->priv;
	struct tcf_hashinfo *hinfo = a->ops->hinfo;

35 36 37 38 39 40 41 42 43 44
	spin_lock_bh(&hinfo->lock);
	hlist_del(&p->tcfc_head);
	spin_unlock_bh(&hinfo->lock);
	gen_kill_estimator(&p->tcfc_bstats,
			   &p->tcfc_rate_est);
	/*
	 * gen_estimator est_timer() might access p->tcfc_lock
	 * or bstats, wait a RCU grace period before freeing p
	 */
	kfree_rcu(p, tcfc_rcu);
45 46 47
}
EXPORT_SYMBOL(tcf_hash_destroy);

48
int tcf_hash_release(struct tc_action *a, int bind)
49
{
50
	struct tcf_common *p = a->priv;
51 52 53 54 55
	int ret = 0;

	if (p) {
		if (bind)
			p->tcfc_bindcnt--;
56 57
		else if (p->tcfc_bindcnt > 0)
			return -EPERM;
58 59

		p->tcfc_refcnt--;
60
		if (p->tcfc_bindcnt <= 0 && p->tcfc_refcnt <= 0) {
W
WANG Cong 已提交
61 62
			if (a->ops->cleanup)
				a->ops->cleanup(a, bind);
63
			tcf_hash_destroy(a);
64 65 66 67 68 69 70 71
			ret = 1;
		}
	}
	return ret;
}
EXPORT_SYMBOL(tcf_hash_release);

static int tcf_dump_walker(struct sk_buff *skb, struct netlink_callback *cb,
72
			   struct tc_action *a)
73
{
74
	struct tcf_hashinfo *hinfo = a->ops->hinfo;
75
	struct hlist_head *head;
76
	struct tcf_common *p;
E
Eric Dumazet 已提交
77
	int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
78
	struct nlattr *nest;
79

80
	spin_lock_bh(&hinfo->lock);
81 82 83 84

	s_i = cb->args[0];

	for (i = 0; i < (hinfo->hmask + 1); i++) {
85
		head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
86

87
		hlist_for_each_entry_rcu(p, head, tcfc_head) {
88 89 90 91 92
			index++;
			if (index < s_i)
				continue;
			a->priv = p;
			a->order = n_i;
93 94 95 96

			nest = nla_nest_start(skb, a->order);
			if (nest == NULL)
				goto nla_put_failure;
97 98 99
			err = tcf_action_dump_1(skb, a, 0, 0);
			if (err < 0) {
				index--;
100
				nlmsg_trim(skb, nest);
101 102
				goto done;
			}
103
			nla_nest_end(skb, nest);
104 105 106 107 108 109
			n_i++;
			if (n_i >= TCA_ACT_MAX_PRIO)
				goto done;
		}
	}
done:
110
	spin_unlock_bh(&hinfo->lock);
111 112 113 114
	if (n_i)
		cb->args[0] += n_i;
	return n_i;

115
nla_put_failure:
116
	nla_nest_cancel(skb, nest);
117 118 119
	goto done;
}

120
static int tcf_del_walker(struct sk_buff *skb, struct tc_action *a)
121
{
122
	struct tcf_hashinfo *hinfo = a->ops->hinfo;
123 124 125
	struct hlist_head *head;
	struct hlist_node *n;
	struct tcf_common *p;
126
	struct nlattr *nest;
E
Eric Dumazet 已提交
127
	int i = 0, n_i = 0;
128
	int ret = -EINVAL;
129

130 131 132
	nest = nla_nest_start(skb, a->order);
	if (nest == NULL)
		goto nla_put_failure;
133 134
	if (nla_put_string(skb, TCA_KIND, a->ops->kind))
		goto nla_put_failure;
135
	for (i = 0; i < (hinfo->hmask + 1); i++) {
136 137
		head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
		hlist_for_each_entry_safe(p, n, head, tcfc_head) {
138
			a->priv = p;
139 140
			ret = tcf_hash_release(a, 0);
			if (ret == ACT_P_DELETED) {
E
Eric Dumazet 已提交
141
				module_put(a->ops->owner);
142
				n_i++;
143 144
			} else if (ret < 0)
				goto nla_put_failure;
145 146
		}
	}
147 148
	if (nla_put_u32(skb, TCA_FCNT, n_i))
		goto nla_put_failure;
149
	nla_nest_end(skb, nest);
150 151

	return n_i;
152
nla_put_failure:
153
	nla_nest_cancel(skb, nest);
154
	return ret;
155 156
}

157 158
static int tcf_generic_walker(struct sk_buff *skb, struct netlink_callback *cb,
			      int type, struct tc_action *a)
159 160
{
	if (type == RTM_DELACTION) {
161
		return tcf_del_walker(skb, a);
162
	} else if (type == RTM_GETACTION) {
163
		return tcf_dump_walker(skb, cb, a);
164
	} else {
165
		WARN(1, "tcf_generic_walker: unknown action %d\n", type);
166 167 168 169
		return -EINVAL;
	}
}

170
static struct tcf_common *tcf_hash_lookup(u32 index, struct tcf_hashinfo *hinfo)
171
{
172 173
	struct tcf_common *p = NULL;
	struct hlist_head *head;
174

175 176 177
	spin_lock_bh(&hinfo->lock);
	head = &hinfo->htab[tcf_hash(index, hinfo->hmask)];
	hlist_for_each_entry_rcu(p, head, tcfc_head)
178 179
		if (p->tcfc_index == index)
			break;
180
	spin_unlock_bh(&hinfo->lock);
181 182 183 184

	return p;
}

185
u32 tcf_hash_new_index(struct tcf_hashinfo *hinfo)
186
{
187
	u32 val = hinfo->index;
188 189 190 191 192 193

	do {
		if (++val == 0)
			val = 1;
	} while (tcf_hash_lookup(val, hinfo));

194
	hinfo->index = val;
195
	return val;
196 197 198
}
EXPORT_SYMBOL(tcf_hash_new_index);

199
int tcf_hash_search(struct tc_action *a, u32 index)
200 201 202 203 204 205 206 207 208 209
{
	struct tcf_hashinfo *hinfo = a->ops->hinfo;
	struct tcf_common *p = tcf_hash_lookup(index, hinfo);

	if (p) {
		a->priv = p;
		return 1;
	}
	return 0;
}
210
EXPORT_SYMBOL(tcf_hash_search);
211

212
int tcf_hash_check(u32 index, struct tc_action *a, int bind)
213
{
214
	struct tcf_hashinfo *hinfo = a->ops->hinfo;
215 216
	struct tcf_common *p = NULL;
	if (index && (p = tcf_hash_lookup(index, hinfo)) != NULL) {
217
		if (bind)
218
			p->tcfc_bindcnt++;
219
		p->tcfc_refcnt++;
220
		a->priv = p;
221
		return 1;
222
	}
223
	return 0;
224 225 226
}
EXPORT_SYMBOL(tcf_hash_check);

227 228 229 230 231 232 233 234 235 236 237 238
void tcf_hash_cleanup(struct tc_action *a, struct nlattr *est)
{
	struct tcf_common *pc = a->priv;
	if (est)
		gen_kill_estimator(&pc->tcfc_bstats,
				   &pc->tcfc_rate_est);
	kfree_rcu(pc, tcfc_rcu);
}
EXPORT_SYMBOL(tcf_hash_cleanup);

int tcf_hash_create(u32 index, struct nlattr *est, struct tc_action *a,
		    int size, int bind)
239
{
240
	struct tcf_hashinfo *hinfo = a->ops->hinfo;
241 242 243
	struct tcf_common *p = kzalloc(size, GFP_KERNEL);

	if (unlikely(!p))
244
		return -ENOMEM;
245 246 247 248 249
	p->tcfc_refcnt = 1;
	if (bind)
		p->tcfc_bindcnt = 1;

	spin_lock_init(&p->tcfc_lock);
250
	INIT_HLIST_NODE(&p->tcfc_head);
251
	p->tcfc_index = index ? index : tcf_hash_new_index(hinfo);
252 253
	p->tcfc_tm.install = jiffies;
	p->tcfc_tm.lastuse = jiffies;
254
	if (est) {
255 256
		int err = gen_new_estimator(&p->tcfc_bstats, NULL,
					    &p->tcfc_rate_est,
257 258 259
					    &p->tcfc_lock, est);
		if (err) {
			kfree(p);
260
			return err;
261 262 263
		}
	}

264
	a->priv = (void *) p;
265
	return 0;
266 267 268
}
EXPORT_SYMBOL(tcf_hash_create);

269
void tcf_hash_insert(struct tc_action *a)
270
{
271 272
	struct tcf_common *p = a->priv;
	struct tcf_hashinfo *hinfo = a->ops->hinfo;
273 274
	unsigned int h = tcf_hash(p->tcfc_index, hinfo->hmask);

275 276 277
	spin_lock_bh(&hinfo->lock);
	hlist_add_head(&p->tcfc_head, &hinfo->htab[h]);
	spin_unlock_bh(&hinfo->lock);
278 279
}
EXPORT_SYMBOL(tcf_hash_insert);
L
Linus Torvalds 已提交
280

281
static LIST_HEAD(act_base);
L
Linus Torvalds 已提交
282 283
static DEFINE_RWLOCK(act_mod_lock);

284
int tcf_register_action(struct tc_action_ops *act, unsigned int mask)
L
Linus Torvalds 已提交
285
{
286
	struct tc_action_ops *a;
287
	int err;
L
Linus Torvalds 已提交
288

W
WANG Cong 已提交
289 290
	/* Must supply act, dump and init */
	if (!act->act || !act->dump || !act->init)
291 292
		return -EINVAL;

293
	/* Supply defaults */
294 295
	if (!act->lookup)
		act->lookup = tcf_hash_search;
296 297
	if (!act->walk)
		act->walk = tcf_generic_walker;
298

299 300 301 302 303 304 305 306 307
	act->hinfo = kmalloc(sizeof(struct tcf_hashinfo), GFP_KERNEL);
	if (!act->hinfo)
		return -ENOMEM;
	err = tcf_hashinfo_init(act->hinfo, mask);
	if (err) {
		kfree(act->hinfo);
		return err;
	}

L
Linus Torvalds 已提交
308
	write_lock(&act_mod_lock);
309
	list_for_each_entry(a, &act_base, head) {
L
Linus Torvalds 已提交
310 311
		if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
			write_unlock(&act_mod_lock);
312 313
			tcf_hashinfo_destroy(act->hinfo);
			kfree(act->hinfo);
L
Linus Torvalds 已提交
314 315 316
			return -EEXIST;
		}
	}
317
	list_add_tail(&act->head, &act_base);
L
Linus Torvalds 已提交
318 319 320
	write_unlock(&act_mod_lock);
	return 0;
}
321
EXPORT_SYMBOL(tcf_register_action);
L
Linus Torvalds 已提交
322 323 324

int tcf_unregister_action(struct tc_action_ops *act)
{
325
	struct tc_action_ops *a;
L
Linus Torvalds 已提交
326 327 328
	int err = -ENOENT;

	write_lock(&act_mod_lock);
329 330 331
	list_for_each_entry(a, &act_base, head) {
		if (a == act) {
			list_del(&act->head);
332 333
			tcf_hashinfo_destroy(act->hinfo);
			kfree(act->hinfo);
334
			err = 0;
L
Linus Torvalds 已提交
335
			break;
336
		}
L
Linus Torvalds 已提交
337 338 339 340
	}
	write_unlock(&act_mod_lock);
	return err;
}
341
EXPORT_SYMBOL(tcf_unregister_action);
L
Linus Torvalds 已提交
342 343 344 345

/* lookup by name */
static struct tc_action_ops *tc_lookup_action_n(char *kind)
{
346
	struct tc_action_ops *a, *res = NULL;
L
Linus Torvalds 已提交
347 348 349

	if (kind) {
		read_lock(&act_mod_lock);
350
		list_for_each_entry(a, &act_base, head) {
L
Linus Torvalds 已提交
351
			if (strcmp(kind, a->kind) == 0) {
352 353
				if (try_module_get(a->owner))
					res = a;
L
Linus Torvalds 已提交
354 355 356 357 358
				break;
			}
		}
		read_unlock(&act_mod_lock);
	}
359
	return res;
L
Linus Torvalds 已提交
360 361
}

362 363
/* lookup by nlattr */
static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
L
Linus Torvalds 已提交
364
{
365
	struct tc_action_ops *a, *res = NULL;
L
Linus Torvalds 已提交
366 367 368

	if (kind) {
		read_lock(&act_mod_lock);
369
		list_for_each_entry(a, &act_base, head) {
370
			if (nla_strcmp(kind, a->kind) == 0) {
371 372
				if (try_module_get(a->owner))
					res = a;
L
Linus Torvalds 已提交
373 374 375 376 377
				break;
			}
		}
		read_unlock(&act_mod_lock);
	}
378
	return res;
L
Linus Torvalds 已提交
379 380
}

381
int tcf_action_exec(struct sk_buff *skb, const struct list_head *actions,
382
		    struct tcf_result *res)
L
Linus Torvalds 已提交
383
{
384
	const struct tc_action *a;
L
Linus Torvalds 已提交
385 386 387 388 389 390 391
	int ret = -1;

	if (skb->tc_verd & TC_NCLS) {
		skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
		ret = TC_ACT_OK;
		goto exec_done;
	}
392
	list_for_each_entry(a, actions, list) {
L
Linus Torvalds 已提交
393
repeat:
394 395 396 397 398
		ret = a->ops->act(skb, a, res);
		if (ret == TC_ACT_REPEAT)
			goto repeat;	/* we need a ttl - JHS */
		if (ret != TC_ACT_PIPE)
			goto exec_done;
L
Linus Torvalds 已提交
399 400 401 402
	}
exec_done:
	return ret;
}
403
EXPORT_SYMBOL(tcf_action_exec);
L
Linus Torvalds 已提交
404

405
int tcf_action_destroy(struct list_head *actions, int bind)
L
Linus Torvalds 已提交
406
{
407
	struct tc_action *a, *tmp;
408
	int ret = 0;
L
Linus Torvalds 已提交
409

410
	list_for_each_entry_safe(a, tmp, actions, list) {
411 412
		ret = tcf_hash_release(a, bind);
		if (ret == ACT_P_DELETED)
413
			module_put(a->ops->owner);
414 415
		else if (ret < 0)
			return ret;
416 417
		list_del(&a->list);
		kfree(a);
L
Linus Torvalds 已提交
418
	}
419
	return ret;
L
Linus Torvalds 已提交
420 421 422 423 424 425 426 427 428 429 430 431
}

int
tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
{
	return a->ops->dump(skb, a, bind, ref);
}

int
tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
{
	int err = -EINVAL;
432
	unsigned char *b = skb_tail_pointer(skb);
433
	struct nlattr *nest;
L
Linus Torvalds 已提交
434

435 436
	if (nla_put_string(skb, TCA_KIND, a->ops->kind))
		goto nla_put_failure;
L
Linus Torvalds 已提交
437
	if (tcf_action_copy_stats(skb, a, 0))
438
		goto nla_put_failure;
439 440 441
	nest = nla_nest_start(skb, TCA_OPTIONS);
	if (nest == NULL)
		goto nla_put_failure;
E
Eric Dumazet 已提交
442 443
	err = tcf_action_dump_old(skb, a, bind, ref);
	if (err > 0) {
444
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
445 446 447
		return err;
	}

448
nla_put_failure:
449
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
450 451
	return -1;
}
452
EXPORT_SYMBOL(tcf_action_dump_1);
L
Linus Torvalds 已提交
453 454

int
455
tcf_action_dump(struct sk_buff *skb, struct list_head *actions, int bind, int ref)
L
Linus Torvalds 已提交
456 457 458
{
	struct tc_action *a;
	int err = -EINVAL;
459
	struct nlattr *nest;
L
Linus Torvalds 已提交
460

461
	list_for_each_entry(a, actions, list) {
462 463 464
		nest = nla_nest_start(skb, a->order);
		if (nest == NULL)
			goto nla_put_failure;
L
Linus Torvalds 已提交
465 466
		err = tcf_action_dump_1(skb, a, bind, ref);
		if (err < 0)
467
			goto errout;
468
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
469 470 471 472
	}

	return 0;

473
nla_put_failure:
474 475
	err = -EINVAL;
errout:
476
	nla_nest_cancel(skb, nest);
477
	return err;
L
Linus Torvalds 已提交
478 479
}

480 481 482
struct tc_action *tcf_action_init_1(struct net *net, struct nlattr *nla,
				    struct nlattr *est, char *name, int ovr,
				    int bind)
L
Linus Torvalds 已提交
483 484 485 486
{
	struct tc_action *a;
	struct tc_action_ops *a_o;
	char act_name[IFNAMSIZ];
E
Eric Dumazet 已提交
487
	struct nlattr *tb[TCA_ACT_MAX + 1];
488
	struct nlattr *kind;
489
	int err;
L
Linus Torvalds 已提交
490 491

	if (name == NULL) {
492 493
		err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
		if (err < 0)
L
Linus Torvalds 已提交
494
			goto err_out;
495
		err = -EINVAL;
496
		kind = tb[TCA_ACT_KIND];
L
Linus Torvalds 已提交
497 498
		if (kind == NULL)
			goto err_out;
499
		if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
L
Linus Torvalds 已提交
500 501
			goto err_out;
	} else {
502
		err = -EINVAL;
L
Linus Torvalds 已提交
503 504 505 506 507 508
		if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
			goto err_out;
	}

	a_o = tc_lookup_action_n(act_name);
	if (a_o == NULL) {
509
#ifdef CONFIG_MODULES
L
Linus Torvalds 已提交
510
		rtnl_unlock();
511
		request_module("act_%s", act_name);
L
Linus Torvalds 已提交
512 513 514 515 516 517 518 519 520 521 522
		rtnl_lock();

		a_o = tc_lookup_action_n(act_name);

		/* We dropped the RTNL semaphore in order to
		 * perform the module load.  So, even if we
		 * succeeded in loading the module we have to
		 * tell the caller to replay the request.  We
		 * indicate this using -EAGAIN.
		 */
		if (a_o != NULL) {
523
			err = -EAGAIN;
L
Linus Torvalds 已提交
524 525 526
			goto err_mod;
		}
#endif
527
		err = -ENOENT;
L
Linus Torvalds 已提交
528 529 530
		goto err_out;
	}

531
	err = -ENOMEM;
532
	a = kzalloc(sizeof(*a), GFP_KERNEL);
L
Linus Torvalds 已提交
533 534 535
	if (a == NULL)
		goto err_mod;

536
	a->ops = a_o;
537
	INIT_LIST_HEAD(&a->list);
L
Linus Torvalds 已提交
538 539
	/* backward compatibility for policer */
	if (name == NULL)
540
		err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, a, ovr, bind);
L
Linus Torvalds 已提交
541
	else
542
		err = a_o->init(net, nla, est, a, ovr, bind);
543
	if (err < 0)
L
Linus Torvalds 已提交
544 545 546
		goto err_free;

	/* module count goes up only when brand new policy is created
E
Eric Dumazet 已提交
547 548 549
	 * if it exists and is only bound to in a_o->init() then
	 * ACT_P_CREATED is not returned (a zero is).
	 */
550
	if (err != ACT_P_CREATED)
L
Linus Torvalds 已提交
551 552 553 554 555 556 557 558 559
		module_put(a_o->owner);

	return a;

err_free:
	kfree(a);
err_mod:
	module_put(a_o->owner);
err_out:
560
	return ERR_PTR(err);
L
Linus Torvalds 已提交
561 562
}

563
int tcf_action_init(struct net *net, struct nlattr *nla,
564
				  struct nlattr *est, char *name, int ovr,
565
				  int bind, struct list_head *actions)
L
Linus Torvalds 已提交
566
{
E
Eric Dumazet 已提交
567
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
568
	struct tc_action *act;
569
	int err;
L
Linus Torvalds 已提交
570 571
	int i;

572 573
	err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
	if (err < 0)
574
		return err;
L
Linus Torvalds 已提交
575

576
	for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
577
		act = tcf_action_init_1(net, tb[i], est, name, ovr, bind);
578 579
		if (IS_ERR(act)) {
			err = PTR_ERR(act);
L
Linus Torvalds 已提交
580
			goto err;
581
		}
582
		act->order = i;
583
		list_add_tail(&act->list, actions);
L
Linus Torvalds 已提交
584
	}
585
	return 0;
L
Linus Torvalds 已提交
586 587

err:
588 589
	tcf_action_destroy(actions, bind);
	return err;
L
Linus Torvalds 已提交
590 591 592 593 594 595 596
}

int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *a,
			  int compat_mode)
{
	int err = 0;
	struct gnet_dump d;
597
	struct tcf_common *p = a->priv;
598

599
	if (p == NULL)
L
Linus Torvalds 已提交
600 601 602
		goto errout;

	/* compat_mode being true specifies a call that is supposed
603
	 * to add additional backward compatibility statistic TLVs.
L
Linus Torvalds 已提交
604 605 606 607
	 */
	if (compat_mode) {
		if (a->type == TCA_OLD_COMPAT)
			err = gnet_stats_start_copy_compat(skb, 0,
608
				TCA_STATS, TCA_XSTATS, &p->tcfc_lock, &d);
L
Linus Torvalds 已提交
609 610 611 612
		else
			return 0;
	} else
		err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
613
					    &p->tcfc_lock, &d);
L
Linus Torvalds 已提交
614 615 616 617

	if (err < 0)
		goto errout;

618
	if (gnet_stats_copy_basic(&d, NULL, &p->tcfc_bstats) < 0 ||
619 620
	    gnet_stats_copy_rate_est(&d, &p->tcfc_bstats,
				     &p->tcfc_rate_est) < 0 ||
621
	    gnet_stats_copy_queue(&d, NULL,
622 623
				  &p->tcfc_qstats,
				  p->tcfc_qstats.qlen) < 0)
L
Linus Torvalds 已提交
624 625 626 627 628 629 630 631 632 633 634 635
		goto errout;

	if (gnet_stats_finish_copy(&d) < 0)
		goto errout;

	return 0;

errout:
	return -1;
}

static int
636
tca_get_fill(struct sk_buff *skb, struct list_head *actions, u32 portid, u32 seq,
637
	     u16 flags, int event, int bind, int ref)
L
Linus Torvalds 已提交
638 639 640
{
	struct tcamsg *t;
	struct nlmsghdr *nlh;
641
	unsigned char *b = skb_tail_pointer(skb);
642
	struct nlattr *nest;
L
Linus Torvalds 已提交
643

644
	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
645 646 647
	if (!nlh)
		goto out_nlmsg_trim;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
648
	t->tca_family = AF_UNSPEC;
649 650
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
651

652 653
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
654
		goto out_nlmsg_trim;
L
Linus Torvalds 已提交
655

656
	if (tcf_action_dump(skb, actions, bind, ref) < 0)
657
		goto out_nlmsg_trim;
L
Linus Torvalds 已提交
658

659
	nla_nest_end(skb, nest);
660

661
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
662 663
	return skb->len;

664
out_nlmsg_trim:
665
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
666 667 668 669
	return -1;
}

static int
670
act_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
671
	       struct list_head *actions, int event)
L
Linus Torvalds 已提交
672 673 674 675 676 677
{
	struct sk_buff *skb;

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb)
		return -ENOBUFS;
678
	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event, 0, 0) <= 0) {
L
Linus Torvalds 已提交
679 680 681
		kfree_skb(skb);
		return -EINVAL;
	}
682

683
	return rtnl_unicast(skb, net, portid);
L
Linus Torvalds 已提交
684 685
}

686 687 688 689 690 691 692 693 694 695 696 697 698 699
static struct tc_action *create_a(int i)
{
	struct tc_action *act;

	act = kzalloc(sizeof(*act), GFP_KERNEL);
	if (act == NULL) {
		pr_debug("create_a: failed to alloc!\n");
		return NULL;
	}
	act->order = i;
	INIT_LIST_HEAD(&act->list);
	return act;
}

L
Linus Torvalds 已提交
700
static struct tc_action *
701
tcf_action_get_1(struct nlattr *nla, struct nlmsghdr *n, u32 portid)
L
Linus Torvalds 已提交
702
{
E
Eric Dumazet 已提交
703
	struct nlattr *tb[TCA_ACT_MAX + 1];
L
Linus Torvalds 已提交
704 705
	struct tc_action *a;
	int index;
706
	int err;
L
Linus Torvalds 已提交
707

708 709
	err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
	if (err < 0)
710
		goto err_out;
L
Linus Torvalds 已提交
711

712
	err = -EINVAL;
713 714
	if (tb[TCA_ACT_INDEX] == NULL ||
	    nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
715
		goto err_out;
716
	index = nla_get_u32(tb[TCA_ACT_INDEX]);
L
Linus Torvalds 已提交
717

718
	err = -ENOMEM;
719
	a = create_a(0);
L
Linus Torvalds 已提交
720
	if (a == NULL)
721
		goto err_out;
L
Linus Torvalds 已提交
722

723
	err = -EINVAL;
724
	a->ops = tc_lookup_action(tb[TCA_ACT_KIND]);
725
	if (a->ops == NULL) /* could happen in batch of actions */
L
Linus Torvalds 已提交
726
		goto err_free;
727
	err = -ENOENT;
L
Linus Torvalds 已提交
728 729 730 731 732
	if (a->ops->lookup(a, index) == 0)
		goto err_mod;

	module_put(a->ops->owner);
	return a;
733

L
Linus Torvalds 已提交
734 735 736 737
err_mod:
	module_put(a->ops->owner);
err_free:
	kfree(a);
738 739
err_out:
	return ERR_PTR(err);
L
Linus Torvalds 已提交
740 741
}

742
static void cleanup_a(struct list_head *actions)
L
Linus Torvalds 已提交
743
{
744
	struct tc_action *a, *tmp;
L
Linus Torvalds 已提交
745

746 747
	list_for_each_entry_safe(a, tmp, actions, list) {
		list_del(&a->list);
L
Linus Torvalds 已提交
748 749 750 751
		kfree(a);
	}
}

752
static int tca_action_flush(struct net *net, struct nlattr *nla,
753
			    struct nlmsghdr *n, u32 portid)
L
Linus Torvalds 已提交
754 755 756 757 758 759
{
	struct sk_buff *skb;
	unsigned char *b;
	struct nlmsghdr *nlh;
	struct tcamsg *t;
	struct netlink_callback dcb;
760
	struct nlattr *nest;
E
Eric Dumazet 已提交
761
	struct nlattr *tb[TCA_ACT_MAX + 1];
762
	struct nlattr *kind;
763
	struct tc_action a;
764
	int err = -ENOMEM;
L
Linus Torvalds 已提交
765 766 767

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb) {
768
		pr_debug("tca_action_flush: failed skb alloc\n");
769
		return err;
L
Linus Torvalds 已提交
770 771
	}

772
	b = skb_tail_pointer(skb);
L
Linus Torvalds 已提交
773

774 775
	err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
	if (err < 0)
L
Linus Torvalds 已提交
776 777
		goto err_out;

778
	err = -EINVAL;
779
	kind = tb[TCA_ACT_KIND];
780 781 782 783
	memset(&a, 0, sizeof(struct tc_action));
	INIT_LIST_HEAD(&a.list);
	a.ops = tc_lookup_action(kind);
	if (a.ops == NULL) /*some idjot trying to flush unknown action */
L
Linus Torvalds 已提交
784 785
		goto err_out;

786
	nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION, sizeof(*t), 0);
787 788 789
	if (!nlh)
		goto out_module_put;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
790
	t->tca_family = AF_UNSPEC;
791 792
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
L
Linus Torvalds 已提交
793

794 795
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
796
		goto out_module_put;
L
Linus Torvalds 已提交
797

798
	err = a.ops->walk(skb, &dcb, RTM_DELACTION, &a);
L
Linus Torvalds 已提交
799
	if (err < 0)
800
		goto out_module_put;
801 802
	if (err == 0)
		goto noflush_out;
L
Linus Torvalds 已提交
803

804
	nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
805

806
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
807
	nlh->nlmsg_flags |= NLM_F_ROOT;
808
	module_put(a.ops->owner);
809
	err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
E
Eric Dumazet 已提交
810
			     n->nlmsg_flags & NLM_F_ECHO);
L
Linus Torvalds 已提交
811 812 813 814 815
	if (err > 0)
		return 0;

	return err;

816
out_module_put:
817
	module_put(a.ops->owner);
L
Linus Torvalds 已提交
818
err_out:
819
noflush_out:
L
Linus Torvalds 已提交
820 821 822 823
	kfree_skb(skb);
	return err;
}

824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
static int
tcf_del_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
	       u32 portid)
{
	int ret;
	struct sk_buff *skb;

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb)
		return -ENOBUFS;

	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, RTM_DELACTION,
			 0, 1) <= 0) {
		kfree_skb(skb);
		return -EINVAL;
	}

	/* now do the delete */
842 843 844 845 846
	ret = tcf_action_destroy(actions, 0);
	if (ret < 0) {
		kfree_skb(skb);
		return ret;
	}
847 848 849 850 851 852 853 854

	ret = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
			     n->nlmsg_flags & NLM_F_ECHO);
	if (ret > 0)
		return 0;
	return ret;
}

L
Linus Torvalds 已提交
855
static int
856
tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
857
	      u32 portid, int event)
L
Linus Torvalds 已提交
858
{
859
	int i, ret;
E
Eric Dumazet 已提交
860
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
861 862
	struct tc_action *act;
	LIST_HEAD(actions);
L
Linus Torvalds 已提交
863

864 865 866
	ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
867

E
Eric Dumazet 已提交
868
	if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
869
		if (tb[1] != NULL)
870
			return tca_action_flush(net, tb[1], n, portid);
871 872
		else
			return -EINVAL;
L
Linus Torvalds 已提交
873 874
	}

875
	for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
876
		act = tcf_action_get_1(tb[i], n, portid);
877 878
		if (IS_ERR(act)) {
			ret = PTR_ERR(act);
L
Linus Torvalds 已提交
879
			goto err;
880
		}
881
		act->order = i;
882
		list_add_tail(&act->list, &actions);
L
Linus Torvalds 已提交
883 884 885
	}

	if (event == RTM_GETACTION)
886
		ret = act_get_notify(net, portid, n, &actions, event);
L
Linus Torvalds 已提交
887
	else { /* delete */
888 889
		ret = tcf_del_notify(net, n, &actions, portid);
		if (ret)
L
Linus Torvalds 已提交
890 891 892 893
			goto err;
		return ret;
	}
err:
894
	cleanup_a(&actions);
L
Linus Torvalds 已提交
895 896 897
	return ret;
}

898 899 900
static int
tcf_add_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
	       u32 portid)
L
Linus Torvalds 已提交
901 902 903 904 905 906 907 908
{
	struct sk_buff *skb;
	int err = 0;

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb)
		return -ENOBUFS;

909 910 911 912 913
	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
			 RTM_NEWACTION, 0, 0) <= 0) {
		kfree_skb(skb);
		return -EINVAL;
	}
914

915 916
	err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
			     n->nlmsg_flags & NLM_F_ECHO);
L
Linus Torvalds 已提交
917 918 919 920 921 922
	if (err > 0)
		err = 0;
	return err;
}

static int
923
tcf_action_add(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
924
	       u32 portid, int ovr)
L
Linus Torvalds 已提交
925 926
{
	int ret = 0;
927
	LIST_HEAD(actions);
L
Linus Torvalds 已提交
928

929 930
	ret = tcf_action_init(net, nla, NULL, NULL, ovr, 0, &actions);
	if (ret)
931
		goto done;
L
Linus Torvalds 已提交
932 933 934

	/* dump then free all the actions after update; inserted policy
	 * stays intact
E
Eric Dumazet 已提交
935
	 */
936
	ret = tcf_add_notify(net, n, &actions, portid);
937
	cleanup_a(&actions);
L
Linus Torvalds 已提交
938 939 940 941
done:
	return ret;
}

942
static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n)
L
Linus Torvalds 已提交
943
{
944
	struct net *net = sock_net(skb->sk);
945
	struct nlattr *tca[TCA_ACT_MAX + 1];
946
	u32 portid = skb ? NETLINK_CB(skb).portid : 0;
L
Linus Torvalds 已提交
947 948
	int ret = 0, ovr = 0;

949
	if ((n->nlmsg_type != RTM_GETACTION) && !netlink_capable(skb, CAP_NET_ADMIN))
950 951
		return -EPERM;

952 953 954 955 956
	ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ACT_MAX, NULL);
	if (ret < 0)
		return ret;

	if (tca[TCA_ACT_TAB] == NULL) {
957
		pr_notice("tc_ctl_action: received NO action attribs\n");
L
Linus Torvalds 已提交
958 959 960
		return -EINVAL;
	}

E
Eric Dumazet 已提交
961
	/* n->nlmsg_flags & NLM_F_CREATE */
L
Linus Torvalds 已提交
962 963 964
	switch (n->nlmsg_type) {
	case RTM_NEWACTION:
		/* we are going to assume all other flags
L
Lucas De Marchi 已提交
965
		 * imply create only if it doesn't exist
L
Linus Torvalds 已提交
966 967 968 969
		 * Note that CREATE | EXCL implies that
		 * but since we want avoid ambiguity (eg when flags
		 * is zero) then just set this
		 */
E
Eric Dumazet 已提交
970
		if (n->nlmsg_flags & NLM_F_REPLACE)
L
Linus Torvalds 已提交
971 972
			ovr = 1;
replay:
973
		ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr);
L
Linus Torvalds 已提交
974 975 976 977
		if (ret == -EAGAIN)
			goto replay;
		break;
	case RTM_DELACTION:
978
		ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
979
				    portid, RTM_DELACTION);
L
Linus Torvalds 已提交
980 981
		break;
	case RTM_GETACTION:
982
		ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
983
				    portid, RTM_GETACTION);
L
Linus Torvalds 已提交
984 985 986 987 988 989 990 991
		break;
	default:
		BUG();
	}

	return ret;
}

992
static struct nlattr *
993
find_dump_kind(const struct nlmsghdr *n)
L
Linus Torvalds 已提交
994
{
E
Eric Dumazet 已提交
995
	struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
996 997 998
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
	struct nlattr *nla[TCAA_MAX + 1];
	struct nlattr *kind;
L
Linus Torvalds 已提交
999

1000
	if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0)
L
Linus Torvalds 已提交
1001
		return NULL;
1002
	tb1 = nla[TCA_ACT_TAB];
L
Linus Torvalds 已提交
1003 1004 1005
	if (tb1 == NULL)
		return NULL;

1006 1007
	if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
		      NLMSG_ALIGN(nla_len(tb1)), NULL) < 0)
L
Linus Torvalds 已提交
1008 1009
		return NULL;

1010 1011 1012 1013
	if (tb[1] == NULL)
		return NULL;
	if (nla_parse(tb2, TCA_ACT_MAX, nla_data(tb[1]),
		      nla_len(tb[1]), NULL) < 0)
L
Linus Torvalds 已提交
1014
		return NULL;
1015
	kind = tb2[TCA_ACT_KIND];
L
Linus Torvalds 已提交
1016

1017
	return kind;
L
Linus Torvalds 已提交
1018 1019 1020 1021 1022 1023
}

static int
tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
{
	struct nlmsghdr *nlh;
1024
	unsigned char *b = skb_tail_pointer(skb);
1025
	struct nlattr *nest;
L
Linus Torvalds 已提交
1026 1027 1028
	struct tc_action_ops *a_o;
	struct tc_action a;
	int ret = 0;
1029
	struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
1030
	struct nlattr *kind = find_dump_kind(cb->nlh);
L
Linus Torvalds 已提交
1031 1032

	if (kind == NULL) {
1033
		pr_info("tc_dump_action: action bad kind\n");
L
Linus Torvalds 已提交
1034 1035 1036
		return 0;
	}

1037
	a_o = tc_lookup_action(kind);
E
Eric Dumazet 已提交
1038
	if (a_o == NULL)
L
Linus Torvalds 已提交
1039 1040 1041 1042 1043
		return 0;

	memset(&a, 0, sizeof(struct tc_action));
	a.ops = a_o;

1044
	nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
1045 1046 1047 1048
			cb->nlh->nlmsg_type, sizeof(*t), 0);
	if (!nlh)
		goto out_module_put;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
1049
	t->tca_family = AF_UNSPEC;
1050 1051
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
L
Linus Torvalds 已提交
1052

1053 1054
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
1055
		goto out_module_put;
L
Linus Torvalds 已提交
1056 1057 1058

	ret = a_o->walk(skb, cb, RTM_GETACTION, &a);
	if (ret < 0)
1059
		goto out_module_put;
L
Linus Torvalds 已提交
1060 1061

	if (ret > 0) {
1062
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
1063 1064
		ret = skb->len;
	} else
1065
		nla_nest_cancel(skb, nest);
L
Linus Torvalds 已提交
1066

1067
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1068
	if (NETLINK_CB(cb->skb).portid && ret)
L
Linus Torvalds 已提交
1069 1070 1071 1072
		nlh->nlmsg_flags |= NLM_F_MULTI;
	module_put(a_o->owner);
	return skb->len;

1073
out_module_put:
L
Linus Torvalds 已提交
1074
	module_put(a_o->owner);
1075
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
1076 1077 1078 1079 1080
	return skb->len;
}

static int __init tc_action_init(void)
{
1081 1082 1083 1084
	rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, NULL);
	rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, NULL);
	rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
		      NULL);
L
Linus Torvalds 已提交
1085 1086 1087 1088 1089

	return 0;
}

subsys_initcall(tc_action_init);