blob: 06d1b7763600ca6b28f74f527e9d9a424eaf7555 [file] [log] [blame]
Thomas Graf101367c2006-08-04 03:39:02 -07001/*
2 * net/ipv6/fib6_rules.c IPv6 Routing Policy Rules
3 *
4 * Copyright (C)2003-2006 Helsinki University of Technology
5 * Copyright (C)2003-2006 USAGI/WIDE Project
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation, version 2.
10 *
11 * Authors
12 * Thomas Graf <tgraf@suug.ch>
13 * Ville Nuorvala <vnuorval@tcs.hut.fi>
14 */
15
Thomas Graf101367c2006-08-04 03:39:02 -070016#include <linux/netdevice.h>
Ido Schimmeldcb18f72017-08-03 13:28:18 +020017#include <linux/notifier.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040018#include <linux/export.h>
Thomas Graf101367c2006-08-04 03:39:02 -070019
20#include <net/fib_rules.h>
21#include <net/ipv6.h>
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -070022#include <net/addrconf.h>
Thomas Graf101367c2006-08-04 03:39:02 -070023#include <net/ip6_route.h>
24#include <net/netlink.h>
25
Eldad Zack911c8542012-04-01 07:49:06 +000026struct fib6_rule {
Thomas Graf101367c2006-08-04 03:39:02 -070027 struct fib_rule common;
28 struct rt6key src;
29 struct rt6key dst;
30 u8 tclass;
31};
32
Ido Schimmele3ea9732017-08-03 13:28:15 +020033static bool fib6_rule_matchall(const struct fib_rule *rule)
34{
35 struct fib6_rule *r = container_of(rule, struct fib6_rule, common);
36
37 if (r->dst.plen || r->src.plen || r->tclass)
38 return false;
39 return fib_rule_matchall(rule);
40}
41
42bool fib6_rule_default(const struct fib_rule *rule)
43{
44 if (!fib6_rule_matchall(rule) || rule->action != FR_ACT_TO_TBL ||
45 rule->l3mdev)
46 return false;
47 if (rule->table != RT6_TABLE_LOCAL && rule->table != RT6_TABLE_MAIN)
48 return false;
49 return true;
50}
51EXPORT_SYMBOL_GPL(fib6_rule_default);
52
Ido Schimmeldcb18f72017-08-03 13:28:18 +020053int fib6_rules_dump(struct net *net, struct notifier_block *nb)
54{
55 return fib_rules_dump(net, nb, AF_INET6);
56}
57
58unsigned int fib6_rules_seq_read(struct net *net)
59{
60 return fib_rules_seq_read(net, AF_INET6);
61}
62
David Ahern138118e2018-05-09 20:34:23 -070063/* called with rcu lock held; no reference taken on fib6_info */
David Aherneffda4d2019-04-16 14:36:10 -070064int fib6_lookup(struct net *net, int oif, struct flowi6 *fl6,
65 struct fib6_result *res, int flags)
David Ahern138118e2018-05-09 20:34:23 -070066{
David Ahern138118e2018-05-09 20:34:23 -070067 int err;
68
69 if (net->ipv6.fib6_has_custom_rules) {
70 struct fib_lookup_arg arg = {
71 .lookup_ptr = fib6_table_lookup,
72 .lookup_data = &oif,
David Aherneffda4d2019-04-16 14:36:10 -070073 .result = res,
David Ahern138118e2018-05-09 20:34:23 -070074 .flags = FIB_LOOKUP_NOREF,
75 };
76
77 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
78
79 err = fib_rules_lookup(net->ipv6.fib6_rules_ops,
80 flowi6_to_flowi(fl6), flags, &arg);
David Ahern138118e2018-05-09 20:34:23 -070081 } else {
David Aherneffda4d2019-04-16 14:36:10 -070082 err = fib6_table_lookup(net, net->ipv6.fib6_local_tbl, oif,
83 fl6, res, flags);
84 if (err || res->f6i == net->ipv6.fib6_null_entry)
85 err = fib6_table_lookup(net, net->ipv6.fib6_main_tbl,
86 oif, fl6, res, flags);
David Ahern138118e2018-05-09 20:34:23 -070087 }
88
David Aherneffda4d2019-04-16 14:36:10 -070089 return err;
David Ahern138118e2018-05-09 20:34:23 -070090}
91
David S. Miller4c9483b2011-03-12 16:22:43 -050092struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -080093 const struct sk_buff *skb,
Daniel Lezcano58f09b72008-03-03 23:25:27 -080094 int flags, pol_lookup_t lookup)
Thomas Graf101367c2006-08-04 03:39:02 -070095{
Vincent Bernatfeca7d82017-08-08 20:23:49 +020096 if (net->ipv6.fib6_has_custom_rules) {
David Aherna65120b2019-04-23 18:05:33 -070097 struct fib6_result res = {};
Vincent Bernatfeca7d82017-08-08 20:23:49 +020098 struct fib_lookup_arg arg = {
99 .lookup_ptr = lookup,
David Ahernb75cc8f2018-03-02 08:32:17 -0800100 .lookup_data = skb,
David Aherna65120b2019-04-23 18:05:33 -0700101 .result = &res,
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200102 .flags = FIB_LOOKUP_NOREF,
103 };
Thomas Graf101367c2006-08-04 03:39:02 -0700104
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200105 /* update flow if oif or iif point to device enslaved to l3mdev */
106 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
David Ahern9ee00342016-09-10 12:09:52 -0700107
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200108 fib_rules_lookup(net->ipv6.fib6_rules_ops,
109 flowi6_to_flowi(fl6), flags, &arg);
Thomas Graf101367c2006-08-04 03:39:02 -0700110
David Aherna65120b2019-04-23 18:05:33 -0700111 if (res.rt6)
112 return &res.rt6->dst;
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200113 } else {
114 struct rt6_info *rt;
115
David Ahernb75cc8f2018-03-02 08:32:17 -0800116 rt = lookup(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;
119 ip6_rt_put(rt);
David Ahernb75cc8f2018-03-02 08:32:17 -0800120 rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200121 if (rt->dst.error != -EAGAIN)
122 return &rt->dst;
123 ip6_rt_put(rt);
124 }
Ville Nuorvalab1429552006-08-08 16:44:17 -0700125
Serhey Popovych07f61552017-06-20 13:29:25 +0300126 dst_hold(&net->ipv6.ip6_null_entry->dst);
127 return &net->ipv6.ip6_null_entry->dst;
Thomas Graf101367c2006-08-04 03:39:02 -0700128}
129
David Aherncc065a92018-05-09 20:34:22 -0700130static int fib6_rule_saddr(struct net *net, struct fib_rule *rule, int flags,
131 struct flowi6 *flp6, const struct net_device *dev)
132{
133 struct fib6_rule *r = (struct fib6_rule *)rule;
134
135 /* If we need to find a source address for this traffic,
136 * we check the result if it meets requirement of the rule.
137 */
138 if ((rule->flags & FIB_RULE_FIND_SADDR) &&
139 r->src.plen && !(flags & RT6_LOOKUP_F_HAS_SADDR)) {
140 struct in6_addr saddr;
141
142 if (ipv6_dev_get_saddr(net, dev, &flp6->daddr,
143 rt6_flags2srcprefs(flags), &saddr))
144 return -EAGAIN;
145
146 if (!ipv6_prefix_equal(&saddr, &r->src.addr, r->src.plen))
147 return -EAGAIN;
148
149 flp6->saddr = saddr;
150 }
151
152 return 0;
153}
154
David Ahern138118e2018-05-09 20:34:23 -0700155static int fib6_rule_action_alt(struct fib_rule *rule, struct flowi *flp,
156 int flags, struct fib_lookup_arg *arg)
157{
David Aherneffda4d2019-04-16 14:36:10 -0700158 struct fib6_result *res = arg->result;
David Ahern138118e2018-05-09 20:34:23 -0700159 struct flowi6 *flp6 = &flp->u.ip6;
160 struct net *net = rule->fr_net;
161 struct fib6_table *table;
David Ahernb2f97f72019-04-23 18:06:30 -0700162 int err, *oif;
David Ahern138118e2018-05-09 20:34:23 -0700163 u32 tb_id;
164
165 switch (rule->action) {
166 case FR_ACT_TO_TBL:
167 break;
168 case FR_ACT_UNREACHABLE:
169 return -ENETUNREACH;
170 case FR_ACT_PROHIBIT:
171 return -EACCES;
172 case FR_ACT_BLACKHOLE:
173 default:
174 return -EINVAL;
175 }
176
177 tb_id = fib_rule_get_table(rule, arg);
178 table = fib6_get_table(net, tb_id);
179 if (!table)
180 return -EAGAIN;
181
182 oif = (int *)arg->lookup_data;
David Aherneffda4d2019-04-16 14:36:10 -0700183 err = fib6_table_lookup(net, table, *oif, flp6, res, flags);
184 if (!err && res->f6i != net->ipv6.fib6_null_entry)
David Ahern138118e2018-05-09 20:34:23 -0700185 err = fib6_rule_saddr(net, rule, flags, flp6,
David Aherneffda4d2019-04-16 14:36:10 -0700186 res->nh->fib_nh_dev);
David Ahernb2f97f72019-04-23 18:06:30 -0700187 else
188 err = -EAGAIN;
David Ahern138118e2018-05-09 20:34:23 -0700189
190 return err;
191}
192
193static int __fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
194 int flags, struct fib_lookup_arg *arg)
Thomas Graf101367c2006-08-04 03:39:02 -0700195{
David Aherna65120b2019-04-23 18:05:33 -0700196 struct fib6_result *res = arg->result;
David S. Miller4c9483b2011-03-12 16:22:43 -0500197 struct flowi6 *flp6 = &flp->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700198 struct rt6_info *rt = NULL;
199 struct fib6_table *table;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800200 struct net *net = rule->fr_net;
Thomas Graf101367c2006-08-04 03:39:02 -0700201 pol_lookup_t lookup = arg->lookup_ptr;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200202 int err = 0;
David Ahern96c63fa2016-06-08 10:55:39 -0700203 u32 tb_id;
Thomas Graf101367c2006-08-04 03:39:02 -0700204
205 switch (rule->action) {
206 case FR_ACT_TO_TBL:
207 break;
208 case FR_ACT_UNREACHABLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200209 err = -ENETUNREACH;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800210 rt = net->ipv6.ip6_null_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700211 goto discard_pkt;
212 default:
213 case FR_ACT_BLACKHOLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200214 err = -EINVAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800215 rt = net->ipv6.ip6_blk_hole_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700216 goto discard_pkt;
217 case FR_ACT_PROHIBIT:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200218 err = -EACCES;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800219 rt = net->ipv6.ip6_prohibit_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700220 goto discard_pkt;
221 }
222
David Ahern96c63fa2016-06-08 10:55:39 -0700223 tb_id = fib_rule_get_table(rule, arg);
224 table = fib6_get_table(net, tb_id);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200225 if (!table) {
226 err = -EAGAIN;
227 goto out;
228 }
Thomas Graf101367c2006-08-04 03:39:02 -0700229
David Ahernb75cc8f2018-03-02 08:32:17 -0800230 rt = lookup(net, table, flp6, arg->lookup_data, flags);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800231 if (rt != net->ipv6.ip6_null_entry) {
David Aherncc065a92018-05-09 20:34:22 -0700232 err = fib6_rule_saddr(net, rule, flags, flp6,
233 ip6_dst_idev(&rt->dst)->dev);
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700234
David Aherncc065a92018-05-09 20:34:22 -0700235 if (err == -EAGAIN)
236 goto again;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900237
Steven Barth73ba57b2015-03-19 16:16:04 +0100238 err = rt->dst.error;
Serhey Popovych07f61552017-06-20 13:29:25 +0300239 if (err != -EAGAIN)
240 goto out;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700241 }
242again:
Amerigo Wang94e187c2012-10-29 00:13:19 +0000243 ip6_rt_put(rt);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200244 err = -EAGAIN;
Patrick McHardy3226f6882006-08-06 22:24:08 -0700245 rt = NULL;
246 goto out;
247
Thomas Graf101367c2006-08-04 03:39:02 -0700248discard_pkt:
Changli Gaod8d1f302010-06-10 23:31:35 -0700249 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:
Stefan Tomanek04f08882013-09-08 17:09:43 +0200291 ip6_rt_put(rt);
292 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}