blob: f9e8fe3ff0c5b07f8e21ed76aa46a8da24181ff1 [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
Ido Schimmeldcb18f72017-08-03 13:28:18 +020050int fib6_rules_dump(struct net *net, struct notifier_block *nb)
51{
52 return fib_rules_dump(net, nb, AF_INET6);
53}
54
55unsigned int fib6_rules_seq_read(struct net *net)
56{
57 return fib_rules_seq_read(net, AF_INET6);
58}
59
David Ahern138118e2018-05-09 20:34:23 -070060/* called with rcu lock held; no reference taken on fib6_info */
David Aherneffda4d2019-04-16 14:36:10 -070061int fib6_lookup(struct net *net, int oif, struct flowi6 *fl6,
62 struct fib6_result *res, int flags)
David Ahern138118e2018-05-09 20:34:23 -070063{
David Ahern138118e2018-05-09 20:34:23 -070064 int err;
65
66 if (net->ipv6.fib6_has_custom_rules) {
67 struct fib_lookup_arg arg = {
68 .lookup_ptr = fib6_table_lookup,
69 .lookup_data = &oif,
David Aherneffda4d2019-04-16 14:36:10 -070070 .result = res,
David Ahern138118e2018-05-09 20:34:23 -070071 .flags = FIB_LOOKUP_NOREF,
72 };
73
74 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
75
76 err = fib_rules_lookup(net->ipv6.fib6_rules_ops,
77 flowi6_to_flowi(fl6), flags, &arg);
David Ahern138118e2018-05-09 20:34:23 -070078 } else {
David Aherneffda4d2019-04-16 14:36:10 -070079 err = fib6_table_lookup(net, net->ipv6.fib6_local_tbl, oif,
80 fl6, res, flags);
81 if (err || res->f6i == net->ipv6.fib6_null_entry)
82 err = fib6_table_lookup(net, net->ipv6.fib6_main_tbl,
83 oif, fl6, res, flags);
David Ahern138118e2018-05-09 20:34:23 -070084 }
85
David Aherneffda4d2019-04-16 14:36:10 -070086 return err;
David Ahern138118e2018-05-09 20:34:23 -070087}
88
David S. Miller4c9483b2011-03-12 16:22:43 -050089struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -080090 const struct sk_buff *skb,
Daniel Lezcano58f09b72008-03-03 23:25:27 -080091 int flags, pol_lookup_t lookup)
Thomas Graf101367c2006-08-04 03:39:02 -070092{
Vincent Bernatfeca7d82017-08-08 20:23:49 +020093 if (net->ipv6.fib6_has_custom_rules) {
David Aherna65120b2019-04-23 18:05:33 -070094 struct fib6_result res = {};
Vincent Bernatfeca7d82017-08-08 20:23:49 +020095 struct fib_lookup_arg arg = {
96 .lookup_ptr = lookup,
David Ahernb75cc8f2018-03-02 08:32:17 -080097 .lookup_data = skb,
David Aherna65120b2019-04-23 18:05:33 -070098 .result = &res,
Vincent Bernatfeca7d82017-08-08 20:23:49 +020099 .flags = FIB_LOOKUP_NOREF,
100 };
Thomas Graf101367c2006-08-04 03:39:02 -0700101
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200102 /* update flow if oif or iif point to device enslaved to l3mdev */
103 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
David Ahern9ee00342016-09-10 12:09:52 -0700104
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200105 fib_rules_lookup(net->ipv6.fib6_rules_ops,
106 flowi6_to_flowi(fl6), flags, &arg);
Thomas Graf101367c2006-08-04 03:39:02 -0700107
David Aherna65120b2019-04-23 18:05:33 -0700108 if (res.rt6)
109 return &res.rt6->dst;
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200110 } else {
111 struct rt6_info *rt;
112
David Ahernb75cc8f2018-03-02 08:32:17 -0800113 rt = lookup(net, net->ipv6.fib6_local_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200114 if (rt != net->ipv6.ip6_null_entry && rt->dst.error != -EAGAIN)
115 return &rt->dst;
Wei Wangd64a1f52019-06-20 17:36:39 -0700116 ip6_rt_put_flags(rt, flags);
David Ahernb75cc8f2018-03-02 08:32:17 -0800117 rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200118 if (rt->dst.error != -EAGAIN)
119 return &rt->dst;
Wei Wangd64a1f52019-06-20 17:36:39 -0700120 ip6_rt_put_flags(rt, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200121 }
Ville Nuorvalab1429552006-08-08 16:44:17 -0700122
Wei Wangd64a1f52019-06-20 17:36:39 -0700123 if (!(flags & RT6_LOOKUP_F_DST_NOREF))
124 dst_hold(&net->ipv6.ip6_null_entry->dst);
Serhey Popovych07f61552017-06-20 13:29:25 +0300125 return &net->ipv6.ip6_null_entry->dst;
Thomas Graf101367c2006-08-04 03:39:02 -0700126}
127
David Aherncc065a92018-05-09 20:34:22 -0700128static int fib6_rule_saddr(struct net *net, struct fib_rule *rule, int flags,
129 struct flowi6 *flp6, const struct net_device *dev)
130{
131 struct fib6_rule *r = (struct fib6_rule *)rule;
132
133 /* If we need to find a source address for this traffic,
134 * we check the result if it meets requirement of the rule.
135 */
136 if ((rule->flags & FIB_RULE_FIND_SADDR) &&
137 r->src.plen && !(flags & RT6_LOOKUP_F_HAS_SADDR)) {
138 struct in6_addr saddr;
139
140 if (ipv6_dev_get_saddr(net, dev, &flp6->daddr,
141 rt6_flags2srcprefs(flags), &saddr))
142 return -EAGAIN;
143
144 if (!ipv6_prefix_equal(&saddr, &r->src.addr, r->src.plen))
145 return -EAGAIN;
146
147 flp6->saddr = saddr;
148 }
149
150 return 0;
151}
152
David Ahern138118e2018-05-09 20:34:23 -0700153static int fib6_rule_action_alt(struct fib_rule *rule, struct flowi *flp,
154 int flags, struct fib_lookup_arg *arg)
155{
David Aherneffda4d2019-04-16 14:36:10 -0700156 struct fib6_result *res = arg->result;
David Ahern138118e2018-05-09 20:34:23 -0700157 struct flowi6 *flp6 = &flp->u.ip6;
158 struct net *net = rule->fr_net;
159 struct fib6_table *table;
David Ahernb2f97f72019-04-23 18:06:30 -0700160 int err, *oif;
David Ahern138118e2018-05-09 20:34:23 -0700161 u32 tb_id;
162
163 switch (rule->action) {
164 case FR_ACT_TO_TBL:
165 break;
166 case FR_ACT_UNREACHABLE:
167 return -ENETUNREACH;
168 case FR_ACT_PROHIBIT:
169 return -EACCES;
170 case FR_ACT_BLACKHOLE:
171 default:
172 return -EINVAL;
173 }
174
175 tb_id = fib_rule_get_table(rule, arg);
176 table = fib6_get_table(net, tb_id);
177 if (!table)
178 return -EAGAIN;
179
180 oif = (int *)arg->lookup_data;
David Aherneffda4d2019-04-16 14:36:10 -0700181 err = fib6_table_lookup(net, table, *oif, flp6, res, flags);
182 if (!err && res->f6i != net->ipv6.fib6_null_entry)
David Ahern138118e2018-05-09 20:34:23 -0700183 err = fib6_rule_saddr(net, rule, flags, flp6,
David Aherneffda4d2019-04-16 14:36:10 -0700184 res->nh->fib_nh_dev);
David Ahernb2f97f72019-04-23 18:06:30 -0700185 else
186 err = -EAGAIN;
David Ahern138118e2018-05-09 20:34:23 -0700187
188 return err;
189}
190
191static int __fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
192 int flags, struct fib_lookup_arg *arg)
Thomas Graf101367c2006-08-04 03:39:02 -0700193{
David Aherna65120b2019-04-23 18:05:33 -0700194 struct fib6_result *res = arg->result;
David S. Miller4c9483b2011-03-12 16:22:43 -0500195 struct flowi6 *flp6 = &flp->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700196 struct rt6_info *rt = NULL;
197 struct fib6_table *table;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800198 struct net *net = rule->fr_net;
Thomas Graf101367c2006-08-04 03:39:02 -0700199 pol_lookup_t lookup = arg->lookup_ptr;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200200 int err = 0;
David Ahern96c63fa2016-06-08 10:55:39 -0700201 u32 tb_id;
Thomas Graf101367c2006-08-04 03:39:02 -0700202
203 switch (rule->action) {
204 case FR_ACT_TO_TBL:
205 break;
206 case FR_ACT_UNREACHABLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200207 err = -ENETUNREACH;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800208 rt = net->ipv6.ip6_null_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700209 goto discard_pkt;
210 default:
211 case FR_ACT_BLACKHOLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200212 err = -EINVAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800213 rt = net->ipv6.ip6_blk_hole_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700214 goto discard_pkt;
215 case FR_ACT_PROHIBIT:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200216 err = -EACCES;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800217 rt = net->ipv6.ip6_prohibit_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700218 goto discard_pkt;
219 }
220
David Ahern96c63fa2016-06-08 10:55:39 -0700221 tb_id = fib_rule_get_table(rule, arg);
222 table = fib6_get_table(net, tb_id);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200223 if (!table) {
224 err = -EAGAIN;
225 goto out;
226 }
Thomas Graf101367c2006-08-04 03:39:02 -0700227
David Ahernb75cc8f2018-03-02 08:32:17 -0800228 rt = lookup(net, table, flp6, arg->lookup_data, flags);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800229 if (rt != net->ipv6.ip6_null_entry) {
David Aherncc065a92018-05-09 20:34:22 -0700230 err = fib6_rule_saddr(net, rule, flags, flp6,
231 ip6_dst_idev(&rt->dst)->dev);
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700232
David Aherncc065a92018-05-09 20:34:22 -0700233 if (err == -EAGAIN)
234 goto again;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900235
Steven Barth73ba57b2015-03-19 16:16:04 +0100236 err = rt->dst.error;
Serhey Popovych07f61552017-06-20 13:29:25 +0300237 if (err != -EAGAIN)
238 goto out;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700239 }
240again:
Wei Wangd64a1f52019-06-20 17:36:39 -0700241 ip6_rt_put_flags(rt, flags);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200242 err = -EAGAIN;
Patrick McHardy3226f6882006-08-06 22:24:08 -0700243 rt = NULL;
244 goto out;
245
Thomas Graf101367c2006-08-04 03:39:02 -0700246discard_pkt:
Wei Wangd64a1f52019-06-20 17:36:39 -0700247 if (!(flags & RT6_LOOKUP_F_DST_NOREF))
248 dst_hold(&rt->dst);
Thomas Graf101367c2006-08-04 03:39:02 -0700249out:
David Aherna65120b2019-04-23 18:05:33 -0700250 res->rt6 = rt;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200251 return err;
Thomas Graf101367c2006-08-04 03:39:02 -0700252}
253
David Ahern138118e2018-05-09 20:34:23 -0700254static int fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
255 int flags, struct fib_lookup_arg *arg)
256{
257 if (arg->lookup_ptr == fib6_table_lookup)
258 return fib6_rule_action_alt(rule, flp, flags, arg);
259
260 return __fib6_rule_action(rule, flp, flags, arg);
261}
262
Stefan Tomanek7764a452013-08-01 02:17:15 +0200263static bool fib6_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
264{
David Aherna65120b2019-04-23 18:05:33 -0700265 struct fib6_result *res = arg->result;
266 struct rt6_info *rt = res->rt6;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100267 struct net_device *dev = NULL;
268
David Aherna65120b2019-04-23 18:05:33 -0700269 if (!rt)
270 return false;
271
Stefan Tomanek673498b2013-12-10 23:21:25 +0100272 if (rt->rt6i_idev)
273 dev = rt->rt6i_idev->dev;
274
Stefan Tomanek7764a452013-08-01 02:17:15 +0200275 /* do not accept result if the route does
276 * not meet the required prefix length
277 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200278 if (rt->rt6i_dst.plen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200279 goto suppress_route;
280
281 /* do not accept result if the route uses a device
282 * belonging to a forbidden interface group
283 */
284 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
285 goto suppress_route;
286
287 return false;
288
289suppress_route:
Jason A. Donenfeldca7a03c2019-09-24 16:01:28 +0200290 if (!(arg->flags & FIB_LOOKUP_NOREF))
291 ip6_rt_put(rt);
Stefan Tomanek04f08882013-09-08 17:09:43 +0200292 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200293}
Thomas Graf101367c2006-08-04 03:39:02 -0700294
295static int fib6_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
296{
297 struct fib6_rule *r = (struct fib6_rule *) rule;
David S. Miller4c9483b2011-03-12 16:22:43 -0500298 struct flowi6 *fl6 = &fl->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700299
Thomas Grafadaa70b2006-10-13 15:01:03 -0700300 if (r->dst.plen &&
David S. Miller4c9483b2011-03-12 16:22:43 -0500301 !ipv6_prefix_equal(&fl6->daddr, &r->dst.addr, r->dst.plen))
Thomas Graf101367c2006-08-04 03:39:02 -0700302 return 0;
303
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700304 /*
305 * If FIB_RULE_FIND_SADDR is set and we do not have a
306 * source address for the traffic, we defer check for
307 * source address.
308 */
Thomas Grafadaa70b2006-10-13 15:01:03 -0700309 if (r->src.plen) {
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700310 if (flags & RT6_LOOKUP_F_HAS_SADDR) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500311 if (!ipv6_prefix_equal(&fl6->saddr, &r->src.addr,
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700312 r->src.plen))
313 return 0;
314 } else if (!(r->common.flags & FIB_RULE_FIND_SADDR))
Thomas Grafadaa70b2006-10-13 15:01:03 -0700315 return 0;
316 }
Thomas Graf101367c2006-08-04 03:39:02 -0700317
Li RongQingd76ed222014-01-15 17:03:30 +0800318 if (r->tclass && r->tclass != ip6_tclass(fl6->flowlabel))
YOSHIFUJI Hideaki2cc67cc2006-08-21 19:18:57 +0900319 return 0;
320
Roopa Prabhubb0ad192018-02-28 22:41:37 -0500321 if (rule->ip_proto && (rule->ip_proto != fl6->flowi6_proto))
322 return 0;
323
324 if (fib_rule_port_range_set(&rule->sport_range) &&
325 !fib_rule_port_inrange(&rule->sport_range, fl6->fl6_sport))
326 return 0;
327
328 if (fib_rule_port_range_set(&rule->dport_range) &&
329 !fib_rule_port_inrange(&rule->dport_range, fl6->fl6_dport))
330 return 0;
331
Thomas Graf101367c2006-08-04 03:39:02 -0700332 return 1;
333}
334
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700335static const struct nla_policy fib6_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800336 FRA_GENERIC_POLICY,
Thomas Graf101367c2006-08-04 03:39:02 -0700337};
338
339static int fib6_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000340 struct fib_rule_hdr *frh,
Roopa Prabhub16fb412018-04-21 09:41:31 -0700341 struct nlattr **tb,
342 struct netlink_ext_ack *extack)
Thomas Graf101367c2006-08-04 03:39:02 -0700343{
344 int err = -EINVAL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900345 struct net *net = sock_net(skb->sk);
Thomas Graf101367c2006-08-04 03:39:02 -0700346 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
347
David Ahern96c63fa2016-06-08 10:55:39 -0700348 if (rule->action == FR_ACT_TO_TBL && !rule->l3mdev) {
Roopa Prabhub16fb412018-04-21 09:41:31 -0700349 if (rule->table == RT6_TABLE_UNSPEC) {
350 NL_SET_ERR_MSG(extack, "Invalid table");
Thomas Graf101367c2006-08-04 03:39:02 -0700351 goto errout;
Roopa Prabhub16fb412018-04-21 09:41:31 -0700352 }
Thomas Graf101367c2006-08-04 03:39:02 -0700353
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800354 if (fib6_new_table(net, rule->table) == NULL) {
Thomas Graf101367c2006-08-04 03:39:02 -0700355 err = -ENOBUFS;
356 goto errout;
357 }
358 }
359
Thomas Grafe1701c62007-03-24 12:46:02 -0700360 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200361 rule6->src.addr = nla_get_in6_addr(tb[FRA_SRC]);
Thomas Graf101367c2006-08-04 03:39:02 -0700362
Thomas Grafe1701c62007-03-24 12:46:02 -0700363 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200364 rule6->dst.addr = nla_get_in6_addr(tb[FRA_DST]);
Thomas Graf101367c2006-08-04 03:39:02 -0700365
366 rule6->src.plen = frh->src_len;
367 rule6->dst.plen = frh->dst_len;
368 rule6->tclass = frh->tos;
369
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500370 if (fib_rule_requires_fldissect(rule))
371 net->ipv6.fib6_rules_require_fldissect++;
372
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200373 net->ipv6.fib6_has_custom_rules = true;
Thomas Graf101367c2006-08-04 03:39:02 -0700374 err = 0;
375errout:
376 return err;
377}
378
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500379static int fib6_rule_delete(struct fib_rule *rule)
380{
381 struct net *net = rule->fr_net;
382
383 if (net->ipv6.fib6_rules_require_fldissect &&
384 fib_rule_requires_fldissect(rule))
385 net->ipv6.fib6_rules_require_fldissect--;
386
387 return 0;
388}
389
Thomas Graf101367c2006-08-04 03:39:02 -0700390static int fib6_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
391 struct nlattr **tb)
392{
393 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
394
395 if (frh->src_len && (rule6->src.plen != frh->src_len))
396 return 0;
397
398 if (frh->dst_len && (rule6->dst.plen != frh->dst_len))
399 return 0;
400
401 if (frh->tos && (rule6->tclass != frh->tos))
402 return 0;
403
Thomas Grafe1701c62007-03-24 12:46:02 -0700404 if (frh->src_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700405 nla_memcmp(tb[FRA_SRC], &rule6->src.addr, sizeof(struct in6_addr)))
406 return 0;
407
Thomas Grafe1701c62007-03-24 12:46:02 -0700408 if (frh->dst_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700409 nla_memcmp(tb[FRA_DST], &rule6->dst.addr, sizeof(struct in6_addr)))
410 return 0;
411
412 return 1;
413}
414
415static int fib6_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700416 struct fib_rule_hdr *frh)
Thomas Graf101367c2006-08-04 03:39:02 -0700417{
418 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
419
Thomas Graf101367c2006-08-04 03:39:02 -0700420 frh->dst_len = rule6->dst.plen;
421 frh->src_len = rule6->src.plen;
422 frh->tos = rule6->tclass;
423
David S. Millerc78679e2012-04-01 20:27:33 -0400424 if ((rule6->dst.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200425 nla_put_in6_addr(skb, FRA_DST, &rule6->dst.addr)) ||
David S. Millerc78679e2012-04-01 20:27:33 -0400426 (rule6->src.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200427 nla_put_in6_addr(skb, FRA_SRC, &rule6->src.addr)))
David S. Millerc78679e2012-04-01 20:27:33 -0400428 goto nla_put_failure;
Thomas Graf101367c2006-08-04 03:39:02 -0700429 return 0;
430
431nla_put_failure:
432 return -ENOBUFS;
433}
434
Thomas Graf339bf982006-11-10 14:10:15 -0800435static size_t fib6_rule_nlmsg_payload(struct fib_rule *rule)
436{
437 return nla_total_size(16) /* dst */
438 + nla_total_size(16); /* src */
439}
440
Andi Kleen04a6f822012-10-04 17:12:11 -0700441static const struct fib_rules_ops __net_initconst fib6_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200442 .family = AF_INET6,
Thomas Graf101367c2006-08-04 03:39:02 -0700443 .rule_size = sizeof(struct fib6_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700444 .addr_size = sizeof(struct in6_addr),
Thomas Graf101367c2006-08-04 03:39:02 -0700445 .action = fib6_rule_action,
446 .match = fib6_rule_match,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200447 .suppress = fib6_rule_suppress,
Thomas Graf101367c2006-08-04 03:39:02 -0700448 .configure = fib6_rule_configure,
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500449 .delete = fib6_rule_delete,
Thomas Graf101367c2006-08-04 03:39:02 -0700450 .compare = fib6_rule_compare,
451 .fill = fib6_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800452 .nlmsg_payload = fib6_rule_nlmsg_payload,
Thomas Graf101367c2006-08-04 03:39:02 -0700453 .nlgroup = RTNLGRP_IPV6_RULE,
454 .policy = fib6_rule_policy,
Thomas Graf101367c2006-08-04 03:39:02 -0700455 .owner = THIS_MODULE,
Denis V. Lunev03592382008-01-20 16:46:01 -0800456 .fro_net = &init_net,
Thomas Graf101367c2006-08-04 03:39:02 -0700457};
458
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000459static int __net_init fib6_rules_net_init(struct net *net)
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800460{
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800461 struct fib_rules_ops *ops;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800462 int err = -ENOMEM;
Denis V. Lunev2994c6382007-11-10 22:12:03 -0800463
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800464 ops = fib_rules_register(&fib6_rules_ops_template, net);
465 if (IS_ERR(ops))
466 return PTR_ERR(ops);
WANG Cong85b990922015-03-25 14:45:02 -0700467
468 err = fib_default_rule_add(ops, 0, RT6_TABLE_LOCAL, 0);
469 if (err)
470 goto out_fib6_rules_ops;
471
472 err = fib_default_rule_add(ops, 0x7FFE, RT6_TABLE_MAIN, 0);
473 if (err)
474 goto out_fib6_rules_ops;
475
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800476 net->ipv6.fib6_rules_ops = ops;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500477 net->ipv6.fib6_rules_require_fldissect = 0;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800478out:
479 return err;
480
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800481out_fib6_rules_ops:
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800482 fib_rules_unregister(ops);
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800483 goto out;
Thomas Graf101367c2006-08-04 03:39:02 -0700484}
485
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000486static void __net_exit fib6_rules_net_exit(struct net *net)
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800487{
WANG Cong419df122015-03-31 11:01:46 -0700488 rtnl_lock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800489 fib_rules_unregister(net->ipv6.fib6_rules_ops);
WANG Cong419df122015-03-31 11:01:46 -0700490 rtnl_unlock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800491}
492
493static struct pernet_operations fib6_rules_net_ops = {
494 .init = fib6_rules_net_init,
495 .exit = fib6_rules_net_exit,
496};
497
498int __init fib6_rules_init(void)
499{
500 return register_pernet_subsys(&fib6_rules_net_ops);
501}
502
503
Thomas Graf101367c2006-08-04 03:39:02 -0700504void fib6_rules_cleanup(void)
505{
YOSHIFUJI Hideakiff4e1fb2008-04-10 15:41:28 +0900506 unregister_pernet_subsys(&fib6_rules_net_ops);
Thomas Graf101367c2006-08-04 03:39:02 -0700507}