blob: 5e86dd5423024c3823cb1954e62b2d89c250441e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
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:
Steven Whitehousea8731cb2006-08-09 15:56:46 -070014 * Steve Whitehouse <steve@chygwyn.com>
15 * Updated for Thomas Graf's generic rules
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/netlink.h>
21#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/spinlock.h>
Steven Whitehouseecba3202006-03-20 22:43:28 -080024#include <linux/list.h>
25#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/neighbour.h>
27#include <net/dst.h>
28#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070029#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/dn.h>
31#include <net/dn_fib.h>
32#include <net/dn_neigh.h>
33#include <net/dn_dev.h>
34
Steven Whitehousea8731cb2006-08-09 15:56:46 -070035static struct fib_rules_ops dn_fib_rules_ops;
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037struct dn_fib_rule
38{
Steven Whitehousea8731cb2006-08-09 15:56:46 -070039 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50static struct dn_fib_rule default_rule = {
Steven Whitehousea8731cb2006-08-09 15:56:46 -070051 .common = {
52 .refcnt = ATOMIC_INIT(2),
53 .pref = 0x7fff,
54 .table = RT_TABLE_MAIN,
55 .action = FR_ACT_TO_TBL,
56 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
Steven Whitehousea8731cb2006-08-09 15:56:46 -070059static LIST_HEAD(dn_fib_rules);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Steven Whitehousea8731cb2006-08-09 15:56:46 -070061
62int dn_fib_lookup(struct flowi *flp, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Steven Whitehousea8731cb2006-08-09 15:56:46 -070064 struct fib_lookup_arg arg = {
65 .result = res,
66 };
67 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Steven Whitehousea8731cb2006-08-09 15:56:46 -070069 err = fib_rules_lookup(&dn_fib_rules_ops, flp, 0, &arg);
70 res->r = arg.rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 return err;
73}
74
Adrian Bunk2aa7f362006-08-14 23:55:20 -070075static int dn_fib_rule_action(struct fib_rule *rule, struct flowi *flp,
76 int flags, struct fib_lookup_arg *arg)
Steven Whitehouseecba3202006-03-20 22:43:28 -080077{
Steven Whitehousea8731cb2006-08-09 15:56:46 -070078 int err = -EAGAIN;
79 struct dn_fib_table *tbl;
Steven Whitehouseecba3202006-03-20 22:43:28 -080080
Steven Whitehousea8731cb2006-08-09 15:56:46 -070081 switch(rule->action) {
82 case FR_ACT_TO_TBL:
83 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Steven Whitehousea8731cb2006-08-09 15:56:46 -070085 case FR_ACT_UNREACHABLE:
86 err = -ENETUNREACH;
87 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Steven Whitehousea8731cb2006-08-09 15:56:46 -070089 case FR_ACT_PROHIBIT:
90 err = -EACCES;
91 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Steven Whitehousea8731cb2006-08-09 15:56:46 -070093 case FR_ACT_BLACKHOLE:
94 default:
95 err = -EINVAL;
96 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
Steven Whitehousea8731cb2006-08-09 15:56:46 -070099 tbl = dn_fib_get_table(rule->table, 0);
100 if (tbl == NULL)
101 goto errout;
Steven Whitehouseecba3202006-03-20 22:43:28 -0800102
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700103 err = tbl->lookup(tbl, flp, (struct dn_fib_res *)arg->result);
104 if (err > 0)
105 err = -EAGAIN;
106errout:
107 return err;
108}
109
110static struct nla_policy dn_fib_rule_policy[FRA_MAX+1] __read_mostly = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800111 FRA_GENERIC_POLICY,
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700112};
113
114static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
115{
116 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
Steven Whitehouse375d9d72006-11-07 15:09:17 -0800117 __le16 daddr = fl->fld_dst;
118 __le16 saddr = fl->fld_src;
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700119
120 if (((saddr ^ r->src) & r->srcmask) ||
121 ((daddr ^ r->dst) & r->dstmask))
122 return 0;
123
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700124 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700127static int dn_fib_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
128 struct nlmsghdr *nlh, struct fib_rule_hdr *frh,
129 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700131 int err = -EINVAL;
132 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Thomas Grafe1701c62007-03-24 12:46:02 -0700134 if (frh->tos)
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700135 goto errout;
Steven Whitehouseecba3202006-03-20 22:43:28 -0800136
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700137 if (rule->table == RT_TABLE_UNSPEC) {
138 if (rule->action == FR_ACT_TO_TBL) {
139 struct dn_fib_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700141 table = dn_fib_empty_table();
142 if (table == NULL) {
143 err = -ENOBUFS;
144 goto errout;
145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700147 rule->table = table->n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149 }
150
Thomas Grafe1701c62007-03-24 12:46:02 -0700151 if (frh->src_len)
Al Viro2835fdf2007-02-09 18:13:37 +0000152 r->src = nla_get_le16(tb[FRA_SRC]);
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700153
Thomas Grafe1701c62007-03-24 12:46:02 -0700154 if (frh->dst_len)
Al Viro2835fdf2007-02-09 18:13:37 +0000155 r->dst = nla_get_le16(tb[FRA_DST]);
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700156
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700157 r->src_len = frh->src_len;
158 r->srcmask = dnet_make_mask(r->src_len);
159 r->dst_len = frh->dst_len;
160 r->dstmask = dnet_make_mask(r->dst_len);
161 err = 0;
162errout:
163 return err;
164}
165
166static int dn_fib_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
167 struct nlattr **tb)
168{
169 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
170
171 if (frh->src_len && (r->src_len != frh->src_len))
172 return 0;
173
174 if (frh->dst_len && (r->dst_len != frh->dst_len))
175 return 0;
176
Thomas Grafe1701c62007-03-24 12:46:02 -0700177 if (frh->src_len && (r->src != nla_get_le16(tb[FRA_SRC])))
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700178 return 0;
179
Thomas Grafe1701c62007-03-24 12:46:02 -0700180 if (frh->dst_len && (r->dst != nla_get_le16(tb[FRA_DST])))
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700181 return 0;
182
183 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800186unsigned dnet_addr_type(__le16 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 struct flowi fl = { .nl_u = { .dn_u = { .daddr = addr } } };
189 struct dn_fib_res res;
190 unsigned ret = RTN_UNICAST;
Patrick McHardyabcab262006-08-10 23:11:47 -0700191 struct dn_fib_table *tb = dn_fib_get_table(RT_TABLE_LOCAL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 res.r = NULL;
194
195 if (tb) {
196 if (!tb->lookup(tb, &fl, &res)) {
197 ret = res.type;
198 dn_fib_res_put(&res);
199 }
200 }
201 return ret;
202}
203
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700204static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
205 struct nlmsghdr *nlh, struct fib_rule_hdr *frh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700207 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700209 frh->family = AF_DECnet;
210 frh->dst_len = r->dst_len;
211 frh->src_len = r->src_len;
212 frh->tos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700214 if (r->dst_len)
Al Viro2835fdf2007-02-09 18:13:37 +0000215 NLA_PUT_LE16(skb, FRA_DST, r->dst);
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700216 if (r->src_len)
Al Viro2835fdf2007-02-09 18:13:37 +0000217 NLA_PUT_LE16(skb, FRA_SRC, r->src);
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700218
219 return 0;
220
221nla_put_failure:
222 return -ENOBUFS;
223}
224
225static u32 dn_fib_rule_default_pref(void)
226{
227 struct list_head *pos;
228 struct fib_rule *rule;
229
230 if (!list_empty(&dn_fib_rules)) {
231 pos = dn_fib_rules.next;
232 if (pos->next != &dn_fib_rules) {
233 rule = list_entry(pos->next, struct fib_rule, list);
234 if (rule->pref)
235 return rule->pref - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700239 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242int dn_fib_dump_rules(struct sk_buff *skb, struct netlink_callback *cb)
243{
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700244 return fib_rules_dump(skb, cb, AF_DECnet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700247static struct fib_rules_ops dn_fib_rules_ops = {
248 .family = AF_DECnet,
249 .rule_size = sizeof(struct dn_fib_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700250 .addr_size = sizeof(u16),
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700251 .action = dn_fib_rule_action,
252 .match = dn_fib_rule_match,
253 .configure = dn_fib_rule_configure,
254 .compare = dn_fib_rule_compare,
255 .fill = dn_fib_rule_fill,
256 .default_pref = dn_fib_rule_default_pref,
257 .nlgroup = RTNLGRP_DECnet_RULE,
258 .policy = dn_fib_rule_policy,
259 .rules_list = &dn_fib_rules,
260 .owner = THIS_MODULE,
261};
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263void __init dn_fib_rules_init(void)
264{
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700265 list_add_tail(&default_rule.common.list, &dn_fib_rules);
266 fib_rules_register(&dn_fib_rules_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269void __exit dn_fib_rules_cleanup(void)
270{
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700271 fib_rules_unregister(&dn_fib_rules_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274