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