fib_rules.c 16.8 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 <net/net_namespace.h>
16
#include <net/sock.h>
17 18
#include <net/fib_rules.h>

19 20 21 22 23 24 25 26 27 28 29 30 31 32
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;
33
	r->fr_net = hold_net(ops->fro_net);
34 35 36 37 38 39 40 41

	/* 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);

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
u32 fib_default_rule_pref(struct fib_rules_ops *ops)
{
	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;
}
EXPORT_SYMBOL(fib_default_rule_pref);

D
Denis V. Lunev 已提交
60
static void notify_rule_change(int event, struct fib_rule *rule,
61 62
			       struct fib_rules_ops *ops, struct nlmsghdr *nlh,
			       u32 pid);
63

64
static struct fib_rules_ops *lookup_rules_ops(struct net *net, int family)
65 66 67 68
{
	struct fib_rules_ops *ops;

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

88 89 90
static void flush_route_cache(struct fib_rules_ops *ops)
{
	if (ops->flush_cache)
91
		ops->flush_cache(ops);
92 93
}

94
static int __fib_rules_register(struct fib_rules_ops *ops)
95 96 97
{
	int err = -EEXIST;
	struct fib_rules_ops *o;
D
Denis V. Lunev 已提交
98 99 100
	struct net *net;

	net = ops->fro_net;
101 102 103 104 105 106 107 108 109

	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;

110 111
	spin_lock(&net->rules_mod_lock);
	list_for_each_entry(o, &net->rules_ops, list)
112 113 114
		if (ops->family == o->family)
			goto errout;

115 116
	hold_net(net);
	list_add_tail_rcu(&ops->list, &net->rules_ops);
117 118
	err = 0;
errout:
119
	spin_unlock(&net->rules_mod_lock);
120 121 122 123

	return err;
}

124
struct fib_rules_ops *
125
fib_rules_register(const struct fib_rules_ops *tmpl, struct net *net)
126 127 128 129
{
	struct fib_rules_ops *ops;
	int err;

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

147
static void fib_rules_cleanup_ops(struct fib_rules_ops *ops)
148 149 150
{
	struct fib_rule *rule, *tmp;

151
	list_for_each_entry_safe(rule, tmp, &ops->rules_list, list) {
152 153 154 155 156
		list_del_rcu(&rule->list);
		fib_rule_put(rule);
	}
}

157 158 159 160 161 162 163 164 165
static void fib_rules_put_rcu(struct rcu_head *head)
{
	struct fib_rules_ops *ops = container_of(head, struct fib_rules_ops, rcu);
	struct net *net = ops->fro_net;

	release_net(net);
	kfree(ops);
}

D
Denis V. Lunev 已提交
166
void fib_rules_unregister(struct fib_rules_ops *ops)
167
{
D
Denis V. Lunev 已提交
168
	struct net *net = ops->fro_net;
169

170
	spin_lock(&net->rules_mod_lock);
171 172
	list_del_rcu(&ops->list);
	fib_rules_cleanup_ops(ops);
173
	spin_unlock(&net->rules_mod_lock);
174

175
	call_rcu(&ops->rcu, fib_rules_put_rcu);
176 177 178
}
EXPORT_SYMBOL_GPL(fib_rules_unregister);

179 180 181 182 183
static int fib_rule_match(struct fib_rule *rule, struct fib_rules_ops *ops,
			  struct flowi *fl, int flags)
{
	int ret = 0;

184
	if (rule->iifindex && (rule->iifindex != fl->flowi_iif))
185 186
		goto out;

187
	if (rule->oifindex && (rule->oifindex != fl->flowi_oif))
188 189
		goto out;

190
	if ((rule->mark ^ fl->flowi_mark) & rule->mark_mask)
191 192 193 194 195 196 197
		goto out;

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

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

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

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

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

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

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

	return err;
}
EXPORT_SYMBOL_GPL(fib_rules_lookup);

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

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

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

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

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

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

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

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

302
	if (tb[FRA_IIFNAME]) {
303 304
		struct net_device *dev;

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

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

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

334 335
	rule->action = frh->action;
	rule->flags = frh->flags;
336
	rule->table = frh_get_table(frh, tb);
337

338
	if (!tb[FRA_PRIORITY] && ops->default_pref)
339
		rule->pref = ops->default_pref(ops);
340

T
Thomas Graf 已提交
341 342 343 344 345 346 347 348 349 350
	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;

351
		list_for_each_entry(r, &ops->rules_list, list) {
T
Thomas Graf 已提交
352
			if (r->pref == rule->target) {
E
Eric Dumazet 已提交
353
				RCU_INIT_POINTER(rule->ctarget, r);
T
Thomas Graf 已提交
354 355 356 357
				break;
			}
		}

E
Eric Dumazet 已提交
358
		if (rcu_dereference_protected(rule->ctarget, 1) == NULL)
T
Thomas Graf 已提交
359 360 361 362
			unresolved = 1;
	} else if (rule->action == FR_ACT_GOTO)
		goto errout_free;

363
	err = ops->configure(rule, skb, frh, tb);
364 365 366
	if (err < 0)
		goto errout_free;

367
	list_for_each_entry(r, &ops->rules_list, list) {
368 369 370 371 372 373 374
		if (r->pref > rule->pref)
			break;
		last = r;
	}

	fib_rule_get(rule);

E
Eric Dumazet 已提交
375 376 377 378 379
	if (last)
		list_add_rcu(&rule->list, &last->list);
	else
		list_add_rcu(&rule->list, &ops->rules_list);

T
Thomas Graf 已提交
380 381 382 383 384
	if (ops->unresolved_rules) {
		/*
		 * There are unresolved goto rules in the list, check if
		 * any of them are pointing to this new rule.
		 */
385
		list_for_each_entry(r, &ops->rules_list, list) {
T
Thomas Graf 已提交
386
			if (r->action == FR_ACT_GOTO &&
387 388
			    r->target == rule->pref &&
			    rtnl_dereference(r->ctarget) == NULL) {
T
Thomas Graf 已提交
389 390 391 392 393 394 395 396 397 398 399 400 401
				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++;

D
Denis V. Lunev 已提交
402
	notify_rule_change(RTM_NEWRULE, rule, ops, nlh, NETLINK_CB(skb).pid);
403
	flush_route_cache(ops);
404 405 406 407
	rules_ops_put(ops);
	return 0;

errout_free:
408
	release_net(rule->fr_net);
409 410 411 412 413 414
	kfree(rule);
errout:
	rules_ops_put(ops);
	return err;
}

415
static int fib_nl_delrule(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
416
{
417
	struct net *net = sock_net(skb->sk);
418 419
	struct fib_rule_hdr *frh = nlmsg_data(nlh);
	struct fib_rules_ops *ops = NULL;
T
Thomas Graf 已提交
420
	struct fib_rule *rule, *tmp;
421 422 423 424 425 426
	struct nlattr *tb[FRA_MAX+1];
	int err = -EINVAL;

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

427
	ops = lookup_rules_ops(net, frh->family);
428
	if (ops == NULL) {
429
		err = -EAFNOSUPPORT;
430 431 432 433 434 435 436
		goto errout;
	}

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

437 438 439 440
	err = validate_rulemsg(frh, tb, ops);
	if (err < 0)
		goto errout;

441
	list_for_each_entry(rule, &ops->rules_list, list) {
442 443 444
		if (frh->action && (frh->action != rule->action))
			continue;

445
		if (frh->table && (frh_get_table(frh, tb) != rule->table))
446 447 448 449 450 451
			continue;

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

452 453
		if (tb[FRA_IIFNAME] &&
		    nla_strcmp(tb[FRA_IIFNAME], rule->iifname))
454 455
			continue;

456 457 458 459
		if (tb[FRA_OIFNAME] &&
		    nla_strcmp(tb[FRA_OIFNAME], rule->oifname))
			continue;

460 461 462 463 464 465 466 467
		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;

468 469 470 471 472 473 474 475 476
		if (!ops->compare(rule, frh, tb))
			continue;

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

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

478
		if (rule->action == FR_ACT_GOTO) {
T
Thomas Graf 已提交
479
			ops->nr_goto_rules--;
480 481 482
			if (rtnl_dereference(rule->ctarget) == NULL)
				ops->unresolved_rules--;
		}
T
Thomas Graf 已提交
483 484 485 486 487 488 489 490

		/*
		 * 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) {
491
			list_for_each_entry(tmp, &ops->rules_list, list) {
E
Eric Dumazet 已提交
492
				if (rtnl_dereference(tmp->ctarget) == rule) {
T
Thomas Graf 已提交
493 494 495 496 497 498
					rcu_assign_pointer(tmp->ctarget, NULL);
					ops->unresolved_rules++;
				}
			}
		}

D
Denis V. Lunev 已提交
499
		notify_rule_change(RTM_DELRULE, rule, ops, nlh,
500
				   NETLINK_CB(skb).pid);
501
		fib_rule_put(rule);
502
		flush_route_cache(ops);
503 504 505 506 507 508 509 510 511 512
		rules_ops_put(ops);
		return 0;
	}

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

513 514 515 516
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))
517
			 + nla_total_size(IFNAMSIZ) /* FRA_IIFNAME */
518
			 + nla_total_size(IFNAMSIZ) /* FRA_OIFNAME */
519 520 521 522 523 524 525 526 527 528 529
			 + nla_total_size(4) /* FRA_PRIORITY */
			 + nla_total_size(4) /* FRA_TABLE */
			 + nla_total_size(4) /* FRA_FWMARK */
			 + nla_total_size(4); /* FRA_FWMASK */

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

	return payload;
}

530 531 532 533 534 535 536 537 538
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)
539
		return -EMSGSIZE;
540 541

	frh = nlmsg_data(nlh);
542
	frh->family = ops->family;
543
	frh->table = rule->table;
544
	NLA_PUT_U32(skb, FRA_TABLE, rule->table);
545 546 547 548 549
	frh->res1 = 0;
	frh->res2 = 0;
	frh->action = rule->action;
	frh->flags = rule->flags;

E
Eric Dumazet 已提交
550 551
	if (rule->action == FR_ACT_GOTO &&
	    rcu_dereference_raw(rule->ctarget) == NULL)
T
Thomas Graf 已提交
552 553
		frh->flags |= FIB_RULE_UNRESOLVED;

554 555
	if (rule->iifname[0]) {
		NLA_PUT_STRING(skb, FRA_IIFNAME, rule->iifname);
556

557 558
		if (rule->iifindex == -1)
			frh->flags |= FIB_RULE_IIF_DETACHED;
559 560
	}

561 562 563 564 565 566 567
	if (rule->oifname[0]) {
		NLA_PUT_STRING(skb, FRA_OIFNAME, rule->oifname);

		if (rule->oifindex == -1)
			frh->flags |= FIB_RULE_OIF_DETACHED;
	}

568 569 570
	if (rule->pref)
		NLA_PUT_U32(skb, FRA_PRIORITY, rule->pref);

571 572 573 574 575 576
	if (rule->mark)
		NLA_PUT_U32(skb, FRA_FWMARK, rule->mark);

	if (rule->mark_mask || rule->mark)
		NLA_PUT_U32(skb, FRA_FWMASK, rule->mark_mask);

T
Thomas Graf 已提交
577 578 579
	if (rule->target)
		NLA_PUT_U32(skb, FRA_GOTO, rule->target);

580
	if (ops->fill(rule, skb, frh) < 0)
581 582 583 584 585
		goto nla_put_failure;

	return nlmsg_end(skb, nlh);

nla_put_failure:
586 587
	nlmsg_cancel(skb, nlh);
	return -EMSGSIZE;
588 589
}

T
Thomas Graf 已提交
590 591
static int dump_rules(struct sk_buff *skb, struct netlink_callback *cb,
		      struct fib_rules_ops *ops)
592 593 594 595
{
	int idx = 0;
	struct fib_rule *rule;

596 597
	rcu_read_lock();
	list_for_each_entry_rcu(rule, &ops->rules_list, list) {
T
Thomas Graf 已提交
598
		if (idx < cb->args[1])
599 600 601 602 603 604 605 606 607
			goto skip;

		if (fib_nl_fill_rule(skb, rule, NETLINK_CB(cb->skb).pid,
				     cb->nlh->nlmsg_seq, RTM_NEWRULE,
				     NLM_F_MULTI, ops) < 0)
			break;
skip:
		idx++;
	}
608
	rcu_read_unlock();
T
Thomas Graf 已提交
609
	cb->args[1] = idx;
610 611 612 613 614
	rules_ops_put(ops);

	return skb->len;
}

T
Thomas Graf 已提交
615 616
static int fib_nl_dumprule(struct sk_buff *skb, struct netlink_callback *cb)
{
617
	struct net *net = sock_net(skb->sk);
T
Thomas Graf 已提交
618 619 620 621 622 623
	struct fib_rules_ops *ops;
	int idx = 0, family;

	family = rtnl_msg_family(cb->nlh);
	if (family != AF_UNSPEC) {
		/* Protocol specific dump request */
624
		ops = lookup_rules_ops(net, family);
T
Thomas Graf 已提交
625 626 627 628 629 630 631
		if (ops == NULL)
			return -EAFNOSUPPORT;

		return dump_rules(skb, cb, ops);
	}

	rcu_read_lock();
632
	list_for_each_entry_rcu(ops, &net->rules_ops, list) {
T
Thomas Graf 已提交
633 634 635 636 637 638 639
		if (idx < cb->args[0] || !try_module_get(ops->owner))
			goto skip;

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

		cb->args[1] = 0;
640
skip:
T
Thomas Graf 已提交
641 642 643 644 645 646 647
		idx++;
	}
	rcu_read_unlock();
	cb->args[0] = idx;

	return skb->len;
}
648

D
Denis V. Lunev 已提交
649
static void notify_rule_change(int event, struct fib_rule *rule,
650 651
			       struct fib_rules_ops *ops, struct nlmsghdr *nlh,
			       u32 pid)
652
{
D
Denis V. Lunev 已提交
653
	struct net *net;
654 655
	struct sk_buff *skb;
	int err = -ENOBUFS;
656

D
Denis V. Lunev 已提交
657
	net = ops->fro_net;
658
	skb = nlmsg_new(fib_rule_nlmsg_size(ops, rule), GFP_KERNEL);
659
	if (skb == NULL)
660 661 662
		goto errout;

	err = fib_nl_fill_rule(skb, rule, pid, nlh->nlmsg_seq, event, 0, ops);
663 664 665 666 667 668
	if (err < 0) {
		/* -EMSGSIZE implies BUG in fib_rule_nlmsg_size() */
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(skb);
		goto errout;
	}
D
Denis V. Lunev 已提交
669

670 671
	rtnl_notify(skb, net, pid, ops->nlgroup, nlh, GFP_KERNEL);
	return;
672 673
errout:
	if (err < 0)
674
		rtnl_set_sk_err(net, ops->nlgroup, err);
675 676 677 678 679 680 681
}

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

	list_for_each_entry(rule, rules, list) {
682 683 684
		if (rule->iifindex == -1 &&
		    strcmp(dev->name, rule->iifname) == 0)
			rule->iifindex = dev->ifindex;
685 686 687
		if (rule->oifindex == -1 &&
		    strcmp(dev->name, rule->oifname) == 0)
			rule->oifindex = dev->ifindex;
688 689 690 691 692 693 694
	}
}

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

695
	list_for_each_entry(rule, rules, list) {
696 697
		if (rule->iifindex == dev->ifindex)
			rule->iifindex = -1;
698 699 700
		if (rule->oifindex == dev->ifindex)
			rule->oifindex = -1;
	}
701 702 703 704 705 706 707
}


static int fib_rules_event(struct notifier_block *this, unsigned long event,
			    void *ptr)
{
	struct net_device *dev = ptr;
708
	struct net *net = dev_net(dev);
709 710 711 712 713 714
	struct fib_rules_ops *ops;

	ASSERT_RTNL();

	switch (event) {
	case NETDEV_REGISTER:
715
		list_for_each_entry(ops, &net->rules_ops, list)
716
			attach_rules(&ops->rules_list, dev);
717 718 719
		break;

	case NETDEV_UNREGISTER:
720
		list_for_each_entry(ops, &net->rules_ops, list)
721
			detach_rules(&ops->rules_list, dev);
722 723 724 725 726 727 728 729 730 731
		break;
	}

	return NOTIFY_DONE;
}

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

732
static int __net_init fib_rules_net_init(struct net *net)
733 734 735 736 737 738 739 740 741 742
{
	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,
};

743 744
static int __init fib_rules_init(void)
{
745
	int err;
746 747 748
	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);
749

E
Eric W. Biederman 已提交
750
	err = register_pernet_subsys(&fib_rules_net_ops);
751 752 753
	if (err < 0)
		goto fail;

E
Eric W. Biederman 已提交
754
	err = register_netdevice_notifier(&fib_rules_notifier);
755 756
	if (err < 0)
		goto fail_unregister;
E
Eric W. Biederman 已提交
757

758 759 760
	return 0;

fail_unregister:
E
Eric W. Biederman 已提交
761
	unregister_pernet_subsys(&fib_rules_net_ops);
762 763 764 765 766
fail:
	rtnl_unregister(PF_UNSPEC, RTM_NEWRULE);
	rtnl_unregister(PF_UNSPEC, RTM_DELRULE);
	rtnl_unregister(PF_UNSPEC, RTM_GETRULE);
	return err;
767 768 769
}

subsys_initcall(fib_rules_init);