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 89 90
{
	int ret = 0;

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

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

104 105
	return ret;
}
106
EXPORT_SYMBOL(__tcf_idr_release);
107

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

119
	spin_lock_bh(&idrinfo->lock);
120 121 122

	s_i = cb->args[0];

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
	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;
141
		}
142 143 144 145 146
		nla_nest_end(skb, nest);
		n_i++;
		if (!(act_flags & TCA_FLAG_LARGE_DUMP_ON) &&
		    n_i >= TCA_ACT_MAX_PRIO)
			goto done;
147 148
	}
done:
149 150 151
	if (index >= 0)
		cb->args[0] = index + 1;

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

159
nla_put_failure:
160
	nla_nest_cancel(skb, nest);
161 162 163
	goto done;
}

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

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

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

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

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

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

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

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

	return p;
}

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

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

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

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

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

265 266 267
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)
268
{
269
	struct tc_action *p = kzalloc(ops->size, GFP_KERNEL);
270 271
	struct tcf_idrinfo *idrinfo = tn->idrinfo;
	struct idr *idr = &idrinfo->action_idr;
272
	int err = -ENOMEM;
273
	unsigned long idr_index;
274 275

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

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

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

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

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

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

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

360 361 362 363 364 365
	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;
366
	}
367
	idr_destroy(&idrinfo->action_idr);
368
}
369
EXPORT_SYMBOL(tcf_idrinfo_destroy);
370

371
static LIST_HEAD(act_base);
L
Linus Torvalds 已提交
372 373
static DEFINE_RWLOCK(act_mod_lock);

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

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

383 384 385 386 387 388 389 390
	/* 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 已提交
391
	write_lock(&act_mod_lock);
392
	list_for_each_entry(a, &act_base, head) {
L
Linus Torvalds 已提交
393 394
		if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
			write_unlock(&act_mod_lock);
395
			unregister_pernet_subsys(ops);
L
Linus Torvalds 已提交
396 397 398
			return -EEXIST;
		}
	}
399
	list_add_tail(&act->head, &act_base);
L
Linus Torvalds 已提交
400
	write_unlock(&act_mod_lock);
401

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

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

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

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

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

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

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

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

475 476 477
	if (skb_skip_tc_classify(skb))
		return TC_ACT_OK;

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

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

491
		if (TC_ACT_EXT_CMP(ret, TC_ACT_JUMP)) {
492 493 494 495 496 497 498 499 500 501 502
			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;
			}
503 504
		} else if (TC_ACT_EXT_CMP(ret, TC_ACT_GOTO_CHAIN)) {
			tcf_action_goto_chain_exec(a, res);
505 506
		}

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

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

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

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

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

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

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

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

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

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

	return 0;

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

596
static struct tc_cookie *nla_memdup_cookie(struct nlattr **tb)
597
{
598 599 600 601 602 603 604 605
	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;
606
	}
607
	c->len = nla_len(tb[TCA_ACT_COOKIE]);
608

609
	return c;
610 611
}

612 613 614
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 已提交
615 616 617
{
	struct tc_action *a;
	struct tc_action_ops *a_o;
618
	struct tc_cookie *cookie = NULL;
L
Linus Torvalds 已提交
619
	char act_name[IFNAMSIZ];
E
Eric Dumazet 已提交
620
	struct nlattr *tb[TCA_ACT_MAX + 1];
621
	struct nlattr *kind;
622
	int err;
L
Linus Torvalds 已提交
623 624

	if (name == NULL) {
625
		err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL, NULL);
626
		if (err < 0)
L
Linus Torvalds 已提交
627
			goto err_out;
628
		err = -EINVAL;
629
		kind = tb[TCA_ACT_KIND];
L
Linus Torvalds 已提交
630 631
		if (kind == NULL)
			goto err_out;
632
		if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
L
Linus Torvalds 已提交
633
			goto err_out;
634 635 636 637 638 639 640 641 642 643 644 645
		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 已提交
646
	} else {
647
		err = -EINVAL;
L
Linus Torvalds 已提交
648 649 650 651 652 653
		if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
			goto err_out;
	}

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

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

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

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

699 700 701 702 703 704 705 706 707 708 709
	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 已提交
710 711 712 713 714
	return a;

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

722 723 724 725 726 727 728 729 730 731 732
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--;
}

733 734 735
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 已提交
736
{
E
Eric Dumazet 已提交
737
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
738
	struct tc_action *act;
739
	int err;
L
Linus Torvalds 已提交
740 741
	int i;

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

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

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

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

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

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

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

	if (err < 0)
		goto errout;

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

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

	return 0;

errout:
	return -1;
}

813 814 815
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 已提交
816 817 818
{
	struct tcamsg *t;
	struct nlmsghdr *nlh;
819
	unsigned char *b = skb_tail_pointer(skb);
820
	struct nlattr *nest;
L
Linus Torvalds 已提交
821

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

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

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

837
	nla_nest_end(skb, nest);
838

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

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

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

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

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

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

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

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

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

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

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

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

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

921
	b = skb_tail_pointer(skb);
L
Linus Torvalds 已提交
922

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

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

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

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

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

950
	nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
951

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

	return err;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

1081 1082 1083 1084
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 },
1085
	[TCA_ROOT_TIME_DELTA]      = { .type = NLA_U32 },
1086 1087
};

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

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

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

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

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

	return ret;
}

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

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

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

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

1161
	return kind;
L
Linus Torvalds 已提交
1162 1163
}

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

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

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

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

1202 1203 1204 1205
	if (tb[TCA_ROOT_TIME_DELTA]) {
		msecs_since = nla_get_u32(tb[TCA_ROOT_TIME_DELTA]);
	}

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

1211 1212 1213
	if (msecs_since)
		jiffy_since = jiffies - msecs_to_jiffies(msecs_since);

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

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

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

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

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

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

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

	return 0;
}

subsys_initcall(tc_action_init);