blob: 778ecf977eb2bd7b7b3808691aaf818fc4bd680d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * IPv4 Forwarding Information Base: policy rules.
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00009 * Thomas Graf <tgraf@suug.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 * Fixes:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000017 * Rani Assaf : local_rule cannot be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Marc Boucher : routing by fwmark
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/types.h>
22#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/netlink.h>
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070025#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
Robert Olsson7b204af2006-03-20 17:18:53 -080027#include <linux/list.h>
28#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040029#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <net/route.h>
32#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <net/ip_fib.h>
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070034#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000036struct fib4_rule {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070037 struct fib_rule common;
38 u8 dst_len;
39 u8 src_len;
40 u8 tos;
Al Viro81f7bf62006-09-27 18:40:00 -070041 __be32 src;
42 __be32 srcmask;
43 __be32 dst;
44 __be32 dstmask;
Patrick McHardyc7066f72011-01-14 13:36:42 +010045#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070046 u32 tclassid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
Ido Schimmel3c710062017-03-16 09:08:12 +010050static bool fib4_rule_matchall(const struct fib_rule *rule)
51{
52 struct fib4_rule *r = container_of(rule, struct fib4_rule, common);
53
54 if (r->dst_len || r->src_len || r->tos)
55 return false;
56 return fib_rule_matchall(rule);
57}
58
59bool fib4_rule_default(const struct fib_rule *rule)
60{
61 if (!fib4_rule_matchall(rule) || rule->action != FR_ACT_TO_TBL ||
62 rule->l3mdev)
63 return false;
64 if (rule->table != RT_TABLE_LOCAL && rule->table != RT_TABLE_MAIN &&
65 rule->table != RT_TABLE_DEFAULT)
66 return false;
67 return true;
68}
69EXPORT_SYMBOL_GPL(fib4_rule_default);
70
Andy Gospodarek0eeb0752015-06-23 13:45:37 -040071int __fib_lookup(struct net *net, struct flowi4 *flp,
72 struct fib_result *res, unsigned int flags)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070073{
74 struct fib_lookup_arg arg = {
75 .result = res,
Andy Gospodarek0eeb0752015-06-23 13:45:37 -040076 .flags = flags,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070077 };
78 int err;
79
David Ahern9ee00342016-09-10 12:09:52 -070080 /* update flow if oif or iif point to device enslaved to l3mdev */
81 l3mdev_update_flow(net, flowi4_to_flowi(flp));
82
David S. Miller22bd5b92011-03-11 19:54:08 -050083 err = fib_rules_lookup(net->ipv4.rules_ops, flowi4_to_flowi(flp), 0, &arg);
David S. Miller85b91b02012-07-13 08:21:29 -070084#ifdef CONFIG_IP_ROUTE_CLASSID
85 if (arg.rule)
86 res->tclassid = ((struct fib4_rule *)arg.rule)->tclassid;
87 else
88 res->tclassid = 0;
89#endif
Panu Matilainen49dd18b2014-11-14 13:14:32 +020090
91 if (err == -ESRCH)
92 err = -ENETUNREACH;
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return err;
95}
David S. Millerf4530fa2012-07-05 22:13:13 -070096EXPORT_SYMBOL_GPL(__fib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Adrian Bunk8ce11e62006-08-07 21:50:48 -070098static int fib4_rule_action(struct fib_rule *rule, struct flowi *flp,
99 int flags, struct fib_lookup_arg *arg)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700100{
101 int err = -EAGAIN;
102 struct fib_table *tbl;
David Ahern96c63fa2016-06-08 10:55:39 -0700103 u32 tb_id;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700104
105 switch (rule->action) {
106 case FR_ACT_TO_TBL:
107 break;
108
109 case FR_ACT_UNREACHABLE:
Alexander Duyck345e9b52014-12-31 10:56:24 -0800110 return -ENETUNREACH;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700111
112 case FR_ACT_PROHIBIT:
Alexander Duyck345e9b52014-12-31 10:56:24 -0800113 return -EACCES;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700114
115 case FR_ACT_BLACKHOLE:
116 default:
Alexander Duyck345e9b52014-12-31 10:56:24 -0800117 return -EINVAL;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700118 }
119
Alexander Duyck345e9b52014-12-31 10:56:24 -0800120 rcu_read_lock();
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700121
David Ahern96c63fa2016-06-08 10:55:39 -0700122 tb_id = fib_rule_get_table(rule, arg);
123 tbl = fib_get_table(rule->fr_net, tb_id);
Alexander Duyck345e9b52014-12-31 10:56:24 -0800124 if (tbl)
125 err = fib_table_lookup(tbl, &flp->u.ip4,
126 (struct fib_result *)arg->result,
127 arg->flags);
128
129 rcu_read_unlock();
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700130 return err;
131}
132
Stefan Tomanek7764a452013-08-01 02:17:15 +0200133static bool fib4_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
134{
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200135 struct fib_result *result = (struct fib_result *) arg->result;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100136 struct net_device *dev = NULL;
137
138 if (result->fi)
139 dev = result->fi->fib_dev;
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200140
Stefan Tomanek7764a452013-08-01 02:17:15 +0200141 /* do not accept result if the route does
142 * not meet the required prefix length
143 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200144 if (result->prefixlen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200145 goto suppress_route;
146
147 /* do not accept result if the route uses a device
148 * belonging to a forbidden interface group
149 */
150 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
151 goto suppress_route;
152
Stefan Tomanek7764a452013-08-01 02:17:15 +0200153 return false;
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200154
155suppress_route:
156 if (!(arg->flags & FIB_LOOKUP_NOREF))
157 fib_info_put(result->fi);
158 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200159}
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700160
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700161static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
162{
163 struct fib4_rule *r = (struct fib4_rule *) rule;
David S. Miller9ade2282011-03-12 02:02:42 -0500164 struct flowi4 *fl4 = &fl->u.ip4;
165 __be32 daddr = fl4->daddr;
166 __be32 saddr = fl4->saddr;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700167
168 if (((saddr ^ r->src) & r->srcmask) ||
169 ((daddr ^ r->dst) & r->dstmask))
170 return 0;
171
David S. Miller9ade2282011-03-12 02:02:42 -0500172 if (r->tos && (r->tos != fl4->flowi4_tos))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700173 return 0;
174
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700175 return 1;
176}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800178static struct fib_table *fib_empty_table(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700180 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 for (id = 1; id <= RT_TABLE_MAX; id++)
Ian Morris51456b22015-04-03 09:17:26 +0100183 if (!fib_get_table(net, id))
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800184 return fib_new_table(net, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return NULL;
186}
187
Ido Schimmel5d7bfd12017-03-16 09:08:14 +0100188static int call_fib_rule_notifier(struct notifier_block *nb, struct net *net,
189 enum fib_event_type event_type,
190 struct fib_rule *rule)
191{
192 struct fib_rule_notifier_info info = {
193 .rule = rule,
194 };
195
196 return call_fib_notifier(nb, net, event_type, &info.info);
197}
198
Jiri Pirkob90eb752016-09-26 12:52:29 +0200199static int call_fib_rule_notifiers(struct net *net,
Ido Schimmel6a003a52017-03-16 09:08:13 +0100200 enum fib_event_type event_type,
201 struct fib_rule *rule)
Jiri Pirkob90eb752016-09-26 12:52:29 +0200202{
Ido Schimmel6a003a52017-03-16 09:08:13 +0100203 struct fib_rule_notifier_info info = {
204 .rule = rule,
205 };
Jiri Pirkob90eb752016-09-26 12:52:29 +0200206
Ido Schimmel6a003a52017-03-16 09:08:13 +0100207 return call_fib_notifiers(net, event_type, &info.info);
Jiri Pirkob90eb752016-09-26 12:52:29 +0200208}
209
Ido Schimmel5d7bfd12017-03-16 09:08:14 +0100210/* Called with rcu_read_lock() */
Ido Schimmeld05f7a72017-03-10 08:56:19 +0100211void fib_rules_notify(struct net *net, struct notifier_block *nb)
Ido Schimmelc0243892017-03-10 08:56:18 +0100212{
Ido Schimmel5d7bfd12017-03-16 09:08:14 +0100213 struct fib_rules_ops *ops = net->ipv4.rules_ops;
214 struct fib_rule *rule;
Ido Schimmelc0243892017-03-10 08:56:18 +0100215
Ido Schimmel5d7bfd12017-03-16 09:08:14 +0100216 list_for_each_entry_rcu(rule, &ops->rules_list, list)
217 call_fib_rule_notifier(nb, net, FIB_EVENT_RULE_ADD, rule);
Ido Schimmelc0243892017-03-10 08:56:18 +0100218}
219
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700220static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800221 FRA_GENERIC_POLICY,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700222 [FRA_FLOW] = { .type = NLA_U32 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223};
224
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700225static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000226 struct fib_rule_hdr *frh,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700227 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900229 struct net *net = sock_net(skb->sk);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700230 int err = -EINVAL;
231 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Thomas Grafe1701c62007-03-24 12:46:02 -0700233 if (frh->tos & ~IPTOS_TOS_MASK)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700234 goto errout;
235
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800236 /* split local/main if they are not already split */
237 err = fib_unmerge(net);
238 if (err)
239 goto errout;
240
David Ahern96c63fa2016-06-08 10:55:39 -0700241 if (rule->table == RT_TABLE_UNSPEC && !rule->l3mdev) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700242 if (rule->action == FR_ACT_TO_TBL) {
243 struct fib_table *table;
244
Denis V. Luneve4e49712008-01-10 03:27:51 -0800245 table = fib_empty_table(net);
Ian Morris51456b22015-04-03 09:17:26 +0100246 if (!table) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700247 err = -ENOBUFS;
248 goto errout;
249 }
250
251 rule->table = table->tb_id;
252 }
253 }
254
Thomas Grafe1701c62007-03-24 12:46:02 -0700255 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200256 rule4->src = nla_get_in_addr(tb[FRA_SRC]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700257
Thomas Grafe1701c62007-03-24 12:46:02 -0700258 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200259 rule4->dst = nla_get_in_addr(tb[FRA_DST]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700260
Patrick McHardyc7066f72011-01-14 13:36:42 +0100261#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700262 if (tb[FRA_FLOW]) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700263 rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700264 if (rule4->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700265 net->ipv4.fib_num_tclassid_users++;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700269 rule4->src_len = frh->src_len;
270 rule4->srcmask = inet_make_mask(rule4->src_len);
271 rule4->dst_len = frh->dst_len;
272 rule4->dstmask = inet_make_mask(rule4->dst_len);
273 rule4->tos = frh->tos;
274
David S. Millerf4530fa2012-07-05 22:13:13 -0700275 net->ipv4.fib_has_custom_rules = true;
Ido Schimmel6a003a52017-03-16 09:08:13 +0100276 call_fib_rule_notifiers(net, FIB_EVENT_RULE_ADD, rule);
Scott Feldman104616e2015-03-05 21:21:16 -0800277
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700278 err = 0;
279errout:
280 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800283static int fib4_rule_delete(struct fib_rule *rule)
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700284{
David S. Millerf4530fa2012-07-05 22:13:13 -0700285 struct net *net = rule->fr_net;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800286 int err;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700287
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800288 /* split local/main if they are not already split */
289 err = fib_unmerge(net);
290 if (err)
291 goto errout;
292
293#ifdef CONFIG_IP_ROUTE_CLASSID
294 if (((struct fib4_rule *)rule)->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700295 net->ipv4.fib_num_tclassid_users--;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700296#endif
David S. Millerf4530fa2012-07-05 22:13:13 -0700297 net->ipv4.fib_has_custom_rules = true;
Ido Schimmel6a003a52017-03-16 09:08:13 +0100298 call_fib_rule_notifiers(net, FIB_EVENT_RULE_DEL, rule);
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800299errout:
300 return err;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700301}
302
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700303static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
304 struct nlattr **tb)
Patrick McHardya5cdc032006-03-23 01:16:06 -0800305{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700306 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Patrick McHardya5cdc032006-03-23 01:16:06 -0800307
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700308 if (frh->src_len && (rule4->src_len != frh->src_len))
309 return 0;
310
311 if (frh->dst_len && (rule4->dst_len != frh->dst_len))
312 return 0;
313
314 if (frh->tos && (rule4->tos != frh->tos))
315 return 0;
316
Patrick McHardyc7066f72011-01-14 13:36:42 +0100317#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700318 if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
319 return 0;
320#endif
321
Jiri Benc67b61f62015-03-29 16:59:26 +0200322 if (frh->src_len && (rule4->src != nla_get_in_addr(tb[FRA_SRC])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700323 return 0;
324
Jiri Benc67b61f62015-03-29 16:59:26 +0200325 if (frh->dst_len && (rule4->dst != nla_get_in_addr(tb[FRA_DST])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700326 return 0;
327
328 return 1;
329}
330
331static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700332 struct fib_rule_hdr *frh)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700333{
334 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
335
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700336 frh->dst_len = rule4->dst_len;
337 frh->src_len = rule4->src_len;
338 frh->tos = rule4->tos;
339
David S. Millerf3756b72012-04-01 20:39:02 -0400340 if ((rule4->dst_len &&
Jiri Benc930345e2015-03-29 16:59:25 +0200341 nla_put_in_addr(skb, FRA_DST, rule4->dst)) ||
David S. Millerf3756b72012-04-01 20:39:02 -0400342 (rule4->src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +0200343 nla_put_in_addr(skb, FRA_SRC, rule4->src)))
David S. Millerf3756b72012-04-01 20:39:02 -0400344 goto nla_put_failure;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100345#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Millerf3756b72012-04-01 20:39:02 -0400346 if (rule4->tclassid &&
347 nla_put_u32(skb, FRA_FLOW, rule4->tclassid))
348 goto nla_put_failure;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700349#endif
350 return 0;
351
352nla_put_failure:
353 return -ENOBUFS;
354}
355
Thomas Graf339bf982006-11-10 14:10:15 -0800356static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
357{
358 return nla_total_size(4) /* dst */
359 + nla_total_size(4) /* src */
360 + nla_total_size(4); /* flow */
361}
362
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700363static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700364{
Nicolas Dichtelbafa6d92012-09-07 00:45:29 +0000365 rt_cache_flush(ops->fro_net);
Thomas Graf73417f62007-03-27 13:56:52 -0700366}
367
Andi Kleen04a6f822012-10-04 17:12:11 -0700368static const struct fib_rules_ops __net_initconst fib4_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200369 .family = AF_INET,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700370 .rule_size = sizeof(struct fib4_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700371 .addr_size = sizeof(u32),
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700372 .action = fib4_rule_action,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200373 .suppress = fib4_rule_suppress,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700374 .match = fib4_rule_match,
375 .configure = fib4_rule_configure,
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700376 .delete = fib4_rule_delete,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700377 .compare = fib4_rule_compare,
378 .fill = fib4_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800379 .nlmsg_payload = fib4_rule_nlmsg_payload,
Thomas Graf73417f62007-03-27 13:56:52 -0700380 .flush_cache = fib4_rule_flush_cache,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700381 .nlgroup = RTNLGRP_IPV4_RULE,
382 .policy = fib4_rule_policy,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700383 .owner = THIS_MODULE,
384};
385
Denis V. Luneve4e49712008-01-10 03:27:51 -0800386static int fib_default_rules_init(struct fib_rules_ops *ops)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800387{
388 int err;
389
Patrick McHardy5adef182009-12-03 01:25:57 +0000390 err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800391 if (err < 0)
392 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800393 err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800394 if (err < 0)
395 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800396 err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800397 if (err < 0)
398 return err;
399 return 0;
400}
401
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800402int __net_init fib4_rules_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800404 int err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800405 struct fib_rules_ops *ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800406
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800407 ops = fib_rules_register(&fib4_rules_ops_template, net);
408 if (IS_ERR(ops))
409 return PTR_ERR(ops);
Denis V. Luneve4e49712008-01-10 03:27:51 -0800410
411 err = fib_default_rules_init(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800412 if (err < 0)
413 goto fail;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800414 net->ipv4.rules_ops = ops;
David S. Millerf4530fa2012-07-05 22:13:13 -0700415 net->ipv4.fib_has_custom_rules = false;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800416 return 0;
417
418fail:
419 /* also cleans all rules already added */
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800420 fib_rules_unregister(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800421 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800423
424void __net_exit fib4_rules_exit(struct net *net)
425{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800426 fib_rules_unregister(net->ipv4.rules_ops);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800427}