blob: fafe556d21e0e4d82a165faa6b89cf47e8aa483c [file] [log] [blame]
Thomas Gleixnera10e7632019-05-31 01:09:32 -07001// SPDX-License-Identifier: GPL-2.0-only
Thomas Graf101367c2006-08-04 03:39:02 -07002/*
3 * net/ipv6/fib6_rules.c IPv6 Routing Policy Rules
4 *
5 * Copyright (C)2003-2006 Helsinki University of Technology
6 * Copyright (C)2003-2006 USAGI/WIDE Project
7 *
Thomas Graf101367c2006-08-04 03:39:02 -07008 * Authors
9 * Thomas Graf <tgraf@suug.ch>
10 * Ville Nuorvala <vnuorval@tcs.hut.fi>
11 */
12
Thomas Graf101367c2006-08-04 03:39:02 -070013#include <linux/netdevice.h>
Ido Schimmeldcb18f72017-08-03 13:28:18 +020014#include <linux/notifier.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040015#include <linux/export.h>
Thomas Graf101367c2006-08-04 03:39:02 -070016
17#include <net/fib_rules.h>
18#include <net/ipv6.h>
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -070019#include <net/addrconf.h>
Thomas Graf101367c2006-08-04 03:39:02 -070020#include <net/ip6_route.h>
21#include <net/netlink.h>
22
Eldad Zack911c8542012-04-01 07:49:06 +000023struct fib6_rule {
Thomas Graf101367c2006-08-04 03:39:02 -070024 struct fib_rule common;
25 struct rt6key src;
26 struct rt6key dst;
27 u8 tclass;
28};
29
Ido Schimmele3ea9732017-08-03 13:28:15 +020030static bool fib6_rule_matchall(const struct fib_rule *rule)
31{
32 struct fib6_rule *r = container_of(rule, struct fib6_rule, common);
33
34 if (r->dst.plen || r->src.plen || r->tclass)
35 return false;
36 return fib_rule_matchall(rule);
37}
38
39bool fib6_rule_default(const struct fib_rule *rule)
40{
41 if (!fib6_rule_matchall(rule) || rule->action != FR_ACT_TO_TBL ||
42 rule->l3mdev)
43 return false;
44 if (rule->table != RT6_TABLE_LOCAL && rule->table != RT6_TABLE_MAIN)
45 return false;
46 return true;
47}
48EXPORT_SYMBOL_GPL(fib6_rule_default);
49
Jiri Pirkob7a59552019-10-03 11:49:30 +020050int fib6_rules_dump(struct net *net, struct notifier_block *nb,
51 struct netlink_ext_ack *extack)
Ido Schimmeldcb18f72017-08-03 13:28:18 +020052{
Jiri Pirkob7a59552019-10-03 11:49:30 +020053 return fib_rules_dump(net, nb, AF_INET6, extack);
Ido Schimmeldcb18f72017-08-03 13:28:18 +020054}
55
56unsigned int fib6_rules_seq_read(struct net *net)
57{
58 return fib_rules_seq_read(net, AF_INET6);
59}
60
David Ahern138118e2018-05-09 20:34:23 -070061/* called with rcu lock held; no reference taken on fib6_info */
David Aherneffda4d2019-04-16 14:36:10 -070062int fib6_lookup(struct net *net, int oif, struct flowi6 *fl6,
63 struct fib6_result *res, int flags)
David Ahern138118e2018-05-09 20:34:23 -070064{
David Ahern138118e2018-05-09 20:34:23 -070065 int err;
66
67 if (net->ipv6.fib6_has_custom_rules) {
68 struct fib_lookup_arg arg = {
69 .lookup_ptr = fib6_table_lookup,
70 .lookup_data = &oif,
David Aherneffda4d2019-04-16 14:36:10 -070071 .result = res,
David Ahern138118e2018-05-09 20:34:23 -070072 .flags = FIB_LOOKUP_NOREF,
73 };
74
75 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
76
77 err = fib_rules_lookup(net->ipv6.fib6_rules_ops,
78 flowi6_to_flowi(fl6), flags, &arg);
David Ahern138118e2018-05-09 20:34:23 -070079 } else {
David Aherneffda4d2019-04-16 14:36:10 -070080 err = fib6_table_lookup(net, net->ipv6.fib6_local_tbl, oif,
81 fl6, res, flags);
82 if (err || res->f6i == net->ipv6.fib6_null_entry)
83 err = fib6_table_lookup(net, net->ipv6.fib6_main_tbl,
84 oif, fl6, res, flags);
David Ahern138118e2018-05-09 20:34:23 -070085 }
86
David Aherneffda4d2019-04-16 14:36:10 -070087 return err;
David Ahern138118e2018-05-09 20:34:23 -070088}
89
David S. Miller4c9483b2011-03-12 16:22:43 -050090struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -080091 const struct sk_buff *skb,
Daniel Lezcano58f09b72008-03-03 23:25:27 -080092 int flags, pol_lookup_t lookup)
Thomas Graf101367c2006-08-04 03:39:02 -070093{
Vincent Bernatfeca7d82017-08-08 20:23:49 +020094 if (net->ipv6.fib6_has_custom_rules) {
David Aherna65120b2019-04-23 18:05:33 -070095 struct fib6_result res = {};
Vincent Bernatfeca7d82017-08-08 20:23:49 +020096 struct fib_lookup_arg arg = {
97 .lookup_ptr = lookup,
David Ahernb75cc8f2018-03-02 08:32:17 -080098 .lookup_data = skb,
David Aherna65120b2019-04-23 18:05:33 -070099 .result = &res,
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200100 .flags = FIB_LOOKUP_NOREF,
101 };
Thomas Graf101367c2006-08-04 03:39:02 -0700102
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200103 /* update flow if oif or iif point to device enslaved to l3mdev */
104 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
David Ahern9ee00342016-09-10 12:09:52 -0700105
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200106 fib_rules_lookup(net->ipv6.fib6_rules_ops,
107 flowi6_to_flowi(fl6), flags, &arg);
Thomas Graf101367c2006-08-04 03:39:02 -0700108
David Aherna65120b2019-04-23 18:05:33 -0700109 if (res.rt6)
110 return &res.rt6->dst;
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200111 } else {
112 struct rt6_info *rt;
113
David Ahernb75cc8f2018-03-02 08:32:17 -0800114 rt = lookup(net, net->ipv6.fib6_local_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200115 if (rt != net->ipv6.ip6_null_entry && rt->dst.error != -EAGAIN)
116 return &rt->dst;
Wei Wangd64a1f52019-06-20 17:36:39 -0700117 ip6_rt_put_flags(rt, flags);
David Ahernb75cc8f2018-03-02 08:32:17 -0800118 rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200119 if (rt->dst.error != -EAGAIN)
120 return &rt->dst;
Wei Wangd64a1f52019-06-20 17:36:39 -0700121 ip6_rt_put_flags(rt, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200122 }
Ville Nuorvalab1429552006-08-08 16:44:17 -0700123
Wei Wangd64a1f52019-06-20 17:36:39 -0700124 if (!(flags & RT6_LOOKUP_F_DST_NOREF))
125 dst_hold(&net->ipv6.ip6_null_entry->dst);
Serhey Popovych07f61552017-06-20 13:29:25 +0300126 return &net->ipv6.ip6_null_entry->dst;
Thomas Graf101367c2006-08-04 03:39:02 -0700127}
128
David Aherncc065a92018-05-09 20:34:22 -0700129static int fib6_rule_saddr(struct net *net, struct fib_rule *rule, int flags,
130 struct flowi6 *flp6, const struct net_device *dev)
131{
132 struct fib6_rule *r = (struct fib6_rule *)rule;
133
134 /* If we need to find a source address for this traffic,
135 * we check the result if it meets requirement of the rule.
136 */
137 if ((rule->flags & FIB_RULE_FIND_SADDR) &&
138 r->src.plen && !(flags & RT6_LOOKUP_F_HAS_SADDR)) {
139 struct in6_addr saddr;
140
141 if (ipv6_dev_get_saddr(net, dev, &flp6->daddr,
142 rt6_flags2srcprefs(flags), &saddr))
143 return -EAGAIN;
144
145 if (!ipv6_prefix_equal(&saddr, &r->src.addr, r->src.plen))
146 return -EAGAIN;
147
148 flp6->saddr = saddr;
149 }
150
151 return 0;
152}
153
David Ahern138118e2018-05-09 20:34:23 -0700154static int fib6_rule_action_alt(struct fib_rule *rule, struct flowi *flp,
155 int flags, struct fib_lookup_arg *arg)
156{
David Aherneffda4d2019-04-16 14:36:10 -0700157 struct fib6_result *res = arg->result;
David Ahern138118e2018-05-09 20:34:23 -0700158 struct flowi6 *flp6 = &flp->u.ip6;
159 struct net *net = rule->fr_net;
160 struct fib6_table *table;
David Ahernb2f97f72019-04-23 18:06:30 -0700161 int err, *oif;
David Ahern138118e2018-05-09 20:34:23 -0700162 u32 tb_id;
163
164 switch (rule->action) {
165 case FR_ACT_TO_TBL:
166 break;
167 case FR_ACT_UNREACHABLE:
168 return -ENETUNREACH;
169 case FR_ACT_PROHIBIT:
170 return -EACCES;
171 case FR_ACT_BLACKHOLE:
172 default:
173 return -EINVAL;
174 }
175
176 tb_id = fib_rule_get_table(rule, arg);
177 table = fib6_get_table(net, tb_id);
178 if (!table)
179 return -EAGAIN;
180
181 oif = (int *)arg->lookup_data;
David Aherneffda4d2019-04-16 14:36:10 -0700182 err = fib6_table_lookup(net, table, *oif, flp6, res, flags);
183 if (!err && res->f6i != net->ipv6.fib6_null_entry)
David Ahern138118e2018-05-09 20:34:23 -0700184 err = fib6_rule_saddr(net, rule, flags, flp6,
David Aherneffda4d2019-04-16 14:36:10 -0700185 res->nh->fib_nh_dev);
David Ahernb2f97f72019-04-23 18:06:30 -0700186 else
187 err = -EAGAIN;
David Ahern138118e2018-05-09 20:34:23 -0700188
189 return err;
190}
191
192static int __fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
193 int flags, struct fib_lookup_arg *arg)
Thomas Graf101367c2006-08-04 03:39:02 -0700194{
David Aherna65120b2019-04-23 18:05:33 -0700195 struct fib6_result *res = arg->result;
David S. Miller4c9483b2011-03-12 16:22:43 -0500196 struct flowi6 *flp6 = &flp->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700197 struct rt6_info *rt = NULL;
198 struct fib6_table *table;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800199 struct net *net = rule->fr_net;
Thomas Graf101367c2006-08-04 03:39:02 -0700200 pol_lookup_t lookup = arg->lookup_ptr;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200201 int err = 0;
David Ahern96c63fa2016-06-08 10:55:39 -0700202 u32 tb_id;
Thomas Graf101367c2006-08-04 03:39:02 -0700203
204 switch (rule->action) {
205 case FR_ACT_TO_TBL:
206 break;
207 case FR_ACT_UNREACHABLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200208 err = -ENETUNREACH;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800209 rt = net->ipv6.ip6_null_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700210 goto discard_pkt;
211 default:
212 case FR_ACT_BLACKHOLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200213 err = -EINVAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800214 rt = net->ipv6.ip6_blk_hole_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700215 goto discard_pkt;
216 case FR_ACT_PROHIBIT:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200217 err = -EACCES;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800218 rt = net->ipv6.ip6_prohibit_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700219 goto discard_pkt;
220 }
221
David Ahern96c63fa2016-06-08 10:55:39 -0700222 tb_id = fib_rule_get_table(rule, arg);
223 table = fib6_get_table(net, tb_id);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200224 if (!table) {
225 err = -EAGAIN;
226 goto out;
227 }
Thomas Graf101367c2006-08-04 03:39:02 -0700228
David Ahernb75cc8f2018-03-02 08:32:17 -0800229 rt = lookup(net, table, flp6, arg->lookup_data, flags);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800230 if (rt != net->ipv6.ip6_null_entry) {
David Aherncc065a92018-05-09 20:34:22 -0700231 err = fib6_rule_saddr(net, rule, flags, flp6,
232 ip6_dst_idev(&rt->dst)->dev);
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700233
David Aherncc065a92018-05-09 20:34:22 -0700234 if (err == -EAGAIN)
235 goto again;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900236
Steven Barth73ba57b2015-03-19 16:16:04 +0100237 err = rt->dst.error;
Serhey Popovych07f61552017-06-20 13:29:25 +0300238 if (err != -EAGAIN)
239 goto out;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700240 }
241again:
Wei Wangd64a1f52019-06-20 17:36:39 -0700242 ip6_rt_put_flags(rt, flags);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200243 err = -EAGAIN;
Patrick McHardy3226f6882006-08-06 22:24:08 -0700244 rt = NULL;
245 goto out;
246
Thomas Graf101367c2006-08-04 03:39:02 -0700247discard_pkt:
Wei Wangd64a1f52019-06-20 17:36:39 -0700248 if (!(flags & RT6_LOOKUP_F_DST_NOREF))
249 dst_hold(&rt->dst);
Thomas Graf101367c2006-08-04 03:39:02 -0700250out:
David Aherna65120b2019-04-23 18:05:33 -0700251 res->rt6 = rt;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200252 return err;
Thomas Graf101367c2006-08-04 03:39:02 -0700253}
254
David Ahern138118e2018-05-09 20:34:23 -0700255static int fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
256 int flags, struct fib_lookup_arg *arg)
257{
258 if (arg->lookup_ptr == fib6_table_lookup)
259 return fib6_rule_action_alt(rule, flp, flags, arg);
260
261 return __fib6_rule_action(rule, flp, flags, arg);
262}
263
Stefan Tomanek7764a452013-08-01 02:17:15 +0200264static bool fib6_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
265{
David Aherna65120b2019-04-23 18:05:33 -0700266 struct fib6_result *res = arg->result;
267 struct rt6_info *rt = res->rt6;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100268 struct net_device *dev = NULL;
269
David Aherna65120b2019-04-23 18:05:33 -0700270 if (!rt)
271 return false;
272
Stefan Tomanek673498b2013-12-10 23:21:25 +0100273 if (rt->rt6i_idev)
274 dev = rt->rt6i_idev->dev;
275
Stefan Tomanek7764a452013-08-01 02:17:15 +0200276 /* do not accept result if the route does
277 * not meet the required prefix length
278 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200279 if (rt->rt6i_dst.plen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200280 goto suppress_route;
281
282 /* do not accept result if the route uses a device
283 * belonging to a forbidden interface group
284 */
285 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
286 goto suppress_route;
287
288 return false;
289
290suppress_route:
Jason A. Donenfeldca7a03c2019-09-24 16:01:28 +0200291 if (!(arg->flags & FIB_LOOKUP_NOREF))
292 ip6_rt_put(rt);
Stefan Tomanek04f08882013-09-08 17:09:43 +0200293 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200294}
Thomas Graf101367c2006-08-04 03:39:02 -0700295
296static int fib6_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
297{
298 struct fib6_rule *r = (struct fib6_rule *) rule;
David S. Miller4c9483b2011-03-12 16:22:43 -0500299 struct flowi6 *fl6 = &fl->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700300
Thomas Grafadaa70b2006-10-13 15:01:03 -0700301 if (r->dst.plen &&
David S. Miller4c9483b2011-03-12 16:22:43 -0500302 !ipv6_prefix_equal(&fl6->daddr, &r->dst.addr, r->dst.plen))
Thomas Graf101367c2006-08-04 03:39:02 -0700303 return 0;
304
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700305 /*
306 * If FIB_RULE_FIND_SADDR is set and we do not have a
307 * source address for the traffic, we defer check for
308 * source address.
309 */
Thomas Grafadaa70b2006-10-13 15:01:03 -0700310 if (r->src.plen) {
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700311 if (flags & RT6_LOOKUP_F_HAS_SADDR) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500312 if (!ipv6_prefix_equal(&fl6->saddr, &r->src.addr,
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700313 r->src.plen))
314 return 0;
315 } else if (!(r->common.flags & FIB_RULE_FIND_SADDR))
Thomas Grafadaa70b2006-10-13 15:01:03 -0700316 return 0;
317 }
Thomas Graf101367c2006-08-04 03:39:02 -0700318
Li RongQingd76ed222014-01-15 17:03:30 +0800319 if (r->tclass && r->tclass != ip6_tclass(fl6->flowlabel))
YOSHIFUJI Hideaki2cc67cc2006-08-21 19:18:57 +0900320 return 0;
321
Roopa Prabhubb0ad192018-02-28 22:41:37 -0500322 if (rule->ip_proto && (rule->ip_proto != fl6->flowi6_proto))
323 return 0;
324
325 if (fib_rule_port_range_set(&rule->sport_range) &&
326 !fib_rule_port_inrange(&rule->sport_range, fl6->fl6_sport))
327 return 0;
328
329 if (fib_rule_port_range_set(&rule->dport_range) &&
330 !fib_rule_port_inrange(&rule->dport_range, fl6->fl6_dport))
331 return 0;
332
Thomas Graf101367c2006-08-04 03:39:02 -0700333 return 1;
334}
335
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700336static const struct nla_policy fib6_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800337 FRA_GENERIC_POLICY,
Thomas Graf101367c2006-08-04 03:39:02 -0700338};
339
340static int fib6_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000341 struct fib_rule_hdr *frh,
Roopa Prabhub16fb412018-04-21 09:41:31 -0700342 struct nlattr **tb,
343 struct netlink_ext_ack *extack)
Thomas Graf101367c2006-08-04 03:39:02 -0700344{
345 int err = -EINVAL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900346 struct net *net = sock_net(skb->sk);
Thomas Graf101367c2006-08-04 03:39:02 -0700347 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
348
David Ahern96c63fa2016-06-08 10:55:39 -0700349 if (rule->action == FR_ACT_TO_TBL && !rule->l3mdev) {
Roopa Prabhub16fb412018-04-21 09:41:31 -0700350 if (rule->table == RT6_TABLE_UNSPEC) {
351 NL_SET_ERR_MSG(extack, "Invalid table");
Thomas Graf101367c2006-08-04 03:39:02 -0700352 goto errout;
Roopa Prabhub16fb412018-04-21 09:41:31 -0700353 }
Thomas Graf101367c2006-08-04 03:39:02 -0700354
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800355 if (fib6_new_table(net, rule->table) == NULL) {
Thomas Graf101367c2006-08-04 03:39:02 -0700356 err = -ENOBUFS;
357 goto errout;
358 }
359 }
360
Thomas Grafe1701c62007-03-24 12:46:02 -0700361 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200362 rule6->src.addr = nla_get_in6_addr(tb[FRA_SRC]);
Thomas Graf101367c2006-08-04 03:39:02 -0700363
Thomas Grafe1701c62007-03-24 12:46:02 -0700364 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200365 rule6->dst.addr = nla_get_in6_addr(tb[FRA_DST]);
Thomas Graf101367c2006-08-04 03:39:02 -0700366
367 rule6->src.plen = frh->src_len;
368 rule6->dst.plen = frh->dst_len;
369 rule6->tclass = frh->tos;
370
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500371 if (fib_rule_requires_fldissect(rule))
372 net->ipv6.fib6_rules_require_fldissect++;
373
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200374 net->ipv6.fib6_has_custom_rules = true;
Thomas Graf101367c2006-08-04 03:39:02 -0700375 err = 0;
376errout:
377 return err;
378}
379
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500380static int fib6_rule_delete(struct fib_rule *rule)
381{
382 struct net *net = rule->fr_net;
383
384 if (net->ipv6.fib6_rules_require_fldissect &&
385 fib_rule_requires_fldissect(rule))
386 net->ipv6.fib6_rules_require_fldissect--;
387
388 return 0;
389}
390
Thomas Graf101367c2006-08-04 03:39:02 -0700391static int fib6_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
392 struct nlattr **tb)
393{
394 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
395
396 if (frh->src_len && (rule6->src.plen != frh->src_len))
397 return 0;
398
399 if (frh->dst_len && (rule6->dst.plen != frh->dst_len))
400 return 0;
401
402 if (frh->tos && (rule6->tclass != frh->tos))
403 return 0;
404
Thomas Grafe1701c62007-03-24 12:46:02 -0700405 if (frh->src_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700406 nla_memcmp(tb[FRA_SRC], &rule6->src.addr, sizeof(struct in6_addr)))
407 return 0;
408
Thomas Grafe1701c62007-03-24 12:46:02 -0700409 if (frh->dst_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700410 nla_memcmp(tb[FRA_DST], &rule6->dst.addr, sizeof(struct in6_addr)))
411 return 0;
412
413 return 1;
414}
415
416static int fib6_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700417 struct fib_rule_hdr *frh)
Thomas Graf101367c2006-08-04 03:39:02 -0700418{
419 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
420
Thomas Graf101367c2006-08-04 03:39:02 -0700421 frh->dst_len = rule6->dst.plen;
422 frh->src_len = rule6->src.plen;
423 frh->tos = rule6->tclass;
424
David S. Millerc78679e2012-04-01 20:27:33 -0400425 if ((rule6->dst.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200426 nla_put_in6_addr(skb, FRA_DST, &rule6->dst.addr)) ||
David S. Millerc78679e2012-04-01 20:27:33 -0400427 (rule6->src.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200428 nla_put_in6_addr(skb, FRA_SRC, &rule6->src.addr)))
David S. Millerc78679e2012-04-01 20:27:33 -0400429 goto nla_put_failure;
Thomas Graf101367c2006-08-04 03:39:02 -0700430 return 0;
431
432nla_put_failure:
433 return -ENOBUFS;
434}
435
Thomas Graf339bf982006-11-10 14:10:15 -0800436static size_t fib6_rule_nlmsg_payload(struct fib_rule *rule)
437{
438 return nla_total_size(16) /* dst */
439 + nla_total_size(16); /* src */
440}
441
Andi Kleen04a6f822012-10-04 17:12:11 -0700442static const struct fib_rules_ops __net_initconst fib6_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200443 .family = AF_INET6,
Thomas Graf101367c2006-08-04 03:39:02 -0700444 .rule_size = sizeof(struct fib6_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700445 .addr_size = sizeof(struct in6_addr),
Thomas Graf101367c2006-08-04 03:39:02 -0700446 .action = fib6_rule_action,
447 .match = fib6_rule_match,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200448 .suppress = fib6_rule_suppress,
Thomas Graf101367c2006-08-04 03:39:02 -0700449 .configure = fib6_rule_configure,
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500450 .delete = fib6_rule_delete,
Thomas Graf101367c2006-08-04 03:39:02 -0700451 .compare = fib6_rule_compare,
452 .fill = fib6_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800453 .nlmsg_payload = fib6_rule_nlmsg_payload,
Thomas Graf101367c2006-08-04 03:39:02 -0700454 .nlgroup = RTNLGRP_IPV6_RULE,
455 .policy = fib6_rule_policy,
Thomas Graf101367c2006-08-04 03:39:02 -0700456 .owner = THIS_MODULE,
Denis V. Lunev03592382008-01-20 16:46:01 -0800457 .fro_net = &init_net,
Thomas Graf101367c2006-08-04 03:39:02 -0700458};
459
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000460static int __net_init fib6_rules_net_init(struct net *net)
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800461{
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800462 struct fib_rules_ops *ops;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800463 int err = -ENOMEM;
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800464
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800465 ops = fib_rules_register(&fib6_rules_ops_template, net);
466 if (IS_ERR(ops))
467 return PTR_ERR(ops);
WANG Cong85b990922015-03-25 14:45:02 -0700468
469 err = fib_default_rule_add(ops, 0, RT6_TABLE_LOCAL, 0);
470 if (err)
471 goto out_fib6_rules_ops;
472
473 err = fib_default_rule_add(ops, 0x7FFE, RT6_TABLE_MAIN, 0);
474 if (err)
475 goto out_fib6_rules_ops;
476
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800477 net->ipv6.fib6_rules_ops = ops;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500478 net->ipv6.fib6_rules_require_fldissect = 0;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800479out:
480 return err;
481
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800482out_fib6_rules_ops:
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800483 fib_rules_unregister(ops);
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800484 goto out;
Thomas Graf101367c2006-08-04 03:39:02 -0700485}
486
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000487static void __net_exit fib6_rules_net_exit(struct net *net)
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800488{
WANG Cong419df122015-03-31 11:01:46 -0700489 rtnl_lock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800490 fib_rules_unregister(net->ipv6.fib6_rules_ops);
WANG Cong419df122015-03-31 11:01:46 -0700491 rtnl_unlock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800492}
493
494static struct pernet_operations fib6_rules_net_ops = {
495 .init = fib6_rules_net_init,
496 .exit = fib6_rules_net_exit,
497};
498
499int __init fib6_rules_init(void)
500{
501 return register_pernet_subsys(&fib6_rules_net_ops);
502}
503
504
Thomas Graf101367c2006-08-04 03:39:02 -0700505void fib6_rules_cleanup(void)
506{
YOSHIFUJI Hideakiff4e1fb2008-04-10 15:41:28 +0900507 unregister_pernet_subsys(&fib6_rules_net_ops);
Thomas Graf101367c2006-08-04 03:39:02 -0700508}