fib_rules.c 24.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * net/core/fib_rules.c		Generic Routing Rules
 *
 *	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, version 2.
 *
 * Authors:	Thomas Graf <tgraf@suug.ch>
 */

#include <linux/types.h>
#include <linux/kernel.h>
13
#include <linux/slab.h>
14
#include <linux/list.h>
15
#include <linux/module.h>
16
#include <net/net_namespace.h>
17
#include <net/sock.h>
18
#include <net/fib_rules.h>
19
#include <net/ip_tunnels.h>
20

21 22 23 24 25
static const struct fib_kuid_range fib_kuid_range_unset = {
	KUIDT_INIT(0),
	KUIDT_INIT(~0),
};

26 27 28 29 30 31 32 33 34 35 36 37 38 39
bool fib_rule_matchall(const struct fib_rule *rule)
{
	if (rule->iifindex || rule->oifindex || rule->mark || rule->tun_id ||
	    rule->flags)
		return false;
	if (rule->suppress_ifgroup != -1 || rule->suppress_prefixlen != -1)
		return false;
	if (!uid_eq(rule->uid_range.start, fib_kuid_range_unset.start) ||
	    !uid_eq(rule->uid_range.end, fib_kuid_range_unset.end))
		return false;
	return true;
}
EXPORT_SYMBOL_GPL(fib_rule_matchall);

40 41 42 43 44 45 46 47 48
int fib_default_rule_add(struct fib_rules_ops *ops,
			 u32 pref, u32 table, u32 flags)
{
	struct fib_rule *r;

	r = kzalloc(ops->rule_size, GFP_KERNEL);
	if (r == NULL)
		return -ENOMEM;

49
	refcount_set(&r->refcnt, 1);
50 51 52 53
	r->action = FR_ACT_TO_TBL;
	r->pref = pref;
	r->table = table;
	r->flags = flags;
54
	r->proto = RTPROT_KERNEL;
55
	r->fr_net = ops->fro_net;
56
	r->uid_range = fib_kuid_range_unset;
57

58 59 60
	r->suppress_prefixlen = -1;
	r->suppress_ifgroup = -1;

61 62 63 64 65 66 67
	/* The lock is not required here, the list in unreacheable
	 * at the moment this function is called */
	list_add_tail(&r->list, &ops->rules_list);
	return 0;
}
EXPORT_SYMBOL(fib_default_rule_add);

68
static u32 fib_default_rule_pref(struct fib_rules_ops *ops)
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
{
	struct list_head *pos;
	struct fib_rule *rule;

	if (!list_empty(&ops->rules_list)) {
		pos = ops->rules_list.next;
		if (pos->next != &ops->rules_list) {
			rule = list_entry(pos->next, struct fib_rule, list);
			if (rule->pref)
				return rule->pref - 1;
		}
	}

	return 0;
}

D
Denis V. Lunev 已提交
85
static void notify_rule_change(int event, struct fib_rule *rule,
86 87
			       struct fib_rules_ops *ops, struct nlmsghdr *nlh,
			       u32 pid);
88

89
static struct fib_rules_ops *lookup_rules_ops(struct net *net, int family)
90 91 92 93
{
	struct fib_rules_ops *ops;

	rcu_read_lock();
94
	list_for_each_entry_rcu(ops, &net->rules_ops, list) {
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
		if (ops->family == family) {
			if (!try_module_get(ops->owner))
				ops = NULL;
			rcu_read_unlock();
			return ops;
		}
	}
	rcu_read_unlock();

	return NULL;
}

static void rules_ops_put(struct fib_rules_ops *ops)
{
	if (ops)
		module_put(ops->owner);
}

113 114 115
static void flush_route_cache(struct fib_rules_ops *ops)
{
	if (ops->flush_cache)
116
		ops->flush_cache(ops);
117 118
}

119
static int __fib_rules_register(struct fib_rules_ops *ops)
120 121 122
{
	int err = -EEXIST;
	struct fib_rules_ops *o;
D
Denis V. Lunev 已提交
123 124 125
	struct net *net;

	net = ops->fro_net;
126 127 128 129 130 131 132 133 134

	if (ops->rule_size < sizeof(struct fib_rule))
		return -EINVAL;

	if (ops->match == NULL || ops->configure == NULL ||
	    ops->compare == NULL || ops->fill == NULL ||
	    ops->action == NULL)
		return -EINVAL;

135 136
	spin_lock(&net->rules_mod_lock);
	list_for_each_entry(o, &net->rules_ops, list)
137 138 139
		if (ops->family == o->family)
			goto errout;

140
	list_add_tail_rcu(&ops->list, &net->rules_ops);
141 142
	err = 0;
errout:
143
	spin_unlock(&net->rules_mod_lock);
144 145 146 147

	return err;
}

148
struct fib_rules_ops *
149
fib_rules_register(const struct fib_rules_ops *tmpl, struct net *net)
150 151 152 153
{
	struct fib_rules_ops *ops;
	int err;

154
	ops = kmemdup(tmpl, sizeof(*ops), GFP_KERNEL);
155 156 157 158 159 160 161 162 163 164 165 166 167 168
	if (ops == NULL)
		return ERR_PTR(-ENOMEM);

	INIT_LIST_HEAD(&ops->rules_list);
	ops->fro_net = net;

	err = __fib_rules_register(ops);
	if (err) {
		kfree(ops);
		ops = ERR_PTR(err);
	}

	return ops;
}
169 170
EXPORT_SYMBOL_GPL(fib_rules_register);

171
static void fib_rules_cleanup_ops(struct fib_rules_ops *ops)
172 173 174
{
	struct fib_rule *rule, *tmp;

175
	list_for_each_entry_safe(rule, tmp, &ops->rules_list, list) {
176
		list_del_rcu(&rule->list);
177 178
		if (ops->delete)
			ops->delete(rule);
179 180 181 182
		fib_rule_put(rule);
	}
}

D
Denis V. Lunev 已提交
183
void fib_rules_unregister(struct fib_rules_ops *ops)
184
{
D
Denis V. Lunev 已提交
185
	struct net *net = ops->fro_net;
186

187
	spin_lock(&net->rules_mod_lock);
188
	list_del_rcu(&ops->list);
189
	spin_unlock(&net->rules_mod_lock);
190

191
	fib_rules_cleanup_ops(ops);
192
	kfree_rcu(ops, rcu);
193 194 195
}
EXPORT_SYMBOL_GPL(fib_rules_unregister);

196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
static int uid_range_set(struct fib_kuid_range *range)
{
	return uid_valid(range->start) && uid_valid(range->end);
}

static struct fib_kuid_range nla_get_kuid_range(struct nlattr **tb)
{
	struct fib_rule_uid_range *in;
	struct fib_kuid_range out;

	in = (struct fib_rule_uid_range *)nla_data(tb[FRA_UID_RANGE]);

	out.start = make_kuid(current_user_ns(), in->start);
	out.end = make_kuid(current_user_ns(), in->end);

	return out;
}

static int nla_put_uid_range(struct sk_buff *skb, struct fib_kuid_range *range)
{
	struct fib_rule_uid_range out = {
		from_kuid_munged(current_user_ns(), range->start),
		from_kuid_munged(current_user_ns(), range->end)
	};

	return nla_put(skb, FRA_UID_RANGE, sizeof(out), &out);
}

224
static int fib_rule_match(struct fib_rule *rule, struct fib_rules_ops *ops,
D
David Ahern 已提交
225 226
			  struct flowi *fl, int flags,
			  struct fib_lookup_arg *arg)
227 228 229
{
	int ret = 0;

230
	if (rule->iifindex && (rule->iifindex != fl->flowi_iif))
231 232
		goto out;

233
	if (rule->oifindex && (rule->oifindex != fl->flowi_oif))
234 235
		goto out;

236
	if ((rule->mark ^ fl->flowi_mark) & rule->mark_mask)
237 238
		goto out;

239 240 241
	if (rule->tun_id && (rule->tun_id != fl->flowi_tun_key.tun_id))
		goto out;

D
David Ahern 已提交
242 243 244
	if (rule->l3mdev && !l3mdev_fib_rule_match(rule->fr_net, fl, arg))
		goto out;

245 246 247 248
	if (uid_lt(fl->flowi_uid, rule->uid_range.start) ||
	    uid_gt(fl->flowi_uid, rule->uid_range.end))
		goto out;

249 250 251 252 253
	ret = ops->match(rule, fl, flags);
out:
	return (rule->flags & FIB_RULE_INVERT) ? !ret : ret;
}

254 255 256 257 258 259 260 261
int fib_rules_lookup(struct fib_rules_ops *ops, struct flowi *fl,
		     int flags, struct fib_lookup_arg *arg)
{
	struct fib_rule *rule;
	int err;

	rcu_read_lock();

262
	list_for_each_entry_rcu(rule, &ops->rules_list, list) {
T
Thomas Graf 已提交
263
jumped:
D
David Ahern 已提交
264
		if (!fib_rule_match(rule, ops, fl, flags, arg))
265 266
			continue;

T
Thomas Graf 已提交
267 268 269 270 271 272 273 274 275 276
		if (rule->action == FR_ACT_GOTO) {
			struct fib_rule *target;

			target = rcu_dereference(rule->ctarget);
			if (target == NULL) {
				continue;
			} else {
				rule = target;
				goto jumped;
			}
277 278 279
		} else if (rule->action == FR_ACT_NOP)
			continue;
		else
T
Thomas Graf 已提交
280 281
			err = ops->action(rule, fl, flags, arg);

282 283 284
		if (!err && ops->suppress && ops->suppress(rule, arg))
			continue;

285
		if (err != -EAGAIN) {
E
Eric Dumazet 已提交
286
			if ((arg->flags & FIB_LOOKUP_NOREF) ||
287
			    likely(refcount_inc_not_zero(&rule->refcnt))) {
288 289 290 291
				arg->rule = rule;
				goto out;
			}
			break;
292 293 294
		}
	}

295
	err = -ESRCH;
296 297 298 299 300 301 302
out:
	rcu_read_unlock();

	return err;
}
EXPORT_SYMBOL_GPL(fib_rules_lookup);

303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
static int call_fib_rule_notifier(struct notifier_block *nb, struct net *net,
				  enum fib_event_type event_type,
				  struct fib_rule *rule, int family)
{
	struct fib_rule_notifier_info info = {
		.info.family = family,
		.rule = rule,
	};

	return call_fib_notifier(nb, net, event_type, &info.info);
}

static int call_fib_rule_notifiers(struct net *net,
				   enum fib_event_type event_type,
				   struct fib_rule *rule,
D
David Ahern 已提交
318 319
				   struct fib_rules_ops *ops,
				   struct netlink_ext_ack *extack)
320 321 322
{
	struct fib_rule_notifier_info info = {
		.info.family = ops->family,
D
David Ahern 已提交
323
		.info.extack = extack,
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
		.rule = rule,
	};

	ops->fib_rules_seq++;
	return call_fib_notifiers(net, event_type, &info.info);
}

/* Called with rcu_read_lock() */
int fib_rules_dump(struct net *net, struct notifier_block *nb, int family)
{
	struct fib_rules_ops *ops;
	struct fib_rule *rule;

	ops = lookup_rules_ops(net, family);
	if (!ops)
		return -EAFNOSUPPORT;
	list_for_each_entry_rcu(rule, &ops->rules_list, list)
		call_fib_rule_notifier(nb, net, FIB_EVENT_RULE_ADD, rule,
				       family);
	rules_ops_put(ops);

	return 0;
}
EXPORT_SYMBOL_GPL(fib_rules_dump);

unsigned int fib_rules_seq_read(struct net *net, int family)
{
	unsigned int fib_rules_seq;
	struct fib_rules_ops *ops;

	ASSERT_RTNL();

	ops = lookup_rules_ops(net, family);
	if (!ops)
		return 0;
	fib_rules_seq = ops->fib_rules_seq;
	rules_ops_put(ops);

	return fib_rules_seq;
}
EXPORT_SYMBOL_GPL(fib_rules_seq_read);

366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
static int validate_rulemsg(struct fib_rule_hdr *frh, struct nlattr **tb,
			    struct fib_rules_ops *ops)
{
	int err = -EINVAL;

	if (frh->src_len)
		if (tb[FRA_SRC] == NULL ||
		    frh->src_len > (ops->addr_size * 8) ||
		    nla_len(tb[FRA_SRC]) != ops->addr_size)
			goto errout;

	if (frh->dst_len)
		if (tb[FRA_DST] == NULL ||
		    frh->dst_len > (ops->addr_size * 8) ||
		    nla_len(tb[FRA_DST]) != ops->addr_size)
			goto errout;

	err = 0;
errout:
	return err;
}

388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
static int rule_exists(struct fib_rules_ops *ops, struct fib_rule_hdr *frh,
		       struct nlattr **tb, struct fib_rule *rule)
{
	struct fib_rule *r;

	list_for_each_entry(r, &ops->rules_list, list) {
		if (r->action != rule->action)
			continue;

		if (r->table != rule->table)
			continue;

		if (r->pref != rule->pref)
			continue;

		if (memcmp(r->iifname, rule->iifname, IFNAMSIZ))
			continue;

		if (memcmp(r->oifname, rule->oifname, IFNAMSIZ))
			continue;

		if (r->mark != rule->mark)
			continue;

		if (r->mark_mask != rule->mark_mask)
			continue;

		if (r->tun_id != rule->tun_id)
			continue;

		if (r->fr_net != rule->fr_net)
			continue;

		if (r->l3mdev != rule->l3mdev)
			continue;

424 425 426 427
		if (!uid_eq(r->uid_range.start, rule->uid_range.start) ||
		    !uid_eq(r->uid_range.end, rule->uid_range.end))
			continue;

428 429 430 431 432 433 434
		if (!ops->compare(r, frh, tb))
			continue;
		return 1;
	}
	return 0;
}

435 436
int fib_nl_newrule(struct sk_buff *skb, struct nlmsghdr *nlh,
		   struct netlink_ext_ack *extack)
437
{
438
	struct net *net = sock_net(skb->sk);
439 440 441 442
	struct fib_rule_hdr *frh = nlmsg_data(nlh);
	struct fib_rules_ops *ops = NULL;
	struct fib_rule *rule, *r, *last = NULL;
	struct nlattr *tb[FRA_MAX+1];
T
Thomas Graf 已提交
443
	int err = -EINVAL, unresolved = 0;
444 445 446 447

	if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*frh)))
		goto errout;

448
	ops = lookup_rules_ops(net, frh->family);
449
	if (ops == NULL) {
450
		err = -EAFNOSUPPORT;
451 452 453
		goto errout;
	}

454
	err = nlmsg_parse(nlh, sizeof(*frh), tb, FRA_MAX, ops->policy, extack);
455 456 457
	if (err < 0)
		goto errout;

458 459 460 461
	err = validate_rulemsg(frh, tb, ops);
	if (err < 0)
		goto errout;

462 463 464 465 466
	rule = kzalloc(ops->rule_size, GFP_KERNEL);
	if (rule == NULL) {
		err = -ENOMEM;
		goto errout;
	}
467
	refcount_set(&rule->refcnt, 1);
468
	rule->fr_net = net;
469
	rule->proto = frh->proto;
470

471 472
	rule->pref = tb[FRA_PRIORITY] ? nla_get_u32(tb[FRA_PRIORITY])
	                              : fib_default_rule_pref(ops);
473

474
	if (tb[FRA_IIFNAME]) {
475 476
		struct net_device *dev;

477 478 479
		rule->iifindex = -1;
		nla_strlcpy(rule->iifname, tb[FRA_IIFNAME], IFNAMSIZ);
		dev = __dev_get_by_name(net, rule->iifname);
480
		if (dev)
481
			rule->iifindex = dev->ifindex;
482 483
	}

484 485 486 487 488 489 490 491 492 493
	if (tb[FRA_OIFNAME]) {
		struct net_device *dev;

		rule->oifindex = -1;
		nla_strlcpy(rule->oifname, tb[FRA_OIFNAME], IFNAMSIZ);
		dev = __dev_get_by_name(net, rule->oifname);
		if (dev)
			rule->oifindex = dev->ifindex;
	}

494 495 496 497 498 499 500 501 502 503 504 505
	if (tb[FRA_FWMARK]) {
		rule->mark = nla_get_u32(tb[FRA_FWMARK]);
		if (rule->mark)
			/* compatibility: if the mark value is non-zero all bits
			 * are compared unless a mask is explicitly specified.
			 */
			rule->mark_mask = 0xFFFFFFFF;
	}

	if (tb[FRA_FWMASK])
		rule->mark_mask = nla_get_u32(tb[FRA_FWMASK]);

506 507 508
	if (tb[FRA_TUN_ID])
		rule->tun_id = nla_get_be64(tb[FRA_TUN_ID]);

W
Wei Yongjun 已提交
509
	err = -EINVAL;
D
David Ahern 已提交
510 511 512 513 514 515 516 517
	if (tb[FRA_L3MDEV]) {
#ifdef CONFIG_NET_L3_MASTER_DEV
		rule->l3mdev = nla_get_u8(tb[FRA_L3MDEV]);
		if (rule->l3mdev != 1)
#endif
			goto errout_free;
	}

518 519
	rule->action = frh->action;
	rule->flags = frh->flags;
520
	rule->table = frh_get_table(frh, tb);
521 522 523 524
	if (tb[FRA_SUPPRESS_PREFIXLEN])
		rule->suppress_prefixlen = nla_get_u32(tb[FRA_SUPPRESS_PREFIXLEN]);
	else
		rule->suppress_prefixlen = -1;
525

526 527
	if (tb[FRA_SUPPRESS_IFGROUP])
		rule->suppress_ifgroup = nla_get_u32(tb[FRA_SUPPRESS_IFGROUP]);
528 529
	else
		rule->suppress_ifgroup = -1;
530

T
Thomas Graf 已提交
531 532 533 534 535 536 537 538 539
	if (tb[FRA_GOTO]) {
		if (rule->action != FR_ACT_GOTO)
			goto errout_free;

		rule->target = nla_get_u32(tb[FRA_GOTO]);
		/* Backward jumps are prohibited to avoid endless loops */
		if (rule->target <= rule->pref)
			goto errout_free;

540
		list_for_each_entry(r, &ops->rules_list, list) {
T
Thomas Graf 已提交
541
			if (r->pref == rule->target) {
E
Eric Dumazet 已提交
542
				RCU_INIT_POINTER(rule->ctarget, r);
T
Thomas Graf 已提交
543 544 545 546
				break;
			}
		}

E
Eric Dumazet 已提交
547
		if (rcu_dereference_protected(rule->ctarget, 1) == NULL)
T
Thomas Graf 已提交
548 549 550 551
			unresolved = 1;
	} else if (rule->action == FR_ACT_GOTO)
		goto errout_free;

D
David Ahern 已提交
552 553 554
	if (rule->l3mdev && rule->table)
		goto errout_free;

555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
	if (tb[FRA_UID_RANGE]) {
		if (current_user_ns() != net->user_ns) {
			err = -EPERM;
			goto errout_free;
		}

		rule->uid_range = nla_get_kuid_range(tb);

		if (!uid_range_set(&rule->uid_range) ||
		    !uid_lte(rule->uid_range.start, rule->uid_range.end))
			goto errout_free;
	} else {
		rule->uid_range = fib_kuid_range_unset;
	}

570 571 572 573 574 575
	if ((nlh->nlmsg_flags & NLM_F_EXCL) &&
	    rule_exists(ops, frh, tb, rule)) {
		err = -EEXIST;
		goto errout_free;
	}

576
	err = ops->configure(rule, skb, frh, tb);
577 578 579
	if (err < 0)
		goto errout_free;

580
	list_for_each_entry(r, &ops->rules_list, list) {
581 582 583 584 585
		if (r->pref > rule->pref)
			break;
		last = r;
	}

E
Eric Dumazet 已提交
586 587 588 589 590
	if (last)
		list_add_rcu(&rule->list, &last->list);
	else
		list_add_rcu(&rule->list, &ops->rules_list);

T
Thomas Graf 已提交
591 592 593 594 595
	if (ops->unresolved_rules) {
		/*
		 * There are unresolved goto rules in the list, check if
		 * any of them are pointing to this new rule.
		 */
596
		list_for_each_entry(r, &ops->rules_list, list) {
T
Thomas Graf 已提交
597
			if (r->action == FR_ACT_GOTO &&
598 599
			    r->target == rule->pref &&
			    rtnl_dereference(r->ctarget) == NULL) {
T
Thomas Graf 已提交
600 601 602 603 604 605 606 607 608 609 610 611 612
				rcu_assign_pointer(r->ctarget, rule);
				if (--ops->unresolved_rules == 0)
					break;
			}
		}
	}

	if (rule->action == FR_ACT_GOTO)
		ops->nr_goto_rules++;

	if (unresolved)
		ops->unresolved_rules++;

613 614 615
	if (rule->tun_id)
		ip_tunnel_need_metadata();

D
David Ahern 已提交
616
	call_fib_rule_notifiers(net, FIB_EVENT_RULE_ADD, rule, ops, extack);
617
	notify_rule_change(RTM_NEWRULE, rule, ops, nlh, NETLINK_CB(skb).portid);
618
	flush_route_cache(ops);
619 620 621 622 623 624 625 626 627
	rules_ops_put(ops);
	return 0;

errout_free:
	kfree(rule);
errout:
	rules_ops_put(ops);
	return err;
}
D
David Ahern 已提交
628
EXPORT_SYMBOL_GPL(fib_nl_newrule);
629

630 631
int fib_nl_delrule(struct sk_buff *skb, struct nlmsghdr *nlh,
		   struct netlink_ext_ack *extack)
632
{
633
	struct net *net = sock_net(skb->sk);
634 635
	struct fib_rule_hdr *frh = nlmsg_data(nlh);
	struct fib_rules_ops *ops = NULL;
636
	struct fib_rule *rule, *r;
637
	struct nlattr *tb[FRA_MAX+1];
638
	struct fib_kuid_range range;
639 640 641 642 643
	int err = -EINVAL;

	if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*frh)))
		goto errout;

644
	ops = lookup_rules_ops(net, frh->family);
645
	if (ops == NULL) {
646
		err = -EAFNOSUPPORT;
647 648 649
		goto errout;
	}

650
	err = nlmsg_parse(nlh, sizeof(*frh), tb, FRA_MAX, ops->policy, extack);
651 652 653
	if (err < 0)
		goto errout;

654 655 656 657
	err = validate_rulemsg(frh, tb, ops);
	if (err < 0)
		goto errout;

658 659
	if (tb[FRA_UID_RANGE]) {
		range = nla_get_kuid_range(tb);
W
Wei Yongjun 已提交
660 661
		if (!uid_range_set(&range)) {
			err = -EINVAL;
662
			goto errout;
W
Wei Yongjun 已提交
663
		}
664 665 666 667
	} else {
		range = fib_kuid_range_unset;
	}

668
	list_for_each_entry(rule, &ops->rules_list, list) {
669 670 671
		if (frh->proto && (frh->proto != rule->proto))
			continue;

672 673 674
		if (frh->action && (frh->action != rule->action))
			continue;

675 676
		if (frh_get_table(frh, tb) &&
		    (frh_get_table(frh, tb) != rule->table))
677 678 679 680 681 682
			continue;

		if (tb[FRA_PRIORITY] &&
		    (rule->pref != nla_get_u32(tb[FRA_PRIORITY])))
			continue;

683 684
		if (tb[FRA_IIFNAME] &&
		    nla_strcmp(tb[FRA_IIFNAME], rule->iifname))
685 686
			continue;

687 688 689 690
		if (tb[FRA_OIFNAME] &&
		    nla_strcmp(tb[FRA_OIFNAME], rule->oifname))
			continue;

691 692 693 694 695 696 697 698
		if (tb[FRA_FWMARK] &&
		    (rule->mark != nla_get_u32(tb[FRA_FWMARK])))
			continue;

		if (tb[FRA_FWMASK] &&
		    (rule->mark_mask != nla_get_u32(tb[FRA_FWMASK])))
			continue;

699 700 701 702
		if (tb[FRA_TUN_ID] &&
		    (rule->tun_id != nla_get_be64(tb[FRA_TUN_ID])))
			continue;

D
David Ahern 已提交
703 704 705 706
		if (tb[FRA_L3MDEV] &&
		    (rule->l3mdev != nla_get_u8(tb[FRA_L3MDEV])))
			continue;

707 708 709 710 711
		if (uid_range_set(&range) &&
		    (!uid_eq(rule->uid_range.start, range.start) ||
		     !uid_eq(rule->uid_range.end, range.end)))
			continue;

712 713 714 715 716 717 718 719
		if (!ops->compare(rule, frh, tb))
			continue;

		if (rule->flags & FIB_RULE_PERMANENT) {
			err = -EPERM;
			goto errout;
		}

720 721 722 723 724 725
		if (ops->delete) {
			err = ops->delete(rule);
			if (err)
				goto errout;
		}

726 727 728
		if (rule->tun_id)
			ip_tunnel_unneed_metadata();

729
		list_del_rcu(&rule->list);
T
Thomas Graf 已提交
730

731
		if (rule->action == FR_ACT_GOTO) {
T
Thomas Graf 已提交
732
			ops->nr_goto_rules--;
733 734 735
			if (rtnl_dereference(rule->ctarget) == NULL)
				ops->unresolved_rules--;
		}
T
Thomas Graf 已提交
736 737 738

		/*
		 * Check if this rule is a target to any of them. If so,
739
		 * adjust to the next one with the same preference or
T
Thomas Graf 已提交
740
		 * disable them. As this operation is eventually very
741 742
		 * expensive, it is only performed if goto rules, except
		 * current if it is goto rule, have actually been added.
T
Thomas Graf 已提交
743 744
		 */
		if (ops->nr_goto_rules > 0) {
745 746 747 748 749 750 751 752 753 754
			struct fib_rule *n;

			n = list_next_entry(rule, list);
			if (&n->list == &ops->rules_list || n->pref != rule->pref)
				n = NULL;
			list_for_each_entry(r, &ops->rules_list, list) {
				if (rtnl_dereference(r->ctarget) != rule)
					continue;
				rcu_assign_pointer(r->ctarget, n);
				if (!n)
T
Thomas Graf 已提交
755 756 757 758
					ops->unresolved_rules++;
			}
		}

D
David Ahern 已提交
759 760
		call_fib_rule_notifiers(net, FIB_EVENT_RULE_DEL, rule, ops,
					NULL);
D
Denis V. Lunev 已提交
761
		notify_rule_change(RTM_DELRULE, rule, ops, nlh,
762
				   NETLINK_CB(skb).portid);
763
		fib_rule_put(rule);
764
		flush_route_cache(ops);
765 766 767 768 769 770 771 772 773
		rules_ops_put(ops);
		return 0;
	}

	err = -ENOENT;
errout:
	rules_ops_put(ops);
	return err;
}
D
David Ahern 已提交
774
EXPORT_SYMBOL_GPL(fib_nl_delrule);
775

776 777 778 779
static inline size_t fib_rule_nlmsg_size(struct fib_rules_ops *ops,
					 struct fib_rule *rule)
{
	size_t payload = NLMSG_ALIGN(sizeof(struct fib_rule_hdr))
780
			 + nla_total_size(IFNAMSIZ) /* FRA_IIFNAME */
781
			 + nla_total_size(IFNAMSIZ) /* FRA_OIFNAME */
782 783
			 + nla_total_size(4) /* FRA_PRIORITY */
			 + nla_total_size(4) /* FRA_TABLE */
784
			 + nla_total_size(4) /* FRA_SUPPRESS_PREFIXLEN */
785
			 + nla_total_size(4) /* FRA_SUPPRESS_IFGROUP */
786
			 + nla_total_size(4) /* FRA_FWMARK */
787
			 + nla_total_size(4) /* FRA_FWMASK */
788 789
			 + nla_total_size_64bit(8) /* FRA_TUN_ID */
			 + nla_total_size(sizeof(struct fib_kuid_range));
790 791 792 793 794 795 796

	if (ops->nlmsg_payload)
		payload += ops->nlmsg_payload(rule);

	return payload;
}

797 798 799 800 801 802 803 804 805
static int fib_nl_fill_rule(struct sk_buff *skb, struct fib_rule *rule,
			    u32 pid, u32 seq, int type, int flags,
			    struct fib_rules_ops *ops)
{
	struct nlmsghdr *nlh;
	struct fib_rule_hdr *frh;

	nlh = nlmsg_put(skb, pid, seq, type, sizeof(*frh), flags);
	if (nlh == NULL)
806
		return -EMSGSIZE;
807 808

	frh = nlmsg_data(nlh);
809
	frh->family = ops->family;
810
	frh->table = rule->table;
811 812
	if (nla_put_u32(skb, FRA_TABLE, rule->table))
		goto nla_put_failure;
813
	if (nla_put_u32(skb, FRA_SUPPRESS_PREFIXLEN, rule->suppress_prefixlen))
814
		goto nla_put_failure;
815 816 817
	frh->res1 = 0;
	frh->action = rule->action;
	frh->flags = rule->flags;
818
	frh->proto = rule->proto;
819

E
Eric Dumazet 已提交
820
	if (rule->action == FR_ACT_GOTO &&
821
	    rcu_access_pointer(rule->ctarget) == NULL)
T
Thomas Graf 已提交
822 823
		frh->flags |= FIB_RULE_UNRESOLVED;

824
	if (rule->iifname[0]) {
825 826
		if (nla_put_string(skb, FRA_IIFNAME, rule->iifname))
			goto nla_put_failure;
827 828
		if (rule->iifindex == -1)
			frh->flags |= FIB_RULE_IIF_DETACHED;
829 830
	}

831
	if (rule->oifname[0]) {
832 833
		if (nla_put_string(skb, FRA_OIFNAME, rule->oifname))
			goto nla_put_failure;
834 835 836 837
		if (rule->oifindex == -1)
			frh->flags |= FIB_RULE_OIF_DETACHED;
	}

838 839 840 841 842 843 844
	if ((rule->pref &&
	     nla_put_u32(skb, FRA_PRIORITY, rule->pref)) ||
	    (rule->mark &&
	     nla_put_u32(skb, FRA_FWMARK, rule->mark)) ||
	    ((rule->mark_mask || rule->mark) &&
	     nla_put_u32(skb, FRA_FWMASK, rule->mark_mask)) ||
	    (rule->target &&
845 846
	     nla_put_u32(skb, FRA_GOTO, rule->target)) ||
	    (rule->tun_id &&
D
David Ahern 已提交
847 848
	     nla_put_be64(skb, FRA_TUN_ID, rule->tun_id, FRA_PAD)) ||
	    (rule->l3mdev &&
849 850 851
	     nla_put_u8(skb, FRA_L3MDEV, rule->l3mdev)) ||
	    (uid_range_set(&rule->uid_range) &&
	     nla_put_uid_range(skb, &rule->uid_range)))
852
		goto nla_put_failure;
853 854 855 856 857 858

	if (rule->suppress_ifgroup != -1) {
		if (nla_put_u32(skb, FRA_SUPPRESS_IFGROUP, rule->suppress_ifgroup))
			goto nla_put_failure;
	}

859
	if (ops->fill(rule, skb, frh) < 0)
860 861
		goto nla_put_failure;

862 863
	nlmsg_end(skb, nlh);
	return 0;
864 865

nla_put_failure:
866 867
	nlmsg_cancel(skb, nlh);
	return -EMSGSIZE;
868 869
}

T
Thomas Graf 已提交
870 871
static int dump_rules(struct sk_buff *skb, struct netlink_callback *cb,
		      struct fib_rules_ops *ops)
872 873 874
{
	int idx = 0;
	struct fib_rule *rule;
875
	int err = 0;
876

877 878
	rcu_read_lock();
	list_for_each_entry_rcu(rule, &ops->rules_list, list) {
T
Thomas Graf 已提交
879
		if (idx < cb->args[1])
880 881
			goto skip;

882 883 884 885
		err = fib_nl_fill_rule(skb, rule, NETLINK_CB(cb->skb).portid,
				       cb->nlh->nlmsg_seq, RTM_NEWRULE,
				       NLM_F_MULTI, ops);
		if (err)
886 887 888 889
			break;
skip:
		idx++;
	}
890
	rcu_read_unlock();
T
Thomas Graf 已提交
891
	cb->args[1] = idx;
892 893
	rules_ops_put(ops);

894
	return err;
895 896
}

T
Thomas Graf 已提交
897 898
static int fib_nl_dumprule(struct sk_buff *skb, struct netlink_callback *cb)
{
899
	struct net *net = sock_net(skb->sk);
T
Thomas Graf 已提交
900 901 902 903 904 905
	struct fib_rules_ops *ops;
	int idx = 0, family;

	family = rtnl_msg_family(cb->nlh);
	if (family != AF_UNSPEC) {
		/* Protocol specific dump request */
906
		ops = lookup_rules_ops(net, family);
T
Thomas Graf 已提交
907 908 909
		if (ops == NULL)
			return -EAFNOSUPPORT;

910 911 912
		dump_rules(skb, cb, ops);

		return skb->len;
T
Thomas Graf 已提交
913 914 915
	}

	rcu_read_lock();
916
	list_for_each_entry_rcu(ops, &net->rules_ops, list) {
T
Thomas Graf 已提交
917 918 919 920 921 922 923
		if (idx < cb->args[0] || !try_module_get(ops->owner))
			goto skip;

		if (dump_rules(skb, cb, ops) < 0)
			break;

		cb->args[1] = 0;
924
skip:
T
Thomas Graf 已提交
925 926 927 928 929 930 931
		idx++;
	}
	rcu_read_unlock();
	cb->args[0] = idx;

	return skb->len;
}
932

D
Denis V. Lunev 已提交
933
static void notify_rule_change(int event, struct fib_rule *rule,
934 935
			       struct fib_rules_ops *ops, struct nlmsghdr *nlh,
			       u32 pid)
936
{
D
Denis V. Lunev 已提交
937
	struct net *net;
938 939
	struct sk_buff *skb;
	int err = -ENOBUFS;
940

D
Denis V. Lunev 已提交
941
	net = ops->fro_net;
942
	skb = nlmsg_new(fib_rule_nlmsg_size(ops, rule), GFP_KERNEL);
943
	if (skb == NULL)
944 945 946
		goto errout;

	err = fib_nl_fill_rule(skb, rule, pid, nlh->nlmsg_seq, event, 0, ops);
947 948 949 950 951 952
	if (err < 0) {
		/* -EMSGSIZE implies BUG in fib_rule_nlmsg_size() */
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(skb);
		goto errout;
	}
D
Denis V. Lunev 已提交
953

954 955
	rtnl_notify(skb, net, pid, ops->nlgroup, nlh, GFP_KERNEL);
	return;
956 957
errout:
	if (err < 0)
958
		rtnl_set_sk_err(net, ops->nlgroup, err);
959 960 961 962 963 964 965
}

static void attach_rules(struct list_head *rules, struct net_device *dev)
{
	struct fib_rule *rule;

	list_for_each_entry(rule, rules, list) {
966 967 968
		if (rule->iifindex == -1 &&
		    strcmp(dev->name, rule->iifname) == 0)
			rule->iifindex = dev->ifindex;
969 970 971
		if (rule->oifindex == -1 &&
		    strcmp(dev->name, rule->oifname) == 0)
			rule->oifindex = dev->ifindex;
972 973 974 975 976 977 978
	}
}

static void detach_rules(struct list_head *rules, struct net_device *dev)
{
	struct fib_rule *rule;

979
	list_for_each_entry(rule, rules, list) {
980 981
		if (rule->iifindex == dev->ifindex)
			rule->iifindex = -1;
982 983 984
		if (rule->oifindex == dev->ifindex)
			rule->oifindex = -1;
	}
985 986 987 988
}


static int fib_rules_event(struct notifier_block *this, unsigned long event,
989
			   void *ptr)
990
{
991
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
992
	struct net *net = dev_net(dev);
993 994
	struct fib_rules_ops *ops;

995
	ASSERT_RTNL();
996 997 998

	switch (event) {
	case NETDEV_REGISTER:
999
		list_for_each_entry(ops, &net->rules_ops, list)
1000
			attach_rules(&ops->rules_list, dev);
1001 1002
		break;

1003 1004 1005 1006 1007 1008 1009
	case NETDEV_CHANGENAME:
		list_for_each_entry(ops, &net->rules_ops, list) {
			detach_rules(&ops->rules_list, dev);
			attach_rules(&ops->rules_list, dev);
		}
		break;

1010
	case NETDEV_UNREGISTER:
1011
		list_for_each_entry(ops, &net->rules_ops, list)
1012
			detach_rules(&ops->rules_list, dev);
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
		break;
	}

	return NOTIFY_DONE;
}

static struct notifier_block fib_rules_notifier = {
	.notifier_call = fib_rules_event,
};

1023
static int __net_init fib_rules_net_init(struct net *net)
1024 1025 1026 1027 1028 1029
{
	INIT_LIST_HEAD(&net->rules_ops);
	spin_lock_init(&net->rules_mod_lock);
	return 0;
}

1030 1031 1032 1033 1034
static void __net_exit fib_rules_net_exit(struct net *net)
{
	WARN_ON_ONCE(!list_empty(&net->rules_ops));
}

1035 1036
static struct pernet_operations fib_rules_net_ops = {
	.init = fib_rules_net_init,
1037
	.exit = fib_rules_net_exit,
1038
	.async = true,
1039 1040
};

1041 1042
static int __init fib_rules_init(void)
{
1043
	int err;
1044 1045 1046
	rtnl_register(PF_UNSPEC, RTM_NEWRULE, fib_nl_newrule, NULL, 0);
	rtnl_register(PF_UNSPEC, RTM_DELRULE, fib_nl_delrule, NULL, 0);
	rtnl_register(PF_UNSPEC, RTM_GETRULE, NULL, fib_nl_dumprule, 0);
1047

E
Eric W. Biederman 已提交
1048
	err = register_pernet_subsys(&fib_rules_net_ops);
1049 1050 1051
	if (err < 0)
		goto fail;

E
Eric W. Biederman 已提交
1052
	err = register_netdevice_notifier(&fib_rules_notifier);
1053 1054
	if (err < 0)
		goto fail_unregister;
E
Eric W. Biederman 已提交
1055

1056 1057 1058
	return 0;

fail_unregister:
E
Eric W. Biederman 已提交
1059
	unregister_pernet_subsys(&fib_rules_net_ops);
1060 1061 1062 1063 1064
fail:
	rtnl_unregister(PF_UNSPEC, RTM_NEWRULE);
	rtnl_unregister(PF_UNSPEC, RTM_DELRULE);
	rtnl_unregister(PF_UNSPEC, RTM_GETRULE);
	return err;
1065 1066 1067
}

subsys_initcall(fib_rules_init);