blob: d2c3e7dc2e5f17baedd875cdd805186a7678b2aa [file] [log] [blame]
Thomas Graf14c0b972006-08-04 03:38:38 -07001/*
2 * net/core/fib_rules.c Generic Routing Rules
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation, version 2.
7 *
8 * Authors: Thomas Graf <tgraf@suug.ch>
9 */
10
Thomas Graf14c0b972006-08-04 03:38:38 -070011#include <linux/types.h>
12#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070014#include <linux/list.h>
Eric W. Biedermane9dc8652007-09-12 13:02:17 +020015#include <net/net_namespace.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070016#include <net/sock.h>
Thomas Graf14c0b972006-08-04 03:38:38 -070017#include <net/fib_rules.h>
18
Denis V. Lunev2994c632007-11-10 22:12:03 -080019int fib_default_rule_add(struct fib_rules_ops *ops,
20 u32 pref, u32 table, u32 flags)
21{
22 struct fib_rule *r;
23
24 r = kzalloc(ops->rule_size, GFP_KERNEL);
25 if (r == NULL)
26 return -ENOMEM;
27
28 atomic_set(&r->refcnt, 1);
29 r->action = FR_ACT_TO_TBL;
30 r->pref = pref;
31 r->table = table;
32 r->flags = flags;
Denis V. Lunev3661a912008-04-16 02:01:56 -070033 r->fr_net = hold_net(ops->fro_net);
Denis V. Lunev2994c632007-11-10 22:12:03 -080034
35 /* The lock is not required here, the list in unreacheable
36 * at the moment this function is called */
37 list_add_tail(&r->list, &ops->rules_list);
38 return 0;
39}
40EXPORT_SYMBOL(fib_default_rule_add);
41
Denis V. Lunev9e3a5482008-01-20 16:46:41 -080042static void notify_rule_change(int event, struct fib_rule *rule,
Thomas Grafc17084d2006-08-15 00:32:48 -070043 struct fib_rules_ops *ops, struct nlmsghdr *nlh,
44 u32 pid);
Thomas Graf14c0b972006-08-04 03:38:38 -070045
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080046static struct fib_rules_ops *lookup_rules_ops(struct net *net, int family)
Thomas Graf14c0b972006-08-04 03:38:38 -070047{
48 struct fib_rules_ops *ops;
49
50 rcu_read_lock();
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080051 list_for_each_entry_rcu(ops, &net->rules_ops, list) {
Thomas Graf14c0b972006-08-04 03:38:38 -070052 if (ops->family == family) {
53 if (!try_module_get(ops->owner))
54 ops = NULL;
55 rcu_read_unlock();
56 return ops;
57 }
58 }
59 rcu_read_unlock();
60
61 return NULL;
62}
63
64static void rules_ops_put(struct fib_rules_ops *ops)
65{
66 if (ops)
67 module_put(ops->owner);
68}
69
Thomas Graf73417f62007-03-27 13:56:52 -070070static void flush_route_cache(struct fib_rules_ops *ops)
71{
72 if (ops->flush_cache)
Denis V. Lunevae299fc2008-07-05 19:01:28 -070073 ops->flush_cache(ops);
Thomas Graf73417f62007-03-27 13:56:52 -070074}
75
Eric W. Biedermane9c51582009-12-03 12:22:55 -080076static int __fib_rules_register(struct fib_rules_ops *ops)
Thomas Graf14c0b972006-08-04 03:38:38 -070077{
78 int err = -EEXIST;
79 struct fib_rules_ops *o;
Denis V. Lunev9e3a5482008-01-20 16:46:41 -080080 struct net *net;
81
82 net = ops->fro_net;
Thomas Graf14c0b972006-08-04 03:38:38 -070083
84 if (ops->rule_size < sizeof(struct fib_rule))
85 return -EINVAL;
86
87 if (ops->match == NULL || ops->configure == NULL ||
88 ops->compare == NULL || ops->fill == NULL ||
89 ops->action == NULL)
90 return -EINVAL;
91
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080092 spin_lock(&net->rules_mod_lock);
93 list_for_each_entry(o, &net->rules_ops, list)
Thomas Graf14c0b972006-08-04 03:38:38 -070094 if (ops->family == o->family)
95 goto errout;
96
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080097 hold_net(net);
98 list_add_tail_rcu(&ops->list, &net->rules_ops);
Thomas Graf14c0b972006-08-04 03:38:38 -070099 err = 0;
100errout:
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800101 spin_unlock(&net->rules_mod_lock);
Thomas Graf14c0b972006-08-04 03:38:38 -0700102
103 return err;
104}
105
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800106struct fib_rules_ops *
107fib_rules_register(struct fib_rules_ops *tmpl, struct net *net)
108{
109 struct fib_rules_ops *ops;
110 int err;
111
112 ops = kmemdup(tmpl, sizeof (*ops), GFP_KERNEL);
113 if (ops == NULL)
114 return ERR_PTR(-ENOMEM);
115
116 INIT_LIST_HEAD(&ops->rules_list);
117 ops->fro_net = net;
118
119 err = __fib_rules_register(ops);
120 if (err) {
121 kfree(ops);
122 ops = ERR_PTR(err);
123 }
124
125 return ops;
126}
127
Thomas Graf14c0b972006-08-04 03:38:38 -0700128EXPORT_SYMBOL_GPL(fib_rules_register);
129
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800130void fib_rules_cleanup_ops(struct fib_rules_ops *ops)
Thomas Graf14c0b972006-08-04 03:38:38 -0700131{
132 struct fib_rule *rule, *tmp;
133
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700134 list_for_each_entry_safe(rule, tmp, &ops->rules_list, list) {
Thomas Graf14c0b972006-08-04 03:38:38 -0700135 list_del_rcu(&rule->list);
136 fib_rule_put(rule);
137 }
138}
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800139EXPORT_SYMBOL_GPL(fib_rules_cleanup_ops);
Thomas Graf14c0b972006-08-04 03:38:38 -0700140
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800141static void fib_rules_put_rcu(struct rcu_head *head)
142{
143 struct fib_rules_ops *ops = container_of(head, struct fib_rules_ops, rcu);
144 struct net *net = ops->fro_net;
145
146 release_net(net);
147 kfree(ops);
148}
149
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800150void fib_rules_unregister(struct fib_rules_ops *ops)
Thomas Graf14c0b972006-08-04 03:38:38 -0700151{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800152 struct net *net = ops->fro_net;
Thomas Graf14c0b972006-08-04 03:38:38 -0700153
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800154 spin_lock(&net->rules_mod_lock);
Denis V. Lunev72132c1b2008-01-14 22:59:30 -0800155 list_del_rcu(&ops->list);
156 fib_rules_cleanup_ops(ops);
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800157 spin_unlock(&net->rules_mod_lock);
Thomas Graf14c0b972006-08-04 03:38:38 -0700158
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800159 call_rcu(&ops->rcu, fib_rules_put_rcu);
Thomas Graf14c0b972006-08-04 03:38:38 -0700160}
161
162EXPORT_SYMBOL_GPL(fib_rules_unregister);
163
Thomas Graf3dfbcc42006-11-09 15:23:20 -0800164static int fib_rule_match(struct fib_rule *rule, struct fib_rules_ops *ops,
165 struct flowi *fl, int flags)
166{
167 int ret = 0;
168
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000169 if (rule->iifindex && (rule->iifindex != fl->iif))
Thomas Graf3dfbcc42006-11-09 15:23:20 -0800170 goto out;
171
Patrick McHardy1b038a52009-12-03 01:25:56 +0000172 if (rule->oifindex && (rule->oifindex != fl->oif))
173 goto out;
174
Thomas Graf3dfbcc42006-11-09 15:23:20 -0800175 if ((rule->mark ^ fl->mark) & rule->mark_mask)
176 goto out;
177
178 ret = ops->match(rule, fl, flags);
179out:
180 return (rule->flags & FIB_RULE_INVERT) ? !ret : ret;
181}
182
Thomas Graf14c0b972006-08-04 03:38:38 -0700183int fib_rules_lookup(struct fib_rules_ops *ops, struct flowi *fl,
184 int flags, struct fib_lookup_arg *arg)
185{
186 struct fib_rule *rule;
187 int err;
188
189 rcu_read_lock();
190
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700191 list_for_each_entry_rcu(rule, &ops->rules_list, list) {
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700192jumped:
Thomas Graf3dfbcc42006-11-09 15:23:20 -0800193 if (!fib_rule_match(rule, ops, fl, flags))
Thomas Graf14c0b972006-08-04 03:38:38 -0700194 continue;
195
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700196 if (rule->action == FR_ACT_GOTO) {
197 struct fib_rule *target;
198
199 target = rcu_dereference(rule->ctarget);
200 if (target == NULL) {
201 continue;
202 } else {
203 rule = target;
204 goto jumped;
205 }
Thomas Graffa0b2d12007-03-26 17:38:53 -0700206 } else if (rule->action == FR_ACT_NOP)
207 continue;
208 else
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700209 err = ops->action(rule, fl, flags, arg);
210
Thomas Graf14c0b972006-08-04 03:38:38 -0700211 if (err != -EAGAIN) {
212 fib_rule_get(rule);
213 arg->rule = rule;
214 goto out;
215 }
216 }
217
Steven Whitehouse83886b62007-03-30 13:34:27 -0700218 err = -ESRCH;
Thomas Graf14c0b972006-08-04 03:38:38 -0700219out:
220 rcu_read_unlock();
221
222 return err;
223}
224
225EXPORT_SYMBOL_GPL(fib_rules_lookup);
226
Thomas Grafe1701c62007-03-24 12:46:02 -0700227static int validate_rulemsg(struct fib_rule_hdr *frh, struct nlattr **tb,
228 struct fib_rules_ops *ops)
229{
230 int err = -EINVAL;
231
232 if (frh->src_len)
233 if (tb[FRA_SRC] == NULL ||
234 frh->src_len > (ops->addr_size * 8) ||
235 nla_len(tb[FRA_SRC]) != ops->addr_size)
236 goto errout;
237
238 if (frh->dst_len)
239 if (tb[FRA_DST] == NULL ||
240 frh->dst_len > (ops->addr_size * 8) ||
241 nla_len(tb[FRA_DST]) != ops->addr_size)
242 goto errout;
243
244 err = 0;
245errout:
246 return err;
247}
248
Thomas Graf9d9e6a52007-03-25 23:20:05 -0700249static int fib_nl_newrule(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Thomas Graf14c0b972006-08-04 03:38:38 -0700250{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900251 struct net *net = sock_net(skb->sk);
Thomas Graf14c0b972006-08-04 03:38:38 -0700252 struct fib_rule_hdr *frh = nlmsg_data(nlh);
253 struct fib_rules_ops *ops = NULL;
254 struct fib_rule *rule, *r, *last = NULL;
255 struct nlattr *tb[FRA_MAX+1];
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700256 int err = -EINVAL, unresolved = 0;
Thomas Graf14c0b972006-08-04 03:38:38 -0700257
258 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*frh)))
259 goto errout;
260
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800261 ops = lookup_rules_ops(net, frh->family);
Thomas Graf14c0b972006-08-04 03:38:38 -0700262 if (ops == NULL) {
Patrick McHardy2fe195c2008-07-01 19:59:37 -0700263 err = -EAFNOSUPPORT;
Thomas Graf14c0b972006-08-04 03:38:38 -0700264 goto errout;
265 }
266
267 err = nlmsg_parse(nlh, sizeof(*frh), tb, FRA_MAX, ops->policy);
268 if (err < 0)
269 goto errout;
270
Thomas Grafe1701c62007-03-24 12:46:02 -0700271 err = validate_rulemsg(frh, tb, ops);
272 if (err < 0)
273 goto errout;
274
Thomas Graf14c0b972006-08-04 03:38:38 -0700275 rule = kzalloc(ops->rule_size, GFP_KERNEL);
276 if (rule == NULL) {
277 err = -ENOMEM;
278 goto errout;
279 }
Denis V. Lunev3661a912008-04-16 02:01:56 -0700280 rule->fr_net = hold_net(net);
Thomas Graf14c0b972006-08-04 03:38:38 -0700281
282 if (tb[FRA_PRIORITY])
283 rule->pref = nla_get_u32(tb[FRA_PRIORITY]);
284
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000285 if (tb[FRA_IIFNAME]) {
Thomas Graf14c0b972006-08-04 03:38:38 -0700286 struct net_device *dev;
287
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000288 rule->iifindex = -1;
289 nla_strlcpy(rule->iifname, tb[FRA_IIFNAME], IFNAMSIZ);
290 dev = __dev_get_by_name(net, rule->iifname);
Thomas Graf14c0b972006-08-04 03:38:38 -0700291 if (dev)
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000292 rule->iifindex = dev->ifindex;
Thomas Graf14c0b972006-08-04 03:38:38 -0700293 }
294
Patrick McHardy1b038a52009-12-03 01:25:56 +0000295 if (tb[FRA_OIFNAME]) {
296 struct net_device *dev;
297
298 rule->oifindex = -1;
299 nla_strlcpy(rule->oifname, tb[FRA_OIFNAME], IFNAMSIZ);
300 dev = __dev_get_by_name(net, rule->oifname);
301 if (dev)
302 rule->oifindex = dev->ifindex;
303 }
304
Thomas Grafb8964ed2006-11-09 15:22:18 -0800305 if (tb[FRA_FWMARK]) {
306 rule->mark = nla_get_u32(tb[FRA_FWMARK]);
307 if (rule->mark)
308 /* compatibility: if the mark value is non-zero all bits
309 * are compared unless a mask is explicitly specified.
310 */
311 rule->mark_mask = 0xFFFFFFFF;
312 }
313
314 if (tb[FRA_FWMASK])
315 rule->mark_mask = nla_get_u32(tb[FRA_FWMASK]);
316
Thomas Graf14c0b972006-08-04 03:38:38 -0700317 rule->action = frh->action;
318 rule->flags = frh->flags;
Patrick McHardy9e762a42006-08-10 23:09:48 -0700319 rule->table = frh_get_table(frh, tb);
Thomas Graf14c0b972006-08-04 03:38:38 -0700320
Patrick McHardy5adef182009-12-03 01:25:57 +0000321 if (!tb[FRA_PRIORITY] && ops->default_pref)
Denis V. Lunev868d13a2008-01-10 03:18:25 -0800322 rule->pref = ops->default_pref(ops);
Thomas Graf14c0b972006-08-04 03:38:38 -0700323
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700324 err = -EINVAL;
325 if (tb[FRA_GOTO]) {
326 if (rule->action != FR_ACT_GOTO)
327 goto errout_free;
328
329 rule->target = nla_get_u32(tb[FRA_GOTO]);
330 /* Backward jumps are prohibited to avoid endless loops */
331 if (rule->target <= rule->pref)
332 goto errout_free;
333
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700334 list_for_each_entry(r, &ops->rules_list, list) {
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700335 if (r->pref == rule->target) {
336 rule->ctarget = r;
337 break;
338 }
339 }
340
341 if (rule->ctarget == NULL)
342 unresolved = 1;
343 } else if (rule->action == FR_ACT_GOTO)
344 goto errout_free;
345
Rami Rosen8b3521e2009-05-11 05:52:49 +0000346 err = ops->configure(rule, skb, frh, tb);
Thomas Graf14c0b972006-08-04 03:38:38 -0700347 if (err < 0)
348 goto errout_free;
349
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700350 list_for_each_entry(r, &ops->rules_list, list) {
Thomas Graf14c0b972006-08-04 03:38:38 -0700351 if (r->pref > rule->pref)
352 break;
353 last = r;
354 }
355
356 fib_rule_get(rule);
357
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700358 if (ops->unresolved_rules) {
359 /*
360 * There are unresolved goto rules in the list, check if
361 * any of them are pointing to this new rule.
362 */
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700363 list_for_each_entry(r, &ops->rules_list, list) {
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700364 if (r->action == FR_ACT_GOTO &&
365 r->target == rule->pref) {
366 BUG_ON(r->ctarget != NULL);
367 rcu_assign_pointer(r->ctarget, rule);
368 if (--ops->unresolved_rules == 0)
369 break;
370 }
371 }
372 }
373
374 if (rule->action == FR_ACT_GOTO)
375 ops->nr_goto_rules++;
376
377 if (unresolved)
378 ops->unresolved_rules++;
379
Thomas Graf14c0b972006-08-04 03:38:38 -0700380 if (last)
381 list_add_rcu(&rule->list, &last->list);
382 else
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700383 list_add_rcu(&rule->list, &ops->rules_list);
Thomas Graf14c0b972006-08-04 03:38:38 -0700384
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800385 notify_rule_change(RTM_NEWRULE, rule, ops, nlh, NETLINK_CB(skb).pid);
Thomas Graf73417f62007-03-27 13:56:52 -0700386 flush_route_cache(ops);
Thomas Graf14c0b972006-08-04 03:38:38 -0700387 rules_ops_put(ops);
388 return 0;
389
390errout_free:
Denis V. Lunev3661a912008-04-16 02:01:56 -0700391 release_net(rule->fr_net);
Thomas Graf14c0b972006-08-04 03:38:38 -0700392 kfree(rule);
393errout:
394 rules_ops_put(ops);
395 return err;
396}
397
Thomas Graf9d9e6a52007-03-25 23:20:05 -0700398static int fib_nl_delrule(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg)
Thomas Graf14c0b972006-08-04 03:38:38 -0700399{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900400 struct net *net = sock_net(skb->sk);
Thomas Graf14c0b972006-08-04 03:38:38 -0700401 struct fib_rule_hdr *frh = nlmsg_data(nlh);
402 struct fib_rules_ops *ops = NULL;
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700403 struct fib_rule *rule, *tmp;
Thomas Graf14c0b972006-08-04 03:38:38 -0700404 struct nlattr *tb[FRA_MAX+1];
405 int err = -EINVAL;
406
407 if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*frh)))
408 goto errout;
409
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800410 ops = lookup_rules_ops(net, frh->family);
Thomas Graf14c0b972006-08-04 03:38:38 -0700411 if (ops == NULL) {
Patrick McHardy2fe195c2008-07-01 19:59:37 -0700412 err = -EAFNOSUPPORT;
Thomas Graf14c0b972006-08-04 03:38:38 -0700413 goto errout;
414 }
415
416 err = nlmsg_parse(nlh, sizeof(*frh), tb, FRA_MAX, ops->policy);
417 if (err < 0)
418 goto errout;
419
Thomas Grafe1701c62007-03-24 12:46:02 -0700420 err = validate_rulemsg(frh, tb, ops);
421 if (err < 0)
422 goto errout;
423
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700424 list_for_each_entry(rule, &ops->rules_list, list) {
Thomas Graf14c0b972006-08-04 03:38:38 -0700425 if (frh->action && (frh->action != rule->action))
426 continue;
427
Patrick McHardy9e762a42006-08-10 23:09:48 -0700428 if (frh->table && (frh_get_table(frh, tb) != rule->table))
Thomas Graf14c0b972006-08-04 03:38:38 -0700429 continue;
430
431 if (tb[FRA_PRIORITY] &&
432 (rule->pref != nla_get_u32(tb[FRA_PRIORITY])))
433 continue;
434
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000435 if (tb[FRA_IIFNAME] &&
436 nla_strcmp(tb[FRA_IIFNAME], rule->iifname))
Thomas Graf14c0b972006-08-04 03:38:38 -0700437 continue;
438
Patrick McHardy1b038a52009-12-03 01:25:56 +0000439 if (tb[FRA_OIFNAME] &&
440 nla_strcmp(tb[FRA_OIFNAME], rule->oifname))
441 continue;
442
Thomas Grafb8964ed2006-11-09 15:22:18 -0800443 if (tb[FRA_FWMARK] &&
444 (rule->mark != nla_get_u32(tb[FRA_FWMARK])))
445 continue;
446
447 if (tb[FRA_FWMASK] &&
448 (rule->mark_mask != nla_get_u32(tb[FRA_FWMASK])))
449 continue;
450
Thomas Graf14c0b972006-08-04 03:38:38 -0700451 if (!ops->compare(rule, frh, tb))
452 continue;
453
454 if (rule->flags & FIB_RULE_PERMANENT) {
455 err = -EPERM;
456 goto errout;
457 }
458
459 list_del_rcu(&rule->list);
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700460
461 if (rule->action == FR_ACT_GOTO)
462 ops->nr_goto_rules--;
463
464 /*
465 * Check if this rule is a target to any of them. If so,
466 * disable them. As this operation is eventually very
467 * expensive, it is only performed if goto rules have
468 * actually been added.
469 */
470 if (ops->nr_goto_rules > 0) {
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700471 list_for_each_entry(tmp, &ops->rules_list, list) {
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700472 if (tmp->ctarget == rule) {
473 rcu_assign_pointer(tmp->ctarget, NULL);
474 ops->unresolved_rules++;
475 }
476 }
477 }
478
Thomas Graf14c0b972006-08-04 03:38:38 -0700479 synchronize_rcu();
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800480 notify_rule_change(RTM_DELRULE, rule, ops, nlh,
Thomas Grafc17084d2006-08-15 00:32:48 -0700481 NETLINK_CB(skb).pid);
Thomas Graf14c0b972006-08-04 03:38:38 -0700482 fib_rule_put(rule);
Thomas Graf73417f62007-03-27 13:56:52 -0700483 flush_route_cache(ops);
Thomas Graf14c0b972006-08-04 03:38:38 -0700484 rules_ops_put(ops);
485 return 0;
486 }
487
488 err = -ENOENT;
489errout:
490 rules_ops_put(ops);
491 return err;
492}
493
Thomas Graf339bf982006-11-10 14:10:15 -0800494static inline size_t fib_rule_nlmsg_size(struct fib_rules_ops *ops,
495 struct fib_rule *rule)
496{
497 size_t payload = NLMSG_ALIGN(sizeof(struct fib_rule_hdr))
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000498 + nla_total_size(IFNAMSIZ) /* FRA_IIFNAME */
Patrick McHardy1b038a52009-12-03 01:25:56 +0000499 + nla_total_size(IFNAMSIZ) /* FRA_OIFNAME */
Thomas Graf339bf982006-11-10 14:10:15 -0800500 + nla_total_size(4) /* FRA_PRIORITY */
501 + nla_total_size(4) /* FRA_TABLE */
502 + nla_total_size(4) /* FRA_FWMARK */
503 + nla_total_size(4); /* FRA_FWMASK */
504
505 if (ops->nlmsg_payload)
506 payload += ops->nlmsg_payload(rule);
507
508 return payload;
509}
510
Thomas Graf14c0b972006-08-04 03:38:38 -0700511static int fib_nl_fill_rule(struct sk_buff *skb, struct fib_rule *rule,
512 u32 pid, u32 seq, int type, int flags,
513 struct fib_rules_ops *ops)
514{
515 struct nlmsghdr *nlh;
516 struct fib_rule_hdr *frh;
517
518 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*frh), flags);
519 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800520 return -EMSGSIZE;
Thomas Graf14c0b972006-08-04 03:38:38 -0700521
522 frh = nlmsg_data(nlh);
523 frh->table = rule->table;
Patrick McHardy9e762a42006-08-10 23:09:48 -0700524 NLA_PUT_U32(skb, FRA_TABLE, rule->table);
Thomas Graf14c0b972006-08-04 03:38:38 -0700525 frh->res1 = 0;
526 frh->res2 = 0;
527 frh->action = rule->action;
528 frh->flags = rule->flags;
529
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700530 if (rule->action == FR_ACT_GOTO && rule->ctarget == NULL)
531 frh->flags |= FIB_RULE_UNRESOLVED;
532
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000533 if (rule->iifname[0]) {
534 NLA_PUT_STRING(skb, FRA_IIFNAME, rule->iifname);
Thomas Graf14c0b972006-08-04 03:38:38 -0700535
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000536 if (rule->iifindex == -1)
537 frh->flags |= FIB_RULE_IIF_DETACHED;
Thomas Graf2b443682007-03-26 17:37:59 -0700538 }
539
Patrick McHardy1b038a52009-12-03 01:25:56 +0000540 if (rule->oifname[0]) {
541 NLA_PUT_STRING(skb, FRA_OIFNAME, rule->oifname);
542
543 if (rule->oifindex == -1)
544 frh->flags |= FIB_RULE_OIF_DETACHED;
545 }
546
Thomas Graf14c0b972006-08-04 03:38:38 -0700547 if (rule->pref)
548 NLA_PUT_U32(skb, FRA_PRIORITY, rule->pref);
549
Thomas Grafb8964ed2006-11-09 15:22:18 -0800550 if (rule->mark)
551 NLA_PUT_U32(skb, FRA_FWMARK, rule->mark);
552
553 if (rule->mark_mask || rule->mark)
554 NLA_PUT_U32(skb, FRA_FWMASK, rule->mark_mask);
555
Thomas Graf0947c9fe2007-03-26 17:14:15 -0700556 if (rule->target)
557 NLA_PUT_U32(skb, FRA_GOTO, rule->target);
558
Rami Rosen04af8cf2009-05-20 17:26:23 -0700559 if (ops->fill(rule, skb, frh) < 0)
Thomas Graf14c0b972006-08-04 03:38:38 -0700560 goto nla_put_failure;
561
562 return nlmsg_end(skb, nlh);
563
564nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800565 nlmsg_cancel(skb, nlh);
566 return -EMSGSIZE;
Thomas Graf14c0b972006-08-04 03:38:38 -0700567}
568
Thomas Grafc4546732007-03-25 23:24:24 -0700569static int dump_rules(struct sk_buff *skb, struct netlink_callback *cb,
570 struct fib_rules_ops *ops)
Thomas Graf14c0b972006-08-04 03:38:38 -0700571{
572 int idx = 0;
573 struct fib_rule *rule;
Thomas Graf14c0b972006-08-04 03:38:38 -0700574
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700575 list_for_each_entry(rule, &ops->rules_list, list) {
Thomas Grafc4546732007-03-25 23:24:24 -0700576 if (idx < cb->args[1])
Thomas Graf14c0b972006-08-04 03:38:38 -0700577 goto skip;
578
579 if (fib_nl_fill_rule(skb, rule, NETLINK_CB(cb->skb).pid,
580 cb->nlh->nlmsg_seq, RTM_NEWRULE,
581 NLM_F_MULTI, ops) < 0)
582 break;
583skip:
584 idx++;
585 }
Thomas Grafc4546732007-03-25 23:24:24 -0700586 cb->args[1] = idx;
Thomas Graf14c0b972006-08-04 03:38:38 -0700587 rules_ops_put(ops);
588
589 return skb->len;
590}
591
Thomas Grafc4546732007-03-25 23:24:24 -0700592static int fib_nl_dumprule(struct sk_buff *skb, struct netlink_callback *cb)
593{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900594 struct net *net = sock_net(skb->sk);
Thomas Grafc4546732007-03-25 23:24:24 -0700595 struct fib_rules_ops *ops;
596 int idx = 0, family;
597
598 family = rtnl_msg_family(cb->nlh);
599 if (family != AF_UNSPEC) {
600 /* Protocol specific dump request */
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800601 ops = lookup_rules_ops(net, family);
Thomas Grafc4546732007-03-25 23:24:24 -0700602 if (ops == NULL)
603 return -EAFNOSUPPORT;
604
605 return dump_rules(skb, cb, ops);
606 }
607
608 rcu_read_lock();
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800609 list_for_each_entry_rcu(ops, &net->rules_ops, list) {
Thomas Grafc4546732007-03-25 23:24:24 -0700610 if (idx < cb->args[0] || !try_module_get(ops->owner))
611 goto skip;
612
613 if (dump_rules(skb, cb, ops) < 0)
614 break;
615
616 cb->args[1] = 0;
617 skip:
618 idx++;
619 }
620 rcu_read_unlock();
621 cb->args[0] = idx;
622
623 return skb->len;
624}
Thomas Graf14c0b972006-08-04 03:38:38 -0700625
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800626static void notify_rule_change(int event, struct fib_rule *rule,
Thomas Grafc17084d2006-08-15 00:32:48 -0700627 struct fib_rules_ops *ops, struct nlmsghdr *nlh,
628 u32 pid)
Thomas Graf14c0b972006-08-04 03:38:38 -0700629{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800630 struct net *net;
Thomas Grafc17084d2006-08-15 00:32:48 -0700631 struct sk_buff *skb;
632 int err = -ENOBUFS;
Thomas Graf14c0b972006-08-04 03:38:38 -0700633
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800634 net = ops->fro_net;
Thomas Graf339bf982006-11-10 14:10:15 -0800635 skb = nlmsg_new(fib_rule_nlmsg_size(ops, rule), GFP_KERNEL);
Thomas Graf14c0b972006-08-04 03:38:38 -0700636 if (skb == NULL)
Thomas Grafc17084d2006-08-15 00:32:48 -0700637 goto errout;
638
639 err = fib_nl_fill_rule(skb, rule, pid, nlh->nlmsg_seq, event, 0, ops);
Patrick McHardy26932562007-01-31 23:16:40 -0800640 if (err < 0) {
641 /* -EMSGSIZE implies BUG in fib_rule_nlmsg_size() */
642 WARN_ON(err == -EMSGSIZE);
643 kfree_skb(skb);
644 goto errout;
645 }
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800646
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800647 rtnl_notify(skb, net, pid, ops->nlgroup, nlh, GFP_KERNEL);
648 return;
Thomas Grafc17084d2006-08-15 00:32:48 -0700649errout:
650 if (err < 0)
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800651 rtnl_set_sk_err(net, ops->nlgroup, err);
Thomas Graf14c0b972006-08-04 03:38:38 -0700652}
653
654static void attach_rules(struct list_head *rules, struct net_device *dev)
655{
656 struct fib_rule *rule;
657
658 list_for_each_entry(rule, rules, list) {
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000659 if (rule->iifindex == -1 &&
660 strcmp(dev->name, rule->iifname) == 0)
661 rule->iifindex = dev->ifindex;
Patrick McHardy1b038a52009-12-03 01:25:56 +0000662 if (rule->oifindex == -1 &&
663 strcmp(dev->name, rule->oifname) == 0)
664 rule->oifindex = dev->ifindex;
Thomas Graf14c0b972006-08-04 03:38:38 -0700665 }
666}
667
668static void detach_rules(struct list_head *rules, struct net_device *dev)
669{
670 struct fib_rule *rule;
671
Patrick McHardy1b038a52009-12-03 01:25:56 +0000672 list_for_each_entry(rule, rules, list) {
Patrick McHardy491deb24b2009-12-03 01:25:54 +0000673 if (rule->iifindex == dev->ifindex)
674 rule->iifindex = -1;
Patrick McHardy1b038a52009-12-03 01:25:56 +0000675 if (rule->oifindex == dev->ifindex)
676 rule->oifindex = -1;
677 }
Thomas Graf14c0b972006-08-04 03:38:38 -0700678}
679
680
681static int fib_rules_event(struct notifier_block *this, unsigned long event,
682 void *ptr)
683{
684 struct net_device *dev = ptr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900685 struct net *net = dev_net(dev);
Thomas Graf14c0b972006-08-04 03:38:38 -0700686 struct fib_rules_ops *ops;
687
688 ASSERT_RTNL();
689 rcu_read_lock();
690
691 switch (event) {
692 case NETDEV_REGISTER:
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800693 list_for_each_entry(ops, &net->rules_ops, list)
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700694 attach_rules(&ops->rules_list, dev);
Thomas Graf14c0b972006-08-04 03:38:38 -0700695 break;
696
697 case NETDEV_UNREGISTER:
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800698 list_for_each_entry(ops, &net->rules_ops, list)
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700699 detach_rules(&ops->rules_list, dev);
Thomas Graf14c0b972006-08-04 03:38:38 -0700700 break;
701 }
702
703 rcu_read_unlock();
704
705 return NOTIFY_DONE;
706}
707
708static struct notifier_block fib_rules_notifier = {
709 .notifier_call = fib_rules_event,
710};
711
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000712static int __net_init fib_rules_net_init(struct net *net)
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800713{
714 INIT_LIST_HEAD(&net->rules_ops);
715 spin_lock_init(&net->rules_mod_lock);
716 return 0;
717}
718
719static struct pernet_operations fib_rules_net_ops = {
720 .init = fib_rules_net_init,
721};
722
Thomas Graf14c0b972006-08-04 03:38:38 -0700723static int __init fib_rules_init(void)
724{
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800725 int err;
Thomas Graf9d9e6a52007-03-25 23:20:05 -0700726 rtnl_register(PF_UNSPEC, RTM_NEWRULE, fib_nl_newrule, NULL);
727 rtnl_register(PF_UNSPEC, RTM_DELRULE, fib_nl_delrule, NULL);
Thomas Grafc4546732007-03-25 23:24:24 -0700728 rtnl_register(PF_UNSPEC, RTM_GETRULE, NULL, fib_nl_dumprule);
Thomas Graf9d9e6a52007-03-25 23:20:05 -0700729
Eric W. Biederman5d6d4802008-11-07 22:52:34 -0800730 err = register_pernet_subsys(&fib_rules_net_ops);
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800731 if (err < 0)
732 goto fail;
733
Eric W. Biederman5d6d4802008-11-07 22:52:34 -0800734 err = register_netdevice_notifier(&fib_rules_notifier);
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800735 if (err < 0)
736 goto fail_unregister;
Eric W. Biederman5d6d4802008-11-07 22:52:34 -0800737
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800738 return 0;
739
740fail_unregister:
Eric W. Biederman5d6d4802008-11-07 22:52:34 -0800741 unregister_pernet_subsys(&fib_rules_net_ops);
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -0800742fail:
743 rtnl_unregister(PF_UNSPEC, RTM_NEWRULE);
744 rtnl_unregister(PF_UNSPEC, RTM_DELRULE);
745 rtnl_unregister(PF_UNSPEC, RTM_GETRULE);
746 return err;
Thomas Graf14c0b972006-08-04 03:38:38 -0700747}
748
749subsys_initcall(fib_rules_init);