blob: ec029c86ae06828c1cfe886ad0f401318b114310 [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>
Brian Vazquezb9aaec82020-07-26 15:48:16 -070016#include <linux/indirect_call_wrapper.h>
Thomas Graf101367c2006-08-04 03:39:02 -070017
18#include <net/fib_rules.h>
19#include <net/ipv6.h>
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -070020#include <net/addrconf.h>
Thomas Graf101367c2006-08-04 03:39:02 -070021#include <net/ip6_route.h>
22#include <net/netlink.h>
23
Eldad Zack911c8542012-04-01 07:49:06 +000024struct fib6_rule {
Thomas Graf101367c2006-08-04 03:39:02 -070025 struct fib_rule common;
26 struct rt6key src;
27 struct rt6key dst;
28 u8 tclass;
29};
30
Ido Schimmele3ea9732017-08-03 13:28:15 +020031static bool fib6_rule_matchall(const struct fib_rule *rule)
32{
33 struct fib6_rule *r = container_of(rule, struct fib6_rule, common);
34
35 if (r->dst.plen || r->src.plen || r->tclass)
36 return false;
37 return fib_rule_matchall(rule);
38}
39
40bool fib6_rule_default(const struct fib_rule *rule)
41{
42 if (!fib6_rule_matchall(rule) || rule->action != FR_ACT_TO_TBL ||
43 rule->l3mdev)
44 return false;
45 if (rule->table != RT6_TABLE_LOCAL && rule->table != RT6_TABLE_MAIN)
46 return false;
47 return true;
48}
49EXPORT_SYMBOL_GPL(fib6_rule_default);
50
Jiri Pirkob7a59552019-10-03 11:49:30 +020051int fib6_rules_dump(struct net *net, struct notifier_block *nb,
52 struct netlink_ext_ack *extack)
Ido Schimmeldcb18f72017-08-03 13:28:18 +020053{
Jiri Pirkob7a59552019-10-03 11:49:30 +020054 return fib_rules_dump(net, nb, AF_INET6, extack);
Ido Schimmeldcb18f72017-08-03 13:28:18 +020055}
56
57unsigned int fib6_rules_seq_read(struct net *net)
58{
59 return fib_rules_seq_read(net, AF_INET6);
60}
61
David Ahern138118e2018-05-09 20:34:23 -070062/* called with rcu lock held; no reference taken on fib6_info */
David Aherneffda4d2019-04-16 14:36:10 -070063int fib6_lookup(struct net *net, int oif, struct flowi6 *fl6,
64 struct fib6_result *res, int flags)
David Ahern138118e2018-05-09 20:34:23 -070065{
David Ahern138118e2018-05-09 20:34:23 -070066 int err;
67
68 if (net->ipv6.fib6_has_custom_rules) {
69 struct fib_lookup_arg arg = {
70 .lookup_ptr = fib6_table_lookup,
71 .lookup_data = &oif,
David Aherneffda4d2019-04-16 14:36:10 -070072 .result = res,
David Ahern138118e2018-05-09 20:34:23 -070073 .flags = FIB_LOOKUP_NOREF,
74 };
75
76 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
77
78 err = fib_rules_lookup(net->ipv6.fib6_rules_ops,
79 flowi6_to_flowi(fl6), flags, &arg);
David Ahern138118e2018-05-09 20:34:23 -070080 } else {
David Aherneffda4d2019-04-16 14:36:10 -070081 err = fib6_table_lookup(net, net->ipv6.fib6_local_tbl, oif,
82 fl6, res, flags);
83 if (err || res->f6i == net->ipv6.fib6_null_entry)
84 err = fib6_table_lookup(net, net->ipv6.fib6_main_tbl,
85 oif, fl6, res, flags);
David Ahern138118e2018-05-09 20:34:23 -070086 }
87
David Aherneffda4d2019-04-16 14:36:10 -070088 return err;
David Ahern138118e2018-05-09 20:34:23 -070089}
90
David S. Miller4c9483b2011-03-12 16:22:43 -050091struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -080092 const struct sk_buff *skb,
Daniel Lezcano58f09b72008-03-03 23:25:27 -080093 int flags, pol_lookup_t lookup)
Thomas Graf101367c2006-08-04 03:39:02 -070094{
Vincent Bernatfeca7d82017-08-08 20:23:49 +020095 if (net->ipv6.fib6_has_custom_rules) {
David Aherna65120b2019-04-23 18:05:33 -070096 struct fib6_result res = {};
Vincent Bernatfeca7d82017-08-08 20:23:49 +020097 struct fib_lookup_arg arg = {
98 .lookup_ptr = lookup,
David Ahernb75cc8f2018-03-02 08:32:17 -080099 .lookup_data = skb,
David Aherna65120b2019-04-23 18:05:33 -0700100 .result = &res,
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200101 .flags = FIB_LOOKUP_NOREF,
102 };
Thomas Graf101367c2006-08-04 03:39:02 -0700103
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200104 /* update flow if oif or iif point to device enslaved to l3mdev */
105 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
David Ahern9ee00342016-09-10 12:09:52 -0700106
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200107 fib_rules_lookup(net->ipv6.fib6_rules_ops,
108 flowi6_to_flowi(fl6), flags, &arg);
Thomas Graf101367c2006-08-04 03:39:02 -0700109
David Aherna65120b2019-04-23 18:05:33 -0700110 if (res.rt6)
111 return &res.rt6->dst;
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200112 } else {
113 struct rt6_info *rt;
114
Brian Vazquez55cced42020-06-23 09:42:32 -0700115 rt = pol_lookup_func(lookup,
116 net, net->ipv6.fib6_local_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200117 if (rt != net->ipv6.ip6_null_entry && rt->dst.error != -EAGAIN)
118 return &rt->dst;
Wei Wangd64a1f52019-06-20 17:36:39 -0700119 ip6_rt_put_flags(rt, flags);
Brian Vazquez55cced42020-06-23 09:42:32 -0700120 rt = pol_lookup_func(lookup,
121 net, net->ipv6.fib6_main_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200122 if (rt->dst.error != -EAGAIN)
123 return &rt->dst;
Wei Wangd64a1f52019-06-20 17:36:39 -0700124 ip6_rt_put_flags(rt, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200125 }
Ville Nuorvalab1429552006-08-08 16:44:17 -0700126
Wei Wangd64a1f52019-06-20 17:36:39 -0700127 if (!(flags & RT6_LOOKUP_F_DST_NOREF))
128 dst_hold(&net->ipv6.ip6_null_entry->dst);
Serhey Popovych07f61552017-06-20 13:29:25 +0300129 return &net->ipv6.ip6_null_entry->dst;
Thomas Graf101367c2006-08-04 03:39:02 -0700130}
131
David Aherncc065a92018-05-09 20:34:22 -0700132static int fib6_rule_saddr(struct net *net, struct fib_rule *rule, int flags,
133 struct flowi6 *flp6, const struct net_device *dev)
134{
135 struct fib6_rule *r = (struct fib6_rule *)rule;
136
137 /* If we need to find a source address for this traffic,
138 * we check the result if it meets requirement of the rule.
139 */
140 if ((rule->flags & FIB_RULE_FIND_SADDR) &&
141 r->src.plen && !(flags & RT6_LOOKUP_F_HAS_SADDR)) {
142 struct in6_addr saddr;
143
144 if (ipv6_dev_get_saddr(net, dev, &flp6->daddr,
145 rt6_flags2srcprefs(flags), &saddr))
146 return -EAGAIN;
147
148 if (!ipv6_prefix_equal(&saddr, &r->src.addr, r->src.plen))
149 return -EAGAIN;
150
151 flp6->saddr = saddr;
152 }
153
154 return 0;
155}
156
David Ahern138118e2018-05-09 20:34:23 -0700157static int fib6_rule_action_alt(struct fib_rule *rule, struct flowi *flp,
158 int flags, struct fib_lookup_arg *arg)
159{
David Aherneffda4d2019-04-16 14:36:10 -0700160 struct fib6_result *res = arg->result;
David Ahern138118e2018-05-09 20:34:23 -0700161 struct flowi6 *flp6 = &flp->u.ip6;
162 struct net *net = rule->fr_net;
163 struct fib6_table *table;
David Ahernb2f97f72019-04-23 18:06:30 -0700164 int err, *oif;
David Ahern138118e2018-05-09 20:34:23 -0700165 u32 tb_id;
166
167 switch (rule->action) {
168 case FR_ACT_TO_TBL:
169 break;
170 case FR_ACT_UNREACHABLE:
171 return -ENETUNREACH;
172 case FR_ACT_PROHIBIT:
173 return -EACCES;
174 case FR_ACT_BLACKHOLE:
175 default:
176 return -EINVAL;
177 }
178
179 tb_id = fib_rule_get_table(rule, arg);
180 table = fib6_get_table(net, tb_id);
181 if (!table)
182 return -EAGAIN;
183
184 oif = (int *)arg->lookup_data;
David Aherneffda4d2019-04-16 14:36:10 -0700185 err = fib6_table_lookup(net, table, *oif, flp6, res, flags);
186 if (!err && res->f6i != net->ipv6.fib6_null_entry)
David Ahern138118e2018-05-09 20:34:23 -0700187 err = fib6_rule_saddr(net, rule, flags, flp6,
David Aherneffda4d2019-04-16 14:36:10 -0700188 res->nh->fib_nh_dev);
David Ahernb2f97f72019-04-23 18:06:30 -0700189 else
190 err = -EAGAIN;
David Ahern138118e2018-05-09 20:34:23 -0700191
192 return err;
193}
194
195static int __fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
196 int flags, struct fib_lookup_arg *arg)
Thomas Graf101367c2006-08-04 03:39:02 -0700197{
David Aherna65120b2019-04-23 18:05:33 -0700198 struct fib6_result *res = arg->result;
David S. Miller4c9483b2011-03-12 16:22:43 -0500199 struct flowi6 *flp6 = &flp->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700200 struct rt6_info *rt = NULL;
201 struct fib6_table *table;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800202 struct net *net = rule->fr_net;
Thomas Graf101367c2006-08-04 03:39:02 -0700203 pol_lookup_t lookup = arg->lookup_ptr;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200204 int err = 0;
David Ahern96c63fa2016-06-08 10:55:39 -0700205 u32 tb_id;
Thomas Graf101367c2006-08-04 03:39:02 -0700206
207 switch (rule->action) {
208 case FR_ACT_TO_TBL:
209 break;
210 case FR_ACT_UNREACHABLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200211 err = -ENETUNREACH;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800212 rt = net->ipv6.ip6_null_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700213 goto discard_pkt;
214 default:
215 case FR_ACT_BLACKHOLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200216 err = -EINVAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800217 rt = net->ipv6.ip6_blk_hole_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700218 goto discard_pkt;
219 case FR_ACT_PROHIBIT:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200220 err = -EACCES;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800221 rt = net->ipv6.ip6_prohibit_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700222 goto discard_pkt;
223 }
224
David Ahern96c63fa2016-06-08 10:55:39 -0700225 tb_id = fib_rule_get_table(rule, arg);
226 table = fib6_get_table(net, tb_id);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200227 if (!table) {
228 err = -EAGAIN;
229 goto out;
230 }
Thomas Graf101367c2006-08-04 03:39:02 -0700231
Brian Vazquez55cced42020-06-23 09:42:32 -0700232 rt = pol_lookup_func(lookup,
233 net, table, flp6, arg->lookup_data, flags);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800234 if (rt != net->ipv6.ip6_null_entry) {
David Aherncc065a92018-05-09 20:34:22 -0700235 err = fib6_rule_saddr(net, rule, flags, flp6,
236 ip6_dst_idev(&rt->dst)->dev);
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700237
David Aherncc065a92018-05-09 20:34:22 -0700238 if (err == -EAGAIN)
239 goto again;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900240
Steven Barth73ba57b2015-03-19 16:16:04 +0100241 err = rt->dst.error;
Serhey Popovych07f61552017-06-20 13:29:25 +0300242 if (err != -EAGAIN)
243 goto out;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700244 }
245again:
Wei Wangd64a1f52019-06-20 17:36:39 -0700246 ip6_rt_put_flags(rt, flags);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200247 err = -EAGAIN;
Patrick McHardy3226f6882006-08-06 22:24:08 -0700248 rt = NULL;
249 goto out;
250
Thomas Graf101367c2006-08-04 03:39:02 -0700251discard_pkt:
Wei Wangd64a1f52019-06-20 17:36:39 -0700252 if (!(flags & RT6_LOOKUP_F_DST_NOREF))
253 dst_hold(&rt->dst);
Thomas Graf101367c2006-08-04 03:39:02 -0700254out:
David Aherna65120b2019-04-23 18:05:33 -0700255 res->rt6 = rt;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200256 return err;
Thomas Graf101367c2006-08-04 03:39:02 -0700257}
258
Brian Vazquezb9aaec82020-07-26 15:48:16 -0700259INDIRECT_CALLABLE_SCOPE int fib6_rule_action(struct fib_rule *rule,
260 struct flowi *flp, int flags,
261 struct fib_lookup_arg *arg)
David Ahern138118e2018-05-09 20:34:23 -0700262{
263 if (arg->lookup_ptr == fib6_table_lookup)
264 return fib6_rule_action_alt(rule, flp, flags, arg);
265
266 return __fib6_rule_action(rule, flp, flags, arg);
267}
268
Brian Vazquezb9aaec82020-07-26 15:48:16 -0700269INDIRECT_CALLABLE_SCOPE bool fib6_rule_suppress(struct fib_rule *rule,
msizanoen1cdef4852021-11-23 13:48:32 +0100270 int flags,
Brian Vazquezb9aaec82020-07-26 15:48:16 -0700271 struct fib_lookup_arg *arg)
Stefan Tomanek7764a452013-08-01 02:17:15 +0200272{
David Aherna65120b2019-04-23 18:05:33 -0700273 struct fib6_result *res = arg->result;
274 struct rt6_info *rt = res->rt6;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100275 struct net_device *dev = NULL;
276
David Aherna65120b2019-04-23 18:05:33 -0700277 if (!rt)
278 return false;
279
Stefan Tomanek673498b2013-12-10 23:21:25 +0100280 if (rt->rt6i_idev)
281 dev = rt->rt6i_idev->dev;
282
Stefan Tomanek7764a452013-08-01 02:17:15 +0200283 /* do not accept result if the route does
284 * not meet the required prefix length
285 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200286 if (rt->rt6i_dst.plen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200287 goto suppress_route;
288
289 /* do not accept result if the route uses a device
290 * belonging to a forbidden interface group
291 */
292 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
293 goto suppress_route;
294
295 return false;
296
297suppress_route:
msizanoen1cdef4852021-11-23 13:48:32 +0100298 ip6_rt_put_flags(rt, flags);
Stefan Tomanek04f08882013-09-08 17:09:43 +0200299 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200300}
Thomas Graf101367c2006-08-04 03:39:02 -0700301
Brian Vazquezb9aaec82020-07-26 15:48:16 -0700302INDIRECT_CALLABLE_SCOPE int fib6_rule_match(struct fib_rule *rule,
303 struct flowi *fl, int flags)
Thomas Graf101367c2006-08-04 03:39:02 -0700304{
305 struct fib6_rule *r = (struct fib6_rule *) rule;
David S. Miller4c9483b2011-03-12 16:22:43 -0500306 struct flowi6 *fl6 = &fl->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700307
Thomas Grafadaa70b2006-10-13 15:01:03 -0700308 if (r->dst.plen &&
David S. Miller4c9483b2011-03-12 16:22:43 -0500309 !ipv6_prefix_equal(&fl6->daddr, &r->dst.addr, r->dst.plen))
Thomas Graf101367c2006-08-04 03:39:02 -0700310 return 0;
311
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700312 /*
313 * If FIB_RULE_FIND_SADDR is set and we do not have a
314 * source address for the traffic, we defer check for
315 * source address.
316 */
Thomas Grafadaa70b2006-10-13 15:01:03 -0700317 if (r->src.plen) {
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700318 if (flags & RT6_LOOKUP_F_HAS_SADDR) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500319 if (!ipv6_prefix_equal(&fl6->saddr, &r->src.addr,
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700320 r->src.plen))
321 return 0;
322 } else if (!(r->common.flags & FIB_RULE_FIND_SADDR))
Thomas Grafadaa70b2006-10-13 15:01:03 -0700323 return 0;
324 }
Thomas Graf101367c2006-08-04 03:39:02 -0700325
Li RongQingd76ed222014-01-15 17:03:30 +0800326 if (r->tclass && r->tclass != ip6_tclass(fl6->flowlabel))
YOSHIFUJI Hideaki2cc67cc2006-08-21 19:18:57 +0900327 return 0;
328
Roopa Prabhubb0ad192018-02-28 22:41:37 -0500329 if (rule->ip_proto && (rule->ip_proto != fl6->flowi6_proto))
330 return 0;
331
332 if (fib_rule_port_range_set(&rule->sport_range) &&
333 !fib_rule_port_inrange(&rule->sport_range, fl6->fl6_sport))
334 return 0;
335
336 if (fib_rule_port_range_set(&rule->dport_range) &&
337 !fib_rule_port_inrange(&rule->dport_range, fl6->fl6_dport))
338 return 0;
339
Thomas Graf101367c2006-08-04 03:39:02 -0700340 return 1;
341}
342
Thomas Graf101367c2006-08-04 03:39:02 -0700343static int fib6_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000344 struct fib_rule_hdr *frh,
Roopa Prabhub16fb412018-04-21 09:41:31 -0700345 struct nlattr **tb,
346 struct netlink_ext_ack *extack)
Thomas Graf101367c2006-08-04 03:39:02 -0700347{
348 int err = -EINVAL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900349 struct net *net = sock_net(skb->sk);
Thomas Graf101367c2006-08-04 03:39:02 -0700350 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
351
David Ahern96c63fa2016-06-08 10:55:39 -0700352 if (rule->action == FR_ACT_TO_TBL && !rule->l3mdev) {
Roopa Prabhub16fb412018-04-21 09:41:31 -0700353 if (rule->table == RT6_TABLE_UNSPEC) {
354 NL_SET_ERR_MSG(extack, "Invalid table");
Thomas Graf101367c2006-08-04 03:39:02 -0700355 goto errout;
Roopa Prabhub16fb412018-04-21 09:41:31 -0700356 }
Thomas Graf101367c2006-08-04 03:39:02 -0700357
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800358 if (fib6_new_table(net, rule->table) == NULL) {
Thomas Graf101367c2006-08-04 03:39:02 -0700359 err = -ENOBUFS;
360 goto errout;
361 }
362 }
363
Thomas Grafe1701c62007-03-24 12:46:02 -0700364 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200365 rule6->src.addr = nla_get_in6_addr(tb[FRA_SRC]);
Thomas Graf101367c2006-08-04 03:39:02 -0700366
Thomas Grafe1701c62007-03-24 12:46:02 -0700367 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200368 rule6->dst.addr = nla_get_in6_addr(tb[FRA_DST]);
Thomas Graf101367c2006-08-04 03:39:02 -0700369
370 rule6->src.plen = frh->src_len;
371 rule6->dst.plen = frh->dst_len;
372 rule6->tclass = frh->tos;
373
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500374 if (fib_rule_requires_fldissect(rule))
375 net->ipv6.fib6_rules_require_fldissect++;
376
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200377 net->ipv6.fib6_has_custom_rules = true;
Thomas Graf101367c2006-08-04 03:39:02 -0700378 err = 0;
379errout:
380 return err;
381}
382
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500383static int fib6_rule_delete(struct fib_rule *rule)
384{
385 struct net *net = rule->fr_net;
386
387 if (net->ipv6.fib6_rules_require_fldissect &&
388 fib_rule_requires_fldissect(rule))
389 net->ipv6.fib6_rules_require_fldissect--;
390
391 return 0;
392}
393
Thomas Graf101367c2006-08-04 03:39:02 -0700394static int fib6_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
395 struct nlattr **tb)
396{
397 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
398
399 if (frh->src_len && (rule6->src.plen != frh->src_len))
400 return 0;
401
402 if (frh->dst_len && (rule6->dst.plen != frh->dst_len))
403 return 0;
404
405 if (frh->tos && (rule6->tclass != frh->tos))
406 return 0;
407
Thomas Grafe1701c62007-03-24 12:46:02 -0700408 if (frh->src_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700409 nla_memcmp(tb[FRA_SRC], &rule6->src.addr, sizeof(struct in6_addr)))
410 return 0;
411
Thomas Grafe1701c62007-03-24 12:46:02 -0700412 if (frh->dst_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700413 nla_memcmp(tb[FRA_DST], &rule6->dst.addr, sizeof(struct in6_addr)))
414 return 0;
415
416 return 1;
417}
418
419static int fib6_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700420 struct fib_rule_hdr *frh)
Thomas Graf101367c2006-08-04 03:39:02 -0700421{
422 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
423
Thomas Graf101367c2006-08-04 03:39:02 -0700424 frh->dst_len = rule6->dst.plen;
425 frh->src_len = rule6->src.plen;
426 frh->tos = rule6->tclass;
427
David S. Millerc78679e2012-04-01 20:27:33 -0400428 if ((rule6->dst.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200429 nla_put_in6_addr(skb, FRA_DST, &rule6->dst.addr)) ||
David S. Millerc78679e2012-04-01 20:27:33 -0400430 (rule6->src.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200431 nla_put_in6_addr(skb, FRA_SRC, &rule6->src.addr)))
David S. Millerc78679e2012-04-01 20:27:33 -0400432 goto nla_put_failure;
Thomas Graf101367c2006-08-04 03:39:02 -0700433 return 0;
434
435nla_put_failure:
436 return -ENOBUFS;
437}
438
Thomas Graf339bf982006-11-10 14:10:15 -0800439static size_t fib6_rule_nlmsg_payload(struct fib_rule *rule)
440{
441 return nla_total_size(16) /* dst */
442 + nla_total_size(16); /* src */
443}
444
Andi Kleen04a6f822012-10-04 17:12:11 -0700445static const struct fib_rules_ops __net_initconst fib6_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200446 .family = AF_INET6,
Thomas Graf101367c2006-08-04 03:39:02 -0700447 .rule_size = sizeof(struct fib6_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700448 .addr_size = sizeof(struct in6_addr),
Thomas Graf101367c2006-08-04 03:39:02 -0700449 .action = fib6_rule_action,
450 .match = fib6_rule_match,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200451 .suppress = fib6_rule_suppress,
Thomas Graf101367c2006-08-04 03:39:02 -0700452 .configure = fib6_rule_configure,
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500453 .delete = fib6_rule_delete,
Thomas Graf101367c2006-08-04 03:39:02 -0700454 .compare = fib6_rule_compare,
455 .fill = fib6_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800456 .nlmsg_payload = fib6_rule_nlmsg_payload,
Thomas Graf101367c2006-08-04 03:39:02 -0700457 .nlgroup = RTNLGRP_IPV6_RULE,
Thomas Graf101367c2006-08-04 03:39:02 -0700458 .owner = THIS_MODULE,
Denis V. Lunev03592382008-01-20 16:46:01 -0800459 .fro_net = &init_net,
Thomas Graf101367c2006-08-04 03:39:02 -0700460};
461
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000462static int __net_init fib6_rules_net_init(struct net *net)
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800463{
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800464 struct fib_rules_ops *ops;
Colin Ian Kingb5ec0702021-06-13 14:46:36 +0100465 int err;
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800466
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800467 ops = fib_rules_register(&fib6_rules_ops_template, net);
468 if (IS_ERR(ops))
469 return PTR_ERR(ops);
WANG Cong85b990922015-03-25 14:45:02 -0700470
471 err = fib_default_rule_add(ops, 0, RT6_TABLE_LOCAL, 0);
472 if (err)
473 goto out_fib6_rules_ops;
474
475 err = fib_default_rule_add(ops, 0x7FFE, RT6_TABLE_MAIN, 0);
476 if (err)
477 goto out_fib6_rules_ops;
478
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800479 net->ipv6.fib6_rules_ops = ops;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500480 net->ipv6.fib6_rules_require_fldissect = 0;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800481out:
482 return err;
483
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800484out_fib6_rules_ops:
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800485 fib_rules_unregister(ops);
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800486 goto out;
Thomas Graf101367c2006-08-04 03:39:02 -0700487}
488
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000489static void __net_exit fib6_rules_net_exit(struct net *net)
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800490{
WANG Cong419df122015-03-31 11:01:46 -0700491 rtnl_lock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800492 fib_rules_unregister(net->ipv6.fib6_rules_ops);
WANG Cong419df122015-03-31 11:01:46 -0700493 rtnl_unlock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800494}
495
496static struct pernet_operations fib6_rules_net_ops = {
497 .init = fib6_rules_net_init,
498 .exit = fib6_rules_net_exit,
499};
500
501int __init fib6_rules_init(void)
502{
503 return register_pernet_subsys(&fib6_rules_net_ops);
504}
505
506
Thomas Graf101367c2006-08-04 03:39:02 -0700507void fib6_rules_cleanup(void)
508{
YOSHIFUJI Hideakiff4e1fb2008-04-10 15:41:28 +0900509 unregister_pernet_subsys(&fib6_rules_net_ops);
Thomas Graf101367c2006-08-04 03:39:02 -0700510}