blob: 16083b82954bff13c6c74a94df9f5b3ee68e74b4 [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
Ido Schimmel1b2a4442017-08-03 13:28:14 +020071int fib4_rules_dump(struct net *net, struct notifier_block *nb)
72{
73 return fib_rules_dump(net, nb, AF_INET);
74}
75
76unsigned int fib4_rules_seq_read(struct net *net)
77{
78 return fib_rules_seq_read(net, AF_INET);
79}
80
Andy Gospodarek0eeb0752015-06-23 13:45:37 -040081int __fib_lookup(struct net *net, struct flowi4 *flp,
82 struct fib_result *res, unsigned int flags)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070083{
84 struct fib_lookup_arg arg = {
85 .result = res,
Andy Gospodarek0eeb0752015-06-23 13:45:37 -040086 .flags = flags,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070087 };
88 int err;
89
David Ahern9ee00342016-09-10 12:09:52 -070090 /* update flow if oif or iif point to device enslaved to l3mdev */
91 l3mdev_update_flow(net, flowi4_to_flowi(flp));
92
David S. Miller22bd5b92011-03-11 19:54:08 -050093 err = fib_rules_lookup(net->ipv4.rules_ops, flowi4_to_flowi(flp), 0, &arg);
David S. Miller85b91b02012-07-13 08:21:29 -070094#ifdef CONFIG_IP_ROUTE_CLASSID
95 if (arg.rule)
96 res->tclassid = ((struct fib4_rule *)arg.rule)->tclassid;
97 else
98 res->tclassid = 0;
99#endif
Panu Matilainen49dd18b2014-11-14 13:14:32 +0200100
101 if (err == -ESRCH)
102 err = -ENETUNREACH;
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return err;
105}
David S. Millerf4530fa2012-07-05 22:13:13 -0700106EXPORT_SYMBOL_GPL(__fib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Adrian Bunk8ce11e62006-08-07 21:50:48 -0700108static int fib4_rule_action(struct fib_rule *rule, struct flowi *flp,
109 int flags, struct fib_lookup_arg *arg)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700110{
111 int err = -EAGAIN;
112 struct fib_table *tbl;
David Ahern96c63fa2016-06-08 10:55:39 -0700113 u32 tb_id;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700114
115 switch (rule->action) {
116 case FR_ACT_TO_TBL:
117 break;
118
119 case FR_ACT_UNREACHABLE:
Alexander Duyck345e9b52014-12-31 10:56:24 -0800120 return -ENETUNREACH;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700121
122 case FR_ACT_PROHIBIT:
Alexander Duyck345e9b52014-12-31 10:56:24 -0800123 return -EACCES;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700124
125 case FR_ACT_BLACKHOLE:
126 default:
Alexander Duyck345e9b52014-12-31 10:56:24 -0800127 return -EINVAL;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700128 }
129
Alexander Duyck345e9b52014-12-31 10:56:24 -0800130 rcu_read_lock();
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700131
David Ahern96c63fa2016-06-08 10:55:39 -0700132 tb_id = fib_rule_get_table(rule, arg);
133 tbl = fib_get_table(rule->fr_net, tb_id);
Alexander Duyck345e9b52014-12-31 10:56:24 -0800134 if (tbl)
135 err = fib_table_lookup(tbl, &flp->u.ip4,
136 (struct fib_result *)arg->result,
137 arg->flags);
138
139 rcu_read_unlock();
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700140 return err;
141}
142
Stefan Tomanek7764a452013-08-01 02:17:15 +0200143static bool fib4_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
144{
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200145 struct fib_result *result = (struct fib_result *) arg->result;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100146 struct net_device *dev = NULL;
147
148 if (result->fi)
149 dev = result->fi->fib_dev;
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200150
Stefan Tomanek7764a452013-08-01 02:17:15 +0200151 /* do not accept result if the route does
152 * not meet the required prefix length
153 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200154 if (result->prefixlen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200155 goto suppress_route;
156
157 /* do not accept result if the route uses a device
158 * belonging to a forbidden interface group
159 */
160 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
161 goto suppress_route;
162
Stefan Tomanek7764a452013-08-01 02:17:15 +0200163 return false;
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200164
165suppress_route:
166 if (!(arg->flags & FIB_LOOKUP_NOREF))
167 fib_info_put(result->fi);
168 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200169}
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700170
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700171static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
172{
173 struct fib4_rule *r = (struct fib4_rule *) rule;
David S. Miller9ade2282011-03-12 02:02:42 -0500174 struct flowi4 *fl4 = &fl->u.ip4;
175 __be32 daddr = fl4->daddr;
176 __be32 saddr = fl4->saddr;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700177
178 if (((saddr ^ r->src) & r->srcmask) ||
179 ((daddr ^ r->dst) & r->dstmask))
180 return 0;
181
David S. Miller9ade2282011-03-12 02:02:42 -0500182 if (r->tos && (r->tos != fl4->flowi4_tos))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700183 return 0;
184
Roopa Prabhu4a2d73a2018-02-28 22:41:06 -0500185 if (rule->ip_proto && (rule->ip_proto != fl4->flowi4_proto))
186 return 0;
187
188 if (fib_rule_port_range_set(&rule->sport_range) &&
189 !fib_rule_port_inrange(&rule->sport_range, fl4->fl4_sport))
190 return 0;
191
192 if (fib_rule_port_range_set(&rule->dport_range) &&
193 !fib_rule_port_inrange(&rule->dport_range, fl4->fl4_dport))
194 return 0;
195
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700196 return 1;
197}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800199static struct fib_table *fib_empty_table(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700201 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 for (id = 1; id <= RT_TABLE_MAX; id++)
Ian Morris51456b22015-04-03 09:17:26 +0100204 if (!fib_get_table(net, id))
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800205 return fib_new_table(net, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return NULL;
207}
208
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700209static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800210 FRA_GENERIC_POLICY,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700211 [FRA_FLOW] = { .type = NLA_U32 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700214static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000215 struct fib_rule_hdr *frh,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700216 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900218 struct net *net = sock_net(skb->sk);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700219 int err = -EINVAL;
220 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Thomas Grafe1701c62007-03-24 12:46:02 -0700222 if (frh->tos & ~IPTOS_TOS_MASK)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700223 goto errout;
224
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800225 /* split local/main if they are not already split */
226 err = fib_unmerge(net);
227 if (err)
228 goto errout;
229
David Ahern96c63fa2016-06-08 10:55:39 -0700230 if (rule->table == RT_TABLE_UNSPEC && !rule->l3mdev) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700231 if (rule->action == FR_ACT_TO_TBL) {
232 struct fib_table *table;
233
Denis V. Luneve4e49712008-01-10 03:27:51 -0800234 table = fib_empty_table(net);
Ian Morris51456b22015-04-03 09:17:26 +0100235 if (!table) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700236 err = -ENOBUFS;
237 goto errout;
238 }
239
240 rule->table = table->tb_id;
241 }
242 }
243
Thomas Grafe1701c62007-03-24 12:46:02 -0700244 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200245 rule4->src = nla_get_in_addr(tb[FRA_SRC]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700246
Thomas Grafe1701c62007-03-24 12:46:02 -0700247 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200248 rule4->dst = nla_get_in_addr(tb[FRA_DST]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700249
Patrick McHardyc7066f72011-01-14 13:36:42 +0100250#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700251 if (tb[FRA_FLOW]) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700252 rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700253 if (rule4->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700254 net->ipv4.fib_num_tclassid_users++;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700258 rule4->src_len = frh->src_len;
259 rule4->srcmask = inet_make_mask(rule4->src_len);
260 rule4->dst_len = frh->dst_len;
261 rule4->dstmask = inet_make_mask(rule4->dst_len);
262 rule4->tos = frh->tos;
263
David S. Millerf4530fa2012-07-05 22:13:13 -0700264 net->ipv4.fib_has_custom_rules = true;
Scott Feldman104616e2015-03-05 21:21:16 -0800265
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700266 err = 0;
267errout:
268 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800271static int fib4_rule_delete(struct fib_rule *rule)
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700272{
David S. Millerf4530fa2012-07-05 22:13:13 -0700273 struct net *net = rule->fr_net;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800274 int err;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700275
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800276 /* split local/main if they are not already split */
277 err = fib_unmerge(net);
278 if (err)
279 goto errout;
280
281#ifdef CONFIG_IP_ROUTE_CLASSID
282 if (((struct fib4_rule *)rule)->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700283 net->ipv4.fib_num_tclassid_users--;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700284#endif
David S. Millerf4530fa2012-07-05 22:13:13 -0700285 net->ipv4.fib_has_custom_rules = true;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800286errout:
287 return err;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700288}
289
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700290static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
291 struct nlattr **tb)
Patrick McHardya5cdc032006-03-23 01:16:06 -0800292{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700293 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Patrick McHardya5cdc032006-03-23 01:16:06 -0800294
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700295 if (frh->src_len && (rule4->src_len != frh->src_len))
296 return 0;
297
298 if (frh->dst_len && (rule4->dst_len != frh->dst_len))
299 return 0;
300
301 if (frh->tos && (rule4->tos != frh->tos))
302 return 0;
303
Patrick McHardyc7066f72011-01-14 13:36:42 +0100304#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700305 if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
306 return 0;
307#endif
308
Jiri Benc67b61f62015-03-29 16:59:26 +0200309 if (frh->src_len && (rule4->src != nla_get_in_addr(tb[FRA_SRC])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700310 return 0;
311
Jiri Benc67b61f62015-03-29 16:59:26 +0200312 if (frh->dst_len && (rule4->dst != nla_get_in_addr(tb[FRA_DST])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700313 return 0;
314
315 return 1;
316}
317
318static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700319 struct fib_rule_hdr *frh)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700320{
321 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
322
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700323 frh->dst_len = rule4->dst_len;
324 frh->src_len = rule4->src_len;
325 frh->tos = rule4->tos;
326
David S. Millerf3756b72012-04-01 20:39:02 -0400327 if ((rule4->dst_len &&
Jiri Benc930345e2015-03-29 16:59:25 +0200328 nla_put_in_addr(skb, FRA_DST, rule4->dst)) ||
David S. Millerf3756b72012-04-01 20:39:02 -0400329 (rule4->src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +0200330 nla_put_in_addr(skb, FRA_SRC, rule4->src)))
David S. Millerf3756b72012-04-01 20:39:02 -0400331 goto nla_put_failure;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100332#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Millerf3756b72012-04-01 20:39:02 -0400333 if (rule4->tclassid &&
334 nla_put_u32(skb, FRA_FLOW, rule4->tclassid))
335 goto nla_put_failure;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700336#endif
337 return 0;
338
339nla_put_failure:
340 return -ENOBUFS;
341}
342
Thomas Graf339bf982006-11-10 14:10:15 -0800343static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
344{
345 return nla_total_size(4) /* dst */
346 + nla_total_size(4) /* src */
347 + nla_total_size(4); /* flow */
348}
349
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700350static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700351{
Nicolas Dichtelbafa6d92012-09-07 00:45:29 +0000352 rt_cache_flush(ops->fro_net);
Thomas Graf73417f62007-03-27 13:56:52 -0700353}
354
Andi Kleen04a6f822012-10-04 17:12:11 -0700355static const struct fib_rules_ops __net_initconst fib4_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200356 .family = AF_INET,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700357 .rule_size = sizeof(struct fib4_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700358 .addr_size = sizeof(u32),
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700359 .action = fib4_rule_action,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200360 .suppress = fib4_rule_suppress,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700361 .match = fib4_rule_match,
362 .configure = fib4_rule_configure,
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700363 .delete = fib4_rule_delete,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700364 .compare = fib4_rule_compare,
365 .fill = fib4_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800366 .nlmsg_payload = fib4_rule_nlmsg_payload,
Thomas Graf73417f62007-03-27 13:56:52 -0700367 .flush_cache = fib4_rule_flush_cache,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700368 .nlgroup = RTNLGRP_IPV4_RULE,
369 .policy = fib4_rule_policy,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700370 .owner = THIS_MODULE,
371};
372
Denis V. Luneve4e49712008-01-10 03:27:51 -0800373static int fib_default_rules_init(struct fib_rules_ops *ops)
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800374{
375 int err;
376
Patrick McHardy5adef182009-12-03 01:25:57 +0000377 err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800378 if (err < 0)
379 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800380 err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800381 if (err < 0)
382 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800383 err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800384 if (err < 0)
385 return err;
386 return 0;
387}
388
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -0800389int __net_init fib4_rules_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800391 int err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800392 struct fib_rules_ops *ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800393
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800394 ops = fib_rules_register(&fib4_rules_ops_template, net);
395 if (IS_ERR(ops))
396 return PTR_ERR(ops);
Denis V. Luneve4e49712008-01-10 03:27:51 -0800397
398 err = fib_default_rules_init(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800399 if (err < 0)
400 goto fail;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800401 net->ipv4.rules_ops = ops;
David S. Millerf4530fa2012-07-05 22:13:13 -0700402 net->ipv4.fib_has_custom_rules = false;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800403 return 0;
404
405fail:
406 /* also cleans all rules already added */
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800407 fib_rules_unregister(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800408 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -0800410
411void __net_exit fib4_rules_exit(struct net *net)
412{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800413 fib_rules_unregister(net->ipv4.rules_ops);
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -0800414}