act_api.c 22.5 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 31
void tcf_hash_destroy(struct tcf_common *p, struct tcf_hashinfo *hinfo)
{
32 33 34 35 36 37 38 39 40 41
	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);
42 43 44 45 46 47 48 49 50 51 52 53 54
}
EXPORT_SYMBOL(tcf_hash_destroy);

int tcf_hash_release(struct tcf_common *p, int bind,
		     struct tcf_hashinfo *hinfo)
{
	int ret = 0;

	if (p) {
		if (bind)
			p->tcfc_bindcnt--;

		p->tcfc_refcnt--;
55
		if (p->tcfc_bindcnt <= 0 && p->tcfc_refcnt <= 0) {
56 57 58 59 60 61 62 63 64 65 66
			tcf_hash_destroy(p, hinfo);
			ret = 1;
		}
	}
	return ret;
}
EXPORT_SYMBOL(tcf_hash_release);

static int tcf_dump_walker(struct sk_buff *skb, struct netlink_callback *cb,
			   struct tc_action *a, struct tcf_hashinfo *hinfo)
{
67
	struct hlist_head *head;
68
	struct tcf_common *p;
E
Eric Dumazet 已提交
69
	int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
70
	struct nlattr *nest;
71

72
	spin_lock_bh(&hinfo->lock);
73 74 75 76

	s_i = cb->args[0];

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

79
		hlist_for_each_entry_rcu(p, head, tcfc_head) {
80 81 82 83 84
			index++;
			if (index < s_i)
				continue;
			a->priv = p;
			a->order = n_i;
85 86 87 88

			nest = nla_nest_start(skb, a->order);
			if (nest == NULL)
				goto nla_put_failure;
89 90 91
			err = tcf_action_dump_1(skb, a, 0, 0);
			if (err < 0) {
				index--;
92
				nlmsg_trim(skb, nest);
93 94
				goto done;
			}
95
			nla_nest_end(skb, nest);
96 97 98 99 100 101
			n_i++;
			if (n_i >= TCA_ACT_MAX_PRIO)
				goto done;
		}
	}
done:
102
	spin_unlock_bh(&hinfo->lock);
103 104 105 106
	if (n_i)
		cb->args[0] += n_i;
	return n_i;

107
nla_put_failure:
108
	nla_nest_cancel(skb, nest);
109 110 111 112 113 114
	goto done;
}

static int tcf_del_walker(struct sk_buff *skb, struct tc_action *a,
			  struct tcf_hashinfo *hinfo)
{
115 116 117
	struct hlist_head *head;
	struct hlist_node *n;
	struct tcf_common *p;
118
	struct nlattr *nest;
E
Eric Dumazet 已提交
119
	int i = 0, n_i = 0;
120

121 122 123
	nest = nla_nest_start(skb, a->order);
	if (nest == NULL)
		goto nla_put_failure;
124 125
	if (nla_put_string(skb, TCA_KIND, a->ops->kind))
		goto nla_put_failure;
126
	for (i = 0; i < (hinfo->hmask + 1); i++) {
127 128
		head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
		hlist_for_each_entry_safe(p, n, head, tcfc_head) {
129
			if (ACT_P_DELETED == tcf_hash_release(p, 0, hinfo)) {
E
Eric Dumazet 已提交
130
				module_put(a->ops->owner);
131 132
				n_i++;
			}
133 134
		}
	}
135 136
	if (nla_put_u32(skb, TCA_FCNT, n_i))
		goto nla_put_failure;
137
	nla_nest_end(skb, nest);
138 139

	return n_i;
140
nla_put_failure:
141
	nla_nest_cancel(skb, nest);
142 143 144
	return -EINVAL;
}

145 146
static int tcf_generic_walker(struct sk_buff *skb, struct netlink_callback *cb,
			      int type, struct tc_action *a)
147 148 149 150 151 152 153 154
{
	struct tcf_hashinfo *hinfo = a->ops->hinfo;

	if (type == RTM_DELACTION) {
		return tcf_del_walker(skb, a, hinfo);
	} else if (type == RTM_GETACTION) {
		return tcf_dump_walker(skb, cb, a, hinfo);
	} else {
155
		WARN(1, "tcf_generic_walker: unknown action %d\n", type);
156 157 158 159 160 161
		return -EINVAL;
	}
}

struct tcf_common *tcf_hash_lookup(u32 index, struct tcf_hashinfo *hinfo)
{
162 163
	struct tcf_common *p = NULL;
	struct hlist_head *head;
164

165 166 167
	spin_lock_bh(&hinfo->lock);
	head = &hinfo->htab[tcf_hash(index, hinfo->hmask)];
	hlist_for_each_entry_rcu(p, head, tcfc_head)
168 169
		if (p->tcfc_index == index)
			break;
170
	spin_unlock_bh(&hinfo->lock);
171 172 173 174 175

	return p;
}
EXPORT_SYMBOL(tcf_hash_lookup);

176
u32 tcf_hash_new_index(struct tcf_hashinfo *hinfo)
177
{
178
	u32 val = hinfo->index;
179 180 181 182 183 184

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

185
	hinfo->index = val;
186
	return val;
187 188 189
}
EXPORT_SYMBOL(tcf_hash_new_index);

190
static int tcf_hash_search(struct tc_action *a, u32 index)
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
{
	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;
}

struct tcf_common *tcf_hash_check(u32 index, struct tc_action *a, int bind,
				  struct tcf_hashinfo *hinfo)
{
	struct tcf_common *p = NULL;
	if (index && (p = tcf_hash_lookup(index, hinfo)) != NULL) {
207
		if (bind)
208
			p->tcfc_bindcnt++;
209
		p->tcfc_refcnt++;
210 211 212 213 214 215
		a->priv = p;
	}
	return p;
}
EXPORT_SYMBOL(tcf_hash_check);

216 217
struct tcf_common *tcf_hash_create(u32 index, struct nlattr *est,
				   struct tc_action *a, int size, int bind,
218
				   struct tcf_hashinfo *hinfo)
219 220 221 222
{
	struct tcf_common *p = kzalloc(size, GFP_KERNEL);

	if (unlikely(!p))
223
		return ERR_PTR(-ENOMEM);
224 225 226 227 228
	p->tcfc_refcnt = 1;
	if (bind)
		p->tcfc_bindcnt = 1;

	spin_lock_init(&p->tcfc_lock);
229
	INIT_HLIST_NODE(&p->tcfc_head);
230
	p->tcfc_index = index ? index : tcf_hash_new_index(hinfo);
231 232
	p->tcfc_tm.install = jiffies;
	p->tcfc_tm.lastuse = jiffies;
233 234 235 236 237 238 239 240 241
	if (est) {
		int err = gen_new_estimator(&p->tcfc_bstats, &p->tcfc_rate_est,
					    &p->tcfc_lock, est);
		if (err) {
			kfree(p);
			return ERR_PTR(err);
		}
	}

242 243 244 245 246 247 248 249 250
	a->priv = (void *) p;
	return p;
}
EXPORT_SYMBOL(tcf_hash_create);

void tcf_hash_insert(struct tcf_common *p, struct tcf_hashinfo *hinfo)
{
	unsigned int h = tcf_hash(p->tcfc_index, hinfo->hmask);

251 252 253
	spin_lock_bh(&hinfo->lock);
	hlist_add_head(&p->tcfc_head, &hinfo->htab[h]);
	spin_unlock_bh(&hinfo->lock);
254 255
}
EXPORT_SYMBOL(tcf_hash_insert);
L
Linus Torvalds 已提交
256

257
static LIST_HEAD(act_base);
L
Linus Torvalds 已提交
258 259 260 261
static DEFINE_RWLOCK(act_mod_lock);

int tcf_register_action(struct tc_action_ops *act)
{
262
	struct tc_action_ops *a;
L
Linus Torvalds 已提交
263

264 265 266 267
	/* Must supply act, dump, cleanup and init */
	if (!act->act || !act->dump || !act->cleanup || !act->init)
		return -EINVAL;

268
	/* Supply defaults */
269 270
	if (!act->lookup)
		act->lookup = tcf_hash_search;
271 272
	if (!act->walk)
		act->walk = tcf_generic_walker;
273

L
Linus Torvalds 已提交
274
	write_lock(&act_mod_lock);
275
	list_for_each_entry(a, &act_base, head) {
L
Linus Torvalds 已提交
276 277 278 279 280
		if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
			write_unlock(&act_mod_lock);
			return -EEXIST;
		}
	}
281
	list_add_tail(&act->head, &act_base);
L
Linus Torvalds 已提交
282 283 284
	write_unlock(&act_mod_lock);
	return 0;
}
285
EXPORT_SYMBOL(tcf_register_action);
L
Linus Torvalds 已提交
286 287 288

int tcf_unregister_action(struct tc_action_ops *act)
{
289
	struct tc_action_ops *a;
L
Linus Torvalds 已提交
290 291 292
	int err = -ENOENT;

	write_lock(&act_mod_lock);
293 294 295 296
	list_for_each_entry(a, &act_base, head) {
		if (a == act) {
			list_del(&act->head);
			err = 0;
L
Linus Torvalds 已提交
297
			break;
298
		}
L
Linus Torvalds 已提交
299 300 301 302
	}
	write_unlock(&act_mod_lock);
	return err;
}
303
EXPORT_SYMBOL(tcf_unregister_action);
L
Linus Torvalds 已提交
304 305 306 307

/* lookup by name */
static struct tc_action_ops *tc_lookup_action_n(char *kind)
{
308
	struct tc_action_ops *a, *res = NULL;
L
Linus Torvalds 已提交
309 310 311

	if (kind) {
		read_lock(&act_mod_lock);
312
		list_for_each_entry(a, &act_base, head) {
L
Linus Torvalds 已提交
313
			if (strcmp(kind, a->kind) == 0) {
314 315
				if (try_module_get(a->owner))
					res = a;
L
Linus Torvalds 已提交
316 317 318 319 320
				break;
			}
		}
		read_unlock(&act_mod_lock);
	}
321
	return res;
L
Linus Torvalds 已提交
322 323
}

324 325
/* lookup by nlattr */
static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
L
Linus Torvalds 已提交
326
{
327
	struct tc_action_ops *a, *res = NULL;
L
Linus Torvalds 已提交
328 329 330

	if (kind) {
		read_lock(&act_mod_lock);
331
		list_for_each_entry(a, &act_base, head) {
332
			if (nla_strcmp(kind, a->kind) == 0) {
333 334
				if (try_module_get(a->owner))
					res = a;
L
Linus Torvalds 已提交
335 336 337 338 339
				break;
			}
		}
		read_unlock(&act_mod_lock);
	}
340
	return res;
L
Linus Torvalds 已提交
341 342
}

343
int tcf_action_exec(struct sk_buff *skb, const struct list_head *actions,
344
		    struct tcf_result *res)
L
Linus Torvalds 已提交
345
{
346
	const struct tc_action *a;
L
Linus Torvalds 已提交
347 348 349 350 351 352 353
	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;
	}
354
	list_for_each_entry(a, actions, list) {
L
Linus Torvalds 已提交
355
repeat:
356 357 358 359 360
		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 已提交
361
		}
362 363 364 365
		if (ret == TC_ACT_REPEAT)
			goto repeat;	/* we need a ttl - JHS */
		if (ret != TC_ACT_PIPE)
			goto exec_done;
L
Linus Torvalds 已提交
366 367 368 369
	}
exec_done:
	return ret;
}
370
EXPORT_SYMBOL(tcf_action_exec);
L
Linus Torvalds 已提交
371

372
void tcf_action_destroy(struct list_head *actions, int bind)
L
Linus Torvalds 已提交
373
{
374
	struct tc_action *a, *tmp;
L
Linus Torvalds 已提交
375

376
	list_for_each_entry_safe(a, tmp, actions, list) {
377 378 379 380
		if (a->ops->cleanup(a, bind) == ACT_P_DELETED)
			module_put(a->ops->owner);
		list_del(&a->list);
		kfree(a);
L
Linus Torvalds 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393
	}
}

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

397 398
	if (nla_put_string(skb, TCA_KIND, a->ops->kind))
		goto nla_put_failure;
L
Linus Torvalds 已提交
399
	if (tcf_action_copy_stats(skb, a, 0))
400
		goto nla_put_failure;
401 402 403
	nest = nla_nest_start(skb, TCA_OPTIONS);
	if (nest == NULL)
		goto nla_put_failure;
E
Eric Dumazet 已提交
404 405
	err = tcf_action_dump_old(skb, a, bind, ref);
	if (err > 0) {
406
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
407 408 409
		return err;
	}

410
nla_put_failure:
411
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
412 413
	return -1;
}
414
EXPORT_SYMBOL(tcf_action_dump_1);
L
Linus Torvalds 已提交
415 416

int
417
tcf_action_dump(struct sk_buff *skb, struct list_head *actions, int bind, int ref)
L
Linus Torvalds 已提交
418 419 420
{
	struct tc_action *a;
	int err = -EINVAL;
421
	struct nlattr *nest;
L
Linus Torvalds 已提交
422

423
	list_for_each_entry(a, actions, list) {
424 425 426
		nest = nla_nest_start(skb, a->order);
		if (nest == NULL)
			goto nla_put_failure;
L
Linus Torvalds 已提交
427 428
		err = tcf_action_dump_1(skb, a, bind, ref);
		if (err < 0)
429
			goto errout;
430
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
431 432 433 434
	}

	return 0;

435
nla_put_failure:
436 437
	err = -EINVAL;
errout:
438
	nla_nest_cancel(skb, nest);
439
	return err;
L
Linus Torvalds 已提交
440 441
}

442 443 444
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 已提交
445 446 447 448
{
	struct tc_action *a;
	struct tc_action_ops *a_o;
	char act_name[IFNAMSIZ];
E
Eric Dumazet 已提交
449
	struct nlattr *tb[TCA_ACT_MAX + 1];
450
	struct nlattr *kind;
451
	int err;
L
Linus Torvalds 已提交
452 453

	if (name == NULL) {
454 455
		err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
		if (err < 0)
L
Linus Torvalds 已提交
456
			goto err_out;
457
		err = -EINVAL;
458
		kind = tb[TCA_ACT_KIND];
L
Linus Torvalds 已提交
459 460
		if (kind == NULL)
			goto err_out;
461
		if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
L
Linus Torvalds 已提交
462 463
			goto err_out;
	} else {
464
		err = -EINVAL;
L
Linus Torvalds 已提交
465 466 467 468 469 470
		if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
			goto err_out;
	}

	a_o = tc_lookup_action_n(act_name);
	if (a_o == NULL) {
471
#ifdef CONFIG_MODULES
L
Linus Torvalds 已提交
472
		rtnl_unlock();
473
		request_module("act_%s", act_name);
L
Linus Torvalds 已提交
474 475 476 477 478 479 480 481 482 483 484
		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) {
485
			err = -EAGAIN;
L
Linus Torvalds 已提交
486 487 488
			goto err_mod;
		}
#endif
489
		err = -ENOENT;
L
Linus Torvalds 已提交
490 491 492
		goto err_out;
	}

493
	err = -ENOMEM;
494
	a = kzalloc(sizeof(*a), GFP_KERNEL);
L
Linus Torvalds 已提交
495 496 497
	if (a == NULL)
		goto err_mod;

498
	INIT_LIST_HEAD(&a->list);
L
Linus Torvalds 已提交
499 500
	/* backward compatibility for policer */
	if (name == NULL)
501
		err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, a, ovr, bind);
L
Linus Torvalds 已提交
502
	else
503
		err = a_o->init(net, nla, est, a, ovr, bind);
504
	if (err < 0)
L
Linus Torvalds 已提交
505 506 507
		goto err_free;

	/* module count goes up only when brand new policy is created
E
Eric Dumazet 已提交
508 509 510
	 * if it exists and is only bound to in a_o->init() then
	 * ACT_P_CREATED is not returned (a zero is).
	 */
511
	if (err != ACT_P_CREATED)
L
Linus Torvalds 已提交
512 513 514 515 516 517 518 519 520 521
		module_put(a_o->owner);
	a->ops = a_o;

	return a;

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

525
int tcf_action_init(struct net *net, struct nlattr *nla,
526
				  struct nlattr *est, char *name, int ovr,
527
				  int bind, struct list_head *actions)
L
Linus Torvalds 已提交
528
{
E
Eric Dumazet 已提交
529
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
530
	struct tc_action *act;
531
	int err;
L
Linus Torvalds 已提交
532 533
	int i;

534 535
	err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
	if (err < 0)
536
		return err;
L
Linus Torvalds 已提交
537

538
	for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
539
		act = tcf_action_init_1(net, tb[i], est, name, ovr, bind);
540 541
		if (IS_ERR(act)) {
			err = PTR_ERR(act);
L
Linus Torvalds 已提交
542
			goto err;
543
		}
544
		act->order = i;
545
		list_add_tail(&act->list, actions);
L
Linus Torvalds 已提交
546
	}
547
	return 0;
L
Linus Torvalds 已提交
548 549

err:
550 551
	tcf_action_destroy(actions, bind);
	return err;
L
Linus Torvalds 已提交
552 553 554 555 556 557 558 559
}

int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *a,
			  int compat_mode)
{
	int err = 0;
	struct gnet_dump d;
	struct tcf_act_hdr *h = a->priv;
560

L
Linus Torvalds 已提交
561 562 563 564
	if (h == NULL)
		goto errout;

	/* compat_mode being true specifies a call that is supposed
565
	 * to add additional backward compatibility statistic TLVs.
L
Linus Torvalds 已提交
566 567 568 569
	 */
	if (compat_mode) {
		if (a->type == TCA_OLD_COMPAT)
			err = gnet_stats_start_copy_compat(skb, 0,
570
				TCA_STATS, TCA_XSTATS, &h->tcf_lock, &d);
L
Linus Torvalds 已提交
571 572 573 574
		else
			return 0;
	} else
		err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
575
					    &h->tcf_lock, &d);
L
Linus Torvalds 已提交
576 577 578 579

	if (err < 0)
		goto errout;

580
	if (gnet_stats_copy_basic(&d, &h->tcf_bstats) < 0 ||
581 582
	    gnet_stats_copy_rate_est(&d, &h->tcf_bstats,
				     &h->tcf_rate_est) < 0 ||
583
	    gnet_stats_copy_queue(&d, &h->tcf_qstats) < 0)
L
Linus Torvalds 已提交
584 585 586 587 588 589 590 591 592 593 594 595
		goto errout;

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

	return 0;

errout:
	return -1;
}

static int
596
tca_get_fill(struct sk_buff *skb, struct list_head *actions, u32 portid, u32 seq,
597
	     u16 flags, int event, int bind, int ref)
L
Linus Torvalds 已提交
598 599 600
{
	struct tcamsg *t;
	struct nlmsghdr *nlh;
601
	unsigned char *b = skb_tail_pointer(skb);
602
	struct nlattr *nest;
L
Linus Torvalds 已提交
603

604
	nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
605 606 607
	if (!nlh)
		goto out_nlmsg_trim;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
608
	t->tca_family = AF_UNSPEC;
609 610
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
611

612 613
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
614
		goto out_nlmsg_trim;
L
Linus Torvalds 已提交
615

616
	if (tcf_action_dump(skb, actions, bind, ref) < 0)
617
		goto out_nlmsg_trim;
L
Linus Torvalds 已提交
618

619
	nla_nest_end(skb, nest);
620

621
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
622 623
	return skb->len;

624
out_nlmsg_trim:
625
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
626 627 628 629
	return -1;
}

static int
630
act_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
631
	       struct list_head *actions, int event)
L
Linus Torvalds 已提交
632 633 634 635 636 637
{
	struct sk_buff *skb;

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb)
		return -ENOBUFS;
638
	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event, 0, 0) <= 0) {
L
Linus Torvalds 已提交
639 640 641
		kfree_skb(skb);
		return -EINVAL;
	}
642

643
	return rtnl_unicast(skb, net, portid);
L
Linus Torvalds 已提交
644 645 646
}

static struct tc_action *
647
tcf_action_get_1(struct nlattr *nla, struct nlmsghdr *n, u32 portid)
L
Linus Torvalds 已提交
648
{
E
Eric Dumazet 已提交
649
	struct nlattr *tb[TCA_ACT_MAX + 1];
L
Linus Torvalds 已提交
650 651
	struct tc_action *a;
	int index;
652
	int err;
L
Linus Torvalds 已提交
653

654 655
	err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
	if (err < 0)
656
		goto err_out;
L
Linus Torvalds 已提交
657

658
	err = -EINVAL;
659 660
	if (tb[TCA_ACT_INDEX] == NULL ||
	    nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
661
		goto err_out;
662
	index = nla_get_u32(tb[TCA_ACT_INDEX]);
L
Linus Torvalds 已提交
663

664
	err = -ENOMEM;
665
	a = kzalloc(sizeof(struct tc_action), GFP_KERNEL);
L
Linus Torvalds 已提交
666
	if (a == NULL)
667
		goto err_out;
L
Linus Torvalds 已提交
668

669
	INIT_LIST_HEAD(&a->list);
670
	err = -EINVAL;
671
	a->ops = tc_lookup_action(tb[TCA_ACT_KIND]);
672
	if (a->ops == NULL) /* could happen in batch of actions */
L
Linus Torvalds 已提交
673
		goto err_free;
674
	err = -ENOENT;
L
Linus Torvalds 已提交
675 676 677 678 679
	if (a->ops->lookup(a, index) == 0)
		goto err_mod;

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

L
Linus Torvalds 已提交
681 682 683 684
err_mod:
	module_put(a->ops->owner);
err_free:
	kfree(a);
685 686
err_out:
	return ERR_PTR(err);
L
Linus Torvalds 已提交
687 688
}

689
static void cleanup_a(struct list_head *actions)
L
Linus Torvalds 已提交
690
{
691
	struct tc_action *a, *tmp;
L
Linus Torvalds 已提交
692

693 694
	list_for_each_entry_safe(a, tmp, actions, list) {
		list_del(&a->list);
L
Linus Torvalds 已提交
695 696 697 698 699 700 701 702
		kfree(a);
	}
}

static struct tc_action *create_a(int i)
{
	struct tc_action *act;

703
	act = kzalloc(sizeof(*act), GFP_KERNEL);
L
Linus Torvalds 已提交
704
	if (act == NULL) {
705
		pr_debug("create_a: failed to alloc!\n");
L
Linus Torvalds 已提交
706 707 708
		return NULL;
	}
	act->order = i;
709
	INIT_LIST_HEAD(&act->list);
L
Linus Torvalds 已提交
710 711 712
	return act;
}

713
static int tca_action_flush(struct net *net, struct nlattr *nla,
714
			    struct nlmsghdr *n, u32 portid)
L
Linus Torvalds 已提交
715 716 717 718 719 720
{
	struct sk_buff *skb;
	unsigned char *b;
	struct nlmsghdr *nlh;
	struct tcamsg *t;
	struct netlink_callback dcb;
721
	struct nlattr *nest;
E
Eric Dumazet 已提交
722
	struct nlattr *tb[TCA_ACT_MAX + 1];
723
	struct nlattr *kind;
L
Linus Torvalds 已提交
724
	struct tc_action *a = create_a(0);
725
	int err = -ENOMEM;
L
Linus Torvalds 已提交
726 727

	if (a == NULL) {
728
		pr_debug("tca_action_flush: couldnt create tc_action\n");
L
Linus Torvalds 已提交
729 730 731 732 733
		return err;
	}

	skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb) {
734
		pr_debug("tca_action_flush: failed skb alloc\n");
L
Linus Torvalds 已提交
735
		kfree(a);
736
		return err;
L
Linus Torvalds 已提交
737 738
	}

739
	b = skb_tail_pointer(skb);
L
Linus Torvalds 已提交
740

741 742
	err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
	if (err < 0)
L
Linus Torvalds 已提交
743 744
		goto err_out;

745
	err = -EINVAL;
746
	kind = tb[TCA_ACT_KIND];
L
Linus Torvalds 已提交
747
	a->ops = tc_lookup_action(kind);
748
	if (a->ops == NULL) /*some idjot trying to flush unknown action */
L
Linus Torvalds 已提交
749 750
		goto err_out;

751
	nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION, sizeof(*t), 0);
752 753 754
	if (!nlh)
		goto out_module_put;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
755
	t->tca_family = AF_UNSPEC;
756 757
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
L
Linus Torvalds 已提交
758

759 760
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
761
		goto out_module_put;
L
Linus Torvalds 已提交
762 763 764

	err = a->ops->walk(skb, &dcb, RTM_DELACTION, a);
	if (err < 0)
765
		goto out_module_put;
766 767
	if (err == 0)
		goto noflush_out;
L
Linus Torvalds 已提交
768

769
	nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
770

771
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
772 773 774
	nlh->nlmsg_flags |= NLM_F_ROOT;
	module_put(a->ops->owner);
	kfree(a);
775
	err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
E
Eric Dumazet 已提交
776
			     n->nlmsg_flags & NLM_F_ECHO);
L
Linus Torvalds 已提交
777 778 779 780 781
	if (err > 0)
		return 0;

	return err;

782
out_module_put:
783
	module_put(a->ops->owner);
L
Linus Torvalds 已提交
784
err_out:
785
noflush_out:
L
Linus Torvalds 已提交
786 787 788 789 790
	kfree_skb(skb);
	kfree(a);
	return err;
}

791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
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 */
	tcf_action_destroy(actions, 0);

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

L
Linus Torvalds 已提交
818
static int
819
tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
820
	      u32 portid, int event)
L
Linus Torvalds 已提交
821
{
822
	int i, ret;
E
Eric Dumazet 已提交
823
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
824 825
	struct tc_action *act;
	LIST_HEAD(actions);
L
Linus Torvalds 已提交
826

827 828 829
	ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
	if (ret < 0)
		return ret;
L
Linus Torvalds 已提交
830

E
Eric Dumazet 已提交
831
	if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
832
		if (tb[1] != NULL)
833
			return tca_action_flush(net, tb[1], n, portid);
834 835
		else
			return -EINVAL;
L
Linus Torvalds 已提交
836 837
	}

838
	for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
839
		act = tcf_action_get_1(tb[i], n, portid);
840 841
		if (IS_ERR(act)) {
			ret = PTR_ERR(act);
L
Linus Torvalds 已提交
842
			goto err;
843
		}
844
		act->order = i;
845
		list_add_tail(&act->list, &actions);
L
Linus Torvalds 已提交
846 847 848
	}

	if (event == RTM_GETACTION)
849
		ret = act_get_notify(net, portid, n, &actions, event);
L
Linus Torvalds 已提交
850
	else { /* delete */
851 852
		ret = tcf_del_notify(net, n, &actions, portid);
		if (ret)
L
Linus Torvalds 已提交
853 854 855 856
			goto err;
		return ret;
	}
err:
857
	cleanup_a(&actions);
L
Linus Torvalds 已提交
858 859 860
	return ret;
}

861 862 863
static int
tcf_add_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
	       u32 portid)
L
Linus Torvalds 已提交
864 865 866 867 868 869 870 871
{
	struct sk_buff *skb;
	int err = 0;

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

872 873 874 875 876
	if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
			 RTM_NEWACTION, 0, 0) <= 0) {
		kfree_skb(skb);
		return -EINVAL;
	}
877

878 879
	err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
			     n->nlmsg_flags & NLM_F_ECHO);
L
Linus Torvalds 已提交
880 881 882 883 884 885
	if (err > 0)
		err = 0;
	return err;
}

static int
886
tcf_action_add(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
887
	       u32 portid, int ovr)
L
Linus Torvalds 已提交
888 889
{
	int ret = 0;
890
	LIST_HEAD(actions);
L
Linus Torvalds 已提交
891

892 893
	ret = tcf_action_init(net, nla, NULL, NULL, ovr, 0, &actions);
	if (ret)
894
		goto done;
L
Linus Torvalds 已提交
895 896 897

	/* dump then free all the actions after update; inserted policy
	 * stays intact
E
Eric Dumazet 已提交
898
	 */
899
	ret = tcf_add_notify(net, n, &actions, portid);
900
	cleanup_a(&actions);
L
Linus Torvalds 已提交
901 902 903 904
done:
	return ret;
}

905
static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n)
L
Linus Torvalds 已提交
906
{
907
	struct net *net = sock_net(skb->sk);
908
	struct nlattr *tca[TCA_ACT_MAX + 1];
909
	u32 portid = skb ? NETLINK_CB(skb).portid : 0;
L
Linus Torvalds 已提交
910 911
	int ret = 0, ovr = 0;

912 913 914
	if ((n->nlmsg_type != RTM_GETACTION) && !capable(CAP_NET_ADMIN))
		return -EPERM;

915 916 917 918 919
	ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ACT_MAX, NULL);
	if (ret < 0)
		return ret;

	if (tca[TCA_ACT_TAB] == NULL) {
920
		pr_notice("tc_ctl_action: received NO action attribs\n");
L
Linus Torvalds 已提交
921 922 923
		return -EINVAL;
	}

E
Eric Dumazet 已提交
924
	/* n->nlmsg_flags & NLM_F_CREATE */
L
Linus Torvalds 已提交
925 926 927
	switch (n->nlmsg_type) {
	case RTM_NEWACTION:
		/* we are going to assume all other flags
L
Lucas De Marchi 已提交
928
		 * imply create only if it doesn't exist
L
Linus Torvalds 已提交
929 930 931 932
		 * Note that CREATE | EXCL implies that
		 * but since we want avoid ambiguity (eg when flags
		 * is zero) then just set this
		 */
E
Eric Dumazet 已提交
933
		if (n->nlmsg_flags & NLM_F_REPLACE)
L
Linus Torvalds 已提交
934 935
			ovr = 1;
replay:
936
		ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr);
L
Linus Torvalds 已提交
937 938 939 940
		if (ret == -EAGAIN)
			goto replay;
		break;
	case RTM_DELACTION:
941
		ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
942
				    portid, RTM_DELACTION);
L
Linus Torvalds 已提交
943 944
		break;
	case RTM_GETACTION:
945
		ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
946
				    portid, RTM_GETACTION);
L
Linus Torvalds 已提交
947 948 949 950 951 952 953 954
		break;
	default:
		BUG();
	}

	return ret;
}

955
static struct nlattr *
956
find_dump_kind(const struct nlmsghdr *n)
L
Linus Torvalds 已提交
957
{
E
Eric Dumazet 已提交
958
	struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
959 960 961
	struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
	struct nlattr *nla[TCAA_MAX + 1];
	struct nlattr *kind;
L
Linus Torvalds 已提交
962

963
	if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0)
L
Linus Torvalds 已提交
964
		return NULL;
965
	tb1 = nla[TCA_ACT_TAB];
L
Linus Torvalds 已提交
966 967 968
	if (tb1 == NULL)
		return NULL;

969 970
	if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
		      NLMSG_ALIGN(nla_len(tb1)), NULL) < 0)
L
Linus Torvalds 已提交
971 972
		return NULL;

973 974 975 976
	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 已提交
977
		return NULL;
978
	kind = tb2[TCA_ACT_KIND];
L
Linus Torvalds 已提交
979

980
	return kind;
L
Linus Torvalds 已提交
981 982 983 984 985 986
}

static int
tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
{
	struct nlmsghdr *nlh;
987
	unsigned char *b = skb_tail_pointer(skb);
988
	struct nlattr *nest;
L
Linus Torvalds 已提交
989 990 991
	struct tc_action_ops *a_o;
	struct tc_action a;
	int ret = 0;
992
	struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
993
	struct nlattr *kind = find_dump_kind(cb->nlh);
L
Linus Torvalds 已提交
994 995

	if (kind == NULL) {
996
		pr_info("tc_dump_action: action bad kind\n");
L
Linus Torvalds 已提交
997 998 999
		return 0;
	}

1000
	a_o = tc_lookup_action(kind);
E
Eric Dumazet 已提交
1001
	if (a_o == NULL)
L
Linus Torvalds 已提交
1002 1003 1004 1005 1006
		return 0;

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

1007
	nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
1008 1009 1010 1011
			cb->nlh->nlmsg_type, sizeof(*t), 0);
	if (!nlh)
		goto out_module_put;
	t = nlmsg_data(nlh);
L
Linus Torvalds 已提交
1012
	t->tca_family = AF_UNSPEC;
1013 1014
	t->tca__pad1 = 0;
	t->tca__pad2 = 0;
L
Linus Torvalds 已提交
1015

1016 1017
	nest = nla_nest_start(skb, TCA_ACT_TAB);
	if (nest == NULL)
1018
		goto out_module_put;
L
Linus Torvalds 已提交
1019 1020 1021

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

	if (ret > 0) {
1025
		nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
1026 1027
		ret = skb->len;
	} else
1028
		nla_nest_cancel(skb, nest);
L
Linus Torvalds 已提交
1029

1030
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1031
	if (NETLINK_CB(cb->skb).portid && ret)
L
Linus Torvalds 已提交
1032 1033 1034 1035
		nlh->nlmsg_flags |= NLM_F_MULTI;
	module_put(a_o->owner);
	return skb->len;

1036
out_module_put:
L
Linus Torvalds 已提交
1037
	module_put(a_o->owner);
1038
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
1039 1040 1041 1042 1043
	return skb->len;
}

static int __init tc_action_init(void)
{
1044 1045 1046 1047
	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 已提交
1048 1049 1050 1051 1052

	return 0;
}

subsys_initcall(tc_action_init);