fib_rules.c 24.3 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

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

473 474 475
	rule->proto = tb[FRA_PROTOCOL] ?
		nla_get_u8(tb[FRA_PROTOCOL]) : RTPROT_UNSPEC;

476
	if (tb[FRA_IIFNAME]) {
477 478
		struct net_device *dev;

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

486 487 488 489 490 491 492 493 494 495
	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;
	}

496 497 498 499 500 501 502 503 504 505 506 507
	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]);

508 509 510
	if (tb[FRA_TUN_ID])
		rule->tun_id = nla_get_be64(tb[FRA_TUN_ID]);

W
Wei Yongjun 已提交
511
	err = -EINVAL;
D
David Ahern 已提交
512 513 514 515 516 517 518 519
	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;
	}

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

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

T
Thomas Graf 已提交
533 534 535 536 537 538 539 540 541
	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;

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

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

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

557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
	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;
	}

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

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

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

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

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

615 616 617
	if (rule->tun_id)
		ip_tunnel_need_metadata();

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

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

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

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

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

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

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

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

670
	list_for_each_entry(rule, &ops->rules_list, list) {
671 672
		if (tb[FRA_PROTOCOL] &&
		    (rule->proto != nla_get_u8(tb[FRA_PROTOCOL])))
673 674
			continue;

675 676 677
		if (frh->action && (frh->action != rule->action))
			continue;

678 679
		if (frh_get_table(frh, tb) &&
		    (frh_get_table(frh, tb) != rule->table))
680 681 682 683 684 685
			continue;

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

686 687
		if (tb[FRA_IIFNAME] &&
		    nla_strcmp(tb[FRA_IIFNAME], rule->iifname))
688 689
			continue;

690 691 692 693
		if (tb[FRA_OIFNAME] &&
		    nla_strcmp(tb[FRA_OIFNAME], rule->oifname))
			continue;

694 695 696 697 698 699 700 701
		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;

702 703 704 705
		if (tb[FRA_TUN_ID] &&
		    (rule->tun_id != nla_get_be64(tb[FRA_TUN_ID])))
			continue;

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

710 711 712 713 714
		if (uid_range_set(&range) &&
		    (!uid_eq(rule->uid_range.start, range.start) ||
		     !uid_eq(rule->uid_range.end, range.end)))
			continue;

715 716 717 718 719 720 721 722
		if (!ops->compare(rule, frh, tb))
			continue;

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

723 724 725 726 727 728
		if (ops->delete) {
			err = ops->delete(rule);
			if (err)
				goto errout;
		}

729 730 731
		if (rule->tun_id)
			ip_tunnel_unneed_metadata();

732
		list_del_rcu(&rule->list);
T
Thomas Graf 已提交
733

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

		/*
		 * Check if this rule is a target to any of them. If so,
742
		 * adjust to the next one with the same preference or
T
Thomas Graf 已提交
743
		 * disable them. As this operation is eventually very
744 745
		 * expensive, it is only performed if goto rules, except
		 * current if it is goto rule, have actually been added.
T
Thomas Graf 已提交
746 747
		 */
		if (ops->nr_goto_rules > 0) {
748 749 750 751 752 753 754 755 756 757
			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 已提交
758 759 760 761
					ops->unresolved_rules++;
			}
		}

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

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

779 780 781 782
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))
783
			 + nla_total_size(IFNAMSIZ) /* FRA_IIFNAME */
784
			 + nla_total_size(IFNAMSIZ) /* FRA_OIFNAME */
785 786
			 + nla_total_size(4) /* FRA_PRIORITY */
			 + nla_total_size(4) /* FRA_TABLE */
787
			 + nla_total_size(4) /* FRA_SUPPRESS_PREFIXLEN */
788
			 + nla_total_size(4) /* FRA_SUPPRESS_IFGROUP */
789
			 + nla_total_size(4) /* FRA_FWMARK */
790
			 + nla_total_size(4) /* FRA_FWMASK */
791
			 + nla_total_size_64bit(8) /* FRA_TUN_ID */
792 793
			 + nla_total_size(sizeof(struct fib_kuid_range))
			 + nla_total_size(1); /* FRA_PROTOCOL */
794 795 796 797 798 799 800

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

	return payload;
}

801 802 803 804 805 806 807 808 809
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)
810
		return -EMSGSIZE;
811 812

	frh = nlmsg_data(nlh);
813
	frh->family = ops->family;
814
	frh->table = rule->table;
815 816
	if (nla_put_u32(skb, FRA_TABLE, rule->table))
		goto nla_put_failure;
817
	if (nla_put_u32(skb, FRA_SUPPRESS_PREFIXLEN, rule->suppress_prefixlen))
818
		goto nla_put_failure;
819
	frh->res1 = 0;
820
	frh->res2 = 0;
821 822
	frh->action = rule->action;
	frh->flags = rule->flags;
823 824 825

	if (nla_put_u8(skb, FRA_PROTOCOL, rule->proto))
		goto nla_put_failure;
826

E
Eric Dumazet 已提交
827
	if (rule->action == FR_ACT_GOTO &&
828
	    rcu_access_pointer(rule->ctarget) == NULL)
T
Thomas Graf 已提交
829 830
		frh->flags |= FIB_RULE_UNRESOLVED;

831
	if (rule->iifname[0]) {
832 833
		if (nla_put_string(skb, FRA_IIFNAME, rule->iifname))
			goto nla_put_failure;
834 835
		if (rule->iifindex == -1)
			frh->flags |= FIB_RULE_IIF_DETACHED;
836 837
	}

838
	if (rule->oifname[0]) {
839 840
		if (nla_put_string(skb, FRA_OIFNAME, rule->oifname))
			goto nla_put_failure;
841 842 843 844
		if (rule->oifindex == -1)
			frh->flags |= FIB_RULE_OIF_DETACHED;
	}

845 846 847 848 849 850 851
	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 &&
852 853
	     nla_put_u32(skb, FRA_GOTO, rule->target)) ||
	    (rule->tun_id &&
D
David Ahern 已提交
854 855
	     nla_put_be64(skb, FRA_TUN_ID, rule->tun_id, FRA_PAD)) ||
	    (rule->l3mdev &&
856 857 858
	     nla_put_u8(skb, FRA_L3MDEV, rule->l3mdev)) ||
	    (uid_range_set(&rule->uid_range) &&
	     nla_put_uid_range(skb, &rule->uid_range)))
859
		goto nla_put_failure;
860 861 862 863 864 865

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

866
	if (ops->fill(rule, skb, frh) < 0)
867 868
		goto nla_put_failure;

869 870
	nlmsg_end(skb, nlh);
	return 0;
871 872

nla_put_failure:
873 874
	nlmsg_cancel(skb, nlh);
	return -EMSGSIZE;
875 876
}

T
Thomas Graf 已提交
877 878
static int dump_rules(struct sk_buff *skb, struct netlink_callback *cb,
		      struct fib_rules_ops *ops)
879 880 881
{
	int idx = 0;
	struct fib_rule *rule;
882
	int err = 0;
883

884 885
	rcu_read_lock();
	list_for_each_entry_rcu(rule, &ops->rules_list, list) {
T
Thomas Graf 已提交
886
		if (idx < cb->args[1])
887 888
			goto skip;

889 890 891 892
		err = fib_nl_fill_rule(skb, rule, NETLINK_CB(cb->skb).portid,
				       cb->nlh->nlmsg_seq, RTM_NEWRULE,
				       NLM_F_MULTI, ops);
		if (err)
893 894 895 896
			break;
skip:
		idx++;
	}
897
	rcu_read_unlock();
T
Thomas Graf 已提交
898
	cb->args[1] = idx;
899 900
	rules_ops_put(ops);

901
	return err;
902 903
}

T
Thomas Graf 已提交
904 905
static int fib_nl_dumprule(struct sk_buff *skb, struct netlink_callback *cb)
{
906
	struct net *net = sock_net(skb->sk);
T
Thomas Graf 已提交
907 908 909 910 911 912
	struct fib_rules_ops *ops;
	int idx = 0, family;

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

917 918 919
		dump_rules(skb, cb, ops);

		return skb->len;
T
Thomas Graf 已提交
920 921 922
	}

	rcu_read_lock();
923
	list_for_each_entry_rcu(ops, &net->rules_ops, list) {
T
Thomas Graf 已提交
924 925 926 927 928 929 930
		if (idx < cb->args[0] || !try_module_get(ops->owner))
			goto skip;

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

		cb->args[1] = 0;
931
skip:
T
Thomas Graf 已提交
932 933 934 935 936 937 938
		idx++;
	}
	rcu_read_unlock();
	cb->args[0] = idx;

	return skb->len;
}
939

D
Denis V. Lunev 已提交
940
static void notify_rule_change(int event, struct fib_rule *rule,
941 942
			       struct fib_rules_ops *ops, struct nlmsghdr *nlh,
			       u32 pid)
943
{
D
Denis V. Lunev 已提交
944
	struct net *net;
945 946
	struct sk_buff *skb;
	int err = -ENOBUFS;
947

D
Denis V. Lunev 已提交
948
	net = ops->fro_net;
949
	skb = nlmsg_new(fib_rule_nlmsg_size(ops, rule), GFP_KERNEL);
950
	if (skb == NULL)
951 952 953
		goto errout;

	err = fib_nl_fill_rule(skb, rule, pid, nlh->nlmsg_seq, event, 0, ops);
954 955 956 957 958 959
	if (err < 0) {
		/* -EMSGSIZE implies BUG in fib_rule_nlmsg_size() */
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(skb);
		goto errout;
	}
D
Denis V. Lunev 已提交
960

961 962
	rtnl_notify(skb, net, pid, ops->nlgroup, nlh, GFP_KERNEL);
	return;
963 964
errout:
	if (err < 0)
965
		rtnl_set_sk_err(net, ops->nlgroup, err);
966 967 968 969 970 971 972
}

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

	list_for_each_entry(rule, rules, list) {
973 974 975
		if (rule->iifindex == -1 &&
		    strcmp(dev->name, rule->iifname) == 0)
			rule->iifindex = dev->ifindex;
976 977 978
		if (rule->oifindex == -1 &&
		    strcmp(dev->name, rule->oifname) == 0)
			rule->oifindex = dev->ifindex;
979 980 981 982 983 984 985
	}
}

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

986
	list_for_each_entry(rule, rules, list) {
987 988
		if (rule->iifindex == dev->ifindex)
			rule->iifindex = -1;
989 990 991
		if (rule->oifindex == dev->ifindex)
			rule->oifindex = -1;
	}
992 993 994 995
}


static int fib_rules_event(struct notifier_block *this, unsigned long event,
996
			   void *ptr)
997
{
998
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
999
	struct net *net = dev_net(dev);
1000 1001
	struct fib_rules_ops *ops;

1002
	ASSERT_RTNL();
1003 1004 1005

	switch (event) {
	case NETDEV_REGISTER:
1006
		list_for_each_entry(ops, &net->rules_ops, list)
1007
			attach_rules(&ops->rules_list, dev);
1008 1009
		break;

1010 1011 1012 1013 1014 1015 1016
	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;

1017
	case NETDEV_UNREGISTER:
1018
		list_for_each_entry(ops, &net->rules_ops, list)
1019
			detach_rules(&ops->rules_list, dev);
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
		break;
	}

	return NOTIFY_DONE;
}

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

1030
static int __net_init fib_rules_net_init(struct net *net)
1031 1032 1033 1034 1035 1036
{
	INIT_LIST_HEAD(&net->rules_ops);
	spin_lock_init(&net->rules_mod_lock);
	return 0;
}

1037 1038 1039 1040 1041
static void __net_exit fib_rules_net_exit(struct net *net)
{
	WARN_ON_ONCE(!list_empty(&net->rules_ops));
}

1042 1043
static struct pernet_operations fib_rules_net_ops = {
	.init = fib_rules_net_init,
1044
	.exit = fib_rules_net_exit,
1045
	.async = true,
1046 1047
};

1048 1049
static int __init fib_rules_init(void)
{
1050
	int err;
1051 1052 1053
	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);
1054

E
Eric W. Biederman 已提交
1055
	err = register_pernet_subsys(&fib_rules_net_ops);
1056 1057 1058
	if (err < 0)
		goto fail;

E
Eric W. Biederman 已提交
1059
	err = register_netdevice_notifier(&fib_rules_notifier);
1060 1061
	if (err < 0)
		goto fail_unregister;
E
Eric W. Biederman 已提交
1062

1063 1064 1065
	return 0;

fail_unregister:
E
Eric W. Biederman 已提交
1066
	unregister_pernet_subsys(&fib_rules_net_ops);
1067 1068 1069 1070 1071
fail:
	rtnl_unregister(PF_UNSPEC, RTM_NEWRULE);
	rtnl_unregister(PF_UNSPEC, RTM_DELRULE);
	rtnl_unregister(PF_UNSPEC, RTM_GETRULE);
	return err;
1072 1073 1074
}

subsys_initcall(fib_rules_init);