hlist: drop the node parameter from iterators
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / decnet / dn_table.c
CommitLineData
1da177e4
LT
1/*
2 * DECnet An implementation of the DECnet protocol suite for the LINUX
3 * operating system. DECnet is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * DECnet Routing Forwarding Information Base (Routing Tables)
7 *
8 * Author: Steve Whitehouse <SteveW@ACM.org>
9 * Mostly copied from the IPv4 routing code
10 *
11 *
12 * Changes:
13 *
14 */
1da177e4
LT
15#include <linux/string.h>
16#include <linux/net.h>
17#include <linux/socket.h>
5a0e3ad6 18#include <linux/slab.h>
1da177e4
LT
19#include <linux/sockios.h>
20#include <linux/init.h>
21#include <linux/skbuff.h>
22#include <linux/netlink.h>
23#include <linux/rtnetlink.h>
24#include <linux/proc_fs.h>
25#include <linux/netdevice.h>
26#include <linux/timer.h>
27#include <linux/spinlock.h>
60063497 28#include <linux/atomic.h>
1da177e4
LT
29#include <asm/uaccess.h>
30#include <linux/route.h> /* RTF_xxx */
31#include <net/neighbour.h>
dc5fc579 32#include <net/netlink.h>
1da177e4
LT
33#include <net/dst.h>
34#include <net/flow.h>
a8731cbf 35#include <net/fib_rules.h>
1da177e4
LT
36#include <net/dn.h>
37#include <net/dn_route.h>
38#include <net/dn_fib.h>
39#include <net/dn_neigh.h>
40#include <net/dn_dev.h>
41
42struct dn_zone
43{
44 struct dn_zone *dz_next;
45 struct dn_fib_node **dz_hash;
46 int dz_nent;
47 int dz_divisor;
48 u32 dz_hashmask;
49#define DZ_HASHMASK(dz) ((dz)->dz_hashmask)
50 int dz_order;
c4ea94ab 51 __le16 dz_mask;
1da177e4
LT
52#define DZ_MASK(dz) ((dz)->dz_mask)
53};
54
55struct dn_hash
56{
57 struct dn_zone *dh_zones[17];
58 struct dn_zone *dh_zone_list;
59};
60
61#define dz_key_0(key) ((key).datum = 0)
1da177e4
LT
62
63#define for_nexthops(fi) { int nhsel; const struct dn_fib_nh *nh;\
429eb0fa 64 for(nhsel = 0, nh = (fi)->fib_nh; nhsel < (fi)->fib_nhs; nh++, nhsel++)
1da177e4
LT
65
66#define endfor_nexthops(fi) }
67
68#define DN_MAX_DIVISOR 1024
69#define DN_S_ZOMBIE 1
70#define DN_S_ACCESSED 2
71
72#define DN_FIB_SCAN(f, fp) \
73for( ; ((f) = *(fp)) != NULL; (fp) = &(f)->fn_next)
74
75#define DN_FIB_SCAN_KEY(f, fp, key) \
76for( ; ((f) = *(fp)) != NULL && dn_key_eq((f)->fn_key, (key)); (fp) = &(f)->fn_next)
77
78#define RT_TABLE_MIN 1
abcab268
PM
79#define DN_FIB_TABLE_HASHSZ 256
80static struct hlist_head dn_fib_table_hash[DN_FIB_TABLE_HASHSZ];
1da177e4 81static DEFINE_RWLOCK(dn_fib_tables_lock);
1da177e4 82
e18b890b 83static struct kmem_cache *dn_hash_kmem __read_mostly;
1da177e4
LT
84static int dn_fib_hash_zombies;
85
86static inline dn_fib_idx_t dn_hash(dn_fib_key_t key, struct dn_zone *dz)
87{
c4106aa8 88 u16 h = le16_to_cpu(key.datum)>>(16 - dz->dz_order);
1da177e4
LT
89 h ^= (h >> 10);
90 h ^= (h >> 6);
91 h &= DZ_HASHMASK(dz);
92 return *(dn_fib_idx_t *)&h;
93}
94
c4ea94ab 95static inline dn_fib_key_t dz_key(__le16 dst, struct dn_zone *dz)
1da177e4
LT
96{
97 dn_fib_key_t k;
98 k.datum = dst & DZ_MASK(dz);
99 return k;
100}
101
102static inline struct dn_fib_node **dn_chain_p(dn_fib_key_t key, struct dn_zone *dz)
103{
104 return &dz->dz_hash[dn_hash(key, dz).datum];
105}
106
107static inline struct dn_fib_node *dz_chain(dn_fib_key_t key, struct dn_zone *dz)
108{
109 return dz->dz_hash[dn_hash(key, dz).datum];
110}
111
112static inline int dn_key_eq(dn_fib_key_t a, dn_fib_key_t b)
113{
114 return a.datum == b.datum;
115}
116
117static inline int dn_key_leq(dn_fib_key_t a, dn_fib_key_t b)
118{
119 return a.datum <= b.datum;
120}
121
122static inline void dn_rebuild_zone(struct dn_zone *dz,
123 struct dn_fib_node **old_ht,
124 int old_divisor)
125{
a01c1335 126 struct dn_fib_node *f, **fp, *next;
1da177e4 127 int i;
1da177e4
LT
128
129 for(i = 0; i < old_divisor; i++) {
a01c1335
DM
130 for(f = old_ht[i]; f; f = next) {
131 next = f->fn_next;
1da177e4
LT
132 for(fp = dn_chain_p(f->fn_key, dz);
133 *fp && dn_key_leq((*fp)->fn_key, f->fn_key);
134 fp = &(*fp)->fn_next)
135 /* NOTHING */;
136 f->fn_next = *fp;
137 *fp = f;
138 }
139 }
140}
141
142static void dn_rehash_zone(struct dn_zone *dz)
143{
144 struct dn_fib_node **ht, **old_ht;
145 int old_divisor, new_divisor;
146 u32 new_hashmask;
147
148 old_divisor = dz->dz_divisor;
149
06f8fe11
JP
150 switch (old_divisor) {
151 case 16:
152 new_divisor = 256;
153 new_hashmask = 0xFF;
154 break;
155 default:
156 printk(KERN_DEBUG "DECnet: dn_rehash_zone: BUG! %d\n",
157 old_divisor);
158 case 256:
159 new_divisor = 1024;
160 new_hashmask = 0x3FF;
161 break;
1da177e4
LT
162 }
163
0da974f4 164 ht = kcalloc(new_divisor, sizeof(struct dn_fib_node*), GFP_KERNEL);
1da177e4
LT
165 if (ht == NULL)
166 return;
167
1da177e4
LT
168 write_lock_bh(&dn_fib_tables_lock);
169 old_ht = dz->dz_hash;
170 dz->dz_hash = ht;
171 dz->dz_hashmask = new_hashmask;
172 dz->dz_divisor = new_divisor;
173 dn_rebuild_zone(dz, old_ht, old_divisor);
174 write_unlock_bh(&dn_fib_tables_lock);
175 kfree(old_ht);
176}
177
178static void dn_free_node(struct dn_fib_node *f)
179{
180 dn_fib_release_info(DN_FIB_INFO(f));
181 kmem_cache_free(dn_hash_kmem, f);
182}
183
184
185static struct dn_zone *dn_new_zone(struct dn_hash *table, int z)
186{
187 int i;
0da974f4 188 struct dn_zone *dz = kzalloc(sizeof(struct dn_zone), GFP_KERNEL);
1da177e4
LT
189 if (!dz)
190 return NULL;
191
1da177e4
LT
192 if (z) {
193 dz->dz_divisor = 16;
194 dz->dz_hashmask = 0x0F;
195 } else {
196 dz->dz_divisor = 1;
197 dz->dz_hashmask = 0;
198 }
199
0da974f4 200 dz->dz_hash = kcalloc(dz->dz_divisor, sizeof(struct dn_fib_node *), GFP_KERNEL);
1da177e4
LT
201 if (!dz->dz_hash) {
202 kfree(dz);
203 return NULL;
204 }
205
1da177e4
LT
206 dz->dz_order = z;
207 dz->dz_mask = dnet_make_mask(z);
208
209 for(i = z + 1; i <= 16; i++)
210 if (table->dh_zones[i])
211 break;
212
213 write_lock_bh(&dn_fib_tables_lock);
214 if (i>16) {
215 dz->dz_next = table->dh_zone_list;
216 table->dh_zone_list = dz;
217 } else {
218 dz->dz_next = table->dh_zones[i]->dz_next;
219 table->dh_zones[i]->dz_next = dz;
220 }
221 table->dh_zones[z] = dz;
222 write_unlock_bh(&dn_fib_tables_lock);
223 return dz;
224}
225
226
227static int dn_fib_nh_match(struct rtmsg *r, struct nlmsghdr *nlh, struct dn_kern_rta *rta, struct dn_fib_info *fi)
228{
229 struct rtnexthop *nhp;
230 int nhlen;
231
232 if (rta->rta_priority && *rta->rta_priority != fi->fib_priority)
233 return 1;
234
235 if (rta->rta_oif || rta->rta_gw) {
236 if ((!rta->rta_oif || *rta->rta_oif == fi->fib_nh->nh_oif) &&
237 (!rta->rta_gw || memcmp(rta->rta_gw, &fi->fib_nh->nh_gw, 2) == 0))
238 return 0;
239 return 1;
240 }
241
242 if (rta->rta_mp == NULL)
243 return 0;
244
245 nhp = RTA_DATA(rta->rta_mp);
246 nhlen = RTA_PAYLOAD(rta->rta_mp);
247
248 for_nexthops(fi) {
249 int attrlen = nhlen - sizeof(struct rtnexthop);
c4ea94ab 250 __le16 gw;
1da177e4
LT
251
252 if (attrlen < 0 || (nhlen -= nhp->rtnh_len) < 0)
253 return -EINVAL;
254 if (nhp->rtnh_ifindex && nhp->rtnh_ifindex != nh->nh_oif)
255 return 1;
256 if (attrlen) {
257 gw = dn_fib_get_attr16(RTNH_DATA(nhp), attrlen, RTA_GATEWAY);
258
259 if (gw && gw != nh->nh_gw)
260 return 1;
261 }
262 nhp = RTNH_NEXT(nhp);
263 } endfor_nexthops(fi);
264
265 return 0;
266}
267
339bf98f
TG
268static inline size_t dn_fib_nlmsg_size(struct dn_fib_info *fi)
269{
75356f27 270 size_t payload = NLMSG_ALIGN(sizeof(struct rtmsg))
339bf98f
TG
271 + nla_total_size(4) /* RTA_TABLE */
272 + nla_total_size(2) /* RTA_DST */
273 + nla_total_size(4); /* RTA_PRIORITY */
274
275 /* space for nested metrics */
276 payload += nla_total_size((RTAX_MAX * nla_total_size(4)));
277
278 if (fi->fib_nhs) {
279 /* Also handles the special case fib_nhs == 1 */
280
281 /* each nexthop is packed in an attribute */
282 size_t nhsize = nla_total_size(sizeof(struct rtnexthop));
283
284 /* may contain a gateway attribute */
285 nhsize += nla_total_size(4);
286
287 /* all nexthops are packed in a nested attribute */
288 payload += nla_total_size(fi->fib_nhs * nhsize);
289 }
290
291 return payload;
292}
293
15e47304 294static int dn_fib_dump_info(struct sk_buff *skb, u32 portid, u32 seq, int event,
429eb0fa
YH
295 u32 tb_id, u8 type, u8 scope, void *dst, int dst_len,
296 struct dn_fib_info *fi, unsigned int flags)
1da177e4 297{
429eb0fa
YH
298 struct rtmsg *rtm;
299 struct nlmsghdr *nlh;
429eb0fa 300
15e47304 301 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*rtm), flags);
3f7a3283 302 if (!nlh)
6b60978f
TG
303 return -EMSGSIZE;
304
3f7a3283 305 rtm = nlmsg_data(nlh);
429eb0fa
YH
306 rtm->rtm_family = AF_DECnet;
307 rtm->rtm_dst_len = dst_len;
308 rtm->rtm_src_len = 0;
309 rtm->rtm_tos = 0;
310 rtm->rtm_table = tb_id;
429eb0fa
YH
311 rtm->rtm_flags = fi->fib_flags;
312 rtm->rtm_scope = scope;
1da177e4 313 rtm->rtm_type = type;
429eb0fa 314 rtm->rtm_protocol = fi->fib_protocol;
6b60978f
TG
315
316 if (nla_put_u32(skb, RTA_TABLE, tb_id) < 0)
317 goto errout;
318
319 if (rtm->rtm_dst_len &&
320 nla_put(skb, RTA_DST, 2, dst) < 0)
321 goto errout;
322
323 if (fi->fib_priority &&
324 nla_put_u32(skb, RTA_PRIORITY, fi->fib_priority) < 0)
325 goto errout;
326
1da177e4 327 if (rtnetlink_put_metrics(skb, fi->fib_metrics) < 0)
6b60978f
TG
328 goto errout;
329
429eb0fa 330 if (fi->fib_nhs == 1) {
6b60978f
TG
331 if (fi->fib_nh->nh_gw &&
332 nla_put_le16(skb, RTA_GATEWAY, fi->fib_nh->nh_gw) < 0)
333 goto errout;
334
335 if (fi->fib_nh->nh_oif &&
336 nla_put_u32(skb, RTA_OIF, fi->fib_nh->nh_oif) < 0)
337 goto errout;
429eb0fa 338 }
6b60978f 339
429eb0fa
YH
340 if (fi->fib_nhs > 1) {
341 struct rtnexthop *nhp;
6b60978f
TG
342 struct nlattr *mp_head;
343
344 if (!(mp_head = nla_nest_start(skb, RTA_MULTIPATH)))
345 goto errout;
429eb0fa
YH
346
347 for_nexthops(fi) {
6b60978f
TG
348 if (!(nhp = nla_reserve_nohdr(skb, sizeof(*nhp))))
349 goto errout;
350
429eb0fa
YH
351 nhp->rtnh_flags = nh->nh_flags & 0xFF;
352 nhp->rtnh_hops = nh->nh_weight - 1;
353 nhp->rtnh_ifindex = nh->nh_oif;
6b60978f
TG
354
355 if (nh->nh_gw &&
356 nla_put_le16(skb, RTA_GATEWAY, nh->nh_gw) < 0)
357 goto errout;
358
27a884dc 359 nhp->rtnh_len = skb_tail_pointer(skb) - (unsigned char *)nhp;
429eb0fa 360 } endfor_nexthops(fi);
6b60978f
TG
361
362 nla_nest_end(skb, mp_head);
429eb0fa
YH
363 }
364
6b60978f 365 return nlmsg_end(skb, nlh);
1da177e4 366
6b60978f
TG
367errout:
368 nlmsg_cancel(skb, nlh);
429eb0fa 369 return -EMSGSIZE;
1da177e4
LT
370}
371
372
2dfe55b4 373static void dn_rtmsg_fib(int event, struct dn_fib_node *f, int z, u32 tb_id,
429eb0fa 374 struct nlmsghdr *nlh, struct netlink_skb_parms *req)
1da177e4 375{
429eb0fa 376 struct sk_buff *skb;
15e47304 377 u32 portid = req ? req->portid : 0;
dc738dd8 378 int err = -ENOBUFS;
1da177e4 379
429eb0fa
YH
380 skb = nlmsg_new(dn_fib_nlmsg_size(DN_FIB_INFO(f)), GFP_KERNEL);
381 if (skb == NULL)
dc738dd8 382 goto errout;
1da177e4 383
15e47304 384 err = dn_fib_dump_info(skb, portid, nlh->nlmsg_seq, event, tb_id,
dc738dd8
TG
385 f->fn_type, f->fn_scope, &f->fn_key, z,
386 DN_FIB_INFO(f), 0);
26932566
PM
387 if (err < 0) {
388 /* -EMSGSIZE implies BUG in dn_fib_nlmsg_size() */
389 WARN_ON(err == -EMSGSIZE);
390 kfree_skb(skb);
391 goto errout;
392 }
15e47304 393 rtnl_notify(skb, &init_net, portid, RTNLGRP_DECnet_ROUTE, nlh, GFP_KERNEL);
1ce85fe4 394 return;
dc738dd8
TG
395errout:
396 if (err < 0)
97c53cac 397 rtnl_set_sk_err(&init_net, RTNLGRP_DECnet_ROUTE, err);
1da177e4
LT
398}
399
429eb0fa 400static __inline__ int dn_hash_dump_bucket(struct sk_buff *skb,
1da177e4
LT
401 struct netlink_callback *cb,
402 struct dn_fib_table *tb,
403 struct dn_zone *dz,
404 struct dn_fib_node *f)
405{
406 int i, s_i;
407
abcab268 408 s_i = cb->args[4];
1da177e4
LT
409 for(i = 0; f; i++, f = f->fn_next) {
410 if (i < s_i)
411 continue;
412 if (f->fn_state & DN_S_ZOMBIE)
413 continue;
15e47304 414 if (dn_fib_dump_info(skb, NETLINK_CB(cb->skb).portid,
1da177e4
LT
415 cb->nlh->nlmsg_seq,
416 RTM_NEWROUTE,
429eb0fa 417 tb->n,
1da177e4 418 (f->fn_state & DN_S_ZOMBIE) ? 0 : f->fn_type,
429eb0fa 419 f->fn_scope, &f->fn_key, dz->dz_order,
b6544c0b 420 f->fn_info, NLM_F_MULTI) < 0) {
abcab268 421 cb->args[4] = i;
1da177e4
LT
422 return -1;
423 }
424 }
abcab268 425 cb->args[4] = i;
1da177e4
LT
426 return skb->len;
427}
428
429eb0fa 429static __inline__ int dn_hash_dump_zone(struct sk_buff *skb,
1da177e4
LT
430 struct netlink_callback *cb,
431 struct dn_fib_table *tb,
432 struct dn_zone *dz)
433{
434 int h, s_h;
435
abcab268 436 s_h = cb->args[3];
1da177e4
LT
437 for(h = 0; h < dz->dz_divisor; h++) {
438 if (h < s_h)
439 continue;
440 if (h > s_h)
abcab268 441 memset(&cb->args[4], 0, sizeof(cb->args) - 4*sizeof(cb->args[0]));
1da177e4
LT
442 if (dz->dz_hash == NULL || dz->dz_hash[h] == NULL)
443 continue;
444 if (dn_hash_dump_bucket(skb, cb, tb, dz, dz->dz_hash[h]) < 0) {
abcab268 445 cb->args[3] = h;
1da177e4
LT
446 return -1;
447 }
448 }
abcab268 449 cb->args[3] = h;
1da177e4
LT
450 return skb->len;
451}
452
429eb0fa
YH
453static int dn_fib_table_dump(struct dn_fib_table *tb, struct sk_buff *skb,
454 struct netlink_callback *cb)
1da177e4 455{
429eb0fa 456 int m, s_m;
1da177e4
LT
457 struct dn_zone *dz;
458 struct dn_hash *table = (struct dn_hash *)tb->data;
459
abcab268 460 s_m = cb->args[2];
1da177e4
LT
461 read_lock(&dn_fib_tables_lock);
462 for(dz = table->dh_zone_list, m = 0; dz; dz = dz->dz_next, m++) {
463 if (m < s_m)
464 continue;
465 if (m > s_m)
abcab268 466 memset(&cb->args[3], 0, sizeof(cb->args) - 3*sizeof(cb->args[0]));
1da177e4
LT
467
468 if (dn_hash_dump_zone(skb, cb, tb, dz) < 0) {
abcab268 469 cb->args[2] = m;
1da177e4
LT
470 read_unlock(&dn_fib_tables_lock);
471 return -1;
472 }
473 }
474 read_unlock(&dn_fib_tables_lock);
abcab268 475 cb->args[2] = m;
1da177e4 476
429eb0fa 477 return skb->len;
1da177e4
LT
478}
479
abcab268
PM
480int dn_fib_dump(struct sk_buff *skb, struct netlink_callback *cb)
481{
3b1e0a65 482 struct net *net = sock_net(skb->sk);
abcab268
PM
483 unsigned int h, s_h;
484 unsigned int e = 0, s_e;
485 struct dn_fib_table *tb;
abcab268
PM
486 int dumped = 0;
487
09ad9bc7 488 if (!net_eq(net, &init_net))
b854272b
DL
489 return 0;
490
abcab268 491 if (NLMSG_PAYLOAD(cb->nlh, 0) >= sizeof(struct rtmsg) &&
3f7a3283 492 ((struct rtmsg *)nlmsg_data(cb->nlh))->rtm_flags&RTM_F_CLONED)
abcab268
PM
493 return dn_cache_dump(skb, cb);
494
495 s_h = cb->args[0];
496 s_e = cb->args[1];
497
498 for (h = s_h; h < DN_FIB_TABLE_HASHSZ; h++, s_h = 0) {
499 e = 0;
b67bfe0d 500 hlist_for_each_entry(tb, &dn_fib_table_hash[h], hlist) {
abcab268
PM
501 if (e < s_e)
502 goto next;
503 if (dumped)
504 memset(&cb->args[2], 0, sizeof(cb->args) -
429eb0fa 505 2 * sizeof(cb->args[0]));
abcab268
PM
506 if (tb->dump(tb, skb, cb) < 0)
507 goto out;
508 dumped = 1;
509next:
510 e++;
511 }
512 }
513out:
514 cb->args[1] = e;
515 cb->args[0] = h;
516
517 return skb->len;
518}
519
1da177e4
LT
520static int dn_fib_table_insert(struct dn_fib_table *tb, struct rtmsg *r, struct dn_kern_rta *rta, struct nlmsghdr *n, struct netlink_skb_parms *req)
521{
522 struct dn_hash *table = (struct dn_hash *)tb->data;
523 struct dn_fib_node *new_f, *f, **fp, **del_fp;
524 struct dn_zone *dz;
525 struct dn_fib_info *fi;
429eb0fa 526 int z = r->rtm_dst_len;
1da177e4
LT
527 int type = r->rtm_type;
528 dn_fib_key_t key;
429eb0fa 529 int err;
1da177e4 530
429eb0fa
YH
531 if (z > 16)
532 return -EINVAL;
1da177e4
LT
533
534 dz = table->dh_zones[z];
535 if (!dz && !(dz = dn_new_zone(table, z)))
536 return -ENOBUFS;
537
538 dz_key_0(key);
539 if (rta->rta_dst) {
c4ea94ab 540 __le16 dst;
1da177e4
LT
541 memcpy(&dst, rta->rta_dst, 2);
542 if (dst & ~DZ_MASK(dz))
543 return -EINVAL;
544 key = dz_key(dst, dz);
545 }
546
429eb0fa
YH
547 if ((fi = dn_fib_create_info(r, rta, n, &err)) == NULL)
548 return err;
1da177e4
LT
549
550 if (dz->dz_nent > (dz->dz_divisor << 2) &&
551 dz->dz_divisor > DN_MAX_DIVISOR &&
552 (z==16 || (1<<z) > dz->dz_divisor))
553 dn_rehash_zone(dz);
554
555 fp = dn_chain_p(key, dz);
556
557 DN_FIB_SCAN(f, fp) {
558 if (dn_key_leq(key, f->fn_key))
559 break;
560 }
561
562 del_fp = NULL;
563
564 if (f && (f->fn_state & DN_S_ZOMBIE) &&
565 dn_key_eq(f->fn_key, key)) {
566 del_fp = fp;
567 fp = &f->fn_next;
568 f = *fp;
569 goto create;
570 }
571
572 DN_FIB_SCAN_KEY(f, fp, key) {
573 if (fi->fib_priority <= DN_FIB_INFO(f)->fib_priority)
574 break;
575 }
576
577 if (f && dn_key_eq(f->fn_key, key) &&
578 fi->fib_priority == DN_FIB_INFO(f)->fib_priority) {
579 struct dn_fib_node **ins_fp;
580
581 err = -EEXIST;
582 if (n->nlmsg_flags & NLM_F_EXCL)
583 goto out;
584
585 if (n->nlmsg_flags & NLM_F_REPLACE) {
586 del_fp = fp;
587 fp = &f->fn_next;
588 f = *fp;
589 goto replace;
590 }
591
592 ins_fp = fp;
593 err = -EEXIST;
594
595 DN_FIB_SCAN_KEY(f, fp, key) {
596 if (fi->fib_priority != DN_FIB_INFO(f)->fib_priority)
597 break;
f64f9e71
JP
598 if (f->fn_type == type &&
599 f->fn_scope == r->rtm_scope &&
600 DN_FIB_INFO(f) == fi)
1da177e4
LT
601 goto out;
602 }
603
604 if (!(n->nlmsg_flags & NLM_F_APPEND)) {
605 fp = ins_fp;
606 f = *fp;
607 }
608 }
609
610create:
611 err = -ENOENT;
612 if (!(n->nlmsg_flags & NLM_F_CREATE))
613 goto out;
614
615replace:
616 err = -ENOBUFS;
c3762229 617 new_f = kmem_cache_zalloc(dn_hash_kmem, GFP_KERNEL);
1da177e4
LT
618 if (new_f == NULL)
619 goto out;
620
1da177e4
LT
621 new_f->fn_key = key;
622 new_f->fn_type = type;
623 new_f->fn_scope = r->rtm_scope;
624 DN_FIB_INFO(new_f) = fi;
625
626 new_f->fn_next = f;
627 write_lock_bh(&dn_fib_tables_lock);
628 *fp = new_f;
629 write_unlock_bh(&dn_fib_tables_lock);
630 dz->dz_nent++;
631
632 if (del_fp) {
633 f = *del_fp;
634 write_lock_bh(&dn_fib_tables_lock);
635 *del_fp = f->fn_next;
636 write_unlock_bh(&dn_fib_tables_lock);
637
638 if (!(f->fn_state & DN_S_ZOMBIE))
639 dn_rtmsg_fib(RTM_DELROUTE, f, z, tb->n, n, req);
640 if (f->fn_state & DN_S_ACCESSED)
641 dn_rt_cache_flush(-1);
642 dn_free_node(f);
643 dz->dz_nent--;
644 } else {
645 dn_rt_cache_flush(-1);
646 }
647
429eb0fa 648 dn_rtmsg_fib(RTM_NEWROUTE, new_f, z, tb->n, n, req);
1da177e4 649
429eb0fa 650 return 0;
1da177e4
LT
651out:
652 dn_fib_release_info(fi);
653 return err;
654}
655
656
657static int dn_fib_table_delete(struct dn_fib_table *tb, struct rtmsg *r, struct dn_kern_rta *rta, struct nlmsghdr *n, struct netlink_skb_parms *req)
658{
659 struct dn_hash *table = (struct dn_hash*)tb->data;
660 struct dn_fib_node **fp, **del_fp, *f;
429eb0fa 661 int z = r->rtm_dst_len;
1da177e4
LT
662 struct dn_zone *dz;
663 dn_fib_key_t key;
664 int matched;
665
666
429eb0fa
YH
667 if (z > 16)
668 return -EINVAL;
1da177e4
LT
669
670 if ((dz = table->dh_zones[z]) == NULL)
671 return -ESRCH;
672
673 dz_key_0(key);
674 if (rta->rta_dst) {
c4ea94ab 675 __le16 dst;
1da177e4
LT
676 memcpy(&dst, rta->rta_dst, 2);
677 if (dst & ~DZ_MASK(dz))
678 return -EINVAL;
679 key = dz_key(dst, dz);
680 }
681
682 fp = dn_chain_p(key, dz);
683
684 DN_FIB_SCAN(f, fp) {
685 if (dn_key_eq(f->fn_key, key))
686 break;
687 if (dn_key_leq(key, f->fn_key))
688 return -ESRCH;
689 }
690
691 matched = 0;
692 del_fp = NULL;
693 DN_FIB_SCAN_KEY(f, fp, key) {
694 struct dn_fib_info *fi = DN_FIB_INFO(f);
695
696 if (f->fn_state & DN_S_ZOMBIE)
697 return -ESRCH;
698
699 matched++;
700
701 if (del_fp == NULL &&
702 (!r->rtm_type || f->fn_type == r->rtm_type) &&
703 (r->rtm_scope == RT_SCOPE_NOWHERE || f->fn_scope == r->rtm_scope) &&
429eb0fa 704 (!r->rtm_protocol ||
1da177e4
LT
705 fi->fib_protocol == r->rtm_protocol) &&
706 dn_fib_nh_match(r, n, rta, fi) == 0)
707 del_fp = fp;
708 }
709
710 if (del_fp) {
711 f = *del_fp;
429eb0fa 712 dn_rtmsg_fib(RTM_DELROUTE, f, z, tb->n, n, req);
1da177e4
LT
713
714 if (matched != 1) {
715 write_lock_bh(&dn_fib_tables_lock);
716 *del_fp = f->fn_next;
717 write_unlock_bh(&dn_fib_tables_lock);
718
719 if (f->fn_state & DN_S_ACCESSED)
720 dn_rt_cache_flush(-1);
721 dn_free_node(f);
722 dz->dz_nent--;
723 } else {
724 f->fn_state |= DN_S_ZOMBIE;
725 if (f->fn_state & DN_S_ACCESSED) {
726 f->fn_state &= ~DN_S_ACCESSED;
727 dn_rt_cache_flush(-1);
728 }
729 if (++dn_fib_hash_zombies > 128)
730 dn_fib_flush();
731 }
732
733 return 0;
734 }
735
429eb0fa 736 return -ESRCH;
1da177e4
LT
737}
738
739static inline int dn_flush_list(struct dn_fib_node **fp, int z, struct dn_hash *table)
740{
741 int found = 0;
742 struct dn_fib_node *f;
743
744 while((f = *fp) != NULL) {
745 struct dn_fib_info *fi = DN_FIB_INFO(f);
746
747 if (fi && ((f->fn_state & DN_S_ZOMBIE) || (fi->fib_flags & RTNH_F_DEAD))) {
748 write_lock_bh(&dn_fib_tables_lock);
749 *fp = f->fn_next;
750 write_unlock_bh(&dn_fib_tables_lock);
751
752 dn_free_node(f);
753 found++;
754 continue;
755 }
756 fp = &f->fn_next;
757 }
758
759 return found;
760}
761
762static int dn_fib_table_flush(struct dn_fib_table *tb)
763{
764 struct dn_hash *table = (struct dn_hash *)tb->data;
765 struct dn_zone *dz;
766 int found = 0;
767
768 dn_fib_hash_zombies = 0;
769 for(dz = table->dh_zone_list; dz; dz = dz->dz_next) {
770 int i;
771 int tmp = 0;
772 for(i = dz->dz_divisor-1; i >= 0; i--)
773 tmp += dn_flush_list(&dz->dz_hash[i], dz->dz_order, table);
774 dz->dz_nent -= tmp;
775 found += tmp;
776 }
777
778 return found;
779}
780
bef55aeb 781static int dn_fib_table_lookup(struct dn_fib_table *tb, const struct flowidn *flp, struct dn_fib_res *res)
1da177e4 782{
429eb0fa 783 int err;
1da177e4
LT
784 struct dn_zone *dz;
785 struct dn_hash *t = (struct dn_hash *)tb->data;
786
787 read_lock(&dn_fib_tables_lock);
788 for(dz = t->dh_zone_list; dz; dz = dz->dz_next) {
789 struct dn_fib_node *f;
bef55aeb 790 dn_fib_key_t k = dz_key(flp->daddr, dz);
1da177e4
LT
791
792 for(f = dz_chain(k, dz); f; f = f->fn_next) {
793 if (!dn_key_eq(k, f->fn_key)) {
794 if (dn_key_leq(k, f->fn_key))
795 break;
796 else
797 continue;
798 }
799
800 f->fn_state |= DN_S_ACCESSED;
801
802 if (f->fn_state&DN_S_ZOMBIE)
803 continue;
804
bef55aeb 805 if (f->fn_scope < flp->flowidn_scope)
1da177e4
LT
806 continue;
807
808 err = dn_fib_semantic_match(f->fn_type, DN_FIB_INFO(f), flp, res);
809
810 if (err == 0) {
811 res->type = f->fn_type;
429eb0fa 812 res->scope = f->fn_scope;
1da177e4
LT
813 res->prefixlen = dz->dz_order;
814 goto out;
815 }
816 if (err < 0)
817 goto out;
818 }
819 }
820 err = 1;
821out:
822 read_unlock(&dn_fib_tables_lock);
429eb0fa 823 return err;
1da177e4
LT
824}
825
826
2dfe55b4 827struct dn_fib_table *dn_fib_get_table(u32 n, int create)
1da177e4 828{
429eb0fa 829 struct dn_fib_table *t;
abcab268 830 unsigned int h;
1da177e4 831
429eb0fa
YH
832 if (n < RT_TABLE_MIN)
833 return NULL;
1da177e4 834
429eb0fa
YH
835 if (n > RT_TABLE_MAX)
836 return NULL;
1da177e4 837
abcab268
PM
838 h = n & (DN_FIB_TABLE_HASHSZ - 1);
839 rcu_read_lock();
b67bfe0d 840 hlist_for_each_entry_rcu(t, &dn_fib_table_hash[h], hlist) {
abcab268
PM
841 if (t->n == n) {
842 rcu_read_unlock();
843 return t;
844 }
845 }
846 rcu_read_unlock();
1da177e4 847
429eb0fa
YH
848 if (!create)
849 return NULL;
1da177e4 850
e87cc472
JP
851 if (in_interrupt()) {
852 net_dbg_ratelimited("DECnet: BUG! Attempt to create routing table from interrupt\n");
429eb0fa
YH
853 return NULL;
854 }
1da177e4 855
429eb0fa 856 t = kzalloc(sizeof(struct dn_fib_table) + sizeof(struct dn_hash),
e6b61105 857 GFP_KERNEL);
429eb0fa
YH
858 if (t == NULL)
859 return NULL;
860
861 t->n = n;
862 t->insert = dn_fib_table_insert;
863 t->delete = dn_fib_table_delete;
864 t->lookup = dn_fib_table_lookup;
865 t->flush = dn_fib_table_flush;
866 t->dump = dn_fib_table_dump;
abcab268 867 hlist_add_head_rcu(&t->hlist, &dn_fib_table_hash[h]);
1da177e4 868
429eb0fa 869 return t;
1da177e4
LT
870}
871
1da177e4
LT
872struct dn_fib_table *dn_fib_empty_table(void)
873{
429eb0fa 874 u32 id;
1da177e4 875
429eb0fa 876 for(id = RT_TABLE_MIN; id <= RT_TABLE_MAX; id++)
abcab268 877 if (dn_fib_get_table(id, 0) == NULL)
429eb0fa
YH
878 return dn_fib_get_table(id, 1);
879 return NULL;
1da177e4
LT
880}
881
abcab268
PM
882void dn_fib_flush(void)
883{
429eb0fa
YH
884 int flushed = 0;
885 struct dn_fib_table *tb;
abcab268
PM
886 unsigned int h;
887
888 for (h = 0; h < DN_FIB_TABLE_HASHSZ; h++) {
b67bfe0d 889 hlist_for_each_entry(tb, &dn_fib_table_hash[h], hlist)
429eb0fa
YH
890 flushed += tb->flush(tb);
891 }
abcab268 892
429eb0fa
YH
893 if (flushed)
894 dn_rt_cache_flush(-1);
abcab268
PM
895}
896
1da177e4
LT
897void __init dn_fib_table_init(void)
898{
899 dn_hash_kmem = kmem_cache_create("dn_fib_info_cache",
900 sizeof(struct dn_fib_info),
901 0, SLAB_HWCACHE_ALIGN,
20c2df83 902 NULL);
1da177e4
LT
903}
904
905void __exit dn_fib_table_cleanup(void)
906{
abcab268 907 struct dn_fib_table *t;
b67bfe0d 908 struct hlist_node *next;
abcab268 909 unsigned int h;
1da177e4 910
abcab268
PM
911 write_lock(&dn_fib_tables_lock);
912 for (h = 0; h < DN_FIB_TABLE_HASHSZ; h++) {
b67bfe0d 913 hlist_for_each_entry_safe(t, next, &dn_fib_table_hash[h],
429eb0fa 914 hlist) {
abcab268
PM
915 hlist_del(&t->hlist);
916 kfree(t);
917 }
918 }
919 write_unlock(&dn_fib_tables_lock);
1da177e4 920}