fib_rules.c 18.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 26 27 28 29 30 31 32 33 34
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;

	atomic_set(&r->refcnt, 1);
	r->action = FR_ACT_TO_TBL;
	r->pref = pref;
	r->table = table;
	r->flags = flags;
35
	r->fr_net = ops->fro_net;
36

37 38 39
	r->suppress_prefixlen = -1;
	r->suppress_ifgroup = -1;

40 41 42 43 44 45 46
	/* 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);

47
static u32 fib_default_rule_pref(struct fib_rules_ops *ops)
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
{
	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 已提交
64
static void notify_rule_change(int event, struct fib_rule *rule,
65 66
			       struct fib_rules_ops *ops, struct nlmsghdr *nlh,
			       u32 pid);
67

68
static struct fib_rules_ops *lookup_rules_ops(struct net *net, int family)
69 70 71 72
{
	struct fib_rules_ops *ops;

	rcu_read_lock();
73
	list_for_each_entry_rcu(ops, &net->rules_ops, list) {
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
		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);
}

92 93 94
static void flush_route_cache(struct fib_rules_ops *ops)
{
	if (ops->flush_cache)
95
		ops->flush_cache(ops);
96 97
}

98
static int __fib_rules_register(struct fib_rules_ops *ops)
99 100 101
{
	int err = -EEXIST;
	struct fib_rules_ops *o;
D
Denis V. Lunev 已提交
102 103 104
	struct net *net;

	net = ops->fro_net;
105 106 107 108 109 110 111 112 113

	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;

114 115
	spin_lock(&net->rules_mod_lock);
	list_for_each_entry(o, &net->rules_ops, list)
116 117 118
		if (ops->family == o->family)
			goto errout;

119
	list_add_tail_rcu(&ops->list, &net->rules_ops);
120 121
	err = 0;
errout:
122
	spin_unlock(&net->rules_mod_lock);
123 124 125 126

	return err;
}

127
struct fib_rules_ops *
128
fib_rules_register(const struct fib_rules_ops *tmpl, struct net *net)
129 130 131 132
{
	struct fib_rules_ops *ops;
	int err;

133
	ops = kmemdup(tmpl, sizeof(*ops), GFP_KERNEL);
134 135 136 137 138 139 140 141 142 143 144 145 146 147
	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;
}
148 149
EXPORT_SYMBOL_GPL(fib_rules_register);

150
static void fib_rules_cleanup_ops(struct fib_rules_ops *ops)
151 152 153
{
	struct fib_rule *rule, *tmp;

154
	list_for_each_entry_safe(rule, tmp, &ops->rules_list, list) {
155
		list_del_rcu(&rule->list);
156 157
		if (ops->delete)
			ops->delete(rule);
158 159 160 161
		fib_rule_put(rule);
	}
}

D
Denis V. Lunev 已提交
162
void fib_rules_unregister(struct fib_rules_ops *ops)
163
{
D
Denis V. Lunev 已提交
164
	struct net *net = ops->fro_net;
165

166
	spin_lock(&net->rules_mod_lock);
167
	list_del_rcu(&ops->list);
168
	spin_unlock(&net->rules_mod_lock);
169

170
	fib_rules_cleanup_ops(ops);
171
	kfree_rcu(ops, rcu);
172 173 174
}
EXPORT_SYMBOL_GPL(fib_rules_unregister);

175 176 177 178 179
static int fib_rule_match(struct fib_rule *rule, struct fib_rules_ops *ops,
			  struct flowi *fl, int flags)
{
	int ret = 0;

180
	if (rule->iifindex && (rule->iifindex != fl->flowi_iif))
181 182
		goto out;

183
	if (rule->oifindex && (rule->oifindex != fl->flowi_oif))
184 185
		goto out;

186
	if ((rule->mark ^ fl->flowi_mark) & rule->mark_mask)
187 188
		goto out;

189 190 191
	if (rule->tun_id && (rule->tun_id != fl->flowi_tun_key.tun_id))
		goto out;

192 193 194 195 196
	ret = ops->match(rule, fl, flags);
out:
	return (rule->flags & FIB_RULE_INVERT) ? !ret : ret;
}

197 198 199 200 201 202 203 204
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();

205
	list_for_each_entry_rcu(rule, &ops->rules_list, list) {
T
Thomas Graf 已提交
206
jumped:
207
		if (!fib_rule_match(rule, ops, fl, flags))
208 209
			continue;

T
Thomas Graf 已提交
210 211 212 213 214 215 216 217 218 219
		if (rule->action == FR_ACT_GOTO) {
			struct fib_rule *target;

			target = rcu_dereference(rule->ctarget);
			if (target == NULL) {
				continue;
			} else {
				rule = target;
				goto jumped;
			}
220 221 222
		} else if (rule->action == FR_ACT_NOP)
			continue;
		else
T
Thomas Graf 已提交
223 224
			err = ops->action(rule, fl, flags, arg);

225 226 227
		if (!err && ops->suppress && ops->suppress(rule, arg))
			continue;

228
		if (err != -EAGAIN) {
E
Eric Dumazet 已提交
229 230
			if ((arg->flags & FIB_LOOKUP_NOREF) ||
			    likely(atomic_inc_not_zero(&rule->refcnt))) {
231 232 233 234
				arg->rule = rule;
				goto out;
			}
			break;
235 236 237
		}
	}

238
	err = -ESRCH;
239 240 241 242 243 244 245
out:
	rcu_read_unlock();

	return err;
}
EXPORT_SYMBOL_GPL(fib_rules_lookup);

246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
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;
}

268
static int fib_nl_newrule(struct sk_buff *skb, struct nlmsghdr* nlh)
269
{
270
	struct net *net = sock_net(skb->sk);
271 272 273 274
	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 已提交
275
	int err = -EINVAL, unresolved = 0;
276 277 278 279

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

280
	ops = lookup_rules_ops(net, frh->family);
281
	if (ops == NULL) {
282
		err = -EAFNOSUPPORT;
283 284 285 286 287 288 289
		goto errout;
	}

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

290 291 292 293
	err = validate_rulemsg(frh, tb, ops);
	if (err < 0)
		goto errout;

294 295 296 297 298
	rule = kzalloc(ops->rule_size, GFP_KERNEL);
	if (rule == NULL) {
		err = -ENOMEM;
		goto errout;
	}
299
	rule->fr_net = net;
300

301 302
	rule->pref = tb[FRA_PRIORITY] ? nla_get_u32(tb[FRA_PRIORITY])
	                              : fib_default_rule_pref(ops);
303

304
	if (tb[FRA_IIFNAME]) {
305 306
		struct net_device *dev;

307 308 309
		rule->iifindex = -1;
		nla_strlcpy(rule->iifname, tb[FRA_IIFNAME], IFNAMSIZ);
		dev = __dev_get_by_name(net, rule->iifname);
310
		if (dev)
311
			rule->iifindex = dev->ifindex;
312 313
	}

314 315 316 317 318 319 320 321 322 323
	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;
	}

324 325 326 327 328 329 330 331 332 333 334 335
	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]);

336 337 338
	if (tb[FRA_TUN_ID])
		rule->tun_id = nla_get_be64(tb[FRA_TUN_ID]);

339 340
	rule->action = frh->action;
	rule->flags = frh->flags;
341
	rule->table = frh_get_table(frh, tb);
342 343 344 345
	if (tb[FRA_SUPPRESS_PREFIXLEN])
		rule->suppress_prefixlen = nla_get_u32(tb[FRA_SUPPRESS_PREFIXLEN]);
	else
		rule->suppress_prefixlen = -1;
346

347 348
	if (tb[FRA_SUPPRESS_IFGROUP])
		rule->suppress_ifgroup = nla_get_u32(tb[FRA_SUPPRESS_IFGROUP]);
349 350
	else
		rule->suppress_ifgroup = -1;
351

T
Thomas Graf 已提交
352 353 354 355 356 357 358 359 360 361
	err = -EINVAL;
	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;

362
		list_for_each_entry(r, &ops->rules_list, list) {
T
Thomas Graf 已提交
363
			if (r->pref == rule->target) {
E
Eric Dumazet 已提交
364
				RCU_INIT_POINTER(rule->ctarget, r);
T
Thomas Graf 已提交
365 366 367 368
				break;
			}
		}

E
Eric Dumazet 已提交
369
		if (rcu_dereference_protected(rule->ctarget, 1) == NULL)
T
Thomas Graf 已提交
370 371 372 373
			unresolved = 1;
	} else if (rule->action == FR_ACT_GOTO)
		goto errout_free;

374
	err = ops->configure(rule, skb, frh, tb);
375 376 377
	if (err < 0)
		goto errout_free;

378
	list_for_each_entry(r, &ops->rules_list, list) {
379 380 381 382 383 384 385
		if (r->pref > rule->pref)
			break;
		last = r;
	}

	fib_rule_get(rule);

E
Eric Dumazet 已提交
386 387 388 389 390
	if (last)
		list_add_rcu(&rule->list, &last->list);
	else
		list_add_rcu(&rule->list, &ops->rules_list);

T
Thomas Graf 已提交
391 392 393 394 395
	if (ops->unresolved_rules) {
		/*
		 * There are unresolved goto rules in the list, check if
		 * any of them are pointing to this new rule.
		 */
396
		list_for_each_entry(r, &ops->rules_list, list) {
T
Thomas Graf 已提交
397
			if (r->action == FR_ACT_GOTO &&
398 399
			    r->target == rule->pref &&
			    rtnl_dereference(r->ctarget) == NULL) {
T
Thomas Graf 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412
				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++;

413 414 415
	if (rule->tun_id)
		ip_tunnel_need_metadata();

416
	notify_rule_change(RTM_NEWRULE, rule, ops, nlh, NETLINK_CB(skb).portid);
417
	flush_route_cache(ops);
418 419 420 421 422 423 424 425 426 427
	rules_ops_put(ops);
	return 0;

errout_free:
	kfree(rule);
errout:
	rules_ops_put(ops);
	return err;
}

428
static int fib_nl_delrule(struct sk_buff *skb, struct nlmsghdr* nlh)
429
{
430
	struct net *net = sock_net(skb->sk);
431 432
	struct fib_rule_hdr *frh = nlmsg_data(nlh);
	struct fib_rules_ops *ops = NULL;
T
Thomas Graf 已提交
433
	struct fib_rule *rule, *tmp;
434 435 436 437 438 439
	struct nlattr *tb[FRA_MAX+1];
	int err = -EINVAL;

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

440
	ops = lookup_rules_ops(net, frh->family);
441
	if (ops == NULL) {
442
		err = -EAFNOSUPPORT;
443 444 445 446 447 448 449
		goto errout;
	}

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

450 451 452 453
	err = validate_rulemsg(frh, tb, ops);
	if (err < 0)
		goto errout;

454
	list_for_each_entry(rule, &ops->rules_list, list) {
455 456 457
		if (frh->action && (frh->action != rule->action))
			continue;

458 459
		if (frh_get_table(frh, tb) &&
		    (frh_get_table(frh, tb) != rule->table))
460 461 462 463 464 465
			continue;

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

466 467
		if (tb[FRA_IIFNAME] &&
		    nla_strcmp(tb[FRA_IIFNAME], rule->iifname))
468 469
			continue;

470 471 472 473
		if (tb[FRA_OIFNAME] &&
		    nla_strcmp(tb[FRA_OIFNAME], rule->oifname))
			continue;

474 475 476 477 478 479 480 481
		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;

482 483 484 485
		if (tb[FRA_TUN_ID] &&
		    (rule->tun_id != nla_get_be64(tb[FRA_TUN_ID])))
			continue;

486 487 488 489 490 491 492 493
		if (!ops->compare(rule, frh, tb))
			continue;

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

494 495 496 497 498 499
		if (ops->delete) {
			err = ops->delete(rule);
			if (err)
				goto errout;
		}

500 501 502
		if (rule->tun_id)
			ip_tunnel_unneed_metadata();

503
		list_del_rcu(&rule->list);
T
Thomas Graf 已提交
504

505
		if (rule->action == FR_ACT_GOTO) {
T
Thomas Graf 已提交
506
			ops->nr_goto_rules--;
507 508 509
			if (rtnl_dereference(rule->ctarget) == NULL)
				ops->unresolved_rules--;
		}
T
Thomas Graf 已提交
510 511 512 513 514 515 516 517

		/*
		 * Check if this rule is a target to any of them. If so,
		 * disable them. As this operation is eventually very
		 * expensive, it is only performed if goto rules have
		 * actually been added.
		 */
		if (ops->nr_goto_rules > 0) {
518
			list_for_each_entry(tmp, &ops->rules_list, list) {
E
Eric Dumazet 已提交
519
				if (rtnl_dereference(tmp->ctarget) == rule) {
520
					RCU_INIT_POINTER(tmp->ctarget, NULL);
T
Thomas Graf 已提交
521 522 523 524 525
					ops->unresolved_rules++;
				}
			}
		}

D
Denis V. Lunev 已提交
526
		notify_rule_change(RTM_DELRULE, rule, ops, nlh,
527
				   NETLINK_CB(skb).portid);
528
		fib_rule_put(rule);
529
		flush_route_cache(ops);
530 531 532 533 534 535 536 537 538 539
		rules_ops_put(ops);
		return 0;
	}

	err = -ENOENT;
errout:
	rules_ops_put(ops);
	return err;
}

540 541 542 543
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))
544
			 + nla_total_size(IFNAMSIZ) /* FRA_IIFNAME */
545
			 + nla_total_size(IFNAMSIZ) /* FRA_OIFNAME */
546 547
			 + nla_total_size(4) /* FRA_PRIORITY */
			 + nla_total_size(4) /* FRA_TABLE */
548
			 + nla_total_size(4) /* FRA_SUPPRESS_PREFIXLEN */
549
			 + nla_total_size(4) /* FRA_SUPPRESS_IFGROUP */
550
			 + nla_total_size(4) /* FRA_FWMARK */
551 552
			 + nla_total_size(4) /* FRA_FWMASK */
			 + nla_total_size(8); /* FRA_TUN_ID */
553 554 555 556 557 558 559

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

	return payload;
}

560 561 562 563 564 565 566 567 568
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)
569
		return -EMSGSIZE;
570 571

	frh = nlmsg_data(nlh);
572
	frh->family = ops->family;
573
	frh->table = rule->table;
574 575
	if (nla_put_u32(skb, FRA_TABLE, rule->table))
		goto nla_put_failure;
576
	if (nla_put_u32(skb, FRA_SUPPRESS_PREFIXLEN, rule->suppress_prefixlen))
577
		goto nla_put_failure;
578 579 580 581 582
	frh->res1 = 0;
	frh->res2 = 0;
	frh->action = rule->action;
	frh->flags = rule->flags;

E
Eric Dumazet 已提交
583
	if (rule->action == FR_ACT_GOTO &&
584
	    rcu_access_pointer(rule->ctarget) == NULL)
T
Thomas Graf 已提交
585 586
		frh->flags |= FIB_RULE_UNRESOLVED;

587
	if (rule->iifname[0]) {
588 589
		if (nla_put_string(skb, FRA_IIFNAME, rule->iifname))
			goto nla_put_failure;
590 591
		if (rule->iifindex == -1)
			frh->flags |= FIB_RULE_IIF_DETACHED;
592 593
	}

594
	if (rule->oifname[0]) {
595 596
		if (nla_put_string(skb, FRA_OIFNAME, rule->oifname))
			goto nla_put_failure;
597 598 599 600
		if (rule->oifindex == -1)
			frh->flags |= FIB_RULE_OIF_DETACHED;
	}

601 602 603 604 605 606 607
	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 &&
608 609 610
	     nla_put_u32(skb, FRA_GOTO, rule->target)) ||
	    (rule->tun_id &&
	     nla_put_be64(skb, FRA_TUN_ID, rule->tun_id)))
611
		goto nla_put_failure;
612 613 614 615 616 617

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

618
	if (ops->fill(rule, skb, frh) < 0)
619 620
		goto nla_put_failure;

621 622
	nlmsg_end(skb, nlh);
	return 0;
623 624

nla_put_failure:
625 626
	nlmsg_cancel(skb, nlh);
	return -EMSGSIZE;
627 628
}

T
Thomas Graf 已提交
629 630
static int dump_rules(struct sk_buff *skb, struct netlink_callback *cb,
		      struct fib_rules_ops *ops)
631 632 633 634
{
	int idx = 0;
	struct fib_rule *rule;

635 636
	rcu_read_lock();
	list_for_each_entry_rcu(rule, &ops->rules_list, list) {
T
Thomas Graf 已提交
637
		if (idx < cb->args[1])
638 639
			goto skip;

640
		if (fib_nl_fill_rule(skb, rule, NETLINK_CB(cb->skb).portid,
641 642 643 644 645 646
				     cb->nlh->nlmsg_seq, RTM_NEWRULE,
				     NLM_F_MULTI, ops) < 0)
			break;
skip:
		idx++;
	}
647
	rcu_read_unlock();
T
Thomas Graf 已提交
648
	cb->args[1] = idx;
649 650 651 652 653
	rules_ops_put(ops);

	return skb->len;
}

T
Thomas Graf 已提交
654 655
static int fib_nl_dumprule(struct sk_buff *skb, struct netlink_callback *cb)
{
656
	struct net *net = sock_net(skb->sk);
T
Thomas Graf 已提交
657 658 659 660 661 662
	struct fib_rules_ops *ops;
	int idx = 0, family;

	family = rtnl_msg_family(cb->nlh);
	if (family != AF_UNSPEC) {
		/* Protocol specific dump request */
663
		ops = lookup_rules_ops(net, family);
T
Thomas Graf 已提交
664 665 666 667 668 669 670
		if (ops == NULL)
			return -EAFNOSUPPORT;

		return dump_rules(skb, cb, ops);
	}

	rcu_read_lock();
671
	list_for_each_entry_rcu(ops, &net->rules_ops, list) {
T
Thomas Graf 已提交
672 673 674 675 676 677 678
		if (idx < cb->args[0] || !try_module_get(ops->owner))
			goto skip;

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

		cb->args[1] = 0;
679
skip:
T
Thomas Graf 已提交
680 681 682 683 684 685 686
		idx++;
	}
	rcu_read_unlock();
	cb->args[0] = idx;

	return skb->len;
}
687

D
Denis V. Lunev 已提交
688
static void notify_rule_change(int event, struct fib_rule *rule,
689 690
			       struct fib_rules_ops *ops, struct nlmsghdr *nlh,
			       u32 pid)
691
{
D
Denis V. Lunev 已提交
692
	struct net *net;
693 694
	struct sk_buff *skb;
	int err = -ENOBUFS;
695

D
Denis V. Lunev 已提交
696
	net = ops->fro_net;
697
	skb = nlmsg_new(fib_rule_nlmsg_size(ops, rule), GFP_KERNEL);
698
	if (skb == NULL)
699 700 701
		goto errout;

	err = fib_nl_fill_rule(skb, rule, pid, nlh->nlmsg_seq, event, 0, ops);
702 703 704 705 706 707
	if (err < 0) {
		/* -EMSGSIZE implies BUG in fib_rule_nlmsg_size() */
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(skb);
		goto errout;
	}
D
Denis V. Lunev 已提交
708

709 710
	rtnl_notify(skb, net, pid, ops->nlgroup, nlh, GFP_KERNEL);
	return;
711 712
errout:
	if (err < 0)
713
		rtnl_set_sk_err(net, ops->nlgroup, err);
714 715 716 717 718 719 720
}

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

	list_for_each_entry(rule, rules, list) {
721 722 723
		if (rule->iifindex == -1 &&
		    strcmp(dev->name, rule->iifname) == 0)
			rule->iifindex = dev->ifindex;
724 725 726
		if (rule->oifindex == -1 &&
		    strcmp(dev->name, rule->oifname) == 0)
			rule->oifindex = dev->ifindex;
727 728 729 730 731 732 733
	}
}

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

734
	list_for_each_entry(rule, rules, list) {
735 736
		if (rule->iifindex == dev->ifindex)
			rule->iifindex = -1;
737 738 739
		if (rule->oifindex == dev->ifindex)
			rule->oifindex = -1;
	}
740 741 742 743
}


static int fib_rules_event(struct notifier_block *this, unsigned long event,
744
			   void *ptr)
745
{
746
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
747
	struct net *net = dev_net(dev);
748 749
	struct fib_rules_ops *ops;

750
	ASSERT_RTNL();
751 752 753

	switch (event) {
	case NETDEV_REGISTER:
754
		list_for_each_entry(ops, &net->rules_ops, list)
755
			attach_rules(&ops->rules_list, dev);
756 757
		break;

758 759 760 761 762 763 764
	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;

765
	case NETDEV_UNREGISTER:
766
		list_for_each_entry(ops, &net->rules_ops, list)
767
			detach_rules(&ops->rules_list, dev);
768 769 770 771 772 773 774 775 776 777
		break;
	}

	return NOTIFY_DONE;
}

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

778
static int __net_init fib_rules_net_init(struct net *net)
779 780 781 782 783 784 785 786 787 788
{
	INIT_LIST_HEAD(&net->rules_ops);
	spin_lock_init(&net->rules_mod_lock);
	return 0;
}

static struct pernet_operations fib_rules_net_ops = {
	.init = fib_rules_net_init,
};

789 790
static int __init fib_rules_init(void)
{
791
	int err;
792 793 794
	rtnl_register(PF_UNSPEC, RTM_NEWRULE, fib_nl_newrule, NULL, NULL);
	rtnl_register(PF_UNSPEC, RTM_DELRULE, fib_nl_delrule, NULL, NULL);
	rtnl_register(PF_UNSPEC, RTM_GETRULE, NULL, fib_nl_dumprule, NULL);
795

E
Eric W. Biederman 已提交
796
	err = register_pernet_subsys(&fib_rules_net_ops);
797 798 799
	if (err < 0)
		goto fail;

E
Eric W. Biederman 已提交
800
	err = register_netdevice_notifier(&fib_rules_notifier);
801 802
	if (err < 0)
		goto fail_unregister;
E
Eric W. Biederman 已提交
803

804 805 806
	return 0;

fail_unregister:
E
Eric W. Biederman 已提交
807
	unregister_pernet_subsys(&fib_rules_net_ops);
808 809 810 811 812
fail:
	rtnl_unregister(PF_UNSPEC, RTM_NEWRULE);
	rtnl_unregister(PF_UNSPEC, RTM_DELRULE);
	rtnl_unregister(PF_UNSPEC, RTM_GETRULE);
	return err;
813 814 815
}

subsys_initcall(fib_rules_init);