blob: 14fbca55e908fba5e067312dc9561e94af2606b0 [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>
Thomas Graf73417f62007-03-27 13:56:52 -070034#include <net/dn_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Steven Whitehousea8731cb2006-08-09 15:56:46 -070036static struct fib_rules_ops dn_fib_rules_ops;
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038struct dn_fib_rule
39{
Steven Whitehousea8731cb2006-08-09 15:56:46 -070040 struct fib_rule common;
41 unsigned char dst_len;
42 unsigned char src_len;
43 __le16 src;
44 __le16 srcmask;
45 __le16 dst;
46 __le16 dstmask;
47 __le16 srcmap;
48 u8 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Steven Whitehousea8731cb2006-08-09 15:56:46 -070051
52int dn_fib_lookup(struct flowi *flp, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
Steven Whitehousea8731cb2006-08-09 15:56:46 -070054 struct fib_lookup_arg arg = {
55 .result = res,
56 };
57 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Steven Whitehousea8731cb2006-08-09 15:56:46 -070059 err = fib_rules_lookup(&dn_fib_rules_ops, flp, 0, &arg);
60 res->r = arg.rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 return err;
63}
64
Adrian Bunk2aa7f362006-08-14 23:55:20 -070065static int dn_fib_rule_action(struct fib_rule *rule, struct flowi *flp,
66 int flags, struct fib_lookup_arg *arg)
Steven Whitehouseecba3202006-03-20 22:43:28 -080067{
Steven Whitehousea8731cb2006-08-09 15:56:46 -070068 int err = -EAGAIN;
69 struct dn_fib_table *tbl;
Steven Whitehouseecba3202006-03-20 22:43:28 -080070
Steven Whitehousea8731cb2006-08-09 15:56:46 -070071 switch(rule->action) {
72 case FR_ACT_TO_TBL:
73 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Steven Whitehousea8731cb2006-08-09 15:56:46 -070075 case FR_ACT_UNREACHABLE:
76 err = -ENETUNREACH;
77 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Steven Whitehousea8731cb2006-08-09 15:56:46 -070079 case FR_ACT_PROHIBIT:
80 err = -EACCES;
81 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Steven Whitehousea8731cb2006-08-09 15:56:46 -070083 case FR_ACT_BLACKHOLE:
84 default:
85 err = -EINVAL;
86 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 }
88
Steven Whitehousea8731cb2006-08-09 15:56:46 -070089 tbl = dn_fib_get_table(rule->table, 0);
90 if (tbl == NULL)
91 goto errout;
Steven Whitehouseecba3202006-03-20 22:43:28 -080092
Steven Whitehousea8731cb2006-08-09 15:56:46 -070093 err = tbl->lookup(tbl, flp, (struct dn_fib_res *)arg->result);
94 if (err > 0)
95 err = -EAGAIN;
96errout:
97 return err;
98}
99
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700100static const struct nla_policy dn_fib_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800101 FRA_GENERIC_POLICY,
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700102};
103
104static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
105{
106 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
Steven Whitehouse375d9d72006-11-07 15:09:17 -0800107 __le16 daddr = fl->fld_dst;
108 __le16 saddr = fl->fld_src;
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700109
110 if (((saddr ^ r->src) & r->srcmask) ||
111 ((daddr ^ r->dst) & r->dstmask))
112 return 0;
113
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700114 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700117static int dn_fib_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
118 struct nlmsghdr *nlh, struct fib_rule_hdr *frh,
119 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700121 int err = -EINVAL;
122 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Thomas Grafe1701c62007-03-24 12:46:02 -0700124 if (frh->tos)
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700125 goto errout;
Steven Whitehouseecba3202006-03-20 22:43:28 -0800126
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700127 if (rule->table == RT_TABLE_UNSPEC) {
128 if (rule->action == FR_ACT_TO_TBL) {
129 struct dn_fib_table *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700131 table = dn_fib_empty_table();
132 if (table == NULL) {
133 err = -ENOBUFS;
134 goto errout;
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700137 rule->table = table->n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139 }
140
Thomas Grafe1701c62007-03-24 12:46:02 -0700141 if (frh->src_len)
Al Viro2835fdf2007-02-09 18:13:37 +0000142 r->src = nla_get_le16(tb[FRA_SRC]);
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700143
Thomas Grafe1701c62007-03-24 12:46:02 -0700144 if (frh->dst_len)
Al Viro2835fdf2007-02-09 18:13:37 +0000145 r->dst = nla_get_le16(tb[FRA_DST]);
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700146
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700147 r->src_len = frh->src_len;
148 r->srcmask = dnet_make_mask(r->src_len);
149 r->dst_len = frh->dst_len;
150 r->dstmask = dnet_make_mask(r->dst_len);
151 err = 0;
152errout:
153 return err;
154}
155
156static int dn_fib_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
157 struct nlattr **tb)
158{
159 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
160
161 if (frh->src_len && (r->src_len != frh->src_len))
162 return 0;
163
164 if (frh->dst_len && (r->dst_len != frh->dst_len))
165 return 0;
166
Thomas Grafe1701c62007-03-24 12:46:02 -0700167 if (frh->src_len && (r->src != nla_get_le16(tb[FRA_SRC])))
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700168 return 0;
169
Thomas Grafe1701c62007-03-24 12:46:02 -0700170 if (frh->dst_len && (r->dst != nla_get_le16(tb[FRA_DST])))
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700171 return 0;
172
173 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800176unsigned dnet_addr_type(__le16 addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 struct flowi fl = { .nl_u = { .dn_u = { .daddr = addr } } };
179 struct dn_fib_res res;
180 unsigned ret = RTN_UNICAST;
Patrick McHardyabcab262006-08-10 23:11:47 -0700181 struct dn_fib_table *tb = dn_fib_get_table(RT_TABLE_LOCAL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 res.r = NULL;
184
185 if (tb) {
186 if (!tb->lookup(tb, &fl, &res)) {
187 ret = res.type;
188 dn_fib_res_put(&res);
189 }
190 }
191 return ret;
192}
193
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700194static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
195 struct nlmsghdr *nlh, struct fib_rule_hdr *frh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700197 struct dn_fib_rule *r = (struct dn_fib_rule *)rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700199 frh->family = AF_DECnet;
200 frh->dst_len = r->dst_len;
201 frh->src_len = r->src_len;
202 frh->tos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700204 if (r->dst_len)
Al Viro2835fdf2007-02-09 18:13:37 +0000205 NLA_PUT_LE16(skb, FRA_DST, r->dst);
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700206 if (r->src_len)
Al Viro2835fdf2007-02-09 18:13:37 +0000207 NLA_PUT_LE16(skb, FRA_SRC, r->src);
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700208
209 return 0;
210
211nla_put_failure:
212 return -ENOBUFS;
213}
214
Denis V. Lunev868d13a2008-01-10 03:18:25 -0800215static u32 dn_fib_rule_default_pref(struct fib_rules_ops *ops)
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700216{
217 struct list_head *pos;
218 struct fib_rule *rule;
219
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700220 if (!list_empty(&dn_fib_rules_ops.rules_list)) {
221 pos = dn_fib_rules_ops.rules_list.next;
222 if (pos->next != &dn_fib_rules_ops.rules_list) {
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700223 rule = list_entry(pos->next, struct fib_rule, list);
224 if (rule->pref)
225 return rule->pref - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700232static void dn_fib_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700233{
Thomas Graf4b19ca42007-03-28 14:18:52 -0700234 dn_rt_cache_flush(-1);
Thomas Graf73417f62007-03-27 13:56:52 -0700235}
236
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700237static struct fib_rules_ops dn_fib_rules_ops = {
238 .family = AF_DECnet,
239 .rule_size = sizeof(struct dn_fib_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700240 .addr_size = sizeof(u16),
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700241 .action = dn_fib_rule_action,
242 .match = dn_fib_rule_match,
243 .configure = dn_fib_rule_configure,
244 .compare = dn_fib_rule_compare,
245 .fill = dn_fib_rule_fill,
246 .default_pref = dn_fib_rule_default_pref,
Thomas Graf73417f62007-03-27 13:56:52 -0700247 .flush_cache = dn_fib_rule_flush_cache,
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700248 .nlgroup = RTNLGRP_DECnet_RULE,
249 .policy = dn_fib_rule_policy,
Denis V. Lunev76c72d42007-09-16 15:44:27 -0700250 .rules_list = LIST_HEAD_INIT(dn_fib_rules_ops.rules_list),
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700251 .owner = THIS_MODULE,
Denis V. Lunev035923832008-01-20 16:46:01 -0800252 .fro_net = &init_net,
Steven Whitehousea8731cb2006-08-09 15:56:46 -0700253};
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255void __init dn_fib_rules_init(void)
256{
Denis V. Lunev2994c632007-11-10 22:12:03 -0800257 BUG_ON(fib_default_rule_add(&dn_fib_rules_ops, 0x7fff,
258 RT_TABLE_MAIN, 0));
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800259 fib_rules_register(&dn_fib_rules_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262void __exit dn_fib_rules_cleanup(void)
263{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800264 fib_rules_unregister(&dn_fib_rules_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267