]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/decnet/dn_rules.c
[IPV6]: Increase number of possible routing tables to 2^32
[net-next-2.6.git] / net / decnet / dn_rules.c
CommitLineData
1da177e4
LT
1
2/*
3 * DECnet An implementation of the DECnet protocol suite for the LINUX
4 * operating system. DECnet is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * DECnet Routing Forwarding Information Base (Rules)
8 *
9 * Author: Steve Whitehouse <SteveW@ACM.org>
10 * Mostly copied from Alexey Kuznetsov's ipv4/fib_rules.c
11 *
12 *
13 * Changes:
a8731cbf
SW
14 * Steve Whitehouse <steve@chygwyn.com>
15 * Updated for Thomas Graf's generic rules
1da177e4
LT
16 *
17 */
1da177e4 18#include <linux/net.h>
1da177e4 19#include <linux/init.h>
1da177e4
LT
20#include <linux/netlink.h>
21#include <linux/rtnetlink.h>
1da177e4 22#include <linux/netdevice.h>
1da177e4 23#include <linux/spinlock.h>
ecba320f
SW
24#include <linux/list.h>
25#include <linux/rcupdate.h>
1da177e4
LT
26#include <net/neighbour.h>
27#include <net/dst.h>
28#include <net/flow.h>
a8731cbf 29#include <net/fib_rules.h>
1da177e4
LT
30#include <net/dn.h>
31#include <net/dn_fib.h>
32#include <net/dn_neigh.h>
33#include <net/dn_dev.h>
34
a8731cbf
SW
35static struct fib_rules_ops dn_fib_rules_ops;
36
1da177e4
LT
37struct dn_fib_rule
38{
a8731cbf
SW
39 struct fib_rule common;
40 unsigned char dst_len;
41 unsigned char src_len;
42 __le16 src;
43 __le16 srcmask;
44 __le16 dst;
45 __le16 dstmask;
46 __le16 srcmap;
47 u8 flags;
1da177e4 48#ifdef CONFIG_DECNET_ROUTE_FWMARK
a8731cbf 49 u32 fwmark;
1da177e4 50#endif
1da177e4
LT
51};
52
53static struct dn_fib_rule default_rule = {
a8731cbf
SW
54 .common = {
55 .refcnt = ATOMIC_INIT(2),
56 .pref = 0x7fff,
57 .table = RT_TABLE_MAIN,
58 .action = FR_ACT_TO_TBL,
59 },
1da177e4
LT
60};
61
a8731cbf
SW
62static LIST_HEAD(dn_fib_rules);
63
1da177e4 64
a8731cbf 65int dn_fib_lookup(struct flowi *flp, struct dn_fib_res *res)
1da177e4 66{
a8731cbf
SW
67 struct fib_lookup_arg arg = {
68 .result = res,
69 };
70 int err;
71
72 err = fib_rules_lookup(&dn_fib_rules_ops, flp, 0, &arg);
73 res->r = arg.rule;
1da177e4
LT
74
75 return err;
76}
77
a8731cbf
SW
78int dn_fib_rule_action(struct fib_rule *rule, struct flowi *flp, int flags,
79 struct fib_lookup_arg *arg)
ecba320f 80{
a8731cbf
SW
81 int err = -EAGAIN;
82 struct dn_fib_table *tbl;
ecba320f 83
a8731cbf
SW
84 switch(rule->action) {
85 case FR_ACT_TO_TBL:
86 break;
87
88 case FR_ACT_UNREACHABLE:
89 err = -ENETUNREACH;
90 goto errout;
91
92 case FR_ACT_PROHIBIT:
93 err = -EACCES;
94 goto errout;
95
96 case FR_ACT_BLACKHOLE:
97 default:
98 err = -EINVAL;
99 goto errout;
1da177e4 100 }
a8731cbf
SW
101
102 tbl = dn_fib_get_table(rule->table, 0);
103 if (tbl == NULL)
104 goto errout;
105
106 err = tbl->lookup(tbl, flp, (struct dn_fib_res *)arg->result);
107 if (err > 0)
108 err = -EAGAIN;
109errout:
110 return err;
1da177e4
LT
111}
112
a8731cbf
SW
113static struct nla_policy dn_fib_rule_policy[FRA_MAX+1] __read_mostly = {
114 [FRA_IFNAME] = { .type = NLA_STRING },
115 [FRA_PRIORITY] = { .type = NLA_U32 },
116 [FRA_SRC] = { .type = NLA_U16 },
117 [FRA_DST] = { .type = NLA_U16 },
118 [FRA_FWMARK] = { .type = NLA_U32 },
119};
1da177e4 120
a8731cbf 121static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
1da177e4 122{
a8731cbf
SW
123 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
124 u16 daddr = fl->fld_dst;
125 u16 saddr = fl->fld_src;
126
127 if (((saddr ^ r->src) & r->srcmask) ||
128 ((daddr ^ r->dst) & r->dstmask))
129 return 0;
1da177e4 130
1da177e4 131#ifdef CONFIG_DECNET_ROUTE_FWMARK
a8731cbf
SW
132 if (r->fwmark && (r->fwmark != fl->fld_fwmark))
133 return 0;
1da177e4 134#endif
1da177e4 135
a8731cbf
SW
136 return 1;
137}
138
139static int dn_fib_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
140 struct nlmsghdr *nlh, struct fib_rule_hdr *frh,
141 struct nlattr **tb)
142{
143 int err = -EINVAL;
144 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
145
146 if (frh->src_len > 16 || frh->dst_len > 16 || frh->tos)
147 goto errout;
148
149 if (rule->table == RT_TABLE_UNSPEC) {
150 if (rule->action == FR_ACT_TO_TBL) {
151 struct dn_fib_table *table;
152
153 table = dn_fib_empty_table();
154 if (table == NULL) {
155 err = -ENOBUFS;
156 goto errout;
157 }
158
159 rule->table = table->n;
1da177e4
LT
160 }
161 }
162
a8731cbf
SW
163 if (tb[FRA_SRC])
164 r->src = nla_get_u16(tb[FRA_SRC]);
ecba320f 165
a8731cbf
SW
166 if (tb[FRA_DST])
167 r->dst = nla_get_u16(tb[FRA_DST]);
1da177e4 168
a8731cbf
SW
169#ifdef CONFIG_DECNET_ROUTE_FWMARK
170 if (tb[FRA_FWMARK])
171 r->fwmark = nla_get_u32(tb[FRA_FWMARK]);
172#endif
173
174 r->src_len = frh->src_len;
175 r->srcmask = dnet_make_mask(r->src_len);
176 r->dst_len = frh->dst_len;
177 r->dstmask = dnet_make_mask(r->dst_len);
178 err = 0;
179errout:
180 return err;
181}
1da177e4 182
a8731cbf
SW
183static int dn_fib_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
184 struct nlattr **tb)
1da177e4 185{
a8731cbf
SW
186 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
187
188 if (frh->src_len && (r->src_len != frh->src_len))
189 return 0;
1da177e4 190
a8731cbf
SW
191 if (frh->dst_len && (r->dst_len != frh->dst_len))
192 return 0;
ecba320f 193
1da177e4 194#ifdef CONFIG_DECNET_ROUTE_FWMARK
a8731cbf
SW
195 if (tb[FRA_FWMARK] && (r->fwmark != nla_get_u32(tb[FRA_FWMARK])))
196 return 0;
1da177e4 197#endif
1da177e4 198
a8731cbf
SW
199 if (tb[FRA_SRC] && (r->src != nla_get_u32(tb[FRA_SRC])))
200 return 0;
201
202 if (tb[FRA_DST] && (r->dst != nla_get_u32(tb[FRA_DST])))
203 return 0;
1da177e4 204
a8731cbf 205 return 1;
1da177e4
LT
206}
207
c4ea94ab 208unsigned dnet_addr_type(__le16 addr)
1da177e4
LT
209{
210 struct flowi fl = { .nl_u = { .dn_u = { .daddr = addr } } };
211 struct dn_fib_res res;
212 unsigned ret = RTN_UNICAST;
213 struct dn_fib_table *tb = dn_fib_tables[RT_TABLE_LOCAL];
214
215 res.r = NULL;
216
217 if (tb) {
218 if (!tb->lookup(tb, &fl, &res)) {
219 ret = res.type;
220 dn_fib_res_put(&res);
221 }
222 }
223 return ret;
224}
225
a8731cbf
SW
226static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
227 struct nlmsghdr *nlh, struct fib_rule_hdr *frh)
1da177e4 228{
a8731cbf 229 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
1da177e4 230
a8731cbf
SW
231 frh->family = AF_DECnet;
232 frh->dst_len = r->dst_len;
233 frh->src_len = r->src_len;
234 frh->tos = 0;
1da177e4 235
a8731cbf
SW
236#ifdef CONFIG_DECNET_ROUTE_FWMARK
237 if (r->fwmark)
238 NLA_PUT_U32(skb, FRA_FWMARK, r->fwmark);
239#endif
240 if (r->dst_len)
241 NLA_PUT_U16(skb, FRA_DST, r->dst);
242 if (r->src_len)
243 NLA_PUT_U16(skb, FRA_SRC, r->src);
1da177e4 244
a8731cbf 245 return 0;
1da177e4 246
a8731cbf
SW
247nla_put_failure:
248 return -ENOBUFS;
1da177e4
LT
249}
250
a8731cbf 251static u32 dn_fib_rule_default_pref(void)
1da177e4 252{
a8731cbf
SW
253 struct list_head *pos;
254 struct fib_rule *rule;
255
256 if (!list_empty(&dn_fib_rules)) {
257 pos = dn_fib_rules.next;
258 if (pos->next != &dn_fib_rules) {
259 rule = list_entry(pos->next, struct fib_rule, list);
260 if (rule->pref)
261 return rule->pref - 1;
262 }
1da177e4
LT
263 }
264
a8731cbf 265 return 0;
1da177e4
LT
266}
267
268int dn_fib_dump_rules(struct sk_buff *skb, struct netlink_callback *cb)
269{
a8731cbf 270 return fib_rules_dump(skb, cb, AF_DECnet);
1da177e4
LT
271}
272
a8731cbf
SW
273static struct fib_rules_ops dn_fib_rules_ops = {
274 .family = AF_DECnet,
275 .rule_size = sizeof(struct dn_fib_rule),
276 .action = dn_fib_rule_action,
277 .match = dn_fib_rule_match,
278 .configure = dn_fib_rule_configure,
279 .compare = dn_fib_rule_compare,
280 .fill = dn_fib_rule_fill,
281 .default_pref = dn_fib_rule_default_pref,
282 .nlgroup = RTNLGRP_DECnet_RULE,
283 .policy = dn_fib_rule_policy,
284 .rules_list = &dn_fib_rules,
285 .owner = THIS_MODULE,
286};
287
1da177e4
LT
288void __init dn_fib_rules_init(void)
289{
a8731cbf
SW
290 list_add_tail(&default_rule.common.list, &dn_fib_rules);
291 fib_rules_register(&dn_fib_rules_ops);
1da177e4
LT
292}
293
294void __exit dn_fib_rules_cleanup(void)
295{
a8731cbf 296 fib_rules_unregister(&dn_fib_rules_ops);
1da177e4
LT
297}
298
299