]>
Commit | Line | Data |
---|---|---|
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 <[email protected]> | |
10 | * Mostly copied from Alexey Kuznetsov's ipv4/fib_rules.c | |
11 | * | |
12 | * | |
13 | * Changes: | |
a8731cbf SW |
14 | * Steve Whitehouse <[email protected]> |
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> | |
73417f61 | 34 | #include <net/dn_route.h> |
1da177e4 | 35 | |
a8731cbf SW |
36 | static struct fib_rules_ops dn_fib_rules_ops; |
37 | ||
1da177e4 LT |
38 | struct dn_fib_rule |
39 | { | |
a8731cbf SW |
40 | 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; | |
1da177e4 LT |
49 | }; |
50 | ||
1da177e4 | 51 | |
a8731cbf | 52 | int dn_fib_lookup(struct flowi *flp, struct dn_fib_res *res) |
1da177e4 | 53 | { |
a8731cbf SW |
54 | struct fib_lookup_arg arg = { |
55 | .result = res, | |
56 | }; | |
57 | int err; | |
58 | ||
59 | err = fib_rules_lookup(&dn_fib_rules_ops, flp, 0, &arg); | |
60 | res->r = arg.rule; | |
1da177e4 LT |
61 | |
62 | return err; | |
63 | } | |
64 | ||
2aa7f36c AB |
65 | static int dn_fib_rule_action(struct fib_rule *rule, struct flowi *flp, |
66 | int flags, struct fib_lookup_arg *arg) | |
ecba320f | 67 | { |
a8731cbf SW |
68 | int err = -EAGAIN; |
69 | struct dn_fib_table *tbl; | |
ecba320f | 70 | |
a8731cbf SW |
71 | switch(rule->action) { |
72 | case FR_ACT_TO_TBL: | |
73 | break; | |
74 | ||
75 | case FR_ACT_UNREACHABLE: | |
76 | err = -ENETUNREACH; | |
77 | goto errout; | |
78 | ||
79 | case FR_ACT_PROHIBIT: | |
80 | err = -EACCES; | |
81 | goto errout; | |
82 | ||
83 | case FR_ACT_BLACKHOLE: | |
84 | default: | |
85 | err = -EINVAL; | |
86 | goto errout; | |
1da177e4 | 87 | } |
a8731cbf SW |
88 | |
89 | tbl = dn_fib_get_table(rule->table, 0); | |
90 | if (tbl == NULL) | |
91 | goto errout; | |
92 | ||
93 | err = tbl->lookup(tbl, flp, (struct dn_fib_res *)arg->result); | |
94 | if (err > 0) | |
95 | err = -EAGAIN; | |
96 | errout: | |
97 | return err; | |
1da177e4 LT |
98 | } |
99 | ||
ef7c79ed | 100 | static const struct nla_policy dn_fib_rule_policy[FRA_MAX+1] = { |
1f6c9557 | 101 | FRA_GENERIC_POLICY, |
a8731cbf | 102 | }; |
1da177e4 | 103 | |
a8731cbf | 104 | static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags) |
1da177e4 | 105 | { |
a8731cbf | 106 | struct dn_fib_rule *r = (struct dn_fib_rule *)rule; |
375d9d71 SW |
107 | __le16 daddr = fl->fld_dst; |
108 | __le16 saddr = fl->fld_src; | |
a8731cbf SW |
109 | |
110 | if (((saddr ^ r->src) & r->srcmask) || | |
111 | ((daddr ^ r->dst) & r->dstmask)) | |
112 | return 0; | |
1da177e4 | 113 | |
a8731cbf SW |
114 | return 1; |
115 | } | |
116 | ||
117 | static 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) | |
120 | { | |
121 | int err = -EINVAL; | |
122 | struct dn_fib_rule *r = (struct dn_fib_rule *)rule; | |
123 | ||
e1701c68 | 124 | if (frh->tos) |
a8731cbf SW |
125 | goto errout; |
126 | ||
127 | if (rule->table == RT_TABLE_UNSPEC) { | |
128 | if (rule->action == FR_ACT_TO_TBL) { | |
129 | struct dn_fib_table *table; | |
130 | ||
131 | table = dn_fib_empty_table(); | |
132 | if (table == NULL) { | |
133 | err = -ENOBUFS; | |
134 | goto errout; | |
135 | } | |
136 | ||
137 | rule->table = table->n; | |
1da177e4 LT |
138 | } |
139 | } | |
140 | ||
e1701c68 | 141 | if (frh->src_len) |
2835fdfa | 142 | r->src = nla_get_le16(tb[FRA_SRC]); |
ecba320f | 143 | |
e1701c68 | 144 | if (frh->dst_len) |
2835fdfa | 145 | r->dst = nla_get_le16(tb[FRA_DST]); |
1da177e4 | 146 | |
a8731cbf SW |
147 | 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; | |
152 | errout: | |
153 | return err; | |
154 | } | |
1da177e4 | 155 | |
a8731cbf SW |
156 | static int dn_fib_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh, |
157 | struct nlattr **tb) | |
1da177e4 | 158 | { |
a8731cbf SW |
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; | |
1da177e4 | 163 | |
a8731cbf SW |
164 | if (frh->dst_len && (r->dst_len != frh->dst_len)) |
165 | return 0; | |
ecba320f | 166 | |
e1701c68 | 167 | if (frh->src_len && (r->src != nla_get_le16(tb[FRA_SRC]))) |
a8731cbf SW |
168 | return 0; |
169 | ||
e1701c68 | 170 | if (frh->dst_len && (r->dst != nla_get_le16(tb[FRA_DST]))) |
a8731cbf | 171 | return 0; |
1da177e4 | 172 | |
a8731cbf | 173 | return 1; |
1da177e4 LT |
174 | } |
175 | ||
c4ea94ab | 176 | unsigned dnet_addr_type(__le16 addr) |
1da177e4 LT |
177 | { |
178 | struct flowi fl = { .nl_u = { .dn_u = { .daddr = addr } } }; | |
179 | struct dn_fib_res res; | |
180 | unsigned ret = RTN_UNICAST; | |
abcab268 | 181 | struct dn_fib_table *tb = dn_fib_get_table(RT_TABLE_LOCAL, 0); |
1da177e4 LT |
182 | |
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 | ||
a8731cbf SW |
194 | static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb, |
195 | struct nlmsghdr *nlh, struct fib_rule_hdr *frh) | |
1da177e4 | 196 | { |
a8731cbf | 197 | struct dn_fib_rule *r = (struct dn_fib_rule *)rule; |
1da177e4 | 198 | |
a8731cbf SW |
199 | frh->family = AF_DECnet; |
200 | frh->dst_len = r->dst_len; | |
201 | frh->src_len = r->src_len; | |
202 | frh->tos = 0; | |
1da177e4 | 203 | |
a8731cbf | 204 | if (r->dst_len) |
2835fdfa | 205 | NLA_PUT_LE16(skb, FRA_DST, r->dst); |
a8731cbf | 206 | if (r->src_len) |
2835fdfa | 207 | NLA_PUT_LE16(skb, FRA_SRC, r->src); |
1da177e4 | 208 | |
a8731cbf | 209 | return 0; |
1da177e4 | 210 | |
a8731cbf SW |
211 | nla_put_failure: |
212 | return -ENOBUFS; | |
1da177e4 LT |
213 | } |
214 | ||
a8731cbf | 215 | static u32 dn_fib_rule_default_pref(void) |
1da177e4 | 216 | { |
a8731cbf SW |
217 | struct list_head *pos; |
218 | struct fib_rule *rule; | |
219 | ||
76c72d4f DL |
220 | 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) { | |
a8731cbf SW |
223 | rule = list_entry(pos->next, struct fib_rule, list); |
224 | if (rule->pref) | |
225 | return rule->pref - 1; | |
226 | } | |
1da177e4 LT |
227 | } |
228 | ||
a8731cbf | 229 | return 0; |
1da177e4 LT |
230 | } |
231 | ||
73417f61 TG |
232 | static void dn_fib_rule_flush_cache(void) |
233 | { | |
4b19ca44 | 234 | dn_rt_cache_flush(-1); |
73417f61 TG |
235 | } |
236 | ||
a8731cbf SW |
237 | static struct fib_rules_ops dn_fib_rules_ops = { |
238 | .family = AF_DECnet, | |
239 | .rule_size = sizeof(struct dn_fib_rule), | |
e1701c68 | 240 | .addr_size = sizeof(u16), |
a8731cbf SW |
241 | .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, | |
73417f61 | 247 | .flush_cache = dn_fib_rule_flush_cache, |
a8731cbf SW |
248 | .nlgroup = RTNLGRP_DECnet_RULE, |
249 | .policy = dn_fib_rule_policy, | |
76c72d4f | 250 | .rules_list = LIST_HEAD_INIT(dn_fib_rules_ops.rules_list), |
a8731cbf SW |
251 | .owner = THIS_MODULE, |
252 | }; | |
253 | ||
1da177e4 LT |
254 | void __init dn_fib_rules_init(void) |
255 | { | |
2994c638 DL |
256 | BUG_ON(fib_default_rule_add(&dn_fib_rules_ops, 0x7fff, |
257 | RT_TABLE_MAIN, 0)); | |
a8731cbf | 258 | fib_rules_register(&dn_fib_rules_ops); |
1da177e4 LT |
259 | } |
260 | ||
261 | void __exit dn_fib_rules_cleanup(void) | |
262 | { | |
a8731cbf | 263 | fib_rules_unregister(&dn_fib_rules_ops); |
1da177e4 LT |
264 | } |
265 | ||
266 |