blob: ebadf6b994994ddfea68a56e91db618e486c6934 [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
Andy Gospodarek0eeb0752015-06-23 13:45:37 -040050int __fib_lookup(struct net *net, struct flowi4 *flp,
51 struct fib_result *res, unsigned int flags)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070052{
53 struct fib_lookup_arg arg = {
54 .result = res,
Andy Gospodarek0eeb0752015-06-23 13:45:37 -040055 .flags = flags,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070056 };
57 int err;
58
David Ahern9ee00342016-09-10 12:09:52 -070059 /* update flow if oif or iif point to device enslaved to l3mdev */
60 l3mdev_update_flow(net, flowi4_to_flowi(flp));
61
David S. Miller22bd5b92011-03-11 19:54:08 -050062 err = fib_rules_lookup(net->ipv4.rules_ops, flowi4_to_flowi(flp), 0, &arg);
David S. Miller85b91b02012-07-13 08:21:29 -070063#ifdef CONFIG_IP_ROUTE_CLASSID
64 if (arg.rule)
65 res->tclassid = ((struct fib4_rule *)arg.rule)->tclassid;
66 else
67 res->tclassid = 0;
68#endif
Panu Matilainen49dd18b2014-11-14 13:14:32 +020069
70 if (err == -ESRCH)
71 err = -ENETUNREACH;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return err;
74}
David S. Millerf4530fa2012-07-05 22:13:13 -070075EXPORT_SYMBOL_GPL(__fib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Adrian Bunk8ce11e62006-08-07 21:50:48 -070077static int fib4_rule_action(struct fib_rule *rule, struct flowi *flp,
78 int flags, struct fib_lookup_arg *arg)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070079{
80 int err = -EAGAIN;
81 struct fib_table *tbl;
David Ahern96c63fa2016-06-08 10:55:39 -070082 u32 tb_id;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070083
84 switch (rule->action) {
85 case FR_ACT_TO_TBL:
86 break;
87
88 case FR_ACT_UNREACHABLE:
Alexander Duyck345e9b52014-12-31 10:56:24 -080089 return -ENETUNREACH;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070090
91 case FR_ACT_PROHIBIT:
Alexander Duyck345e9b52014-12-31 10:56:24 -080092 return -EACCES;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070093
94 case FR_ACT_BLACKHOLE:
95 default:
Alexander Duyck345e9b52014-12-31 10:56:24 -080096 return -EINVAL;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070097 }
98
Alexander Duyck345e9b52014-12-31 10:56:24 -080099 rcu_read_lock();
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700100
David Ahern96c63fa2016-06-08 10:55:39 -0700101 tb_id = fib_rule_get_table(rule, arg);
102 tbl = fib_get_table(rule->fr_net, tb_id);
Alexander Duyck345e9b52014-12-31 10:56:24 -0800103 if (tbl)
104 err = fib_table_lookup(tbl, &flp->u.ip4,
105 (struct fib_result *)arg->result,
106 arg->flags);
107
108 rcu_read_unlock();
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700109 return err;
110}
111
Stefan Tomanek7764a452013-08-01 02:17:15 +0200112static bool fib4_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
113{
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200114 struct fib_result *result = (struct fib_result *) arg->result;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100115 struct net_device *dev = NULL;
116
117 if (result->fi)
118 dev = result->fi->fib_dev;
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200119
Stefan Tomanek7764a452013-08-01 02:17:15 +0200120 /* do not accept result if the route does
121 * not meet the required prefix length
122 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200123 if (result->prefixlen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200124 goto suppress_route;
125
126 /* do not accept result if the route uses a device
127 * belonging to a forbidden interface group
128 */
129 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
130 goto suppress_route;
131
Stefan Tomanek7764a452013-08-01 02:17:15 +0200132 return false;
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200133
134suppress_route:
135 if (!(arg->flags & FIB_LOOKUP_NOREF))
136 fib_info_put(result->fi);
137 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200138}
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700139
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700140static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
141{
142 struct fib4_rule *r = (struct fib4_rule *) rule;
David S. Miller9ade2282011-03-12 02:02:42 -0500143 struct flowi4 *fl4 = &fl->u.ip4;
144 __be32 daddr = fl4->daddr;
145 __be32 saddr = fl4->saddr;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700146
147 if (((saddr ^ r->src) & r->srcmask) ||
148 ((daddr ^ r->dst) & r->dstmask))
149 return 0;
150
David S. Miller9ade2282011-03-12 02:02:42 -0500151 if (r->tos && (r->tos != fl4->flowi4_tos))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700152 return 0;
153
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700154 return 1;
155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800157static struct fib_table *fib_empty_table(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700159 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 for (id = 1; id <= RT_TABLE_MAX; id++)
Ian Morris51456b22015-04-03 09:17:26 +0100162 if (!fib_get_table(net, id))
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800163 return fib_new_table(net, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return NULL;
165}
166
Jiri Pirkob90eb752016-09-26 12:52:29 +0200167static int call_fib_rule_notifiers(struct net *net,
168 enum fib_event_type event_type)
169{
170 struct fib_notifier_info info;
171
172 return call_fib_notifiers(net, event_type, &info);
173}
174
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700175static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800176 FRA_GENERIC_POLICY,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700177 [FRA_FLOW] = { .type = NLA_U32 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700180static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000181 struct fib_rule_hdr *frh,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700182 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900184 struct net *net = sock_net(skb->sk);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700185 int err = -EINVAL;
186 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Thomas Grafe1701c62007-03-24 12:46:02 -0700188 if (frh->tos & ~IPTOS_TOS_MASK)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700189 goto errout;
190
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800191 /* split local/main if they are not already split */
192 err = fib_unmerge(net);
193 if (err)
194 goto errout;
195
David Ahern96c63fa2016-06-08 10:55:39 -0700196 if (rule->table == RT_TABLE_UNSPEC && !rule->l3mdev) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700197 if (rule->action == FR_ACT_TO_TBL) {
198 struct fib_table *table;
199
Denis V. Luneve4e49712008-01-10 03:27:51 -0800200 table = fib_empty_table(net);
Ian Morris51456b22015-04-03 09:17:26 +0100201 if (!table) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700202 err = -ENOBUFS;
203 goto errout;
204 }
205
206 rule->table = table->tb_id;
207 }
208 }
209
Thomas Grafe1701c62007-03-24 12:46:02 -0700210 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200211 rule4->src = nla_get_in_addr(tb[FRA_SRC]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700212
Thomas Grafe1701c62007-03-24 12:46:02 -0700213 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200214 rule4->dst = nla_get_in_addr(tb[FRA_DST]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700215
Patrick McHardyc7066f72011-01-14 13:36:42 +0100216#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700217 if (tb[FRA_FLOW]) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700218 rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700219 if (rule4->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700220 net->ipv4.fib_num_tclassid_users++;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700224 rule4->src_len = frh->src_len;
225 rule4->srcmask = inet_make_mask(rule4->src_len);
226 rule4->dst_len = frh->dst_len;
227 rule4->dstmask = inet_make_mask(rule4->dst_len);
228 rule4->tos = frh->tos;
229
David S. Millerf4530fa2012-07-05 22:13:13 -0700230 net->ipv4.fib_has_custom_rules = true;
Scott Feldman104616e2015-03-05 21:21:16 -0800231 fib_flush_external(rule->fr_net);
Jiri Pirkob90eb752016-09-26 12:52:29 +0200232 call_fib_rule_notifiers(net, FIB_EVENT_RULE_ADD);
Scott Feldman104616e2015-03-05 21:21:16 -0800233
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700234 err = 0;
235errout:
236 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800239static int fib4_rule_delete(struct fib_rule *rule)
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700240{
David S. Millerf4530fa2012-07-05 22:13:13 -0700241 struct net *net = rule->fr_net;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800242 int err;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700243
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800244 /* split local/main if they are not already split */
245 err = fib_unmerge(net);
246 if (err)
247 goto errout;
248
249#ifdef CONFIG_IP_ROUTE_CLASSID
250 if (((struct fib4_rule *)rule)->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700251 net->ipv4.fib_num_tclassid_users--;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700252#endif
David S. Millerf4530fa2012-07-05 22:13:13 -0700253 net->ipv4.fib_has_custom_rules = true;
Scott Feldman104616e2015-03-05 21:21:16 -0800254 fib_flush_external(rule->fr_net);
Jiri Pirkob90eb752016-09-26 12:52:29 +0200255 call_fib_rule_notifiers(net, FIB_EVENT_RULE_DEL);
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800256errout:
257 return err;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700258}
259
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700260static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
261 struct nlattr **tb)
Patrick McHardya5cdc032006-03-23 01:16:06 -0800262{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700263 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Patrick McHardya5cdc032006-03-23 01:16:06 -0800264
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700265 if (frh->src_len && (rule4->src_len != frh->src_len))
266 return 0;
267
268 if (frh->dst_len && (rule4->dst_len != frh->dst_len))
269 return 0;
270
271 if (frh->tos && (rule4->tos != frh->tos))
272 return 0;
273
Patrick McHardyc7066f72011-01-14 13:36:42 +0100274#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700275 if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
276 return 0;
277#endif
278
Jiri Benc67b61f62015-03-29 16:59:26 +0200279 if (frh->src_len && (rule4->src != nla_get_in_addr(tb[FRA_SRC])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700280 return 0;
281
Jiri Benc67b61f62015-03-29 16:59:26 +0200282 if (frh->dst_len && (rule4->dst != nla_get_in_addr(tb[FRA_DST])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700283 return 0;
284
285 return 1;
286}
287
288static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700289 struct fib_rule_hdr *frh)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700290{
291 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
292
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700293 frh->dst_len = rule4->dst_len;
294 frh->src_len = rule4->src_len;
295 frh->tos = rule4->tos;
296
David S. Millerf3756b72012-04-01 20:39:02 -0400297 if ((rule4->dst_len &&
Jiri Benc930345e2015-03-29 16:59:25 +0200298 nla_put_in_addr(skb, FRA_DST, rule4->dst)) ||
David S. Millerf3756b72012-04-01 20:39:02 -0400299 (rule4->src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +0200300 nla_put_in_addr(skb, FRA_SRC, rule4->src)))
David S. Millerf3756b72012-04-01 20:39:02 -0400301 goto nla_put_failure;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100302#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Millerf3756b72012-04-01 20:39:02 -0400303 if (rule4->tclassid &&
304 nla_put_u32(skb, FRA_FLOW, rule4->tclassid))
305 goto nla_put_failure;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700306#endif
307 return 0;
308
309nla_put_failure:
310 return -ENOBUFS;
311}
312
Thomas Graf339bf982006-11-10 14:10:15 -0800313static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
314{
315 return nla_total_size(4) /* dst */
316 + nla_total_size(4) /* src */
317 + nla_total_size(4); /* flow */
318}
319
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700320static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700321{
Nicolas Dichtelbafa6d92012-09-07 00:45:29 +0000322 rt_cache_flush(ops->fro_net);
Thomas Graf73417f62007-03-27 13:56:52 -0700323}
324
Andi Kleen04a6f822012-10-04 17:12:11 -0700325static const struct fib_rules_ops __net_initconst fib4_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200326 .family = AF_INET,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700327 .rule_size = sizeof(struct fib4_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700328 .addr_size = sizeof(u32),
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700329 .action = fib4_rule_action,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200330 .suppress = fib4_rule_suppress,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700331 .match = fib4_rule_match,
332 .configure = fib4_rule_configure,
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700333 .delete = fib4_rule_delete,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700334 .compare = fib4_rule_compare,
335 .fill = fib4_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800336 .nlmsg_payload = fib4_rule_nlmsg_payload,
Thomas Graf73417f62007-03-27 13:56:52 -0700337 .flush_cache = fib4_rule_flush_cache,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700338 .nlgroup = RTNLGRP_IPV4_RULE,
339 .policy = fib4_rule_policy,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700340 .owner = THIS_MODULE,
341};
342
Denis V. Luneve4e49712008-01-10 03:27:51 -0800343static int fib_default_rules_init(struct fib_rules_ops *ops)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800344{
345 int err;
346
Patrick McHardy5adef182009-12-03 01:25:57 +0000347 err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800348 if (err < 0)
349 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800350 err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800351 if (err < 0)
352 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800353 err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800354 if (err < 0)
355 return err;
356 return 0;
357}
358
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800359int __net_init fib4_rules_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800361 int err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800362 struct fib_rules_ops *ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800363
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800364 ops = fib_rules_register(&fib4_rules_ops_template, net);
365 if (IS_ERR(ops))
366 return PTR_ERR(ops);
Denis V. Luneve4e49712008-01-10 03:27:51 -0800367
368 err = fib_default_rules_init(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800369 if (err < 0)
370 goto fail;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800371 net->ipv4.rules_ops = ops;
David S. Millerf4530fa2012-07-05 22:13:13 -0700372 net->ipv4.fib_has_custom_rules = false;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800373 return 0;
374
375fail:
376 /* also cleans all rules already added */
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800377 fib_rules_unregister(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800378 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800380
381void __net_exit fib4_rules_exit(struct net *net)
382{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800383 fib_rules_unregister(net->ipv4.rules_ops);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800384}