blob: 26374cbe2bc2d5ce1cd2e3d04f469cac79897b32 [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>
17
18#include <net/fib_rules.h>
19#include <net/ipv6.h>
20#include <net/ip6_route.h>
21#include <net/netlink.h>
22
23struct fib6_rule
24{
25 struct fib_rule common;
26 struct rt6key src;
27 struct rt6key dst;
28 u8 tclass;
29};
30
31static struct fib_rules_ops fib6_rules_ops;
32
33static struct fib6_rule main_rule = {
34 .common = {
35 .refcnt = ATOMIC_INIT(2),
36 .pref = 0x7FFE,
37 .action = FR_ACT_TO_TBL,
38 .table = RT6_TABLE_MAIN,
39 },
40};
41
42static struct fib6_rule local_rule = {
43 .common = {
44 .refcnt = ATOMIC_INIT(2),
45 .pref = 0,
46 .action = FR_ACT_TO_TBL,
47 .table = RT6_TABLE_LOCAL,
48 .flags = FIB_RULE_PERMANENT,
49 },
50};
51
52static LIST_HEAD(fib6_rules);
53
54struct dst_entry *fib6_rule_lookup(struct flowi *fl, int flags,
55 pol_lookup_t lookup)
56{
57 struct fib_lookup_arg arg = {
58 .lookup_ptr = lookup,
59 };
60
61 fib_rules_lookup(&fib6_rules_ops, fl, flags, &arg);
62 if (arg.rule)
63 fib_rule_put(arg.rule);
64
Ville Nuorvalab1429552006-08-08 16:44:17 -070065 if (arg.result)
66 return (struct dst_entry *) arg.result;
67
68 dst_hold(&ip6_null_entry.u.dst);
69 return &ip6_null_entry.u.dst;
Thomas Graf101367c2006-08-04 03:39:02 -070070}
71
Adrian Bunk8ce11e62006-08-07 21:50:48 -070072static int fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
73 int flags, struct fib_lookup_arg *arg)
Thomas Graf101367c2006-08-04 03:39:02 -070074{
75 struct rt6_info *rt = NULL;
76 struct fib6_table *table;
77 pol_lookup_t lookup = arg->lookup_ptr;
78
79 switch (rule->action) {
80 case FR_ACT_TO_TBL:
81 break;
82 case FR_ACT_UNREACHABLE:
83 rt = &ip6_null_entry;
84 goto discard_pkt;
85 default:
86 case FR_ACT_BLACKHOLE:
87 rt = &ip6_blk_hole_entry;
88 goto discard_pkt;
89 case FR_ACT_PROHIBIT:
90 rt = &ip6_prohibit_entry;
91 goto discard_pkt;
92 }
93
94 table = fib6_get_table(rule->table);
95 if (table)
96 rt = lookup(table, flp, flags);
97
98 if (rt != &ip6_null_entry)
99 goto out;
Thomas Graf101367c2006-08-04 03:39:02 -0700100 dst_release(&rt->u.dst);
Patrick McHardy3226f6882006-08-06 22:24:08 -0700101 rt = NULL;
102 goto out;
103
Thomas Graf101367c2006-08-04 03:39:02 -0700104discard_pkt:
105 dst_hold(&rt->u.dst);
106out:
107 arg->result = rt;
108 return rt == NULL ? -EAGAIN : 0;
109}
110
111
112static int fib6_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
113{
114 struct fib6_rule *r = (struct fib6_rule *) rule;
115
Thomas Grafadaa70b2006-10-13 15:01:03 -0700116 if (r->dst.plen &&
117 !ipv6_prefix_equal(&fl->fl6_dst, &r->dst.addr, r->dst.plen))
Thomas Graf101367c2006-08-04 03:39:02 -0700118 return 0;
119
Thomas Grafadaa70b2006-10-13 15:01:03 -0700120 if (r->src.plen) {
121 if (!(flags & RT6_LOOKUP_F_HAS_SADDR) ||
122 !ipv6_prefix_equal(&fl->fl6_src, &r->src.addr, r->src.plen))
123 return 0;
124 }
Thomas Graf101367c2006-08-04 03:39:02 -0700125
YOSHIFUJI Hideaki2cc67cc2006-08-21 19:18:57 +0900126 if (r->tclass && r->tclass != ((ntohl(fl->fl6_flowlabel) >> 20) & 0xff))
127 return 0;
128
Thomas Graf101367c2006-08-04 03:39:02 -0700129 return 1;
130}
131
YOSHIFUJI Hideaki2613aad2006-08-25 16:05:00 -0700132static struct nla_policy fib6_rule_policy[FRA_MAX+1] __read_mostly = {
Thomas Graf5176f912006-08-26 20:13:18 -0700133 [FRA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 },
Thomas Graf101367c2006-08-04 03:39:02 -0700134 [FRA_PRIORITY] = { .type = NLA_U32 },
Thomas Graf5176f912006-08-26 20:13:18 -0700135 [FRA_SRC] = { .len = sizeof(struct in6_addr) },
136 [FRA_DST] = { .len = sizeof(struct in6_addr) },
YOSHIFUJI Hideaki6c5eb6a2006-08-25 16:04:29 -0700137 [FRA_FWMARK] = { .type = NLA_U32 },
YOSHIFUJI Hideakicd9d7422006-08-25 16:05:43 -0700138 [FRA_FWMASK] = { .type = NLA_U32 },
Patrick McHardy9e762a42006-08-10 23:09:48 -0700139 [FRA_TABLE] = { .type = NLA_U32 },
Thomas Graf101367c2006-08-04 03:39:02 -0700140};
141
142static int fib6_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
143 struct nlmsghdr *nlh, struct fib_rule_hdr *frh,
144 struct nlattr **tb)
145{
146 int err = -EINVAL;
147 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
148
149 if (frh->src_len > 128 || frh->dst_len > 128 ||
150 (frh->tos & ~IPV6_FLOWINFO_MASK))
151 goto errout;
152
153 if (rule->action == FR_ACT_TO_TBL) {
154 if (rule->table == RT6_TABLE_UNSPEC)
155 goto errout;
156
157 if (fib6_new_table(rule->table) == NULL) {
158 err = -ENOBUFS;
159 goto errout;
160 }
161 }
162
163 if (tb[FRA_SRC])
164 nla_memcpy(&rule6->src.addr, tb[FRA_SRC],
165 sizeof(struct in6_addr));
166
167 if (tb[FRA_DST])
168 nla_memcpy(&rule6->dst.addr, tb[FRA_DST],
169 sizeof(struct in6_addr));
170
171 rule6->src.plen = frh->src_len;
172 rule6->dst.plen = frh->dst_len;
173 rule6->tclass = frh->tos;
174
175 err = 0;
176errout:
177 return err;
178}
179
180static int fib6_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
181 struct nlattr **tb)
182{
183 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
184
185 if (frh->src_len && (rule6->src.plen != frh->src_len))
186 return 0;
187
188 if (frh->dst_len && (rule6->dst.plen != frh->dst_len))
189 return 0;
190
191 if (frh->tos && (rule6->tclass != frh->tos))
192 return 0;
193
194 if (tb[FRA_SRC] &&
195 nla_memcmp(tb[FRA_SRC], &rule6->src.addr, sizeof(struct in6_addr)))
196 return 0;
197
198 if (tb[FRA_DST] &&
199 nla_memcmp(tb[FRA_DST], &rule6->dst.addr, sizeof(struct in6_addr)))
200 return 0;
201
202 return 1;
203}
204
205static int fib6_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
206 struct nlmsghdr *nlh, struct fib_rule_hdr *frh)
207{
208 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
209
210 frh->family = AF_INET6;
211 frh->dst_len = rule6->dst.plen;
212 frh->src_len = rule6->src.plen;
213 frh->tos = rule6->tclass;
214
215 if (rule6->dst.plen)
216 NLA_PUT(skb, FRA_DST, sizeof(struct in6_addr),
217 &rule6->dst.addr);
218
219 if (rule6->src.plen)
220 NLA_PUT(skb, FRA_SRC, sizeof(struct in6_addr),
221 &rule6->src.addr);
222
Thomas Graf101367c2006-08-04 03:39:02 -0700223 return 0;
224
225nla_put_failure:
226 return -ENOBUFS;
227}
228
229int fib6_rules_dump(struct sk_buff *skb, struct netlink_callback *cb)
230{
231 return fib_rules_dump(skb, cb, AF_INET6);
232}
233
234static u32 fib6_rule_default_pref(void)
235{
236 return 0x3FFF;
237}
238
239static struct fib_rules_ops fib6_rules_ops = {
240 .family = AF_INET6,
241 .rule_size = sizeof(struct fib6_rule),
242 .action = fib6_rule_action,
243 .match = fib6_rule_match,
244 .configure = fib6_rule_configure,
245 .compare = fib6_rule_compare,
246 .fill = fib6_rule_fill,
247 .default_pref = fib6_rule_default_pref,
248 .nlgroup = RTNLGRP_IPV6_RULE,
249 .policy = fib6_rule_policy,
250 .rules_list = &fib6_rules,
251 .owner = THIS_MODULE,
252};
253
254void __init fib6_rules_init(void)
255{
256 list_add_tail(&local_rule.common.list, &fib6_rules);
257 list_add_tail(&main_rule.common.list, &fib6_rules);
258
259 fib_rules_register(&fib6_rules_ops);
260}
261
262void fib6_rules_cleanup(void)
263{
264 fib_rules_unregister(&fib6_rules_ops);
265}