act_api.c 27.6 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
#include <net/sch_generic.h>
27
#include <net/pkt_cls.h>
L
Linus Torvalds 已提交
28
#include <net/act_api.h>
29
#include <net/netlink.h>
L
Linus Torvalds 已提交
30

31 32 33 34 35 36
static int tcf_action_goto_chain_init(struct tc_action *a, struct tcf_proto *tp)
{
	u32 chain_index = a->tcfa_action & TC_ACT_EXT_VAL_MASK;

	if (!tp)
		return -EINVAL;
37
	a->goto_chain = tcf_chain_get(tp->chain->block, chain_index, true);
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
	if (!a->goto_chain)
		return -ENOMEM;
	return 0;
}

static void tcf_action_goto_chain_fini(struct tc_action *a)
{
	tcf_chain_put(a->goto_chain);
}

static void tcf_action_goto_chain_exec(const struct tc_action *a,
				       struct tcf_result *res)
{
	const struct tcf_chain *chain = a->goto_chain;

	res->goto_tp = rcu_dereference_bh(chain->filter_chain);
}

C
Cong Wang 已提交
56 57 58 59 60 61
/* XXX: For standalone actions, we don't need a RCU grace period either, because
 * actions are always connected to filters and filters are already destroyed in
 * RCU callbacks, so after a RCU grace period actions are already disconnected
 * from filters. Readers later can not find us.
 */
static void free_tcf(struct tc_action *p)
62 63 64
{
	free_percpu(p->cpu_bstats);
	free_percpu(p->cpu_qstats);
65 66 67 68 69

	if (p->act_cookie) {
		kfree(p->act_cookie->data);
		kfree(p->act_cookie);
	}
70 71
	if (p->goto_chain)
		tcf_action_goto_chain_fini(p);
72

73 74 75
	kfree(p);
}

76
static void tcf_idr_remove(struct tcf_idrinfo *idrinfo, struct tc_action *p)
77
{
78 79 80
	spin_lock_bh(&idrinfo->lock);
	idr_remove_ext(&idrinfo->action_idr, p->tcfa_index);
	spin_unlock_bh(&idrinfo->lock);
81
	gen_kill_estimator(&p->tcfa_rate_est);
C
Cong Wang 已提交
82
	free_tcf(p);
83 84
}

85
int __tcf_idr_release(struct tc_action *p, bool bind, bool strict)
86 87 88
{
	int ret = 0;

89 90
	ASSERT_RTNL();

91 92
	if (p) {
		if (bind)
93 94
			p->tcfa_bindcnt--;
		else if (strict && p->tcfa_bindcnt > 0)
95
			return -EPERM;
96

97 98 99 100
		p->tcfa_refcnt--;
		if (p->tcfa_bindcnt <= 0 && p->tcfa_refcnt <= 0) {
			if (p->ops->cleanup)
				p->ops->cleanup(p, bind);
101
			tcf_idr_remove(p->idrinfo, p);
102
			ret = ACT_P_DELETED;
103 104
		}
	}
105

106 107
	return ret;
}
108
EXPORT_SYMBOL(__tcf_idr_release);
109

110
static int tcf_dump_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
111
			   struct netlink_callback *cb)
112
{
113
	int err = 0, index = -1, s_i = 0, n_i = 0;
114
	u32 act_flags = cb->args[2];
115
	unsigned long jiffy_since = cb->args[3];
116
	struct nlattr *nest;
117 118 119
	struct idr *idr = &idrinfo->action_idr;
	struct tc_action *p;
	unsigned long id = 1;
120

121
	spin_lock_bh(&idrinfo->lock);
122 123 124

	s_i = cb->args[0];

125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
	idr_for_each_entry_ext(idr, p, id) {
		index++;
		if (index < s_i)
			continue;

		if (jiffy_since &&
		    time_after(jiffy_since,
			       (unsigned long)p->tcfa_tm.lastuse))
			continue;

		nest = nla_nest_start(skb, n_i);
		if (!nest)
			goto nla_put_failure;
		err = tcf_action_dump_1(skb, p, 0, 0);
		if (err < 0) {
			index--;
			nlmsg_trim(skb, nest);
			goto done;
143
		}
144 145 146 147 148
		nla_nest_end(skb, nest);
		n_i++;
		if (!(act_flags & TCA_FLAG_LARGE_DUMP_ON) &&
		    n_i >= TCA_ACT_MAX_PRIO)
			goto done;
149 150
	}
done:
151 152 153
	if (index >= 0)
		cb->args[0] = index + 1;

154
	spin_unlock_bh(&idrinfo->lock);
155 156 157 158
	if (n_i) {
		if (act_flags & TCA_FLAG_LARGE_DUMP_ON)
			cb->args[1] = n_i;
	}
159 160
	return n_i;

161
nla_put_failure:
162
	nla_nest_cancel(skb, nest);
163 164 165
	goto done;
}

166
static int tcf_del_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb,
167
			  const struct tc_action_ops *ops)
168
{
169
	struct nlattr *nest;
170
	int n_i = 0;
171
	int ret = -EINVAL;
172 173 174
	struct idr *idr = &idrinfo->action_idr;
	struct tc_action *p;
	unsigned long id = 1;
175

176
	nest = nla_nest_start(skb, 0);
177 178
	if (nest == NULL)
		goto nla_put_failure;
179
	if (nla_put_string(skb, TCA_KIND, ops->kind))
180
		goto nla_put_failure;
181 182 183 184

	idr_for_each_entry_ext(idr, p, id) {
		ret = __tcf_idr_release(p, false, true);
		if (ret == ACT_P_DELETED) {
185
			module_put(ops->owner);
186 187 188
			n_i++;
		} else if (ret < 0) {
			goto nla_put_failure;
189 190
		}
	}
191 192
	if (nla_put_u32(skb, TCA_FCNT, n_i))
		goto nla_put_failure;
193
	nla_nest_end(skb, nest);
194 195

	return n_i;
196
nla_put_failure:
197
	nla_nest_cancel(skb, nest);
198
	return ret;
199 200
}

201 202
int tcf_generic_walker(struct tc_action_net *tn, struct sk_buff *skb,
		       struct netlink_callback *cb, int type,
203
		       const struct tc_action_ops *ops)
204
{
205
	struct tcf_idrinfo *idrinfo = tn->idrinfo;
206

207
	if (type == RTM_DELACTION) {
208
		return tcf_del_walker(idrinfo, skb, ops);
209
	} else if (type == RTM_GETACTION) {
210
		return tcf_dump_walker(idrinfo, skb, cb);
211
	} else {
212
		WARN(1, "tcf_generic_walker: unknown action %d\n", type);
213 214 215
		return -EINVAL;
	}
}
216
EXPORT_SYMBOL(tcf_generic_walker);
217

218
static struct tc_action *tcf_idr_lookup(u32 index, struct tcf_idrinfo *idrinfo)
219
{
220
	struct tc_action *p = NULL;
221

222 223 224
	spin_lock_bh(&idrinfo->lock);
	p = idr_find_ext(&idrinfo->action_idr, index);
	spin_unlock_bh(&idrinfo->lock);
225 226 227 228

	return p;
}

229
int tcf_idr_search(struct tc_action_net *tn, struct tc_action **a, u32 index)
230
{
231 232
	struct tcf_idrinfo *idrinfo = tn->idrinfo;
	struct tc_action *p = tcf_idr_lookup(index, idrinfo);
233 234

	if (p) {
235
		*a = p;
236 237 238 239
		return 1;
	}
	return 0;
}
240
EXPORT_SYMBOL(tcf_idr_search);
241

242 243
bool tcf_idr_check(struct tc_action_net *tn, u32 index, struct tc_action **a,
		   int bind)
244
{
245 246
	struct tcf_idrinfo *idrinfo = tn->idrinfo;
	struct tc_action *p = tcf_idr_lookup(index, idrinfo);
247

248
	if (index && p) {
249
		if (bind)
250 251 252
			p->tcfa_bindcnt++;
		p->tcfa_refcnt++;
		*a = p;
253
		return true;
254
	}
255
	return false;
256
}
257
EXPORT_SYMBOL(tcf_idr_check);
258

259
void tcf_idr_cleanup(struct tc_action *a, struct nlattr *est)
260 261
{
	if (est)
262
		gen_kill_estimator(&a->tcfa_rate_est);
C
Cong Wang 已提交
263
	free_tcf(a);
264
}
265
EXPORT_SYMBOL(tcf_idr_cleanup);
266

267 268 269
int tcf_idr_create(struct tc_action_net *tn, u32 index, struct nlattr *est,
		   struct tc_action **a, const struct tc_action_ops *ops,
		   int bind, bool cpustats)
270
{
271
	struct tc_action *p = kzalloc(ops->size, GFP_KERNEL);
272 273
	struct tcf_idrinfo *idrinfo = tn->idrinfo;
	struct idr *idr = &idrinfo->action_idr;
274
	int err = -ENOMEM;
275
	unsigned long idr_index;
276 277

	if (unlikely(!p))
278
		return -ENOMEM;
279
	p->tcfa_refcnt = 1;
280
	if (bind)
281
		p->tcfa_bindcnt = 1;
282

283 284 285 286 287 288 289 290 291 292 293 294 295 296
	if (cpustats) {
		p->cpu_bstats = netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
		if (!p->cpu_bstats) {
err1:
			kfree(p);
			return err;
		}
		p->cpu_qstats = alloc_percpu(struct gnet_stats_queue);
		if (!p->cpu_qstats) {
err2:
			free_percpu(p->cpu_bstats);
			goto err1;
		}
	}
297
	spin_lock_init(&p->tcfa_lock);
298 299
	/* user doesn't specify an index */
	if (!index) {
300
		idr_preload(GFP_KERNEL);
301 302
		spin_lock_bh(&idrinfo->lock);
		err = idr_alloc_ext(idr, NULL, &idr_index, 1, 0,
303
				    GFP_ATOMIC);
304
		spin_unlock_bh(&idrinfo->lock);
305
		idr_preload_end();
306 307 308 309 310 311 312
		if (err) {
err3:
			free_percpu(p->cpu_qstats);
			goto err2;
		}
		p->tcfa_index = idr_index;
	} else {
313
		idr_preload(GFP_KERNEL);
314 315
		spin_lock_bh(&idrinfo->lock);
		err = idr_alloc_ext(idr, NULL, NULL, index, index + 1,
316
				    GFP_ATOMIC);
317
		spin_unlock_bh(&idrinfo->lock);
318
		idr_preload_end();
319 320 321 322 323
		if (err)
			goto err3;
		p->tcfa_index = index;
	}

324 325 326
	p->tcfa_tm.install = jiffies;
	p->tcfa_tm.lastuse = jiffies;
	p->tcfa_tm.firstuse = 0;
327
	if (est) {
328 329 330
		err = gen_new_estimator(&p->tcfa_bstats, p->cpu_bstats,
					&p->tcfa_rate_est,
					&p->tcfa_lock, NULL, est);
331
		if (err) {
332
			goto err3;
333 334 335
		}
	}

336
	p->idrinfo = idrinfo;
337 338 339
	p->ops = ops;
	INIT_LIST_HEAD(&p->list);
	*a = p;
340
	return 0;
341
}
342
EXPORT_SYMBOL(tcf_idr_create);
343

344
void tcf_idr_insert(struct tc_action_net *tn, struct tc_action *a)
345
{
346
	struct tcf_idrinfo *idrinfo = tn->idrinfo;
347

348 349 350
	spin_lock_bh(&idrinfo->lock);
	idr_replace_ext(&idrinfo->action_idr, a, a->tcfa_index);
	spin_unlock_bh(&idrinfo->lock);
351
}
352
EXPORT_SYMBOL(tcf_idr_insert);
L
Linus Torvalds 已提交
353

354 355
void tcf_idrinfo_destroy(const struct tc_action_ops *ops,
			 struct tcf_idrinfo *idrinfo)
356
{
357 358 359 360
	struct idr *idr = &idrinfo->action_idr;
	struct tc_action *p;
	int ret;
	unsigned long id = 1;
361

362 363 364 365 366 367
	idr_for_each_entry_ext(idr, p, id) {
		ret = __tcf_idr_release(p, false, true);
		if (ret == ACT_P_DELETED)
			module_put(ops->owner);
		else if (ret < 0)
			return;
368
	}
369
	idr_destroy(&idrinfo->action_idr);
370
}
371
EXPORT_SYMBOL(tcf_idrinfo_destroy);
372

373
static LIST_HEAD(act_base);
L
Linus Torvalds 已提交
374 375
static DEFINE_RWLOCK(act_mod_lock);

376 377
int tcf_register_action(struct tc_action_ops *act,
			struct pernet_operations *ops)
L
Linus Torvalds 已提交
378
{
379
	struct tc_action_ops *a;
380
	int ret;
L
Linus Torvalds 已提交
381

382
	if (!act->act || !act->dump || !act->init || !act->walk || !act->lookup)
383 384
		return -EINVAL;

385 386 387 388 389 390 391 392
	/* We have to register pernet ops before making the action ops visible,
	 * otherwise tcf_action_init_1() could get a partially initialized
	 * netns.
	 */
	ret = register_pernet_subsys(ops);
	if (ret)
		return ret;

L
Linus Torvalds 已提交
393
	write_lock(&act_mod_lock);
394
	list_for_each_entry(a, &act_base, head) {
L
Linus Torvalds 已提交
395 396
		if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
			write_unlock(&act_mod_lock);
397
			unregister_pernet_subsys(ops);
L
Linus Torvalds 已提交
398 399 400
			return -EEXIST;
		}
	}
401
	list_add_tail(&act->head, &act_base);
L
Linus Torvalds 已提交
402
	write_unlock(&act_mod_lock);
403

L
Linus Torvalds 已提交
404 405
	return 0;
}
406
EXPORT_SYMBOL(tcf_register_action);
L
Linus Torvalds 已提交
407

408 409
int tcf_unregister_action(struct tc_action_ops *act,
			  struct pernet_operations *ops)
L
Linus Torvalds 已提交
410
{
411
	struct tc_action_ops *a;
L
Linus Torvalds 已提交
412 413 414
	int err = -ENOENT;

	write_lock(&act_mod_lock);
415 416 417 418
	list_for_each_entry(a, &act_base, head) {
		if (a == act) {
			list_del(&act->head);
			err = 0;
L
Linus Torvalds 已提交
419
			break;
420
		}
L
Linus Torvalds 已提交
421 422
	}
	write_unlock(&act_mod_lock);
423 424
	if (!err)
		unregister_pernet_subsys(ops);
L
Linus Torvalds 已提交
425 426
	return err;
}
427
EXPORT_SYMBOL(tcf_unregister_action);
L
Linus Torvalds 已提交
428 429 430 431

/* lookup by name */
static struct tc_action_ops *tc_lookup_action_n(char *kind)
{
432
	struct tc_action_ops *a, *res = NULL;
L
Linus Torvalds 已提交
433 434 435

	if (kind) {
		read_lock(&act_mod_lock);
436
		list_for_each_entry(a, &act_base, head) {
L
Linus Torvalds 已提交
437
			if (strcmp(kind, a->kind) == 0) {
438 439
				if (try_module_get(a->owner))
					res = a;
L
Linus Torvalds 已提交
440 441 442 443 444
				break;
			}
		}
		read_unlock(&act_mod_lock);
	}
445
	return res;
L
Linus Torvalds 已提交
446 447
}

448 449
/* lookup by nlattr */
static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
L
Linus Torvalds 已提交
450
{
451
	struct tc_action_ops *a, *res = NULL;
L
Linus Torvalds 已提交
452 453 454

	if (kind) {
		read_lock(&act_mod_lock);
455
		list_for_each_entry(a, &act_base, head) {
456
			if (nla_strcmp(kind, a->kind) == 0) {
457 458
				if (try_module_get(a->owner))
					res = a;
L
Linus Torvalds 已提交
459 460 461 462 463
				break;
			}
		}
		read_unlock(&act_mod_lock);
	}
464
	return res;
L
Linus Torvalds 已提交
465 466
}

467 468
/*TCA_ACT_MAX_PRIO is 32, there count upto 32 */
#define TCA_ACT_MAX_PRIO_MASK 0x1FF
469 470
int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions,
		    int nr_actions, struct tcf_result *res)
L
Linus Torvalds 已提交
471
{
472 473
	u32 jmp_prgcnt = 0;
	u32 jmp_ttl = TCA_ACT_MAX_PRIO; /*matches actions per filter */
474 475
	int i;
	int ret = TC_ACT_OK;
L
Linus Torvalds 已提交
476

477 478 479
	if (skb_skip_tc_classify(skb))
		return TC_ACT_OK;

480
restart_act_graph:
481 482 483
	for (i = 0; i < nr_actions; i++) {
		const struct tc_action *a = actions[i];

484 485 486 487
		if (jmp_prgcnt > 0) {
			jmp_prgcnt -= 1;
			continue;
		}
L
Linus Torvalds 已提交
488
repeat:
489 490 491
		ret = a->ops->act(skb, a, res);
		if (ret == TC_ACT_REPEAT)
			goto repeat;	/* we need a ttl - JHS */
492

493
		if (TC_ACT_EXT_CMP(ret, TC_ACT_JUMP)) {
494 495 496 497 498 499 500 501 502 503 504
			jmp_prgcnt = ret & TCA_ACT_MAX_PRIO_MASK;
			if (!jmp_prgcnt || (jmp_prgcnt > nr_actions)) {
				/* faulty opcode, stop pipeline */
				return TC_ACT_OK;
			} else {
				jmp_ttl -= 1;
				if (jmp_ttl > 0)
					goto restart_act_graph;
				else /* faulty graph, stop pipeline */
					return TC_ACT_OK;
			}
505 506
		} else if (TC_ACT_EXT_CMP(ret, TC_ACT_GOTO_CHAIN)) {
			tcf_action_goto_chain_exec(a, res);
507 508
		}

509
		if (ret != TC_ACT_PIPE)
510
			break;
L
Linus Torvalds 已提交
511
	}
512

L
Linus Torvalds 已提交
513 514
	return ret;
}
515
EXPORT_SYMBOL(tcf_action_exec);
L
Linus Torvalds 已提交
516

517
int tcf_action_destroy(struct list_head *actions, int bind)
L
Linus Torvalds 已提交
518
{
519
	const struct tc_action_ops *ops;
520
	struct tc_action *a, *tmp;
521
	int ret = 0;
L
Linus Torvalds 已提交
522

523
	list_for_each_entry_safe(a, tmp, actions, list) {
524
		ops = a->ops;
525
		ret = __tcf_idr_release(a, bind, true);
526
		if (ret == ACT_P_DELETED)
527
			module_put(ops->owner);
528 529
		else if (ret < 0)
			return ret;
L
Linus Torvalds 已提交
530
	}
531
	return ret;
L
Linus Torvalds 已提交
532 533 534 535 536 537 538 539 540 541 542 543
}

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

547 548
	if (nla_put_string(skb, TCA_KIND, a->ops->kind))
		goto nla_put_failure;
L
Linus Torvalds 已提交
549
	if (tcf_action_copy_stats(skb, a, 0))
550
		goto nla_put_failure;
551 552 553 554 555 556
	if (a->act_cookie) {
		if (nla_put(skb, TCA_ACT_COOKIE, a->act_cookie->len,
			    a->act_cookie->data))
			goto nla_put_failure;
	}

557 558 559
	nest = nla_nest_start(skb, TCA_OPTIONS);
	if (nest == NULL)
		goto nla_put_failure;
E
Eric Dumazet 已提交
560 561
	err = tcf_action_dump_old(skb, a, bind, ref);
	if (err > 0) {
562
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
563 564 565
		return err;
	}

566
nla_put_failure:
567
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
568 569
	return -1;
}
570
EXPORT_SYMBOL(tcf_action_dump_1);
L
Linus Torvalds 已提交
571

572 573
int tcf_action_dump(struct sk_buff *skb, struct list_head *actions,
		    int bind, int ref)
L
Linus Torvalds 已提交
574 575 576
{
	struct tc_action *a;
	int err = -EINVAL;
577
	struct nlattr *nest;
L
Linus Torvalds 已提交
578

579
	list_for_each_entry(a, actions, list) {
580 581 582
		nest = nla_nest_start(skb, a->order);
		if (nest == NULL)
			goto nla_put_failure;
L
Linus Torvalds 已提交
583 584
		err = tcf_action_dump_1(skb, a, bind, ref);
		if (err < 0)
585
			goto errout;
586
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
587 588 589 590
	}

	return 0;

591
nla_put_failure:
592 593
	err = -EINVAL;
errout:
594
	nla_nest_cancel(skb, nest);
595
	return err;
L
Linus Torvalds 已提交
596 597
}

598
static struct tc_cookie *nla_memdup_cookie(struct nlattr **tb)
599
{
600 601 602 603 604 605 606 607
	struct tc_cookie *c = kzalloc(sizeof(*c), GFP_KERNEL);
	if (!c)
		return NULL;

	c->data = nla_memdup(tb[TCA_ACT_COOKIE], GFP_KERNEL);
	if (!c->data) {
		kfree(c);
		return NULL;
608
	}
609
	c->len = nla_len(tb[TCA_ACT_COOKIE]);
610

611
	return c;
612 613
}

614 615 616
struct tc_action *tcf_action_init_1(struct net *net, struct tcf_proto *tp,
				    struct nlattr *nla, struct nlattr *est,
				    char *name, int ovr, int bind)
L
Linus Torvalds 已提交
617 618 619
{
	struct tc_action *a;
	struct tc_action_ops *a_o;
620
	struct tc_cookie *cookie = NULL;
L
Linus Torvalds 已提交
621
	char act_name[IFNAMSIZ];
E
Eric Dumazet 已提交
622
	struct nlattr *tb[TCA_ACT_MAX + 1];
623
	struct nlattr *kind;
624
	int err;
L
Linus Torvalds 已提交
625 626

	if (name == NULL) {
627
		err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, NULL);
628
		if (err < 0)
L
Linus Torvalds 已提交
629
			goto err_out;
630
		err = -EINVAL;
631
		kind = tb[TCA_ACT_KIND];
L
Linus Torvalds 已提交
632 633
		if (kind == NULL)
			goto err_out;
634
		if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
L
Linus Torvalds 已提交
635
			goto err_out;
636 637 638 639 640 641 642 643 644 645 646 647
		if (tb[TCA_ACT_COOKIE]) {
			int cklen = nla_len(tb[TCA_ACT_COOKIE]);

			if (cklen > TC_COOKIE_MAX_SIZE)
				goto err_out;

			cookie = nla_memdup_cookie(tb);
			if (!cookie) {
				err = -ENOMEM;
				goto err_out;
			}
		}
L
Linus Torvalds 已提交
648
	} else {
649
		err = -EINVAL;
L
Linus Torvalds 已提交
650 651 652 653 654 655
		if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
			goto err_out;
	}

	a_o = tc_lookup_action_n(act_name);
	if (a_o == NULL) {
656
#ifdef CONFIG_MODULES
L
Linus Torvalds 已提交
657
		rtnl_unlock();
658
		request_module("act_%s", act_name);
L
Linus Torvalds 已提交
659 660 661 662 663 664 665 666 667 668 669
		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) {
670
			err = -EAGAIN;
L
Linus Torvalds 已提交
671 672 673
			goto err_mod;
		}
#endif
674
		err = -ENOENT;
L
Linus Torvalds 已提交
675 676 677 678 679
		goto err_out;
	}

	/* backward compatibility for policer */
	if (name == NULL)
680
		err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, &a, ovr, bind);
L
Linus Torvalds 已提交
681
	else
682
		err = a_o->init(net, nla, est, &a, ovr, bind);
683
	if (err < 0)
684
		goto err_mod;
L
Linus Torvalds 已提交
685

686 687 688 689
	if (name == NULL && tb[TCA_ACT_COOKIE]) {
		if (a->act_cookie) {
			kfree(a->act_cookie->data);
			kfree(a->act_cookie);
690
		}
691
		a->act_cookie = cookie;
692 693
	}

L
Linus Torvalds 已提交
694
	/* module count goes up only when brand new policy is created
E
Eric Dumazet 已提交
695 696 697
	 * if it exists and is only bound to in a_o->init() then
	 * ACT_P_CREATED is not returned (a zero is).
	 */
698
	if (err != ACT_P_CREATED)
L
Linus Torvalds 已提交
699 700
		module_put(a_o->owner);

701 702 703 704 705 706 707 708 709 710 711
	if (TC_ACT_EXT_CMP(a->tcfa_action, TC_ACT_GOTO_CHAIN)) {
		err = tcf_action_goto_chain_init(a, tp);
		if (err) {
			LIST_HEAD(actions);

			list_add_tail(&a->list, &actions);
			tcf_action_destroy(&actions, bind);
			return ERR_PTR(err);
		}
	}

L
Linus Torvalds 已提交
712 713 714 715 716
	return a;

err_mod:
	module_put(a_o->owner);
err_out:
717 718 719 720
	if (cookie) {
		kfree(cookie->data);
		kfree(cookie);
	}
721
	return ERR_PTR(err);
L
Linus Torvalds 已提交
722 723
}

724 725 726 727 728 729 730 731 732 733 734
static void cleanup_a(struct list_head *actions, int ovr)
{
	struct tc_action *a;

	if (!ovr)
		return;

	list_for_each_entry(a, actions, list)
		a->tcfa_refcnt--;
}

735 736 737
int tcf_action_init(struct net *net, struct tcf_proto *tp, struct nlattr *nla,
		    struct nlattr *est, char *name, int ovr, int bind,
		    struct list_head *actions)
L
Linus Torvalds 已提交
738
{
E
Eric Dumazet 已提交
739
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
740
	struct tc_action *act;
741
	int err;
L
Linus Torvalds 已提交
742 743
	int i;

744
	err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL, NULL);
745
	if (err < 0)
746
		return err;
L
Linus Torvalds 已提交
747

748
	for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
749
		act = tcf_action_init_1(net, tp, tb[i], est, name, ovr, bind);
750 751
		if (IS_ERR(act)) {
			err = PTR_ERR(act);
L
Linus Torvalds 已提交
752
			goto err;
753
		}
754
		act->order = i;
755 756
		if (ovr)
			act->tcfa_refcnt++;
757
		list_add_tail(&act->list, actions);
L
Linus Torvalds 已提交
758
	}
759 760 761 762 763

	/* Remove the temp refcnt which was necessary to protect against
	 * destroying an existing action which was being replaced
	 */
	cleanup_a(actions, ovr);
764
	return 0;
L
Linus Torvalds 已提交
765 766

err:
767 768
	tcf_action_destroy(actions, bind);
	return err;
L
Linus Torvalds 已提交
769 770
}

771
int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *p,
L
Linus Torvalds 已提交
772 773 774 775
			  int compat_mode)
{
	int err = 0;
	struct gnet_dump d;
776

777
	if (p == NULL)
L
Linus Torvalds 已提交
778 779 780
		goto errout;

	/* compat_mode being true specifies a call that is supposed
781
	 * to add additional backward compatibility statistic TLVs.
L
Linus Torvalds 已提交
782 783
	 */
	if (compat_mode) {
784
		if (p->type == TCA_OLD_COMPAT)
L
Linus Torvalds 已提交
785
			err = gnet_stats_start_copy_compat(skb, 0,
786 787
							   TCA_STATS,
							   TCA_XSTATS,
788
							   &p->tcfa_lock, &d,
789
							   TCA_PAD);
L
Linus Torvalds 已提交
790 791 792 793
		else
			return 0;
	} else
		err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
794
					    &p->tcfa_lock, &d, TCA_ACT_PAD);
L
Linus Torvalds 已提交
795 796 797 798

	if (err < 0)
		goto errout;

799
	if (gnet_stats_copy_basic(NULL, &d, p->cpu_bstats, &p->tcfa_bstats) < 0 ||
800
	    gnet_stats_copy_rate_est(&d, &p->tcfa_rate_est) < 0 ||
801
	    gnet_stats_copy_queue(&d, p->cpu_qstats,
802 803
				  &p->tcfa_qstats,
				  p->tcfa_qstats.qlen) < 0)
L
Linus Torvalds 已提交
804 805 806 807 808 809 810 811 812 813 814
		goto errout;

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

	return 0;

errout:
	return -1;
}

815 816 817
static int tca_get_fill(struct sk_buff *skb, struct list_head *actions,
			u32 portid, u32 seq, u16 flags, int event, int bind,
			int ref)
L
Linus Torvalds 已提交
818 819 820
{
	struct tcamsg *t;
	struct nlmsghdr *nlh;
821
	unsigned char *b = skb_tail_pointer(skb);
822
	struct nlattr *nest;
L
Linus Torvalds 已提交
823

824
	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
825 826 827
	if (!nlh)
		goto out_nlmsg_trim;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
828
	t->tca_family = AF_UNSPEC;
829 830
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
831

832 833
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
834
		goto out_nlmsg_trim;
L
Linus Torvalds 已提交
835

836
	if (tcf_action_dump(skb, actions, bind, ref) < 0)
837
		goto out_nlmsg_trim;
L
Linus Torvalds 已提交
838

839
	nla_nest_end(skb, nest);
840

841
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
842 843
	return skb->len;

844
out_nlmsg_trim:
845
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
846 847 848 849
	return -1;
}

static int
850
tcf_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
851
	       struct list_head *actions, int event)
L
Linus Torvalds 已提交
852 853 854 855 856 857
{
	struct sk_buff *skb;

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb)
		return -ENOBUFS;
858 859
	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event,
			 0, 0) <= 0) {
L
Linus Torvalds 已提交
860 861 862
		kfree_skb(skb);
		return -EINVAL;
	}
863

864
	return rtnl_unicast(skb, net, portid);
L
Linus Torvalds 已提交
865 866
}

867 868
static struct tc_action *tcf_action_get_1(struct net *net, struct nlattr *nla,
					  struct nlmsghdr *n, u32 portid)
L
Linus Torvalds 已提交
869
{
E
Eric Dumazet 已提交
870
	struct nlattr *tb[TCA_ACT_MAX + 1];
871
	const struct tc_action_ops *ops;
L
Linus Torvalds 已提交
872 873
	struct tc_action *a;
	int index;
874
	int err;
L
Linus Torvalds 已提交
875

876
	err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, NULL);
877
	if (err < 0)
878
		goto err_out;
L
Linus Torvalds 已提交
879

880
	err = -EINVAL;
881 882
	if (tb[TCA_ACT_INDEX] == NULL ||
	    nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
883
		goto err_out;
884
	index = nla_get_u32(tb[TCA_ACT_INDEX]);
L
Linus Torvalds 已提交
885

886
	err = -EINVAL;
887 888 889
	ops = tc_lookup_action(tb[TCA_ACT_KIND]);
	if (!ops) /* could happen in batch of actions */
		goto err_out;
890
	err = -ENOENT;
891
	if (ops->lookup(net, &a, index) == 0)
L
Linus Torvalds 已提交
892 893
		goto err_mod;

894
	module_put(ops->owner);
L
Linus Torvalds 已提交
895
	return a;
896

L
Linus Torvalds 已提交
897
err_mod:
898
	module_put(ops->owner);
899 900
err_out:
	return ERR_PTR(err);
L
Linus Torvalds 已提交
901 902
}

903
static int tca_action_flush(struct net *net, struct nlattr *nla,
904
			    struct nlmsghdr *n, u32 portid)
L
Linus Torvalds 已提交
905 906 907 908 909 910
{
	struct sk_buff *skb;
	unsigned char *b;
	struct nlmsghdr *nlh;
	struct tcamsg *t;
	struct netlink_callback dcb;
911
	struct nlattr *nest;
E
Eric Dumazet 已提交
912
	struct nlattr *tb[TCA_ACT_MAX + 1];
913
	const struct tc_action_ops *ops;
914
	struct nlattr *kind;
915
	int err = -ENOMEM;
L
Linus Torvalds 已提交
916 917 918

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb) {
919
		pr_debug("tca_action_flush: failed skb alloc\n");
920
		return err;
L
Linus Torvalds 已提交
921 922
	}

923
	b = skb_tail_pointer(skb);
L
Linus Torvalds 已提交
924

925
	err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, NULL);
926
	if (err < 0)
L
Linus Torvalds 已提交
927 928
		goto err_out;

929
	err = -EINVAL;
930
	kind = tb[TCA_ACT_KIND];
931 932
	ops = tc_lookup_action(kind);
	if (!ops) /*some idjot trying to flush unknown action */
L
Linus Torvalds 已提交
933 934
		goto err_out;

935 936
	nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION,
			sizeof(*t), 0);
937 938 939
	if (!nlh)
		goto out_module_put;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
940
	t->tca_family = AF_UNSPEC;
941 942
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
L
Linus Torvalds 已提交
943

944 945
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
946
		goto out_module_put;
L
Linus Torvalds 已提交
947

948
	err = ops->walk(net, skb, &dcb, RTM_DELACTION, ops);
949
	if (err <= 0)
950
		goto out_module_put;
L
Linus Torvalds 已提交
951

952
	nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
953

954
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
955
	nlh->nlmsg_flags |= NLM_F_ROOT;
956
	module_put(ops->owner);
957
	err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
E
Eric Dumazet 已提交
958
			     n->nlmsg_flags & NLM_F_ECHO);
L
Linus Torvalds 已提交
959 960 961 962 963
	if (err > 0)
		return 0;

	return err;

964
out_module_put:
965
	module_put(ops->owner);
L
Linus Torvalds 已提交
966 967 968 969 970
err_out:
	kfree_skb(skb);
	return err;
}

971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
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 */
989 990 991 992 993
	ret = tcf_action_destroy(actions, 0);
	if (ret < 0) {
		kfree_skb(skb);
		return ret;
	}
994 995 996 997 998 999 1000 1001

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

L
Linus Torvalds 已提交
1002
static int
1003
tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
1004
	      u32 portid, int event)
L
Linus Torvalds 已提交
1005
{
1006
	int i, ret;
E
Eric Dumazet 已提交
1007
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
1008 1009
	struct tc_action *act;
	LIST_HEAD(actions);
L
Linus Torvalds 已提交
1010

1011
	ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL, NULL);
1012 1013
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
1014

E
Eric Dumazet 已提交
1015
	if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
1016
		if (tb[1] != NULL)
1017
			return tca_action_flush(net, tb[1], n, portid);
1018 1019
		else
			return -EINVAL;
L
Linus Torvalds 已提交
1020 1021
	}

1022
	for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
1023
		act = tcf_action_get_1(net, tb[i], n, portid);
1024 1025
		if (IS_ERR(act)) {
			ret = PTR_ERR(act);
L
Linus Torvalds 已提交
1026
			goto err;
1027
		}
1028
		act->order = i;
1029
		list_add_tail(&act->list, &actions);
L
Linus Torvalds 已提交
1030 1031 1032
	}

	if (event == RTM_GETACTION)
1033
		ret = tcf_get_notify(net, portid, n, &actions, event);
L
Linus Torvalds 已提交
1034
	else { /* delete */
1035 1036
		ret = tcf_del_notify(net, n, &actions, portid);
		if (ret)
L
Linus Torvalds 已提交
1037 1038 1039 1040
			goto err;
		return ret;
	}
err:
1041 1042
	if (event != RTM_GETACTION)
		tcf_action_destroy(&actions, 0);
L
Linus Torvalds 已提交
1043 1044 1045
	return ret;
}

1046 1047 1048
static int
tcf_add_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
	       u32 portid)
L
Linus Torvalds 已提交
1049 1050 1051 1052 1053 1054 1055 1056
{
	struct sk_buff *skb;
	int err = 0;

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

1057 1058 1059 1060 1061
	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
			 RTM_NEWACTION, 0, 0) <= 0) {
		kfree_skb(skb);
		return -EINVAL;
	}
1062

1063 1064
	err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
			     n->nlmsg_flags & NLM_F_ECHO);
L
Linus Torvalds 已提交
1065 1066 1067 1068 1069
	if (err > 0)
		err = 0;
	return err;
}

J
Jamal Hadi Salim 已提交
1070 1071
static int tcf_action_add(struct net *net, struct nlattr *nla,
			  struct nlmsghdr *n, u32 portid, int ovr)
L
Linus Torvalds 已提交
1072 1073
{
	int ret = 0;
1074
	LIST_HEAD(actions);
L
Linus Torvalds 已提交
1075

1076
	ret = tcf_action_init(net, NULL, nla, NULL, NULL, ovr, 0, &actions);
1077
	if (ret)
1078
		return ret;
L
Linus Torvalds 已提交
1079

1080
	return tcf_add_notify(net, n, &actions, portid);
L
Linus Torvalds 已提交
1081 1082
}

1083 1084 1085 1086
static u32 tcaa_root_flags_allowed = TCA_FLAG_LARGE_DUMP_ON;
static const struct nla_policy tcaa_policy[TCA_ROOT_MAX + 1] = {
	[TCA_ROOT_FLAGS] = { .type = NLA_BITFIELD32,
			     .validation_data = &tcaa_root_flags_allowed },
1087
	[TCA_ROOT_TIME_DELTA]      = { .type = NLA_U32 },
1088 1089
};

1090 1091
static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n,
			 struct netlink_ext_ack *extack)
L
Linus Torvalds 已提交
1092
{
1093
	struct net *net = sock_net(skb->sk);
1094
	struct nlattr *tca[TCA_ROOT_MAX + 1];
1095
	u32 portid = skb ? NETLINK_CB(skb).portid : 0;
L
Linus Torvalds 已提交
1096 1097
	int ret = 0, ovr = 0;

1098 1099
	if ((n->nlmsg_type != RTM_GETACTION) &&
	    !netlink_capable(skb, CAP_NET_ADMIN))
1100 1101
		return -EPERM;

1102
	ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ROOT_MAX, NULL,
1103
			  extack);
1104 1105 1106 1107
	if (ret < 0)
		return ret;

	if (tca[TCA_ACT_TAB] == NULL) {
1108
		pr_notice("tc_ctl_action: received NO action attribs\n");
L
Linus Torvalds 已提交
1109 1110 1111
		return -EINVAL;
	}

E
Eric Dumazet 已提交
1112
	/* n->nlmsg_flags & NLM_F_CREATE */
L
Linus Torvalds 已提交
1113 1114 1115
	switch (n->nlmsg_type) {
	case RTM_NEWACTION:
		/* we are going to assume all other flags
L
Lucas De Marchi 已提交
1116
		 * imply create only if it doesn't exist
L
Linus Torvalds 已提交
1117 1118 1119 1120
		 * Note that CREATE | EXCL implies that
		 * but since we want avoid ambiguity (eg when flags
		 * is zero) then just set this
		 */
E
Eric Dumazet 已提交
1121
		if (n->nlmsg_flags & NLM_F_REPLACE)
L
Linus Torvalds 已提交
1122 1123
			ovr = 1;
replay:
1124
		ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr);
L
Linus Torvalds 已提交
1125 1126 1127 1128
		if (ret == -EAGAIN)
			goto replay;
		break;
	case RTM_DELACTION:
1129
		ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
1130
				    portid, RTM_DELACTION);
L
Linus Torvalds 已提交
1131 1132
		break;
	case RTM_GETACTION:
1133
		ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
1134
				    portid, RTM_GETACTION);
L
Linus Torvalds 已提交
1135 1136 1137 1138 1139 1140 1141 1142
		break;
	default:
		BUG();
	}

	return ret;
}

1143
static struct nlattr *find_dump_kind(struct nlattr **nla)
L
Linus Torvalds 已提交
1144
{
E
Eric Dumazet 已提交
1145
	struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
1146 1147
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
	struct nlattr *kind;
L
Linus Torvalds 已提交
1148

1149
	tb1 = nla[TCA_ACT_TAB];
L
Linus Torvalds 已提交
1150 1151 1152
	if (tb1 == NULL)
		return NULL;

1153
	if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
1154
		      NLMSG_ALIGN(nla_len(tb1)), NULL, NULL) < 0)
L
Linus Torvalds 已提交
1155 1156
		return NULL;

1157 1158
	if (tb[1] == NULL)
		return NULL;
1159
	if (nla_parse_nested(tb2, TCA_ACT_MAX, tb[1], NULL, NULL) < 0)
L
Linus Torvalds 已提交
1160
		return NULL;
1161
	kind = tb2[TCA_ACT_KIND];
L
Linus Torvalds 已提交
1162

1163
	return kind;
L
Linus Torvalds 已提交
1164 1165
}

J
Jamal Hadi Salim 已提交
1166
static int tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
L
Linus Torvalds 已提交
1167
{
1168
	struct net *net = sock_net(skb->sk);
L
Linus Torvalds 已提交
1169
	struct nlmsghdr *nlh;
1170
	unsigned char *b = skb_tail_pointer(skb);
1171
	struct nlattr *nest;
L
Linus Torvalds 已提交
1172 1173
	struct tc_action_ops *a_o;
	int ret = 0;
1174
	struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
1175 1176
	struct nlattr *tb[TCA_ROOT_MAX + 1];
	struct nlattr *count_attr = NULL;
1177
	unsigned long jiffy_since = 0;
1178 1179
	struct nlattr *kind = NULL;
	struct nla_bitfield32 bf;
1180
	u32 msecs_since = 0;
1181 1182 1183 1184 1185 1186
	u32 act_count = 0;

	ret = nlmsg_parse(cb->nlh, sizeof(struct tcamsg), tb, TCA_ROOT_MAX,
			  tcaa_policy, NULL);
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
1187

1188
	kind = find_dump_kind(tb);
L
Linus Torvalds 已提交
1189
	if (kind == NULL) {
1190
		pr_info("tc_dump_action: action bad kind\n");
L
Linus Torvalds 已提交
1191 1192 1193
		return 0;
	}

1194
	a_o = tc_lookup_action(kind);
E
Eric Dumazet 已提交
1195
	if (a_o == NULL)
L
Linus Torvalds 已提交
1196 1197
		return 0;

1198 1199 1200 1201 1202 1203
	cb->args[2] = 0;
	if (tb[TCA_ROOT_FLAGS]) {
		bf = nla_get_bitfield32(tb[TCA_ROOT_FLAGS]);
		cb->args[2] = bf.value;
	}

1204 1205 1206 1207
	if (tb[TCA_ROOT_TIME_DELTA]) {
		msecs_since = nla_get_u32(tb[TCA_ROOT_TIME_DELTA]);
	}

1208
	nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
1209 1210 1211
			cb->nlh->nlmsg_type, sizeof(*t), 0);
	if (!nlh)
		goto out_module_put;
1212

1213 1214 1215
	if (msecs_since)
		jiffy_since = jiffies - msecs_to_jiffies(msecs_since);

1216
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
1217
	t->tca_family = AF_UNSPEC;
1218 1219
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
1220
	cb->args[3] = jiffy_since;
1221 1222 1223
	count_attr = nla_reserve(skb, TCA_ROOT_COUNT, sizeof(u32));
	if (!count_attr)
		goto out_module_put;
L
Linus Torvalds 已提交
1224

1225 1226
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
1227
		goto out_module_put;
L
Linus Torvalds 已提交
1228

1229
	ret = a_o->walk(net, skb, cb, RTM_GETACTION, a_o);
L
Linus Torvalds 已提交
1230
	if (ret < 0)
1231
		goto out_module_put;
L
Linus Torvalds 已提交
1232 1233

	if (ret > 0) {
1234
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
1235
		ret = skb->len;
1236 1237 1238
		act_count = cb->args[1];
		memcpy(nla_data(count_attr), &act_count, sizeof(u32));
		cb->args[1] = 0;
L
Linus Torvalds 已提交
1239
	} else
1240
		nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
1241

1242
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1243
	if (NETLINK_CB(cb->skb).portid && ret)
L
Linus Torvalds 已提交
1244 1245 1246 1247
		nlh->nlmsg_flags |= NLM_F_MULTI;
	module_put(a_o->owner);
	return skb->len;

1248
out_module_put:
L
Linus Torvalds 已提交
1249
	module_put(a_o->owner);
1250
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
1251 1252 1253 1254 1255
	return skb->len;
}

static int __init tc_action_init(void)
{
1256 1257
	rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, 0);
	rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, 0);
1258
	rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
1259
		      0);
L
Linus Torvalds 已提交
1260 1261 1262 1263 1264

	return 0;
}

subsys_initcall(tc_action_init);