]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/decnet/dn_rules.c
[TG3]: Fix array overrun in tg3_read_partno().
[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;
88e91f29 50 u32 fwmask;
1da177e4 51#endif
1da177e4
LT
52};
53
54static struct dn_fib_rule default_rule = {
a8731cbf
SW
55 .common = {
56 .refcnt = ATOMIC_INIT(2),
57 .pref = 0x7fff,
58 .table = RT_TABLE_MAIN,
59 .action = FR_ACT_TO_TBL,
60 },
1da177e4
LT
61};
62
a8731cbf
SW
63static LIST_HEAD(dn_fib_rules);
64
1da177e4 65
a8731cbf 66int dn_fib_lookup(struct flowi *flp, struct dn_fib_res *res)
1da177e4 67{
a8731cbf
SW
68 struct fib_lookup_arg arg = {
69 .result = res,
70 };
71 int err;
72
73 err = fib_rules_lookup(&dn_fib_rules_ops, flp, 0, &arg);
74 res->r = arg.rule;
1da177e4
LT
75
76 return err;
77}
78
2aa7f36c
AB
79static int dn_fib_rule_action(struct fib_rule *rule, struct flowi *flp,
80 int flags, struct fib_lookup_arg *arg)
ecba320f 81{
a8731cbf
SW
82 int err = -EAGAIN;
83 struct dn_fib_table *tbl;
ecba320f 84
a8731cbf
SW
85 switch(rule->action) {
86 case FR_ACT_TO_TBL:
87 break;
88
89 case FR_ACT_UNREACHABLE:
90 err = -ENETUNREACH;
91 goto errout;
92
93 case FR_ACT_PROHIBIT:
94 err = -EACCES;
95 goto errout;
96
97 case FR_ACT_BLACKHOLE:
98 default:
99 err = -EINVAL;
100 goto errout;
1da177e4 101 }
a8731cbf
SW
102
103 tbl = dn_fib_get_table(rule->table, 0);
104 if (tbl == NULL)
105 goto errout;
106
107 err = tbl->lookup(tbl, flp, (struct dn_fib_res *)arg->result);
108 if (err > 0)
109 err = -EAGAIN;
110errout:
111 return err;
1da177e4
LT
112}
113
a8731cbf 114static struct nla_policy dn_fib_rule_policy[FRA_MAX+1] __read_mostly = {
5176f91e 115 [FRA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 },
a8731cbf
SW
116 [FRA_PRIORITY] = { .type = NLA_U32 },
117 [FRA_SRC] = { .type = NLA_U16 },
118 [FRA_DST] = { .type = NLA_U16 },
119 [FRA_FWMARK] = { .type = NLA_U32 },
88e91f29 120 [FRA_FWMASK] = { .type = NLA_U32 },
d880309a 121 [FRA_TABLE] = { .type = NLA_U32 },
a8731cbf 122};
1da177e4 123
a8731cbf 124static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
1da177e4 125{
a8731cbf
SW
126 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
127 u16 daddr = fl->fld_dst;
128 u16 saddr = fl->fld_src;
129
130 if (((saddr ^ r->src) & r->srcmask) ||
131 ((daddr ^ r->dst) & r->dstmask))
132 return 0;
1da177e4 133
1da177e4 134#ifdef CONFIG_DECNET_ROUTE_FWMARK
88e91f29 135 if ((r->fwmark ^ fl->fld_fwmark) & r->fwmask)
a8731cbf 136 return 0;
1da177e4 137#endif
1da177e4 138
a8731cbf
SW
139 return 1;
140}
141
142static int dn_fib_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 dn_fib_rule *r = (struct dn_fib_rule *)rule;
148
149 if (frh->src_len > 16 || frh->dst_len > 16 || frh->tos)
150 goto errout;
151
152 if (rule->table == RT_TABLE_UNSPEC) {
153 if (rule->action == FR_ACT_TO_TBL) {
154 struct dn_fib_table *table;
155
156 table = dn_fib_empty_table();
157 if (table == NULL) {
158 err = -ENOBUFS;
159 goto errout;
160 }
161
162 rule->table = table->n;
1da177e4
LT
163 }
164 }
165
a8731cbf
SW
166 if (tb[FRA_SRC])
167 r->src = nla_get_u16(tb[FRA_SRC]);
ecba320f 168
a8731cbf
SW
169 if (tb[FRA_DST])
170 r->dst = nla_get_u16(tb[FRA_DST]);
1da177e4 171
a8731cbf 172#ifdef CONFIG_DECNET_ROUTE_FWMARK
88e91f29 173 if (tb[FRA_FWMARK]) {
a8731cbf 174 r->fwmark = nla_get_u32(tb[FRA_FWMARK]);
88e91f29
PM
175 if (r->fwmark)
176 /* compatibility: if the mark value is non-zero all bits
177 * are compared unless a mask is explicitly specified.
178 */
179 r->fwmask = 0xFFFFFFFF;
180 }
181
182 if (tb[FRA_FWMASK])
183 r->fwmask = nla_get_u32(tb[FRA_FWMASK]);
a8731cbf
SW
184#endif
185
186 r->src_len = frh->src_len;
187 r->srcmask = dnet_make_mask(r->src_len);
188 r->dst_len = frh->dst_len;
189 r->dstmask = dnet_make_mask(r->dst_len);
190 err = 0;
191errout:
192 return err;
193}
1da177e4 194
a8731cbf
SW
195static int dn_fib_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
196 struct nlattr **tb)
1da177e4 197{
a8731cbf
SW
198 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
199
200 if (frh->src_len && (r->src_len != frh->src_len))
201 return 0;
1da177e4 202
a8731cbf
SW
203 if (frh->dst_len && (r->dst_len != frh->dst_len))
204 return 0;
ecba320f 205
1da177e4 206#ifdef CONFIG_DECNET_ROUTE_FWMARK
a8731cbf
SW
207 if (tb[FRA_FWMARK] && (r->fwmark != nla_get_u32(tb[FRA_FWMARK])))
208 return 0;
88e91f29
PM
209
210 if (tb[FRA_FWMASK] && (r->fwmask != nla_get_u32(tb[FRA_FWMASK])))
211 return 0;
1da177e4 212#endif
1da177e4 213
d1aa62f1 214 if (tb[FRA_SRC] && (r->src != nla_get_u16(tb[FRA_SRC])))
a8731cbf
SW
215 return 0;
216
d1aa62f1 217 if (tb[FRA_DST] && (r->dst != nla_get_u16(tb[FRA_DST])))
a8731cbf 218 return 0;
1da177e4 219
a8731cbf 220 return 1;
1da177e4
LT
221}
222
c4ea94ab 223unsigned dnet_addr_type(__le16 addr)
1da177e4
LT
224{
225 struct flowi fl = { .nl_u = { .dn_u = { .daddr = addr } } };
226 struct dn_fib_res res;
227 unsigned ret = RTN_UNICAST;
abcab268 228 struct dn_fib_table *tb = dn_fib_get_table(RT_TABLE_LOCAL, 0);
1da177e4
LT
229
230 res.r = NULL;
231
232 if (tb) {
233 if (!tb->lookup(tb, &fl, &res)) {
234 ret = res.type;
235 dn_fib_res_put(&res);
236 }
237 }
238 return ret;
239}
240
a8731cbf
SW
241static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
242 struct nlmsghdr *nlh, struct fib_rule_hdr *frh)
1da177e4 243{
a8731cbf 244 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
1da177e4 245
a8731cbf
SW
246 frh->family = AF_DECnet;
247 frh->dst_len = r->dst_len;
248 frh->src_len = r->src_len;
249 frh->tos = 0;
1da177e4 250
a8731cbf
SW
251#ifdef CONFIG_DECNET_ROUTE_FWMARK
252 if (r->fwmark)
253 NLA_PUT_U32(skb, FRA_FWMARK, r->fwmark);
88e91f29
PM
254 if (r->fwmask || r->fwmark)
255 NLA_PUT_U32(skb, FRA_FWMASK, r->fwmask);
a8731cbf
SW
256#endif
257 if (r->dst_len)
258 NLA_PUT_U16(skb, FRA_DST, r->dst);
259 if (r->src_len)
260 NLA_PUT_U16(skb, FRA_SRC, r->src);
1da177e4 261
a8731cbf 262 return 0;
1da177e4 263
a8731cbf
SW
264nla_put_failure:
265 return -ENOBUFS;
1da177e4
LT
266}
267
a8731cbf 268static u32 dn_fib_rule_default_pref(void)
1da177e4 269{
a8731cbf
SW
270 struct list_head *pos;
271 struct fib_rule *rule;
272
273 if (!list_empty(&dn_fib_rules)) {
274 pos = dn_fib_rules.next;
275 if (pos->next != &dn_fib_rules) {
276 rule = list_entry(pos->next, struct fib_rule, list);
277 if (rule->pref)
278 return rule->pref - 1;
279 }
1da177e4
LT
280 }
281
a8731cbf 282 return 0;
1da177e4
LT
283}
284
285int dn_fib_dump_rules(struct sk_buff *skb, struct netlink_callback *cb)
286{
a8731cbf 287 return fib_rules_dump(skb, cb, AF_DECnet);
1da177e4
LT
288}
289
a8731cbf
SW
290static struct fib_rules_ops dn_fib_rules_ops = {
291 .family = AF_DECnet,
292 .rule_size = sizeof(struct dn_fib_rule),
293 .action = dn_fib_rule_action,
294 .match = dn_fib_rule_match,
295 .configure = dn_fib_rule_configure,
296 .compare = dn_fib_rule_compare,
297 .fill = dn_fib_rule_fill,
298 .default_pref = dn_fib_rule_default_pref,
299 .nlgroup = RTNLGRP_DECnet_RULE,
300 .policy = dn_fib_rule_policy,
301 .rules_list = &dn_fib_rules,
302 .owner = THIS_MODULE,
303};
304
1da177e4
LT
305void __init dn_fib_rules_init(void)
306{
a8731cbf
SW
307 list_add_tail(&default_rule.common.list, &dn_fib_rules);
308 fib_rules_register(&dn_fib_rules_ops);
1da177e4
LT
309}
310
311void __exit dn_fib_rules_cleanup(void)
312{
a8731cbf 313 fib_rules_unregister(&dn_fib_rules_ops);
1da177e4
LT
314}
315
316