]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/decnet/dn_rules.c
[TG3]: Constify firmware structs
[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 },
d880309a 119 [FRA_TABLE] = { .type = NLA_U32 },
a8731cbf 120};
1da177e4 121
a8731cbf 122static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
1da177e4 123{
a8731cbf
SW
124 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
125 u16 daddr = fl->fld_dst;
126 u16 saddr = fl->fld_src;
127
128 if (((saddr ^ r->src) & r->srcmask) ||
129 ((daddr ^ r->dst) & r->dstmask))
130 return 0;
1da177e4 131
1da177e4 132#ifdef CONFIG_DECNET_ROUTE_FWMARK
a8731cbf
SW
133 if (r->fwmark && (r->fwmark != fl->fld_fwmark))
134 return 0;
1da177e4 135#endif
1da177e4 136
a8731cbf
SW
137 return 1;
138}
139
140static int dn_fib_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
141 struct nlmsghdr *nlh, struct fib_rule_hdr *frh,
142 struct nlattr **tb)
143{
144 int err = -EINVAL;
145 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
146
147 if (frh->src_len > 16 || frh->dst_len > 16 || frh->tos)
148 goto errout;
149
150 if (rule->table == RT_TABLE_UNSPEC) {
151 if (rule->action == FR_ACT_TO_TBL) {
152 struct dn_fib_table *table;
153
154 table = dn_fib_empty_table();
155 if (table == NULL) {
156 err = -ENOBUFS;
157 goto errout;
158 }
159
160 rule->table = table->n;
1da177e4
LT
161 }
162 }
163
a8731cbf
SW
164 if (tb[FRA_SRC])
165 r->src = nla_get_u16(tb[FRA_SRC]);
ecba320f 166
a8731cbf
SW
167 if (tb[FRA_DST])
168 r->dst = nla_get_u16(tb[FRA_DST]);
1da177e4 169
a8731cbf
SW
170#ifdef CONFIG_DECNET_ROUTE_FWMARK
171 if (tb[FRA_FWMARK])
172 r->fwmark = nla_get_u32(tb[FRA_FWMARK]);
173#endif
174
175 r->src_len = frh->src_len;
176 r->srcmask = dnet_make_mask(r->src_len);
177 r->dst_len = frh->dst_len;
178 r->dstmask = dnet_make_mask(r->dst_len);
179 err = 0;
180errout:
181 return err;
182}
1da177e4 183
a8731cbf
SW
184static int dn_fib_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
185 struct nlattr **tb)
1da177e4 186{
a8731cbf
SW
187 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
188
189 if (frh->src_len && (r->src_len != frh->src_len))
190 return 0;
1da177e4 191
a8731cbf
SW
192 if (frh->dst_len && (r->dst_len != frh->dst_len))
193 return 0;
ecba320f 194
1da177e4 195#ifdef CONFIG_DECNET_ROUTE_FWMARK
a8731cbf
SW
196 if (tb[FRA_FWMARK] && (r->fwmark != nla_get_u32(tb[FRA_FWMARK])))
197 return 0;
1da177e4 198#endif
1da177e4 199
d1aa62f1 200 if (tb[FRA_SRC] && (r->src != nla_get_u16(tb[FRA_SRC])))
a8731cbf
SW
201 return 0;
202
d1aa62f1 203 if (tb[FRA_DST] && (r->dst != nla_get_u16(tb[FRA_DST])))
a8731cbf 204 return 0;
1da177e4 205
a8731cbf 206 return 1;
1da177e4
LT
207}
208
c4ea94ab 209unsigned dnet_addr_type(__le16 addr)
1da177e4
LT
210{
211 struct flowi fl = { .nl_u = { .dn_u = { .daddr = addr } } };
212 struct dn_fib_res res;
213 unsigned ret = RTN_UNICAST;
abcab268 214 struct dn_fib_table *tb = dn_fib_get_table(RT_TABLE_LOCAL, 0);
1da177e4
LT
215
216 res.r = NULL;
217
218 if (tb) {
219 if (!tb->lookup(tb, &fl, &res)) {
220 ret = res.type;
221 dn_fib_res_put(&res);
222 }
223 }
224 return ret;
225}
226
a8731cbf
SW
227static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
228 struct nlmsghdr *nlh, struct fib_rule_hdr *frh)
1da177e4 229{
a8731cbf 230 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
1da177e4 231
a8731cbf
SW
232 frh->family = AF_DECnet;
233 frh->dst_len = r->dst_len;
234 frh->src_len = r->src_len;
235 frh->tos = 0;
1da177e4 236
a8731cbf
SW
237#ifdef CONFIG_DECNET_ROUTE_FWMARK
238 if (r->fwmark)
239 NLA_PUT_U32(skb, FRA_FWMARK, r->fwmark);
240#endif
241 if (r->dst_len)
242 NLA_PUT_U16(skb, FRA_DST, r->dst);
243 if (r->src_len)
244 NLA_PUT_U16(skb, FRA_SRC, r->src);
1da177e4 245
a8731cbf 246 return 0;
1da177e4 247
a8731cbf
SW
248nla_put_failure:
249 return -ENOBUFS;
1da177e4
LT
250}
251
a8731cbf 252static u32 dn_fib_rule_default_pref(void)
1da177e4 253{
a8731cbf
SW
254 struct list_head *pos;
255 struct fib_rule *rule;
256
257 if (!list_empty(&dn_fib_rules)) {
258 pos = dn_fib_rules.next;
259 if (pos->next != &dn_fib_rules) {
260 rule = list_entry(pos->next, struct fib_rule, list);
261 if (rule->pref)
262 return rule->pref - 1;
263 }
1da177e4
LT
264 }
265
a8731cbf 266 return 0;
1da177e4
LT
267}
268
269int dn_fib_dump_rules(struct sk_buff *skb, struct netlink_callback *cb)
270{
a8731cbf 271 return fib_rules_dump(skb, cb, AF_DECnet);
1da177e4
LT
272}
273
a8731cbf
SW
274static struct fib_rules_ops dn_fib_rules_ops = {
275 .family = AF_DECnet,
276 .rule_size = sizeof(struct dn_fib_rule),
277 .action = dn_fib_rule_action,
278 .match = dn_fib_rule_match,
279 .configure = dn_fib_rule_configure,
280 .compare = dn_fib_rule_compare,
281 .fill = dn_fib_rule_fill,
282 .default_pref = dn_fib_rule_default_pref,
283 .nlgroup = RTNLGRP_DECnet_RULE,
284 .policy = dn_fib_rule_policy,
285 .rules_list = &dn_fib_rules,
286 .owner = THIS_MODULE,
287};
288
1da177e4
LT
289void __init dn_fib_rules_init(void)
290{
a8731cbf
SW
291 list_add_tail(&default_rule.common.list, &dn_fib_rules);
292 fib_rules_register(&dn_fib_rules_ops);
1da177e4
LT
293}
294
295void __exit dn_fib_rules_cleanup(void)
296{
a8731cbf 297 fib_rules_unregister(&dn_fib_rules_ops);
1da177e4
LT
298}
299
300