blob: ce54a30c2ef1e8e79c8922be5eee35055fa51178 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * IPv4 Forwarding Information Base: policy rules.
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000010 * Thomas Graf <tgraf@suug.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Fixes:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000013 * Rani Assaf : local_rule cannot be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Marc Boucher : routing by fwmark
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/types.h>
18#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/netlink.h>
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070021#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
Robert Olsson7b204af2006-03-20 17:18:53 -080023#include <linux/list.h>
24#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040025#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <net/route.h>
28#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/ip_fib.h>
David Ahern5481d732019-06-03 20:19:49 -070030#include <net/nexthop.h>
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070031#include <net/fib_rules.h>
Brian Vazquezb9aaec82020-07-26 15:48:16 -070032#include <linux/indirect_call_wrapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000034struct fib4_rule {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070035 struct fib_rule common;
36 u8 dst_len;
37 u8 src_len;
38 u8 tos;
Al Viro81f7bf62006-09-27 18:40:00 -070039 __be32 src;
40 __be32 srcmask;
41 __be32 dst;
42 __be32 dstmask;
Patrick McHardyc7066f72011-01-14 13:36:42 +010043#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070044 u32 tclassid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
Ido Schimmel3c710062017-03-16 09:08:12 +010048static bool fib4_rule_matchall(const struct fib_rule *rule)
49{
50 struct fib4_rule *r = container_of(rule, struct fib4_rule, common);
51
52 if (r->dst_len || r->src_len || r->tos)
53 return false;
54 return fib_rule_matchall(rule);
55}
56
57bool fib4_rule_default(const struct fib_rule *rule)
58{
59 if (!fib4_rule_matchall(rule) || rule->action != FR_ACT_TO_TBL ||
60 rule->l3mdev)
61 return false;
62 if (rule->table != RT_TABLE_LOCAL && rule->table != RT_TABLE_MAIN &&
63 rule->table != RT_TABLE_DEFAULT)
64 return false;
65 return true;
66}
67EXPORT_SYMBOL_GPL(fib4_rule_default);
68
Jiri Pirkob7a59552019-10-03 11:49:30 +020069int fib4_rules_dump(struct net *net, struct notifier_block *nb,
70 struct netlink_ext_ack *extack)
Ido Schimmel1b2a4442017-08-03 13:28:14 +020071{
Jiri Pirkob7a59552019-10-03 11:49:30 +020072 return fib_rules_dump(net, nb, AF_INET, extack);
Ido Schimmel1b2a4442017-08-03 13:28:14 +020073}
74
75unsigned int fib4_rules_seq_read(struct net *net)
76{
77 return fib_rules_seq_read(net, AF_INET);
78}
79
Andy Gospodarek0eeb0752015-06-23 13:45:37 -040080int __fib_lookup(struct net *net, struct flowi4 *flp,
81 struct fib_result *res, unsigned int flags)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070082{
83 struct fib_lookup_arg arg = {
84 .result = res,
Andy Gospodarek0eeb0752015-06-23 13:45:37 -040085 .flags = flags,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070086 };
87 int err;
88
David Ahern9ee00342016-09-10 12:09:52 -070089 /* update flow if oif or iif point to device enslaved to l3mdev */
90 l3mdev_update_flow(net, flowi4_to_flowi(flp));
91
David S. Miller22bd5b92011-03-11 19:54:08 -050092 err = fib_rules_lookup(net->ipv4.rules_ops, flowi4_to_flowi(flp), 0, &arg);
David S. Miller85b91b02012-07-13 08:21:29 -070093#ifdef CONFIG_IP_ROUTE_CLASSID
94 if (arg.rule)
95 res->tclassid = ((struct fib4_rule *)arg.rule)->tclassid;
96 else
97 res->tclassid = 0;
98#endif
Panu Matilainen49dd18b2014-11-14 13:14:32 +020099
100 if (err == -ESRCH)
101 err = -ENETUNREACH;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return err;
104}
David S. Millerf4530fa2012-07-05 22:13:13 -0700105EXPORT_SYMBOL_GPL(__fib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Brian Vazquezb9aaec82020-07-26 15:48:16 -0700107INDIRECT_CALLABLE_SCOPE int fib4_rule_action(struct fib_rule *rule,
108 struct flowi *flp, int flags,
109 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
Brian Vazquezb9aaec82020-07-26 15:48:16 -0700143INDIRECT_CALLABLE_SCOPE bool fib4_rule_suppress(struct fib_rule *rule,
144 struct fib_lookup_arg *arg)
Stefan Tomanek7764a452013-08-01 02:17:15 +0200145{
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200146 struct fib_result *result = (struct fib_result *) arg->result;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100147 struct net_device *dev = NULL;
148
David Ahern5481d732019-06-03 20:19:49 -0700149 if (result->fi) {
David Aherndcb1ecb2019-06-03 20:19:50 -0700150 struct fib_nh_common *nhc = fib_info_nhc(result->fi, 0);
David Ahern5481d732019-06-03 20:19:49 -0700151
David Aherndcb1ecb2019-06-03 20:19:50 -0700152 dev = nhc->nhc_dev;
David Ahern5481d732019-06-03 20:19:49 -0700153 }
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200154
Stefan Tomanek7764a452013-08-01 02:17:15 +0200155 /* do not accept result if the route does
156 * not meet the required prefix length
157 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200158 if (result->prefixlen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200159 goto suppress_route;
160
161 /* do not accept result if the route uses a device
162 * belonging to a forbidden interface group
163 */
164 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
165 goto suppress_route;
166
Stefan Tomanek7764a452013-08-01 02:17:15 +0200167 return false;
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200168
169suppress_route:
170 if (!(arg->flags & FIB_LOOKUP_NOREF))
171 fib_info_put(result->fi);
172 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200173}
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700174
Brian Vazquezb9aaec82020-07-26 15:48:16 -0700175INDIRECT_CALLABLE_SCOPE int fib4_rule_match(struct fib_rule *rule,
176 struct flowi *fl, int flags)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700177{
178 struct fib4_rule *r = (struct fib4_rule *) rule;
David S. Miller9ade2282011-03-12 02:02:42 -0500179 struct flowi4 *fl4 = &fl->u.ip4;
180 __be32 daddr = fl4->daddr;
181 __be32 saddr = fl4->saddr;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700182
183 if (((saddr ^ r->src) & r->srcmask) ||
184 ((daddr ^ r->dst) & r->dstmask))
185 return 0;
186
David S. Miller9ade2282011-03-12 02:02:42 -0500187 if (r->tos && (r->tos != fl4->flowi4_tos))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700188 return 0;
189
Roopa Prabhu4a2d73a2018-02-28 22:41:06 -0500190 if (rule->ip_proto && (rule->ip_proto != fl4->flowi4_proto))
191 return 0;
192
193 if (fib_rule_port_range_set(&rule->sport_range) &&
194 !fib_rule_port_inrange(&rule->sport_range, fl4->fl4_sport))
195 return 0;
196
197 if (fib_rule_port_range_set(&rule->dport_range) &&
198 !fib_rule_port_inrange(&rule->dport_range, fl4->fl4_dport))
199 return 0;
200
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700201 return 1;
202}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800204static struct fib_table *fib_empty_table(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
YueHaibing58075ff2018-12-29 14:45:23 +0800206 u32 id = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
YueHaibing58075ff2018-12-29 14:45:23 +0800208 while (1) {
Ian Morris51456b22015-04-03 09:17:26 +0100209 if (!fib_get_table(net, id))
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800210 return fib_new_table(net, id);
YueHaibing58075ff2018-12-29 14:45:23 +0800211
212 if (id++ == RT_TABLE_MAX)
213 break;
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return NULL;
216}
217
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700218static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800219 FRA_GENERIC_POLICY,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700220 [FRA_FLOW] = { .type = NLA_U32 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700223static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000224 struct fib_rule_hdr *frh,
Roopa Prabhub16fb412018-04-21 09:41:31 -0700225 struct nlattr **tb,
226 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900228 struct net *net = sock_net(skb->sk);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700229 int err = -EINVAL;
230 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Roopa Prabhub16fb412018-04-21 09:41:31 -0700232 if (frh->tos & ~IPTOS_TOS_MASK) {
233 NL_SET_ERR_MSG(extack, "Invalid tos");
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700234 goto errout;
Roopa Prabhub16fb412018-04-21 09:41:31 -0700235 }
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700236
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800237 /* split local/main if they are not already split */
238 err = fib_unmerge(net);
239 if (err)
240 goto errout;
241
David Ahern96c63fa2016-06-08 10:55:39 -0700242 if (rule->table == RT_TABLE_UNSPEC && !rule->l3mdev) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700243 if (rule->action == FR_ACT_TO_TBL) {
244 struct fib_table *table;
245
Denis V. Luneve4e49712008-01-10 03:27:51 -0800246 table = fib_empty_table(net);
Ian Morris51456b22015-04-03 09:17:26 +0100247 if (!table) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700248 err = -ENOBUFS;
249 goto errout;
250 }
251
252 rule->table = table->tb_id;
253 }
254 }
255
Thomas Grafe1701c62007-03-24 12:46:02 -0700256 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200257 rule4->src = nla_get_in_addr(tb[FRA_SRC]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700258
Thomas Grafe1701c62007-03-24 12:46:02 -0700259 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200260 rule4->dst = nla_get_in_addr(tb[FRA_DST]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700261
Patrick McHardyc7066f72011-01-14 13:36:42 +0100262#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700263 if (tb[FRA_FLOW]) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700264 rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700265 if (rule4->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700266 net->ipv4.fib_num_tclassid_users++;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Roopa Prabhue37b1e92018-02-28 22:42:41 -0500270 if (fib_rule_requires_fldissect(rule))
271 net->ipv4.fib_rules_require_fldissect++;
272
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700273 rule4->src_len = frh->src_len;
274 rule4->srcmask = inet_make_mask(rule4->src_len);
275 rule4->dst_len = frh->dst_len;
276 rule4->dstmask = inet_make_mask(rule4->dst_len);
277 rule4->tos = frh->tos;
278
David S. Millerf4530fa2012-07-05 22:13:13 -0700279 net->ipv4.fib_has_custom_rules = true;
Scott Feldman104616e2015-03-05 21:21:16 -0800280
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700281 err = 0;
282errout:
283 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800286static int fib4_rule_delete(struct fib_rule *rule)
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700287{
David S. Millerf4530fa2012-07-05 22:13:13 -0700288 struct net *net = rule->fr_net;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800289 int err;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700290
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800291 /* split local/main if they are not already split */
292 err = fib_unmerge(net);
293 if (err)
294 goto errout;
295
296#ifdef CONFIG_IP_ROUTE_CLASSID
297 if (((struct fib4_rule *)rule)->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700298 net->ipv4.fib_num_tclassid_users--;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700299#endif
David S. Millerf4530fa2012-07-05 22:13:13 -0700300 net->ipv4.fib_has_custom_rules = true;
Roopa Prabhue37b1e92018-02-28 22:42:41 -0500301
302 if (net->ipv4.fib_rules_require_fldissect &&
303 fib_rule_requires_fldissect(rule))
304 net->ipv4.fib_rules_require_fldissect--;
Alexander Duyck0ddcf432015-03-06 13:47:00 -0800305errout:
306 return err;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700307}
308
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700309static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
310 struct nlattr **tb)
Patrick McHardya5cdc032006-03-23 01:16:06 -0800311{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700312 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Patrick McHardya5cdc032006-03-23 01:16:06 -0800313
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700314 if (frh->src_len && (rule4->src_len != frh->src_len))
315 return 0;
316
317 if (frh->dst_len && (rule4->dst_len != frh->dst_len))
318 return 0;
319
320 if (frh->tos && (rule4->tos != frh->tos))
321 return 0;
322
Patrick McHardyc7066f72011-01-14 13:36:42 +0100323#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700324 if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
325 return 0;
326#endif
327
Jiri Benc67b61f62015-03-29 16:59:26 +0200328 if (frh->src_len && (rule4->src != nla_get_in_addr(tb[FRA_SRC])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700329 return 0;
330
Jiri Benc67b61f62015-03-29 16:59:26 +0200331 if (frh->dst_len && (rule4->dst != nla_get_in_addr(tb[FRA_DST])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700332 return 0;
333
334 return 1;
335}
336
337static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700338 struct fib_rule_hdr *frh)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700339{
340 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
341
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700342 frh->dst_len = rule4->dst_len;
343 frh->src_len = rule4->src_len;
344 frh->tos = rule4->tos;
345
David S. Millerf3756b72012-04-01 20:39:02 -0400346 if ((rule4->dst_len &&
Jiri Benc930345e2015-03-29 16:59:25 +0200347 nla_put_in_addr(skb, FRA_DST, rule4->dst)) ||
David S. Millerf3756b72012-04-01 20:39:02 -0400348 (rule4->src_len &&
Jiri Benc930345e2015-03-29 16:59:25 +0200349 nla_put_in_addr(skb, FRA_SRC, rule4->src)))
David S. Millerf3756b72012-04-01 20:39:02 -0400350 goto nla_put_failure;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100351#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Millerf3756b72012-04-01 20:39:02 -0400352 if (rule4->tclassid &&
353 nla_put_u32(skb, FRA_FLOW, rule4->tclassid))
354 goto nla_put_failure;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700355#endif
356 return 0;
357
358nla_put_failure:
359 return -ENOBUFS;
360}
361
Thomas Graf339bf982006-11-10 14:10:15 -0800362static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
363{
364 return nla_total_size(4) /* dst */
365 + nla_total_size(4) /* src */
366 + nla_total_size(4); /* flow */
367}
368
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700369static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700370{
Nicolas Dichtelbafa6d92012-09-07 00:45:29 +0000371 rt_cache_flush(ops->fro_net);
Thomas Graf73417f62007-03-27 13:56:52 -0700372}
373
Andi Kleen04a6f822012-10-04 17:12:11 -0700374static const struct fib_rules_ops __net_initconst fib4_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200375 .family = AF_INET,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700376 .rule_size = sizeof(struct fib4_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700377 .addr_size = sizeof(u32),
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700378 .action = fib4_rule_action,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200379 .suppress = fib4_rule_suppress,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700380 .match = fib4_rule_match,
381 .configure = fib4_rule_configure,
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700382 .delete = fib4_rule_delete,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700383 .compare = fib4_rule_compare,
384 .fill = fib4_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800385 .nlmsg_payload = fib4_rule_nlmsg_payload,
Thomas Graf73417f62007-03-27 13:56:52 -0700386 .flush_cache = fib4_rule_flush_cache,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700387 .nlgroup = RTNLGRP_IPV4_RULE,
388 .policy = fib4_rule_policy,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700389 .owner = THIS_MODULE,
390};
391
Denis V. Luneve4e49712008-01-10 03:27:51 -0800392static int fib_default_rules_init(struct fib_rules_ops *ops)
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800393{
394 int err;
395
Patrick McHardy5adef182009-12-03 01:25:57 +0000396 err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800397 if (err < 0)
398 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800399 err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800400 if (err < 0)
401 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800402 err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800403 if (err < 0)
404 return err;
405 return 0;
406}
407
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -0800408int __net_init fib4_rules_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800410 int err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800411 struct fib_rules_ops *ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800412
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800413 ops = fib_rules_register(&fib4_rules_ops_template, net);
414 if (IS_ERR(ops))
415 return PTR_ERR(ops);
Denis V. Luneve4e49712008-01-10 03:27:51 -0800416
417 err = fib_default_rules_init(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800418 if (err < 0)
419 goto fail;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800420 net->ipv4.rules_ops = ops;
David S. Millerf4530fa2012-07-05 22:13:13 -0700421 net->ipv4.fib_has_custom_rules = false;
Roopa Prabhue37b1e92018-02-28 22:42:41 -0500422 net->ipv4.fib_rules_require_fldissect = 0;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800423 return 0;
424
425fail:
426 /* also cleans all rules already added */
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800427 fib_rules_unregister(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800428 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -0800430
431void __net_exit fib4_rules_exit(struct net *net)
432{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800433 fib_rules_unregister(net->ipv4.rules_ops);
Denis V. Lunev7b1a74fd2008-01-10 03:22:17 -0800434}