xref: /openbmc/linux/net/ipv4/fib_rules.c (revision 4a2d73a4fb36ed4d73967bd3892cfab014a52ab2)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * INET		An implementation of the TCP/IP protocol suite for the LINUX
31da177e4SLinus Torvalds  *		operating system.  INET is implemented using the  BSD Socket
41da177e4SLinus Torvalds  *		interface as the means of communication with the user level.
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *		IPv4 Forwarding Information Base: policy rules.
71da177e4SLinus Torvalds  *
81da177e4SLinus Torvalds  * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
9e1ef4bf2SThomas Graf  *		Thomas Graf <tgraf@suug.ch>
101da177e4SLinus Torvalds  *
111da177e4SLinus Torvalds  *		This program is free software; you can redistribute it and/or
121da177e4SLinus Torvalds  *		modify it under the terms of the GNU General Public License
131da177e4SLinus Torvalds  *		as published by the Free Software Foundation; either version
141da177e4SLinus Torvalds  *		2 of the License, or (at your option) any later version.
151da177e4SLinus Torvalds  *
161da177e4SLinus Torvalds  * Fixes:
171da177e4SLinus Torvalds  *		Rani Assaf	:	local_rule cannot be deleted
181da177e4SLinus Torvalds  *		Marc Boucher	:	routing by fwmark
191da177e4SLinus Torvalds  */
201da177e4SLinus Torvalds 
211da177e4SLinus Torvalds #include <linux/types.h>
221da177e4SLinus Torvalds #include <linux/kernel.h>
231da177e4SLinus Torvalds #include <linux/netdevice.h>
241da177e4SLinus Torvalds #include <linux/netlink.h>
25e1ef4bf2SThomas Graf #include <linux/inetdevice.h>
261da177e4SLinus Torvalds #include <linux/init.h>
277b204afdSRobert Olsson #include <linux/list.h>
287b204afdSRobert Olsson #include <linux/rcupdate.h>
29bc3b2d7fSPaul Gortmaker #include <linux/export.h>
301da177e4SLinus Torvalds #include <net/ip.h>
311da177e4SLinus Torvalds #include <net/route.h>
321da177e4SLinus Torvalds #include <net/tcp.h>
331da177e4SLinus Torvalds #include <net/ip_fib.h>
34e1ef4bf2SThomas Graf #include <net/fib_rules.h>
351da177e4SLinus Torvalds 
366a31d2a9SEric Dumazet struct fib4_rule {
37e1ef4bf2SThomas Graf 	struct fib_rule		common;
38e1ef4bf2SThomas Graf 	u8			dst_len;
39e1ef4bf2SThomas Graf 	u8			src_len;
40e1ef4bf2SThomas Graf 	u8			tos;
4181f7bf6cSAl Viro 	__be32			src;
4281f7bf6cSAl Viro 	__be32			srcmask;
4381f7bf6cSAl Viro 	__be32			dst;
4481f7bf6cSAl Viro 	__be32			dstmask;
45c7066f70SPatrick McHardy #ifdef CONFIG_IP_ROUTE_CLASSID
46e1ef4bf2SThomas Graf 	u32			tclassid;
471da177e4SLinus Torvalds #endif
481da177e4SLinus Torvalds };
491da177e4SLinus Torvalds 
503c71006dSIdo Schimmel static bool fib4_rule_matchall(const struct fib_rule *rule)
513c71006dSIdo Schimmel {
523c71006dSIdo Schimmel 	struct fib4_rule *r = container_of(rule, struct fib4_rule, common);
533c71006dSIdo Schimmel 
543c71006dSIdo Schimmel 	if (r->dst_len || r->src_len || r->tos)
553c71006dSIdo Schimmel 		return false;
563c71006dSIdo Schimmel 	return fib_rule_matchall(rule);
573c71006dSIdo Schimmel }
583c71006dSIdo Schimmel 
593c71006dSIdo Schimmel bool fib4_rule_default(const struct fib_rule *rule)
603c71006dSIdo Schimmel {
613c71006dSIdo Schimmel 	if (!fib4_rule_matchall(rule) || rule->action != FR_ACT_TO_TBL ||
623c71006dSIdo Schimmel 	    rule->l3mdev)
633c71006dSIdo Schimmel 		return false;
643c71006dSIdo Schimmel 	if (rule->table != RT_TABLE_LOCAL && rule->table != RT_TABLE_MAIN &&
653c71006dSIdo Schimmel 	    rule->table != RT_TABLE_DEFAULT)
663c71006dSIdo Schimmel 		return false;
673c71006dSIdo Schimmel 	return true;
683c71006dSIdo Schimmel }
693c71006dSIdo Schimmel EXPORT_SYMBOL_GPL(fib4_rule_default);
703c71006dSIdo Schimmel 
711b2a4440SIdo Schimmel int fib4_rules_dump(struct net *net, struct notifier_block *nb)
721b2a4440SIdo Schimmel {
731b2a4440SIdo Schimmel 	return fib_rules_dump(net, nb, AF_INET);
741b2a4440SIdo Schimmel }
751b2a4440SIdo Schimmel 
761b2a4440SIdo Schimmel unsigned int fib4_rules_seq_read(struct net *net)
771b2a4440SIdo Schimmel {
781b2a4440SIdo Schimmel 	return fib_rules_seq_read(net, AF_INET);
791b2a4440SIdo Schimmel }
801b2a4440SIdo Schimmel 
810eeb075fSAndy Gospodarek int __fib_lookup(struct net *net, struct flowi4 *flp,
820eeb075fSAndy Gospodarek 		 struct fib_result *res, unsigned int flags)
83e1ef4bf2SThomas Graf {
84e1ef4bf2SThomas Graf 	struct fib_lookup_arg arg = {
85e1ef4bf2SThomas Graf 		.result = res,
860eeb075fSAndy Gospodarek 		.flags = flags,
87e1ef4bf2SThomas Graf 	};
88e1ef4bf2SThomas Graf 	int err;
89e1ef4bf2SThomas Graf 
909ee0034bSDavid Ahern 	/* update flow if oif or iif point to device enslaved to l3mdev */
919ee0034bSDavid Ahern 	l3mdev_update_flow(net, flowi4_to_flowi(flp));
929ee0034bSDavid Ahern 
9322bd5b9bSDavid S. Miller 	err = fib_rules_lookup(net->ipv4.rules_ops, flowi4_to_flowi(flp), 0, &arg);
9485b91b03SDavid S. Miller #ifdef CONFIG_IP_ROUTE_CLASSID
9585b91b03SDavid S. Miller 	if (arg.rule)
9685b91b03SDavid S. Miller 		res->tclassid = ((struct fib4_rule *)arg.rule)->tclassid;
9785b91b03SDavid S. Miller 	else
9885b91b03SDavid S. Miller 		res->tclassid = 0;
9985b91b03SDavid S. Miller #endif
10049dd18baSPanu Matilainen 
10149dd18baSPanu Matilainen 	if (err == -ESRCH)
10249dd18baSPanu Matilainen 		err = -ENETUNREACH;
10349dd18baSPanu Matilainen 
1041da177e4SLinus Torvalds 	return err;
1051da177e4SLinus Torvalds }
106f4530fa5SDavid S. Miller EXPORT_SYMBOL_GPL(__fib_lookup);
1071da177e4SLinus Torvalds 
1088ce11e6aSAdrian Bunk static int fib4_rule_action(struct fib_rule *rule, struct flowi *flp,
1098ce11e6aSAdrian Bunk 			    int flags, struct fib_lookup_arg *arg)
110e1ef4bf2SThomas Graf {
111e1ef4bf2SThomas Graf 	int err = -EAGAIN;
112e1ef4bf2SThomas Graf 	struct fib_table *tbl;
11396c63fa7SDavid Ahern 	u32 tb_id;
114e1ef4bf2SThomas Graf 
115e1ef4bf2SThomas Graf 	switch (rule->action) {
116e1ef4bf2SThomas Graf 	case FR_ACT_TO_TBL:
117e1ef4bf2SThomas Graf 		break;
118e1ef4bf2SThomas Graf 
119e1ef4bf2SThomas Graf 	case FR_ACT_UNREACHABLE:
120345e9b54SAlexander Duyck 		return -ENETUNREACH;
121e1ef4bf2SThomas Graf 
122e1ef4bf2SThomas Graf 	case FR_ACT_PROHIBIT:
123345e9b54SAlexander Duyck 		return -EACCES;
124e1ef4bf2SThomas Graf 
125e1ef4bf2SThomas Graf 	case FR_ACT_BLACKHOLE:
126e1ef4bf2SThomas Graf 	default:
127345e9b54SAlexander Duyck 		return -EINVAL;
128e1ef4bf2SThomas Graf 	}
129e1ef4bf2SThomas Graf 
130345e9b54SAlexander Duyck 	rcu_read_lock();
131e1ef4bf2SThomas Graf 
13296c63fa7SDavid Ahern 	tb_id = fib_rule_get_table(rule, arg);
13396c63fa7SDavid Ahern 	tbl = fib_get_table(rule->fr_net, tb_id);
134345e9b54SAlexander Duyck 	if (tbl)
135345e9b54SAlexander Duyck 		err = fib_table_lookup(tbl, &flp->u.ip4,
136345e9b54SAlexander Duyck 				       (struct fib_result *)arg->result,
137345e9b54SAlexander Duyck 				       arg->flags);
138345e9b54SAlexander Duyck 
139345e9b54SAlexander Duyck 	rcu_read_unlock();
140e1ef4bf2SThomas Graf 	return err;
141e1ef4bf2SThomas Graf }
142e1ef4bf2SThomas Graf 
1437764a45aSStefan Tomanek static bool fib4_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
1447764a45aSStefan Tomanek {
1456ef94cfaSStefan Tomanek 	struct fib_result *result = (struct fib_result *) arg->result;
146673498b8SStefan Tomanek 	struct net_device *dev = NULL;
147673498b8SStefan Tomanek 
148673498b8SStefan Tomanek 	if (result->fi)
149673498b8SStefan Tomanek 		dev = result->fi->fib_dev;
1506ef94cfaSStefan Tomanek 
1517764a45aSStefan Tomanek 	/* do not accept result if the route does
1527764a45aSStefan Tomanek 	 * not meet the required prefix length
1537764a45aSStefan Tomanek 	 */
15473f5698eSStefan Tomanek 	if (result->prefixlen <= rule->suppress_prefixlen)
1556ef94cfaSStefan Tomanek 		goto suppress_route;
1566ef94cfaSStefan Tomanek 
1576ef94cfaSStefan Tomanek 	/* do not accept result if the route uses a device
1586ef94cfaSStefan Tomanek 	 * belonging to a forbidden interface group
1596ef94cfaSStefan Tomanek 	 */
1606ef94cfaSStefan Tomanek 	if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
1616ef94cfaSStefan Tomanek 		goto suppress_route;
1626ef94cfaSStefan Tomanek 
1636ef94cfaSStefan Tomanek 	return false;
1646ef94cfaSStefan Tomanek 
1656ef94cfaSStefan Tomanek suppress_route:
1667764a45aSStefan Tomanek 	if (!(arg->flags & FIB_LOOKUP_NOREF))
1677764a45aSStefan Tomanek 		fib_info_put(result->fi);
1687764a45aSStefan Tomanek 	return true;
1697764a45aSStefan Tomanek }
170e1ef4bf2SThomas Graf 
171e1ef4bf2SThomas Graf static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
172e1ef4bf2SThomas Graf {
173e1ef4bf2SThomas Graf 	struct fib4_rule *r = (struct fib4_rule *) rule;
1749ade2286SDavid S. Miller 	struct flowi4 *fl4 = &fl->u.ip4;
1759ade2286SDavid S. Miller 	__be32 daddr = fl4->daddr;
1769ade2286SDavid S. Miller 	__be32 saddr = fl4->saddr;
177e1ef4bf2SThomas Graf 
178e1ef4bf2SThomas Graf 	if (((saddr ^ r->src) & r->srcmask) ||
179e1ef4bf2SThomas Graf 	    ((daddr ^ r->dst) & r->dstmask))
180e1ef4bf2SThomas Graf 		return 0;
181e1ef4bf2SThomas Graf 
1829ade2286SDavid S. Miller 	if (r->tos && (r->tos != fl4->flowi4_tos))
183e1ef4bf2SThomas Graf 		return 0;
184e1ef4bf2SThomas Graf 
185*4a2d73a4SRoopa Prabhu 	if (rule->ip_proto && (rule->ip_proto != fl4->flowi4_proto))
186*4a2d73a4SRoopa Prabhu 		return 0;
187*4a2d73a4SRoopa Prabhu 
188*4a2d73a4SRoopa Prabhu 	if (fib_rule_port_range_set(&rule->sport_range) &&
189*4a2d73a4SRoopa Prabhu 	    !fib_rule_port_inrange(&rule->sport_range, fl4->fl4_sport))
190*4a2d73a4SRoopa Prabhu 		return 0;
191*4a2d73a4SRoopa Prabhu 
192*4a2d73a4SRoopa Prabhu 	if (fib_rule_port_range_set(&rule->dport_range) &&
193*4a2d73a4SRoopa Prabhu 	    !fib_rule_port_inrange(&rule->dport_range, fl4->fl4_dport))
194*4a2d73a4SRoopa Prabhu 		return 0;
195*4a2d73a4SRoopa Prabhu 
196e1ef4bf2SThomas Graf 	return 1;
197e1ef4bf2SThomas Graf }
1981da177e4SLinus Torvalds 
1998ad4942cSDenis V. Lunev static struct fib_table *fib_empty_table(struct net *net)
2001da177e4SLinus Torvalds {
2012dfe55b4SPatrick McHardy 	u32 id;
2021da177e4SLinus Torvalds 
2031da177e4SLinus Torvalds 	for (id = 1; id <= RT_TABLE_MAX; id++)
20451456b29SIan Morris 		if (!fib_get_table(net, id))
2058ad4942cSDenis V. Lunev 			return fib_new_table(net, id);
2061da177e4SLinus Torvalds 	return NULL;
2071da177e4SLinus Torvalds }
2081da177e4SLinus Torvalds 
209ef7c79edSPatrick McHardy static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
2101f6c9557SThomas Graf 	FRA_GENERIC_POLICY,
211e1ef4bf2SThomas Graf 	[FRA_FLOW]	= { .type = NLA_U32 },
2121da177e4SLinus Torvalds };
2131da177e4SLinus Torvalds 
214e1ef4bf2SThomas Graf static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
2158b3521eeSRami Rosen 			       struct fib_rule_hdr *frh,
216e1ef4bf2SThomas Graf 			       struct nlattr **tb)
2171da177e4SLinus Torvalds {
2183b1e0a65SYOSHIFUJI Hideaki 	struct net *net = sock_net(skb->sk);
219e1ef4bf2SThomas Graf 	int err = -EINVAL;
220e1ef4bf2SThomas Graf 	struct fib4_rule *rule4 = (struct fib4_rule *) rule;
2211da177e4SLinus Torvalds 
222e1701c68SThomas Graf 	if (frh->tos & ~IPTOS_TOS_MASK)
223e1ef4bf2SThomas Graf 		goto errout;
224e1ef4bf2SThomas Graf 
2250ddcf43dSAlexander Duyck 	/* split local/main if they are not already split */
2260ddcf43dSAlexander Duyck 	err = fib_unmerge(net);
2270ddcf43dSAlexander Duyck 	if (err)
2280ddcf43dSAlexander Duyck 		goto errout;
2290ddcf43dSAlexander Duyck 
23096c63fa7SDavid Ahern 	if (rule->table == RT_TABLE_UNSPEC && !rule->l3mdev) {
231e1ef4bf2SThomas Graf 		if (rule->action == FR_ACT_TO_TBL) {
232e1ef4bf2SThomas Graf 			struct fib_table *table;
233e1ef4bf2SThomas Graf 
234e4e4971cSDenis V. Lunev 			table = fib_empty_table(net);
23551456b29SIan Morris 			if (!table) {
236e1ef4bf2SThomas Graf 				err = -ENOBUFS;
237e1ef4bf2SThomas Graf 				goto errout;
238e1ef4bf2SThomas Graf 			}
239e1ef4bf2SThomas Graf 
240e1ef4bf2SThomas Graf 			rule->table = table->tb_id;
241e1ef4bf2SThomas Graf 		}
242e1ef4bf2SThomas Graf 	}
243e1ef4bf2SThomas Graf 
244e1701c68SThomas Graf 	if (frh->src_len)
24567b61f6cSJiri Benc 		rule4->src = nla_get_in_addr(tb[FRA_SRC]);
246e1ef4bf2SThomas Graf 
247e1701c68SThomas Graf 	if (frh->dst_len)
24867b61f6cSJiri Benc 		rule4->dst = nla_get_in_addr(tb[FRA_DST]);
249e1ef4bf2SThomas Graf 
250c7066f70SPatrick McHardy #ifdef CONFIG_IP_ROUTE_CLASSID
2517a9bc9b8SDavid S. Miller 	if (tb[FRA_FLOW]) {
252e1ef4bf2SThomas Graf 		rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
2537a9bc9b8SDavid S. Miller 		if (rule4->tclassid)
254f4530fa5SDavid S. Miller 			net->ipv4.fib_num_tclassid_users++;
2557a9bc9b8SDavid S. Miller 	}
2561da177e4SLinus Torvalds #endif
2571da177e4SLinus Torvalds 
258e1ef4bf2SThomas Graf 	rule4->src_len = frh->src_len;
259e1ef4bf2SThomas Graf 	rule4->srcmask = inet_make_mask(rule4->src_len);
260e1ef4bf2SThomas Graf 	rule4->dst_len = frh->dst_len;
261e1ef4bf2SThomas Graf 	rule4->dstmask = inet_make_mask(rule4->dst_len);
262e1ef4bf2SThomas Graf 	rule4->tos = frh->tos;
263e1ef4bf2SThomas Graf 
264f4530fa5SDavid S. Miller 	net->ipv4.fib_has_custom_rules = true;
265104616e7SScott Feldman 
266e1ef4bf2SThomas Graf 	err = 0;
267e1ef4bf2SThomas Graf errout:
268e1ef4bf2SThomas Graf 	return err;
2691da177e4SLinus Torvalds }
2701da177e4SLinus Torvalds 
2710ddcf43dSAlexander Duyck static int fib4_rule_delete(struct fib_rule *rule)
2727a9bc9b8SDavid S. Miller {
273f4530fa5SDavid S. Miller 	struct net *net = rule->fr_net;
2740ddcf43dSAlexander Duyck 	int err;
2757a9bc9b8SDavid S. Miller 
2760ddcf43dSAlexander Duyck 	/* split local/main if they are not already split */
2770ddcf43dSAlexander Duyck 	err = fib_unmerge(net);
2780ddcf43dSAlexander Duyck 	if (err)
2790ddcf43dSAlexander Duyck 		goto errout;
2800ddcf43dSAlexander Duyck 
2810ddcf43dSAlexander Duyck #ifdef CONFIG_IP_ROUTE_CLASSID
2820ddcf43dSAlexander Duyck 	if (((struct fib4_rule *)rule)->tclassid)
283f4530fa5SDavid S. Miller 		net->ipv4.fib_num_tclassid_users--;
2847a9bc9b8SDavid S. Miller #endif
285f4530fa5SDavid S. Miller 	net->ipv4.fib_has_custom_rules = true;
2860ddcf43dSAlexander Duyck errout:
2870ddcf43dSAlexander Duyck 	return err;
2887a9bc9b8SDavid S. Miller }
2897a9bc9b8SDavid S. Miller 
290e1ef4bf2SThomas Graf static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
291e1ef4bf2SThomas Graf 			     struct nlattr **tb)
292a5cdc030SPatrick McHardy {
293e1ef4bf2SThomas Graf 	struct fib4_rule *rule4 = (struct fib4_rule *) rule;
294a5cdc030SPatrick McHardy 
295e1ef4bf2SThomas Graf 	if (frh->src_len && (rule4->src_len != frh->src_len))
296e1ef4bf2SThomas Graf 		return 0;
297e1ef4bf2SThomas Graf 
298e1ef4bf2SThomas Graf 	if (frh->dst_len && (rule4->dst_len != frh->dst_len))
299e1ef4bf2SThomas Graf 		return 0;
300e1ef4bf2SThomas Graf 
301e1ef4bf2SThomas Graf 	if (frh->tos && (rule4->tos != frh->tos))
302e1ef4bf2SThomas Graf 		return 0;
303e1ef4bf2SThomas Graf 
304c7066f70SPatrick McHardy #ifdef CONFIG_IP_ROUTE_CLASSID
305e1ef4bf2SThomas Graf 	if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
306e1ef4bf2SThomas Graf 		return 0;
307e1ef4bf2SThomas Graf #endif
308e1ef4bf2SThomas Graf 
30967b61f6cSJiri Benc 	if (frh->src_len && (rule4->src != nla_get_in_addr(tb[FRA_SRC])))
310e1ef4bf2SThomas Graf 		return 0;
311e1ef4bf2SThomas Graf 
31267b61f6cSJiri Benc 	if (frh->dst_len && (rule4->dst != nla_get_in_addr(tb[FRA_DST])))
313e1ef4bf2SThomas Graf 		return 0;
314e1ef4bf2SThomas Graf 
315e1ef4bf2SThomas Graf 	return 1;
316a5cdc030SPatrick McHardy }
317a5cdc030SPatrick McHardy 
318e1ef4bf2SThomas Graf static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
31904af8cf6SRami Rosen 			  struct fib_rule_hdr *frh)
3201da177e4SLinus Torvalds {
321e1ef4bf2SThomas Graf 	struct fib4_rule *rule4 = (struct fib4_rule *) rule;
3221da177e4SLinus Torvalds 
323e1ef4bf2SThomas Graf 	frh->dst_len = rule4->dst_len;
324e1ef4bf2SThomas Graf 	frh->src_len = rule4->src_len;
325e1ef4bf2SThomas Graf 	frh->tos = rule4->tos;
3261da177e4SLinus Torvalds 
327f3756b79SDavid S. Miller 	if ((rule4->dst_len &&
328930345eaSJiri Benc 	     nla_put_in_addr(skb, FRA_DST, rule4->dst)) ||
329f3756b79SDavid S. Miller 	    (rule4->src_len &&
330930345eaSJiri Benc 	     nla_put_in_addr(skb, FRA_SRC, rule4->src)))
331f3756b79SDavid S. Miller 		goto nla_put_failure;
332c7066f70SPatrick McHardy #ifdef CONFIG_IP_ROUTE_CLASSID
333f3756b79SDavid S. Miller 	if (rule4->tclassid &&
334f3756b79SDavid S. Miller 	    nla_put_u32(skb, FRA_FLOW, rule4->tclassid))
335f3756b79SDavid S. Miller 		goto nla_put_failure;
336e1ef4bf2SThomas Graf #endif
337e1ef4bf2SThomas Graf 	return 0;
338e1ef4bf2SThomas Graf 
339e1ef4bf2SThomas Graf nla_put_failure:
340e1ef4bf2SThomas Graf 	return -ENOBUFS;
3411da177e4SLinus Torvalds }
3421da177e4SLinus Torvalds 
343339bf98fSThomas Graf static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
344339bf98fSThomas Graf {
345339bf98fSThomas Graf 	return nla_total_size(4) /* dst */
346339bf98fSThomas Graf 	       + nla_total_size(4) /* src */
347339bf98fSThomas Graf 	       + nla_total_size(4); /* flow */
348339bf98fSThomas Graf }
349339bf98fSThomas Graf 
350ae299fc0SDenis V. Lunev static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
35173417f61SThomas Graf {
352bafa6d9dSNicolas Dichtel 	rt_cache_flush(ops->fro_net);
35373417f61SThomas Graf }
35473417f61SThomas Graf 
35504a6f82cSAndi Kleen static const struct fib_rules_ops __net_initconst fib4_rules_ops_template = {
35625239ceeSPatrick McHardy 	.family		= AF_INET,
357e1ef4bf2SThomas Graf 	.rule_size	= sizeof(struct fib4_rule),
358e1701c68SThomas Graf 	.addr_size	= sizeof(u32),
359e1ef4bf2SThomas Graf 	.action		= fib4_rule_action,
3607764a45aSStefan Tomanek 	.suppress	= fib4_rule_suppress,
361e1ef4bf2SThomas Graf 	.match		= fib4_rule_match,
362e1ef4bf2SThomas Graf 	.configure	= fib4_rule_configure,
3637a9bc9b8SDavid S. Miller 	.delete		= fib4_rule_delete,
364e1ef4bf2SThomas Graf 	.compare	= fib4_rule_compare,
365e1ef4bf2SThomas Graf 	.fill		= fib4_rule_fill,
366339bf98fSThomas Graf 	.nlmsg_payload	= fib4_rule_nlmsg_payload,
36773417f61SThomas Graf 	.flush_cache	= fib4_rule_flush_cache,
368e1ef4bf2SThomas Graf 	.nlgroup	= RTNLGRP_IPV4_RULE,
369e1ef4bf2SThomas Graf 	.policy		= fib4_rule_policy,
370e1ef4bf2SThomas Graf 	.owner		= THIS_MODULE,
371e1ef4bf2SThomas Graf };
372e1ef4bf2SThomas Graf 
373e4e4971cSDenis V. Lunev static int fib_default_rules_init(struct fib_rules_ops *ops)
3742994c638SDenis V. Lunev {
3752994c638SDenis V. Lunev 	int err;
3762994c638SDenis V. Lunev 
3775adef180SPatrick McHardy 	err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
3782994c638SDenis V. Lunev 	if (err < 0)
3792994c638SDenis V. Lunev 		return err;
380e4e4971cSDenis V. Lunev 	err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
3812994c638SDenis V. Lunev 	if (err < 0)
3822994c638SDenis V. Lunev 		return err;
383e4e4971cSDenis V. Lunev 	err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
3842994c638SDenis V. Lunev 	if (err < 0)
3852994c638SDenis V. Lunev 		return err;
3862994c638SDenis V. Lunev 	return 0;
3872994c638SDenis V. Lunev }
3882994c638SDenis V. Lunev 
3897b1a74fdSDenis V. Lunev int __net_init fib4_rules_init(struct net *net)
390e1ef4bf2SThomas Graf {
391dbb50165SDenis V. Lunev 	int err;
392e4e4971cSDenis V. Lunev 	struct fib_rules_ops *ops;
393dbb50165SDenis V. Lunev 
394e9c5158aSEric W. Biederman 	ops = fib_rules_register(&fib4_rules_ops_template, net);
395e9c5158aSEric W. Biederman 	if (IS_ERR(ops))
396e9c5158aSEric W. Biederman 		return PTR_ERR(ops);
397e4e4971cSDenis V. Lunev 
398e4e4971cSDenis V. Lunev 	err = fib_default_rules_init(ops);
399dbb50165SDenis V. Lunev 	if (err < 0)
400dbb50165SDenis V. Lunev 		goto fail;
401e4e4971cSDenis V. Lunev 	net->ipv4.rules_ops = ops;
402f4530fa5SDavid S. Miller 	net->ipv4.fib_has_custom_rules = false;
403dbb50165SDenis V. Lunev 	return 0;
404dbb50165SDenis V. Lunev 
405dbb50165SDenis V. Lunev fail:
406dbb50165SDenis V. Lunev 	/* also cleans all rules already added */
4079e3a5487SDenis V. Lunev 	fib_rules_unregister(ops);
408dbb50165SDenis V. Lunev 	return err;
409e1ef4bf2SThomas Graf }
4107b1a74fdSDenis V. Lunev 
4117b1a74fdSDenis V. Lunev void __net_exit fib4_rules_exit(struct net *net)
4127b1a74fdSDenis V. Lunev {
4139e3a5487SDenis V. Lunev 	fib_rules_unregister(net->ipv4.rules_ops);
4147b1a74fdSDenis V. Lunev }
415