blob: eea23b57c6a5a000aec234cc9bf6f9411d98001f [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>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040017#include <linux/export.h>
Thomas Graf101367c2006-08-04 03:39:02 -070018
19#include <net/fib_rules.h>
20#include <net/ipv6.h>
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -070021#include <net/addrconf.h>
Thomas Graf101367c2006-08-04 03:39:02 -070022#include <net/ip6_route.h>
23#include <net/netlink.h>
24
Eldad Zack911c8542012-04-01 07:49:06 +000025struct fib6_rule {
Thomas Graf101367c2006-08-04 03:39:02 -070026 struct fib_rule common;
27 struct rt6key src;
28 struct rt6key dst;
29 u8 tclass;
30};
31
David S. Miller4c9483b2011-03-12 16:22:43 -050032struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
Daniel Lezcano58f09b72008-03-03 23:25:27 -080033 int flags, pol_lookup_t lookup)
Thomas Graf101367c2006-08-04 03:39:02 -070034{
lucienab997ad2015-10-23 15:36:53 +080035 struct rt6_info *rt;
Thomas Graf101367c2006-08-04 03:39:02 -070036 struct fib_lookup_arg arg = {
37 .lookup_ptr = lookup,
Eric Dumazet2c1c0002010-10-13 02:45:40 +000038 .flags = FIB_LOOKUP_NOREF,
Thomas Graf101367c2006-08-04 03:39:02 -070039 };
40
David Ahern9ee00342016-09-10 12:09:52 -070041 /* update flow if oif or iif point to device enslaved to l3mdev */
42 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
43
David S. Miller4c9483b2011-03-12 16:22:43 -050044 fib_rules_lookup(net->ipv6.fib6_rules_ops,
45 flowi6_to_flowi(fl6), flags, &arg);
Thomas Graf101367c2006-08-04 03:39:02 -070046
lucienab997ad2015-10-23 15:36:53 +080047 rt = arg.result;
Ville Nuorvalab1429552006-08-08 16:44:17 -070048
lucienab997ad2015-10-23 15:36:53 +080049 if (!rt) {
50 dst_hold(&net->ipv6.ip6_null_entry->dst);
51 return &net->ipv6.ip6_null_entry->dst;
52 }
53
54 if (rt->rt6i_flags & RTF_REJECT &&
55 rt->dst.error == -EAGAIN) {
56 ip6_rt_put(rt);
57 rt = net->ipv6.ip6_null_entry;
58 dst_hold(&rt->dst);
59 }
60
61 return &rt->dst;
Thomas Graf101367c2006-08-04 03:39:02 -070062}
63
Adrian Bunk8ce11e62006-08-07 21:50:48 -070064static int fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
65 int flags, struct fib_lookup_arg *arg)
Thomas Graf101367c2006-08-04 03:39:02 -070066{
David S. Miller4c9483b2011-03-12 16:22:43 -050067 struct flowi6 *flp6 = &flp->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -070068 struct rt6_info *rt = NULL;
69 struct fib6_table *table;
Daniel Lezcano8ed67782008-03-04 13:48:30 -080070 struct net *net = rule->fr_net;
Thomas Graf101367c2006-08-04 03:39:02 -070071 pol_lookup_t lookup = arg->lookup_ptr;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +020072 int err = 0;
David Ahern96c63fa2016-06-08 10:55:39 -070073 u32 tb_id;
Thomas Graf101367c2006-08-04 03:39:02 -070074
75 switch (rule->action) {
76 case FR_ACT_TO_TBL:
77 break;
78 case FR_ACT_UNREACHABLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +020079 err = -ENETUNREACH;
Daniel Lezcano8ed67782008-03-04 13:48:30 -080080 rt = net->ipv6.ip6_null_entry;
Thomas Graf101367c2006-08-04 03:39:02 -070081 goto discard_pkt;
82 default:
83 case FR_ACT_BLACKHOLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +020084 err = -EINVAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -080085 rt = net->ipv6.ip6_blk_hole_entry;
Thomas Graf101367c2006-08-04 03:39:02 -070086 goto discard_pkt;
87 case FR_ACT_PROHIBIT:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +020088 err = -EACCES;
Daniel Lezcano8ed67782008-03-04 13:48:30 -080089 rt = net->ipv6.ip6_prohibit_entry;
Thomas Graf101367c2006-08-04 03:39:02 -070090 goto discard_pkt;
91 }
92
David Ahern96c63fa2016-06-08 10:55:39 -070093 tb_id = fib_rule_get_table(rule, arg);
94 table = fib6_get_table(net, tb_id);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +020095 if (!table) {
96 err = -EAGAIN;
97 goto out;
98 }
Thomas Graf101367c2006-08-04 03:39:02 -070099
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200100 rt = lookup(net, table, flp6, flags);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800101 if (rt != net->ipv6.ip6_null_entry) {
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700102 struct fib6_rule *r = (struct fib6_rule *)rule;
103
104 /*
105 * If we need to find a source address for this traffic,
106 * we check the result if it meets requirement of the rule.
107 */
108 if ((rule->flags & FIB_RULE_FIND_SADDR) &&
109 r->src.plen && !(flags & RT6_LOOKUP_F_HAS_SADDR)) {
110 struct in6_addr saddr;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900111
Brian Haley191cd582008-08-14 15:33:21 -0700112 if (ipv6_dev_get_saddr(net,
Changli Gaod8d1f302010-06-10 23:31:35 -0700113 ip6_dst_idev(&rt->dst)->dev,
David S. Miller4c9483b2011-03-12 16:22:43 -0500114 &flp6->daddr,
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +0000115 rt6_flags2srcprefs(flags),
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900116 &saddr))
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700117 goto again;
118 if (!ipv6_prefix_equal(&saddr, &r->src.addr,
119 r->src.plen))
120 goto again;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000121 flp6->saddr = saddr;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700122 }
Steven Barth73ba57b2015-03-19 16:16:04 +0100123 err = rt->dst.error;
Thomas Graf101367c2006-08-04 03:39:02 -0700124 goto out;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700125 }
126again:
Amerigo Wang94e187c2012-10-29 00:13:19 +0000127 ip6_rt_put(rt);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200128 err = -EAGAIN;
Patrick McHardy3226f6882006-08-06 22:24:08 -0700129 rt = NULL;
130 goto out;
131
Thomas Graf101367c2006-08-04 03:39:02 -0700132discard_pkt:
Changli Gaod8d1f302010-06-10 23:31:35 -0700133 dst_hold(&rt->dst);
Thomas Graf101367c2006-08-04 03:39:02 -0700134out:
135 arg->result = rt;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200136 return err;
Thomas Graf101367c2006-08-04 03:39:02 -0700137}
138
Stefan Tomanek7764a452013-08-01 02:17:15 +0200139static bool fib6_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
140{
141 struct rt6_info *rt = (struct rt6_info *) arg->result;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100142 struct net_device *dev = NULL;
143
144 if (rt->rt6i_idev)
145 dev = rt->rt6i_idev->dev;
146
Stefan Tomanek7764a452013-08-01 02:17:15 +0200147 /* do not accept result if the route does
148 * not meet the required prefix length
149 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200150 if (rt->rt6i_dst.plen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200151 goto suppress_route;
152
153 /* do not accept result if the route uses a device
154 * belonging to a forbidden interface group
155 */
156 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
157 goto suppress_route;
158
159 return false;
160
161suppress_route:
Stefan Tomanek04f08882013-09-08 17:09:43 +0200162 ip6_rt_put(rt);
163 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200164}
Thomas Graf101367c2006-08-04 03:39:02 -0700165
166static int fib6_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
167{
168 struct fib6_rule *r = (struct fib6_rule *) rule;
David S. Miller4c9483b2011-03-12 16:22:43 -0500169 struct flowi6 *fl6 = &fl->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700170
Thomas Grafadaa70b2006-10-13 15:01:03 -0700171 if (r->dst.plen &&
David S. Miller4c9483b2011-03-12 16:22:43 -0500172 !ipv6_prefix_equal(&fl6->daddr, &r->dst.addr, r->dst.plen))
Thomas Graf101367c2006-08-04 03:39:02 -0700173 return 0;
174
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700175 /*
176 * If FIB_RULE_FIND_SADDR is set and we do not have a
177 * source address for the traffic, we defer check for
178 * source address.
179 */
Thomas Grafadaa70b2006-10-13 15:01:03 -0700180 if (r->src.plen) {
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700181 if (flags & RT6_LOOKUP_F_HAS_SADDR) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500182 if (!ipv6_prefix_equal(&fl6->saddr, &r->src.addr,
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700183 r->src.plen))
184 return 0;
185 } else if (!(r->common.flags & FIB_RULE_FIND_SADDR))
Thomas Grafadaa70b2006-10-13 15:01:03 -0700186 return 0;
187 }
Thomas Graf101367c2006-08-04 03:39:02 -0700188
Li RongQingd76ed222014-01-15 17:03:30 +0800189 if (r->tclass && r->tclass != ip6_tclass(fl6->flowlabel))
YOSHIFUJI Hideaki2cc67cc2006-08-21 19:18:57 +0900190 return 0;
191
Thomas Graf101367c2006-08-04 03:39:02 -0700192 return 1;
193}
194
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700195static const struct nla_policy fib6_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800196 FRA_GENERIC_POLICY,
Thomas Graf101367c2006-08-04 03:39:02 -0700197};
198
199static int fib6_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000200 struct fib_rule_hdr *frh,
Thomas Graf101367c2006-08-04 03:39:02 -0700201 struct nlattr **tb)
202{
203 int err = -EINVAL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900204 struct net *net = sock_net(skb->sk);
Thomas Graf101367c2006-08-04 03:39:02 -0700205 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
206
David Ahern96c63fa2016-06-08 10:55:39 -0700207 if (rule->action == FR_ACT_TO_TBL && !rule->l3mdev) {
Thomas Graf101367c2006-08-04 03:39:02 -0700208 if (rule->table == RT6_TABLE_UNSPEC)
209 goto errout;
210
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800211 if (fib6_new_table(net, rule->table) == NULL) {
Thomas Graf101367c2006-08-04 03:39:02 -0700212 err = -ENOBUFS;
213 goto errout;
214 }
215 }
216
Thomas Grafe1701c62007-03-24 12:46:02 -0700217 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200218 rule6->src.addr = nla_get_in6_addr(tb[FRA_SRC]);
Thomas Graf101367c2006-08-04 03:39:02 -0700219
Thomas Grafe1701c62007-03-24 12:46:02 -0700220 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200221 rule6->dst.addr = nla_get_in6_addr(tb[FRA_DST]);
Thomas Graf101367c2006-08-04 03:39:02 -0700222
223 rule6->src.plen = frh->src_len;
224 rule6->dst.plen = frh->dst_len;
225 rule6->tclass = frh->tos;
226
227 err = 0;
228errout:
229 return err;
230}
231
232static int fib6_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
233 struct nlattr **tb)
234{
235 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
236
237 if (frh->src_len && (rule6->src.plen != frh->src_len))
238 return 0;
239
240 if (frh->dst_len && (rule6->dst.plen != frh->dst_len))
241 return 0;
242
243 if (frh->tos && (rule6->tclass != frh->tos))
244 return 0;
245
Thomas Grafe1701c62007-03-24 12:46:02 -0700246 if (frh->src_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700247 nla_memcmp(tb[FRA_SRC], &rule6->src.addr, sizeof(struct in6_addr)))
248 return 0;
249
Thomas Grafe1701c62007-03-24 12:46:02 -0700250 if (frh->dst_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700251 nla_memcmp(tb[FRA_DST], &rule6->dst.addr, sizeof(struct in6_addr)))
252 return 0;
253
254 return 1;
255}
256
257static int fib6_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700258 struct fib_rule_hdr *frh)
Thomas Graf101367c2006-08-04 03:39:02 -0700259{
260 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
261
Thomas Graf101367c2006-08-04 03:39:02 -0700262 frh->dst_len = rule6->dst.plen;
263 frh->src_len = rule6->src.plen;
264 frh->tos = rule6->tclass;
265
David S. Millerc78679e2012-04-01 20:27:33 -0400266 if ((rule6->dst.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200267 nla_put_in6_addr(skb, FRA_DST, &rule6->dst.addr)) ||
David S. Millerc78679e2012-04-01 20:27:33 -0400268 (rule6->src.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200269 nla_put_in6_addr(skb, FRA_SRC, &rule6->src.addr)))
David S. Millerc78679e2012-04-01 20:27:33 -0400270 goto nla_put_failure;
Thomas Graf101367c2006-08-04 03:39:02 -0700271 return 0;
272
273nla_put_failure:
274 return -ENOBUFS;
275}
276
Thomas Graf339bf982006-11-10 14:10:15 -0800277static size_t fib6_rule_nlmsg_payload(struct fib_rule *rule)
278{
279 return nla_total_size(16) /* dst */
280 + nla_total_size(16); /* src */
281}
282
Andi Kleen04a6f822012-10-04 17:12:11 -0700283static const struct fib_rules_ops __net_initconst fib6_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200284 .family = AF_INET6,
Thomas Graf101367c2006-08-04 03:39:02 -0700285 .rule_size = sizeof(struct fib6_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700286 .addr_size = sizeof(struct in6_addr),
Thomas Graf101367c2006-08-04 03:39:02 -0700287 .action = fib6_rule_action,
288 .match = fib6_rule_match,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200289 .suppress = fib6_rule_suppress,
Thomas Graf101367c2006-08-04 03:39:02 -0700290 .configure = fib6_rule_configure,
291 .compare = fib6_rule_compare,
292 .fill = fib6_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800293 .nlmsg_payload = fib6_rule_nlmsg_payload,
Thomas Graf101367c2006-08-04 03:39:02 -0700294 .nlgroup = RTNLGRP_IPV6_RULE,
295 .policy = fib6_rule_policy,
Thomas Graf101367c2006-08-04 03:39:02 -0700296 .owner = THIS_MODULE,
Denis V. Lunev035923832008-01-20 16:46:01 -0800297 .fro_net = &init_net,
Thomas Graf101367c2006-08-04 03:39:02 -0700298};
299
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000300static int __net_init fib6_rules_net_init(struct net *net)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800301{
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800302 struct fib_rules_ops *ops;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800303 int err = -ENOMEM;
Denis V. Lunev2994c632007-11-10 22:12:03 -0800304
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800305 ops = fib_rules_register(&fib6_rules_ops_template, net);
306 if (IS_ERR(ops))
307 return PTR_ERR(ops);
WANG Cong85b99092015-03-25 14:45:02 -0700308
309 err = fib_default_rule_add(ops, 0, RT6_TABLE_LOCAL, 0);
310 if (err)
311 goto out_fib6_rules_ops;
312
313 err = fib_default_rule_add(ops, 0x7FFE, RT6_TABLE_MAIN, 0);
314 if (err)
315 goto out_fib6_rules_ops;
316
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800317 net->ipv6.fib6_rules_ops = ops;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800318out:
319 return err;
320
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800321out_fib6_rules_ops:
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800322 fib_rules_unregister(ops);
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800323 goto out;
Thomas Graf101367c2006-08-04 03:39:02 -0700324}
325
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000326static void __net_exit fib6_rules_net_exit(struct net *net)
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800327{
WANG Cong419df122015-03-31 11:01:46 -0700328 rtnl_lock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800329 fib_rules_unregister(net->ipv6.fib6_rules_ops);
WANG Cong419df122015-03-31 11:01:46 -0700330 rtnl_unlock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800331}
332
333static struct pernet_operations fib6_rules_net_ops = {
334 .init = fib6_rules_net_init,
335 .exit = fib6_rules_net_exit,
336};
337
338int __init fib6_rules_init(void)
339{
340 return register_pernet_subsys(&fib6_rules_net_ops);
341}
342
343
Thomas Graf101367c2006-08-04 03:39:02 -0700344void fib6_rules_cleanup(void)
345{
YOSHIFUJI Hideakiff4e1fb2008-04-10 15:41:28 +0900346 unregister_pernet_subsys(&fib6_rules_net_ops);
Thomas Graf101367c2006-08-04 03:39:02 -0700347}