[DECNET] Fix to decnet rules compare function
[safe/jmp/linux-2.6] / net / decnet / dn_rules.c
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:
14  *              Steve Whitehouse <steve@chygwyn.com>
15  *              Updated for Thomas Graf's generic rules
16  *
17  */
18 #include <linux/net.h>
19 #include <linux/init.h>
20 #include <linux/netlink.h>
21 #include <linux/rtnetlink.h>
22 #include <linux/netdevice.h>
23 #include <linux/spinlock.h>
24 #include <linux/list.h>
25 #include <linux/rcupdate.h>
26 #include <net/neighbour.h>
27 #include <net/dst.h>
28 #include <net/flow.h>
29 #include <net/fib_rules.h>
30 #include <net/dn.h>
31 #include <net/dn_fib.h>
32 #include <net/dn_neigh.h>
33 #include <net/dn_dev.h>
34
35 static struct fib_rules_ops dn_fib_rules_ops;
36
37 struct dn_fib_rule
38 {
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;
48 #ifdef CONFIG_DECNET_ROUTE_FWMARK
49         u32                     fwmark;
50 #endif
51 };
52
53 static struct dn_fib_rule default_rule = {
54         .common = {
55                 .refcnt =               ATOMIC_INIT(2),
56                 .pref =                 0x7fff,
57                 .table =                RT_TABLE_MAIN,
58                 .action =               FR_ACT_TO_TBL,
59         },
60 };
61
62 static LIST_HEAD(dn_fib_rules);
63
64
65 int dn_fib_lookup(struct flowi *flp, struct dn_fib_res *res)
66 {
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;
74
75         return err;
76 }
77
78 int dn_fib_rule_action(struct fib_rule *rule, struct flowi *flp, int flags,
79                        struct fib_lookup_arg *arg)
80 {
81         int err = -EAGAIN;
82         struct dn_fib_table *tbl;
83
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;
100         }
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;
109 errout:
110         return err;
111 }
112
113 static 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         [FRA_TABLE]     = { .type = NLA_U32 },
120 };
121
122 static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
123 {
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;
131
132 #ifdef CONFIG_DECNET_ROUTE_FWMARK
133         if (r->fwmark && (r->fwmark != fl->fld_fwmark))
134                 return 0;
135 #endif
136
137         return 1;
138 }
139
140 static 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;
161                 }
162         }
163
164         if (tb[FRA_SRC])
165                 r->src = nla_get_u16(tb[FRA_SRC]);
166
167         if (tb[FRA_DST])
168                 r->dst = nla_get_u16(tb[FRA_DST]);
169
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;
180 errout:
181         return err;
182 }
183
184 static int dn_fib_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
185                                struct nlattr **tb)
186 {
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;
191
192         if (frh->dst_len && (r->dst_len != frh->dst_len))
193                 return 0;
194
195 #ifdef CONFIG_DECNET_ROUTE_FWMARK
196         if (tb[FRA_FWMARK] && (r->fwmark != nla_get_u32(tb[FRA_FWMARK])))
197                 return 0;
198 #endif
199
200         if (tb[FRA_SRC] && (r->src != nla_get_u16(tb[FRA_SRC])))
201                 return 0;
202
203         if (tb[FRA_DST] && (r->dst != nla_get_u16(tb[FRA_DST])))
204                 return 0;
205
206         return 1;
207 }
208
209 unsigned dnet_addr_type(__le16 addr)
210 {
211         struct flowi fl = { .nl_u = { .dn_u = { .daddr = addr } } };
212         struct dn_fib_res res;
213         unsigned ret = RTN_UNICAST;
214         struct dn_fib_table *tb = dn_fib_get_table(RT_TABLE_LOCAL, 0);
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
227 static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
228                             struct nlmsghdr *nlh, struct fib_rule_hdr *frh)
229 {
230         struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
231
232         frh->family = AF_DECnet;
233         frh->dst_len = r->dst_len;
234         frh->src_len = r->src_len;
235         frh->tos = 0;
236
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);
245
246         return 0;
247
248 nla_put_failure:
249         return -ENOBUFS;
250 }
251
252 static u32 dn_fib_rule_default_pref(void)
253 {
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                 }
264         }
265
266         return 0;
267 }
268
269 int dn_fib_dump_rules(struct sk_buff *skb, struct netlink_callback *cb)
270 {
271         return fib_rules_dump(skb, cb, AF_DECnet);
272 }
273
274 static 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
289 void __init dn_fib_rules_init(void)
290 {
291         list_add_tail(&default_rule.common.list, &dn_fib_rules);
292         fib_rules_register(&dn_fib_rules_ops);
293 }
294
295 void __exit dn_fib_rules_cleanup(void)
296 {
297         fib_rules_unregister(&dn_fib_rules_ops);
298 }
299
300