blob: e64e6a55fc4a83749ed5043be43660fa5a174fa8 [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{
35 struct fib_lookup_arg arg = {
36 .lookup_ptr = lookup,
Eric Dumazet2c1c0002010-10-13 02:45:40 +000037 .flags = FIB_LOOKUP_NOREF,
Thomas Graf101367c2006-08-04 03:39:02 -070038 };
39
David S. Miller4c9483b2011-03-12 16:22:43 -050040 fib_rules_lookup(net->ipv6.fib6_rules_ops,
41 flowi6_to_flowi(fl6), flags, &arg);
Thomas Graf101367c2006-08-04 03:39:02 -070042
Ville Nuorvalab1429552006-08-08 16:44:17 -070043 if (arg.result)
YOSHIFUJI Hideaki40aa7b92006-10-19 13:50:09 +090044 return arg.result;
Ville Nuorvalab1429552006-08-08 16:44:17 -070045
Changli Gaod8d1f302010-06-10 23:31:35 -070046 dst_hold(&net->ipv6.ip6_null_entry->dst);
47 return &net->ipv6.ip6_null_entry->dst;
Thomas Graf101367c2006-08-04 03:39:02 -070048}
49
Adrian Bunk8ce11e62006-08-07 21:50:48 -070050static int fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
51 int flags, struct fib_lookup_arg *arg)
Thomas Graf101367c2006-08-04 03:39:02 -070052{
David S. Miller4c9483b2011-03-12 16:22:43 -050053 struct flowi6 *flp6 = &flp->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -070054 struct rt6_info *rt = NULL;
55 struct fib6_table *table;
Daniel Lezcano8ed67782008-03-04 13:48:30 -080056 struct net *net = rule->fr_net;
Thomas Graf101367c2006-08-04 03:39:02 -070057 pol_lookup_t lookup = arg->lookup_ptr;
58
59 switch (rule->action) {
60 case FR_ACT_TO_TBL:
61 break;
62 case FR_ACT_UNREACHABLE:
Daniel Lezcano8ed67782008-03-04 13:48:30 -080063 rt = net->ipv6.ip6_null_entry;
Thomas Graf101367c2006-08-04 03:39:02 -070064 goto discard_pkt;
65 default:
66 case FR_ACT_BLACKHOLE:
Daniel Lezcano8ed67782008-03-04 13:48:30 -080067 rt = net->ipv6.ip6_blk_hole_entry;
Thomas Graf101367c2006-08-04 03:39:02 -070068 goto discard_pkt;
69 case FR_ACT_PROHIBIT:
Daniel Lezcano8ed67782008-03-04 13:48:30 -080070 rt = net->ipv6.ip6_prohibit_entry;
Thomas Graf101367c2006-08-04 03:39:02 -070071 goto discard_pkt;
72 }
73
Daniel Lezcano8ed67782008-03-04 13:48:30 -080074 table = fib6_get_table(net, rule->table);
Thomas Graf101367c2006-08-04 03:39:02 -070075 if (table)
David S. Miller4c9483b2011-03-12 16:22:43 -050076 rt = lookup(net, table, flp6, flags);
Thomas Graf101367c2006-08-04 03:39:02 -070077
Daniel Lezcano8ed67782008-03-04 13:48:30 -080078 if (rt != net->ipv6.ip6_null_entry) {
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -070079 struct fib6_rule *r = (struct fib6_rule *)rule;
80
81 /*
82 * If we need to find a source address for this traffic,
83 * we check the result if it meets requirement of the rule.
84 */
85 if ((rule->flags & FIB_RULE_FIND_SADDR) &&
86 r->src.plen && !(flags & RT6_LOOKUP_F_HAS_SADDR)) {
87 struct in6_addr saddr;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +090088
Brian Haley191cd582008-08-14 15:33:21 -070089 if (ipv6_dev_get_saddr(net,
Changli Gaod8d1f302010-06-10 23:31:35 -070090 ip6_dst_idev(&rt->dst)->dev,
David S. Miller4c9483b2011-03-12 16:22:43 -050091 &flp6->daddr,
YOSHIFUJI Hideaki / 吉藤英明0c9a2ac2010-03-07 00:14:44 +000092 rt6_flags2srcprefs(flags),
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +090093 &saddr))
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -070094 goto again;
95 if (!ipv6_prefix_equal(&saddr, &r->src.addr,
96 r->src.plen))
97 goto again;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +000098 flp6->saddr = saddr;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -070099 }
Thomas Graf101367c2006-08-04 03:39:02 -0700100 goto out;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700101 }
102again:
Amerigo Wang94e187c2012-10-29 00:13:19 +0000103 ip6_rt_put(rt);
Patrick McHardy3226f6882006-08-06 22:24:08 -0700104 rt = NULL;
105 goto out;
106
Thomas Graf101367c2006-08-04 03:39:02 -0700107discard_pkt:
Changli Gaod8d1f302010-06-10 23:31:35 -0700108 dst_hold(&rt->dst);
Thomas Graf101367c2006-08-04 03:39:02 -0700109out:
110 arg->result = rt;
111 return rt == NULL ? -EAGAIN : 0;
112}
113
Stefan Tomanek7764a452013-08-01 02:17:15 +0200114static bool fib6_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
115{
116 struct rt6_info *rt = (struct rt6_info *) arg->result;
117 /* do not accept result if the route does
118 * not meet the required prefix length
119 */
120 if (rt->rt6i_dst.plen < rule->table_prefixlen_min) {
121 ip6_rt_put(rt);
122 return true;
123 }
124 return false;
125}
Thomas Graf101367c2006-08-04 03:39:02 -0700126
127static int fib6_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
128{
129 struct fib6_rule *r = (struct fib6_rule *) rule;
David S. Miller4c9483b2011-03-12 16:22:43 -0500130 struct flowi6 *fl6 = &fl->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700131
Thomas Grafadaa70b2006-10-13 15:01:03 -0700132 if (r->dst.plen &&
David S. Miller4c9483b2011-03-12 16:22:43 -0500133 !ipv6_prefix_equal(&fl6->daddr, &r->dst.addr, r->dst.plen))
Thomas Graf101367c2006-08-04 03:39:02 -0700134 return 0;
135
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700136 /*
137 * If FIB_RULE_FIND_SADDR is set and we do not have a
138 * source address for the traffic, we defer check for
139 * source address.
140 */
Thomas Grafadaa70b2006-10-13 15:01:03 -0700141 if (r->src.plen) {
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700142 if (flags & RT6_LOOKUP_F_HAS_SADDR) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500143 if (!ipv6_prefix_equal(&fl6->saddr, &r->src.addr,
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700144 r->src.plen))
145 return 0;
146 } else if (!(r->common.flags & FIB_RULE_FIND_SADDR))
Thomas Grafadaa70b2006-10-13 15:01:03 -0700147 return 0;
148 }
Thomas Graf101367c2006-08-04 03:39:02 -0700149
David S. Miller4c9483b2011-03-12 16:22:43 -0500150 if (r->tclass && r->tclass != ((ntohl(fl6->flowlabel) >> 20) & 0xff))
YOSHIFUJI Hideaki2cc67cc2006-08-21 19:18:57 +0900151 return 0;
152
Thomas Graf101367c2006-08-04 03:39:02 -0700153 return 1;
154}
155
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700156static const struct nla_policy fib6_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800157 FRA_GENERIC_POLICY,
Thomas Graf101367c2006-08-04 03:39:02 -0700158};
159
160static int fib6_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000161 struct fib_rule_hdr *frh,
Thomas Graf101367c2006-08-04 03:39:02 -0700162 struct nlattr **tb)
163{
164 int err = -EINVAL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900165 struct net *net = sock_net(skb->sk);
Thomas Graf101367c2006-08-04 03:39:02 -0700166 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
167
Thomas Graf101367c2006-08-04 03:39:02 -0700168 if (rule->action == FR_ACT_TO_TBL) {
169 if (rule->table == RT6_TABLE_UNSPEC)
170 goto errout;
171
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800172 if (fib6_new_table(net, rule->table) == NULL) {
Thomas Graf101367c2006-08-04 03:39:02 -0700173 err = -ENOBUFS;
174 goto errout;
175 }
176 }
177
Thomas Grafe1701c62007-03-24 12:46:02 -0700178 if (frh->src_len)
Thomas Graf101367c2006-08-04 03:39:02 -0700179 nla_memcpy(&rule6->src.addr, tb[FRA_SRC],
180 sizeof(struct in6_addr));
181
Thomas Grafe1701c62007-03-24 12:46:02 -0700182 if (frh->dst_len)
Thomas Graf101367c2006-08-04 03:39:02 -0700183 nla_memcpy(&rule6->dst.addr, tb[FRA_DST],
184 sizeof(struct in6_addr));
185
186 rule6->src.plen = frh->src_len;
187 rule6->dst.plen = frh->dst_len;
188 rule6->tclass = frh->tos;
189
190 err = 0;
191errout:
192 return err;
193}
194
195static int fib6_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
196 struct nlattr **tb)
197{
198 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
199
200 if (frh->src_len && (rule6->src.plen != frh->src_len))
201 return 0;
202
203 if (frh->dst_len && (rule6->dst.plen != frh->dst_len))
204 return 0;
205
206 if (frh->tos && (rule6->tclass != frh->tos))
207 return 0;
208
Thomas Grafe1701c62007-03-24 12:46:02 -0700209 if (frh->src_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700210 nla_memcmp(tb[FRA_SRC], &rule6->src.addr, sizeof(struct in6_addr)))
211 return 0;
212
Thomas Grafe1701c62007-03-24 12:46:02 -0700213 if (frh->dst_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700214 nla_memcmp(tb[FRA_DST], &rule6->dst.addr, sizeof(struct in6_addr)))
215 return 0;
216
217 return 1;
218}
219
220static int fib6_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700221 struct fib_rule_hdr *frh)
Thomas Graf101367c2006-08-04 03:39:02 -0700222{
223 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
224
Thomas Graf101367c2006-08-04 03:39:02 -0700225 frh->dst_len = rule6->dst.plen;
226 frh->src_len = rule6->src.plen;
227 frh->tos = rule6->tclass;
228
David S. Millerc78679e2012-04-01 20:27:33 -0400229 if ((rule6->dst.plen &&
230 nla_put(skb, FRA_DST, sizeof(struct in6_addr),
231 &rule6->dst.addr)) ||
232 (rule6->src.plen &&
233 nla_put(skb, FRA_SRC, sizeof(struct in6_addr),
234 &rule6->src.addr)))
235 goto nla_put_failure;
Thomas Graf101367c2006-08-04 03:39:02 -0700236 return 0;
237
238nla_put_failure:
239 return -ENOBUFS;
240}
241
Denis V. Lunev868d13a2008-01-10 03:18:25 -0800242static u32 fib6_rule_default_pref(struct fib_rules_ops *ops)
Thomas Graf101367c2006-08-04 03:39:02 -0700243{
244 return 0x3FFF;
245}
246
Thomas Graf339bf982006-11-10 14:10:15 -0800247static size_t fib6_rule_nlmsg_payload(struct fib_rule *rule)
248{
249 return nla_total_size(16) /* dst */
250 + nla_total_size(16); /* src */
251}
252
Andi Kleen04a6f822012-10-04 17:12:11 -0700253static const struct fib_rules_ops __net_initconst fib6_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200254 .family = AF_INET6,
Thomas Graf101367c2006-08-04 03:39:02 -0700255 .rule_size = sizeof(struct fib6_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700256 .addr_size = sizeof(struct in6_addr),
Thomas Graf101367c2006-08-04 03:39:02 -0700257 .action = fib6_rule_action,
258 .match = fib6_rule_match,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200259 .suppress = fib6_rule_suppress,
Thomas Graf101367c2006-08-04 03:39:02 -0700260 .configure = fib6_rule_configure,
261 .compare = fib6_rule_compare,
262 .fill = fib6_rule_fill,
263 .default_pref = fib6_rule_default_pref,
Thomas Graf339bf982006-11-10 14:10:15 -0800264 .nlmsg_payload = fib6_rule_nlmsg_payload,
Thomas Graf101367c2006-08-04 03:39:02 -0700265 .nlgroup = RTNLGRP_IPV6_RULE,
266 .policy = fib6_rule_policy,
Thomas Graf101367c2006-08-04 03:39:02 -0700267 .owner = THIS_MODULE,
Denis V. Lunev035923832008-01-20 16:46:01 -0800268 .fro_net = &init_net,
Thomas Graf101367c2006-08-04 03:39:02 -0700269};
270
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000271static int __net_init fib6_rules_net_init(struct net *net)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800272{
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800273 struct fib_rules_ops *ops;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800274 int err = -ENOMEM;
Denis V. Lunev2994c632007-11-10 22:12:03 -0800275
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800276 ops = fib_rules_register(&fib6_rules_ops_template, net);
277 if (IS_ERR(ops))
278 return PTR_ERR(ops);
279 net->ipv6.fib6_rules_ops = ops;
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800280
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800281
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800282 err = fib_default_rule_add(net->ipv6.fib6_rules_ops, 0,
Patrick McHardy5adef182009-12-03 01:25:57 +0000283 RT6_TABLE_LOCAL, 0);
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800284 if (err)
285 goto out_fib6_rules_ops;
286
287 err = fib_default_rule_add(net->ipv6.fib6_rules_ops,
288 0x7FFE, RT6_TABLE_MAIN, 0);
289 if (err)
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800290 goto out_fib6_rules_ops;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800291
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800292out:
293 return err;
294
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800295out_fib6_rules_ops:
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800296 fib_rules_unregister(ops);
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800297 goto out;
Thomas Graf101367c2006-08-04 03:39:02 -0700298}
299
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000300static void __net_exit fib6_rules_net_exit(struct net *net)
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800301{
302 fib_rules_unregister(net->ipv6.fib6_rules_ops);
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800303}
304
305static struct pernet_operations fib6_rules_net_ops = {
306 .init = fib6_rules_net_init,
307 .exit = fib6_rules_net_exit,
308};
309
310int __init fib6_rules_init(void)
311{
312 return register_pernet_subsys(&fib6_rules_net_ops);
313}
314
315
Thomas Graf101367c2006-08-04 03:39:02 -0700316void fib6_rules_cleanup(void)
317{
YOSHIFUJI Hideakiff4e1fb2008-04-10 15:41:28 +0900318 unregister_pernet_subsys(&fib6_rules_net_ops);
Thomas Graf101367c2006-08-04 03:39:02 -0700319}