act_api.c 23.4 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 (TC_MUNGED & skb->tc_verd) {
			/* copied already, allow trampling */
			skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd);
			skb->tc_verd = CLR_TC_MUNGED(skb->tc_verd);
L
Linus Torvalds 已提交
399
		}
400 401 402 403
		if (ret == TC_ACT_REPEAT)
			goto repeat;	/* we need a ttl - JHS */
		if (ret != TC_ACT_PIPE)
			goto exec_done;
L
Linus Torvalds 已提交
404 405 406 407
	}
exec_done:
	return ret;
}
408
EXPORT_SYMBOL(tcf_action_exec);
L
Linus Torvalds 已提交
409

410
int tcf_action_destroy(struct list_head *actions, int bind)
L
Linus Torvalds 已提交
411
{
412
	struct tc_action *a, *tmp;
413
	int ret = 0;
L
Linus Torvalds 已提交
414

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

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;
437
	unsigned char *b = skb_tail_pointer(skb);
438
	struct nlattr *nest;
L
Linus Torvalds 已提交
439

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

453
nla_put_failure:
454
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
455 456
	return -1;
}
457
EXPORT_SYMBOL(tcf_action_dump_1);
L
Linus Torvalds 已提交
458 459

int
460
tcf_action_dump(struct sk_buff *skb, struct list_head *actions, int bind, int ref)
L
Linus Torvalds 已提交
461 462 463
{
	struct tc_action *a;
	int err = -EINVAL;
464
	struct nlattr *nest;
L
Linus Torvalds 已提交
465

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

	return 0;

478
nla_put_failure:
479 480
	err = -EINVAL;
errout:
481
	nla_nest_cancel(skb, nest);
482
	return err;
L
Linus Torvalds 已提交
483 484
}

485 486 487
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 已提交
488 489 490 491
{
	struct tc_action *a;
	struct tc_action_ops *a_o;
	char act_name[IFNAMSIZ];
E
Eric Dumazet 已提交
492
	struct nlattr *tb[TCA_ACT_MAX + 1];
493
	struct nlattr *kind;
494
	int err;
L
Linus Torvalds 已提交
495 496

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

	a_o = tc_lookup_action_n(act_name);
	if (a_o == NULL) {
514
#ifdef CONFIG_MODULES
L
Linus Torvalds 已提交
515
		rtnl_unlock();
516
		request_module("act_%s", act_name);
L
Linus Torvalds 已提交
517 518 519 520 521 522 523 524 525 526 527
		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) {
528
			err = -EAGAIN;
L
Linus Torvalds 已提交
529 530 531
			goto err_mod;
		}
#endif
532
		err = -ENOENT;
L
Linus Torvalds 已提交
533 534 535
		goto err_out;
	}

536
	err = -ENOMEM;
537
	a = kzalloc(sizeof(*a), GFP_KERNEL);
L
Linus Torvalds 已提交
538 539 540
	if (a == NULL)
		goto err_mod;

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

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

	return a;

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

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

577 578
	err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
	if (err < 0)
579
		return err;
L
Linus Torvalds 已提交
580

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

err:
593 594
	tcf_action_destroy(actions, bind);
	return err;
L
Linus Torvalds 已提交
595 596 597 598 599 600 601
}

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

604
	if (p == NULL)
L
Linus Torvalds 已提交
605 606 607
		goto errout;

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

	if (err < 0)
		goto errout;

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

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

	return 0;

errout:
	return -1;
}

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

649
	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
650 651 652
	if (!nlh)
		goto out_nlmsg_trim;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
653
	t->tca_family = AF_UNSPEC;
654 655
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
656

657 658
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
659
		goto out_nlmsg_trim;
L
Linus Torvalds 已提交
660

661
	if (tcf_action_dump(skb, actions, bind, ref) < 0)
662
		goto out_nlmsg_trim;
L
Linus Torvalds 已提交
663

664
	nla_nest_end(skb, nest);
665

666
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
667 668
	return skb->len;

669
out_nlmsg_trim:
670
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
671 672 673 674
	return -1;
}

static int
675
act_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
676
	       struct list_head *actions, int event)
L
Linus Torvalds 已提交
677 678 679 680 681 682
{
	struct sk_buff *skb;

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb)
		return -ENOBUFS;
683
	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event, 0, 0) <= 0) {
L
Linus Torvalds 已提交
684 685 686
		kfree_skb(skb);
		return -EINVAL;
	}
687

688
	return rtnl_unicast(skb, net, portid);
L
Linus Torvalds 已提交
689 690
}

691 692 693 694 695 696 697 698 699 700 701 702 703 704
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 已提交
705
static struct tc_action *
706
tcf_action_get_1(struct nlattr *nla, struct nlmsghdr *n, u32 portid)
L
Linus Torvalds 已提交
707
{
E
Eric Dumazet 已提交
708
	struct nlattr *tb[TCA_ACT_MAX + 1];
L
Linus Torvalds 已提交
709 710
	struct tc_action *a;
	int index;
711
	int err;
L
Linus Torvalds 已提交
712

713 714
	err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
	if (err < 0)
715
		goto err_out;
L
Linus Torvalds 已提交
716

717
	err = -EINVAL;
718 719
	if (tb[TCA_ACT_INDEX] == NULL ||
	    nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
720
		goto err_out;
721
	index = nla_get_u32(tb[TCA_ACT_INDEX]);
L
Linus Torvalds 已提交
722

723
	err = -ENOMEM;
724
	a = create_a(0);
L
Linus Torvalds 已提交
725
	if (a == NULL)
726
		goto err_out;
L
Linus Torvalds 已提交
727

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

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

L
Linus Torvalds 已提交
739 740 741 742
err_mod:
	module_put(a->ops->owner);
err_free:
	kfree(a);
743 744
err_out:
	return ERR_PTR(err);
L
Linus Torvalds 已提交
745 746
}

747
static void cleanup_a(struct list_head *actions)
L
Linus Torvalds 已提交
748
{
749
	struct tc_action *a, *tmp;
L
Linus Torvalds 已提交
750

751 752
	list_for_each_entry_safe(a, tmp, actions, list) {
		list_del(&a->list);
L
Linus Torvalds 已提交
753 754 755 756
		kfree(a);
	}
}

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

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb) {
773
		pr_debug("tca_action_flush: failed skb alloc\n");
774
		return err;
L
Linus Torvalds 已提交
775 776
	}

777
	b = skb_tail_pointer(skb);
L
Linus Torvalds 已提交
778

779 780
	err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
	if (err < 0)
L
Linus Torvalds 已提交
781 782
		goto err_out;

783
	err = -EINVAL;
784
	kind = tb[TCA_ACT_KIND];
785 786 787 788
	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 已提交
789 790
		goto err_out;

791
	nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION, sizeof(*t), 0);
792 793 794
	if (!nlh)
		goto out_module_put;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
795
	t->tca_family = AF_UNSPEC;
796 797
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
L
Linus Torvalds 已提交
798

799 800
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
801
		goto out_module_put;
L
Linus Torvalds 已提交
802

803
	err = a.ops->walk(skb, &dcb, RTM_DELACTION, &a);
L
Linus Torvalds 已提交
804
	if (err < 0)
805
		goto out_module_put;
806 807
	if (err == 0)
		goto noflush_out;
L
Linus Torvalds 已提交
808

809
	nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
810

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

	return err;

821
out_module_put:
822
	module_put(a.ops->owner);
L
Linus Torvalds 已提交
823
err_out:
824
noflush_out:
L
Linus Torvalds 已提交
825 826 827 828
	kfree_skb(skb);
	return err;
}

829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
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 */
847 848 849 850 851
	ret = tcf_action_destroy(actions, 0);
	if (ret < 0) {
		kfree_skb(skb);
		return ret;
	}
852 853 854 855 856 857 858 859

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

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

869 870 871
	ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
872

E
Eric Dumazet 已提交
873
	if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
874
		if (tb[1] != NULL)
875
			return tca_action_flush(net, tb[1], n, portid);
876 877
		else
			return -EINVAL;
L
Linus Torvalds 已提交
878 879
	}

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

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

903 904 905
static int
tcf_add_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
	       u32 portid)
L
Linus Torvalds 已提交
906 907 908 909 910 911 912 913
{
	struct sk_buff *skb;
	int err = 0;

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

914 915 916 917 918
	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
			 RTM_NEWACTION, 0, 0) <= 0) {
		kfree_skb(skb);
		return -EINVAL;
	}
919

920 921
	err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
			     n->nlmsg_flags & NLM_F_ECHO);
L
Linus Torvalds 已提交
922 923 924 925 926 927
	if (err > 0)
		err = 0;
	return err;
}

static int
928
tcf_action_add(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
929
	       u32 portid, int ovr)
L
Linus Torvalds 已提交
930 931
{
	int ret = 0;
932
	LIST_HEAD(actions);
L
Linus Torvalds 已提交
933

934 935
	ret = tcf_action_init(net, nla, NULL, NULL, ovr, 0, &actions);
	if (ret)
936
		goto done;
L
Linus Torvalds 已提交
937 938 939

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

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

954
	if ((n->nlmsg_type != RTM_GETACTION) && !netlink_capable(skb, CAP_NET_ADMIN))
955 956
		return -EPERM;

957 958 959 960 961
	ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ACT_MAX, NULL);
	if (ret < 0)
		return ret;

	if (tca[TCA_ACT_TAB] == NULL) {
962
		pr_notice("tc_ctl_action: received NO action attribs\n");
L
Linus Torvalds 已提交
963 964 965
		return -EINVAL;
	}

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

	return ret;
}

997
static struct nlattr *
998
find_dump_kind(const struct nlmsghdr *n)
L
Linus Torvalds 已提交
999
{
E
Eric Dumazet 已提交
1000
	struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
1001 1002 1003
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
	struct nlattr *nla[TCAA_MAX + 1];
	struct nlattr *kind;
L
Linus Torvalds 已提交
1004

1005
	if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0)
L
Linus Torvalds 已提交
1006
		return NULL;
1007
	tb1 = nla[TCA_ACT_TAB];
L
Linus Torvalds 已提交
1008 1009 1010
	if (tb1 == NULL)
		return NULL;

1011 1012
	if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
		      NLMSG_ALIGN(nla_len(tb1)), NULL) < 0)
L
Linus Torvalds 已提交
1013 1014
		return NULL;

1015 1016 1017 1018
	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 已提交
1019
		return NULL;
1020
	kind = tb2[TCA_ACT_KIND];
L
Linus Torvalds 已提交
1021

1022
	return kind;
L
Linus Torvalds 已提交
1023 1024 1025 1026 1027 1028
}

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

	if (kind == NULL) {
1038
		pr_info("tc_dump_action: action bad kind\n");
L
Linus Torvalds 已提交
1039 1040 1041
		return 0;
	}

1042
	a_o = tc_lookup_action(kind);
E
Eric Dumazet 已提交
1043
	if (a_o == NULL)
L
Linus Torvalds 已提交
1044 1045 1046 1047 1048
		return 0;

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

1049
	nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
1050 1051 1052 1053
			cb->nlh->nlmsg_type, sizeof(*t), 0);
	if (!nlh)
		goto out_module_put;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
1054
	t->tca_family = AF_UNSPEC;
1055 1056
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
L
Linus Torvalds 已提交
1057

1058 1059
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
1060
		goto out_module_put;
L
Linus Torvalds 已提交
1061 1062 1063

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

	if (ret > 0) {
1067
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
1068 1069
		ret = skb->len;
	} else
1070
		nla_nest_cancel(skb, nest);
L
Linus Torvalds 已提交
1071

1072
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1073
	if (NETLINK_CB(cb->skb).portid && ret)
L
Linus Torvalds 已提交
1074 1075 1076 1077
		nlh->nlmsg_flags |= NLM_F_MULTI;
	module_put(a_o->owner);
	return skb->len;

1078
out_module_put:
L
Linus Torvalds 已提交
1079
	module_put(a_o->owner);
1080
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
1081 1082 1083 1084 1085
	return skb->len;
}

static int __init tc_action_init(void)
{
1086 1087 1088 1089
	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 已提交
1090 1091 1092 1093 1094

	return 0;
}

subsys_initcall(tc_action_init);