blob: 3f19fcbf126d0395acc69f2ec51fc7e2ea486c76 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/string.h>
16#include <linux/net.h>
17#include <linux/socket.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/sockios.h>
20#include <linux/init.h>
21#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/rtnetlink.h>
23#include <linux/proc_fs.h>
24#include <linux/netdevice.h>
25#include <linux/timer.h>
26#include <linux/spinlock.h>
Arun Sharma600634972011-07-26 16:09:06 -070027#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/uaccess.h>
29#include <linux/route.h> /* RTF_xxx */
30#include <net/neighbour.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070031#include <net/netlink.h>
Daniel Borkmannea697632015-01-05 23:57:47 +010032#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <net/dst.h>
34#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070035#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#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;
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080051 __le16 dz_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define for_nexthops(fi) { int nhsel; const struct dn_fib_nh *nh;\
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +090064 for(nhsel = 0, nh = (fi)->fib_nh; nhsel < (fi)->fib_nhs; nh++, nhsel++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
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
Patrick McHardyabcab262006-08-10 23:11:47 -070079#define DN_FIB_TABLE_HASHSZ 256
80static struct hlist_head dn_fib_table_hash[DN_FIB_TABLE_HASHSZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static DEFINE_RWLOCK(dn_fib_tables_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Christoph Lametere18b8902006-12-06 20:33:20 -080083static struct kmem_cache *dn_hash_kmem __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static int dn_fib_hash_zombies;
85
86static inline dn_fib_idx_t dn_hash(dn_fib_key_t key, struct dn_zone *dz)
87{
Harvey Harrisonc4106aa2008-11-27 00:12:47 -080088 u16 h = le16_to_cpu(key.datum)>>(16 - dz->dz_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 h ^= (h >> 10);
90 h ^= (h >> 6);
91 h &= DZ_HASHMASK(dz);
92 return *(dn_fib_idx_t *)&h;
93}
94
Steven Whitehousec4ea94a2006-03-20 22:42:39 -080095static inline dn_fib_key_t dz_key(__le16 dst, struct dn_zone *dz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
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{
David S. Millera01c1332011-04-17 20:47:07 -0700126 struct dn_fib_node *f, **fp, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 for(i = 0; i < old_divisor; i++) {
David S. Millera01c1332011-04-17 20:47:07 -0700130 for(f = old_ht[i]; f; f = next) {
131 next = f->fn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 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
Joe Perches06f8fe12011-07-01 09:43:03 +0000150 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700164 ht = kcalloc(new_divisor, sizeof(struct dn_fib_node*), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (ht == NULL)
166 return;
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 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;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700188 struct dn_zone *dz = kzalloc(sizeof(struct dn_zone), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (!dz)
190 return NULL;
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 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
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700200 dz->dz_hash = kcalloc(dz->dz_divisor, sizeof(struct dn_fib_node *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (!dz->dz_hash) {
202 kfree(dz);
203 return NULL;
204 }
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 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
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000227static int dn_fib_nh_match(struct rtmsg *r, struct nlmsghdr *nlh, struct nlattr *attrs[], struct dn_fib_info *fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 struct rtnexthop *nhp;
230 int nhlen;
231
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000232 if (attrs[RTA_PRIORITY] &&
233 nla_get_u32(attrs[RTA_PRIORITY]) != fi->fib_priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return 1;
235
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000236 if (attrs[RTA_OIF] || attrs[RTA_GATEWAY]) {
237 if ((!attrs[RTA_OIF] || nla_get_u32(attrs[RTA_OIF]) == fi->fib_nh->nh_oif) &&
238 (!attrs[RTA_GATEWAY] || nla_get_le16(attrs[RTA_GATEWAY]) != fi->fib_nh->nh_gw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 0;
240 return 1;
241 }
242
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000243 if (!attrs[RTA_MULTIPATH])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 0;
245
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000246 nhp = nla_data(attrs[RTA_MULTIPATH]);
247 nhlen = nla_len(attrs[RTA_MULTIPATH]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 for_nexthops(fi) {
250 int attrlen = nhlen - sizeof(struct rtnexthop);
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800251 __le16 gw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 if (attrlen < 0 || (nhlen -= nhp->rtnh_len) < 0)
254 return -EINVAL;
255 if (nhp->rtnh_ifindex && nhp->rtnh_ifindex != nh->nh_oif)
256 return 1;
257 if (attrlen) {
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000258 struct nlattr *gw_attr;
259
260 gw_attr = nla_find((struct nlattr *) (nhp + 1), attrlen, RTA_GATEWAY);
261 gw = gw_attr ? nla_get_le16(gw_attr) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 if (gw && gw != nh->nh_gw)
264 return 1;
265 }
266 nhp = RTNH_NEXT(nhp);
267 } endfor_nexthops(fi);
268
269 return 0;
270}
271
Thomas Graf339bf982006-11-10 14:10:15 -0800272static inline size_t dn_fib_nlmsg_size(struct dn_fib_info *fi)
273{
David S. Miller75356f22006-11-12 23:02:01 -0800274 size_t payload = NLMSG_ALIGN(sizeof(struct rtmsg))
Thomas Graf339bf982006-11-10 14:10:15 -0800275 + nla_total_size(4) /* RTA_TABLE */
276 + nla_total_size(2) /* RTA_DST */
Daniel Borkmannea697632015-01-05 23:57:47 +0100277 + nla_total_size(4) /* RTA_PRIORITY */
278 + nla_total_size(TCP_CA_NAME_MAX); /* RTAX_CC_ALGO */
Thomas Graf339bf982006-11-10 14:10:15 -0800279
280 /* space for nested metrics */
281 payload += nla_total_size((RTAX_MAX * nla_total_size(4)));
282
283 if (fi->fib_nhs) {
284 /* Also handles the special case fib_nhs == 1 */
285
286 /* each nexthop is packed in an attribute */
287 size_t nhsize = nla_total_size(sizeof(struct rtnexthop));
288
289 /* may contain a gateway attribute */
290 nhsize += nla_total_size(4);
291
292 /* all nexthops are packed in a nested attribute */
293 payload += nla_total_size(fi->fib_nhs * nhsize);
294 }
295
296 return payload;
297}
298
Eric W. Biederman15e47302012-09-07 20:12:54 +0000299static int dn_fib_dump_info(struct sk_buff *skb, u32 portid, u32 seq, int event,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900300 u32 tb_id, u8 type, u8 scope, void *dst, int dst_len,
301 struct dn_fib_info *fi, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900303 struct rtmsg *rtm;
304 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Eric W. Biederman15e47302012-09-07 20:12:54 +0000306 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*rtm), flags);
David S. Miller3f7a3282012-06-26 21:47:21 -0700307 if (!nlh)
Thomas Graf6b609782012-06-26 23:36:15 +0000308 return -EMSGSIZE;
309
David S. Miller3f7a3282012-06-26 21:47:21 -0700310 rtm = nlmsg_data(nlh);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900311 rtm->rtm_family = AF_DECnet;
312 rtm->rtm_dst_len = dst_len;
313 rtm->rtm_src_len = 0;
314 rtm->rtm_tos = 0;
315 rtm->rtm_table = tb_id;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900316 rtm->rtm_flags = fi->fib_flags;
317 rtm->rtm_scope = scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 rtm->rtm_type = type;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900319 rtm->rtm_protocol = fi->fib_protocol;
Thomas Graf6b609782012-06-26 23:36:15 +0000320
321 if (nla_put_u32(skb, RTA_TABLE, tb_id) < 0)
322 goto errout;
323
324 if (rtm->rtm_dst_len &&
325 nla_put(skb, RTA_DST, 2, dst) < 0)
326 goto errout;
327
328 if (fi->fib_priority &&
329 nla_put_u32(skb, RTA_PRIORITY, fi->fib_priority) < 0)
330 goto errout;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (rtnetlink_put_metrics(skb, fi->fib_metrics) < 0)
Thomas Graf6b609782012-06-26 23:36:15 +0000333 goto errout;
334
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900335 if (fi->fib_nhs == 1) {
Thomas Graf6b609782012-06-26 23:36:15 +0000336 if (fi->fib_nh->nh_gw &&
337 nla_put_le16(skb, RTA_GATEWAY, fi->fib_nh->nh_gw) < 0)
338 goto errout;
339
340 if (fi->fib_nh->nh_oif &&
341 nla_put_u32(skb, RTA_OIF, fi->fib_nh->nh_oif) < 0)
342 goto errout;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900343 }
Thomas Graf6b609782012-06-26 23:36:15 +0000344
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900345 if (fi->fib_nhs > 1) {
346 struct rtnexthop *nhp;
Thomas Graf6b609782012-06-26 23:36:15 +0000347 struct nlattr *mp_head;
348
349 if (!(mp_head = nla_nest_start(skb, RTA_MULTIPATH)))
350 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900352 for_nexthops(fi) {
Thomas Graf6b609782012-06-26 23:36:15 +0000353 if (!(nhp = nla_reserve_nohdr(skb, sizeof(*nhp))))
354 goto errout;
355
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900356 nhp->rtnh_flags = nh->nh_flags & 0xFF;
357 nhp->rtnh_hops = nh->nh_weight - 1;
358 nhp->rtnh_ifindex = nh->nh_oif;
Thomas Graf6b609782012-06-26 23:36:15 +0000359
360 if (nh->nh_gw &&
361 nla_put_le16(skb, RTA_GATEWAY, nh->nh_gw) < 0)
362 goto errout;
363
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700364 nhp->rtnh_len = skb_tail_pointer(skb) - (unsigned char *)nhp;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900365 } endfor_nexthops(fi);
Thomas Graf6b609782012-06-26 23:36:15 +0000366
367 nla_nest_end(skb, mp_head);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Thomas Graf6b609782012-06-26 23:36:15 +0000370 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Thomas Graf6b609782012-06-26 23:36:15 +0000372errout:
373 nlmsg_cancel(skb, nlh);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900374 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700378static void dn_rtmsg_fib(int event, struct dn_fib_node *f, int z, u32 tb_id,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900379 struct nlmsghdr *nlh, struct netlink_skb_parms *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900381 struct sk_buff *skb;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000382 u32 portid = req ? req->portid : 0;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700383 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900385 skb = nlmsg_new(dn_fib_nlmsg_size(DN_FIB_INFO(f)), GFP_KERNEL);
386 if (skb == NULL)
Thomas Grafdc738dd2006-08-15 00:33:35 -0700387 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Eric W. Biederman15e47302012-09-07 20:12:54 +0000389 err = dn_fib_dump_info(skb, portid, nlh->nlmsg_seq, event, tb_id,
Thomas Grafdc738dd2006-08-15 00:33:35 -0700390 f->fn_type, f->fn_scope, &f->fn_key, z,
391 DN_FIB_INFO(f), 0);
Patrick McHardy26932562007-01-31 23:16:40 -0800392 if (err < 0) {
393 /* -EMSGSIZE implies BUG in dn_fib_nlmsg_size() */
394 WARN_ON(err == -EMSGSIZE);
395 kfree_skb(skb);
396 goto errout;
397 }
Eric W. Biederman15e47302012-09-07 20:12:54 +0000398 rtnl_notify(skb, &init_net, portid, RTNLGRP_DECnet_ROUTE, nlh, GFP_KERNEL);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800399 return;
Thomas Grafdc738dd2006-08-15 00:33:35 -0700400errout:
401 if (err < 0)
Denis V. Lunev97c53ca2007-11-19 22:26:51 -0800402 rtnl_set_sk_err(&init_net, RTNLGRP_DECnet_ROUTE, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900405static __inline__ int dn_hash_dump_bucket(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 struct netlink_callback *cb,
407 struct dn_fib_table *tb,
408 struct dn_zone *dz,
409 struct dn_fib_node *f)
410{
411 int i, s_i;
412
Patrick McHardyabcab262006-08-10 23:11:47 -0700413 s_i = cb->args[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 for(i = 0; f; i++, f = f->fn_next) {
415 if (i < s_i)
416 continue;
417 if (f->fn_state & DN_S_ZOMBIE)
418 continue;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000419 if (dn_fib_dump_info(skb, NETLINK_CB(cb->skb).portid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 cb->nlh->nlmsg_seq,
421 RTM_NEWROUTE,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900422 tb->n,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 (f->fn_state & DN_S_ZOMBIE) ? 0 : f->fn_type,
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900424 f->fn_scope, &f->fn_key, dz->dz_order,
Jamal Hadi Salimb6544c02005-06-18 22:54:12 -0700425 f->fn_info, NLM_F_MULTI) < 0) {
Patrick McHardyabcab262006-08-10 23:11:47 -0700426 cb->args[4] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -1;
428 }
429 }
Patrick McHardyabcab262006-08-10 23:11:47 -0700430 cb->args[4] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return skb->len;
432}
433
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900434static __inline__ int dn_hash_dump_zone(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 struct netlink_callback *cb,
436 struct dn_fib_table *tb,
437 struct dn_zone *dz)
438{
439 int h, s_h;
440
Patrick McHardyabcab262006-08-10 23:11:47 -0700441 s_h = cb->args[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 for(h = 0; h < dz->dz_divisor; h++) {
443 if (h < s_h)
444 continue;
445 if (h > s_h)
Patrick McHardyabcab262006-08-10 23:11:47 -0700446 memset(&cb->args[4], 0, sizeof(cb->args) - 4*sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (dz->dz_hash == NULL || dz->dz_hash[h] == NULL)
448 continue;
449 if (dn_hash_dump_bucket(skb, cb, tb, dz, dz->dz_hash[h]) < 0) {
Patrick McHardyabcab262006-08-10 23:11:47 -0700450 cb->args[3] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -1;
452 }
453 }
Patrick McHardyabcab262006-08-10 23:11:47 -0700454 cb->args[3] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return skb->len;
456}
457
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900458static int dn_fib_table_dump(struct dn_fib_table *tb, struct sk_buff *skb,
459 struct netlink_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900461 int m, s_m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct dn_zone *dz;
463 struct dn_hash *table = (struct dn_hash *)tb->data;
464
Patrick McHardyabcab262006-08-10 23:11:47 -0700465 s_m = cb->args[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 read_lock(&dn_fib_tables_lock);
467 for(dz = table->dh_zone_list, m = 0; dz; dz = dz->dz_next, m++) {
468 if (m < s_m)
469 continue;
470 if (m > s_m)
Patrick McHardyabcab262006-08-10 23:11:47 -0700471 memset(&cb->args[3], 0, sizeof(cb->args) - 3*sizeof(cb->args[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 if (dn_hash_dump_zone(skb, cb, tb, dz) < 0) {
Patrick McHardyabcab262006-08-10 23:11:47 -0700474 cb->args[2] = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 read_unlock(&dn_fib_tables_lock);
476 return -1;
477 }
478 }
479 read_unlock(&dn_fib_tables_lock);
Patrick McHardyabcab262006-08-10 23:11:47 -0700480 cb->args[2] = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900482 return skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Patrick McHardyabcab262006-08-10 23:11:47 -0700485int dn_fib_dump(struct sk_buff *skb, struct netlink_callback *cb)
486{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900487 struct net *net = sock_net(skb->sk);
Patrick McHardyabcab262006-08-10 23:11:47 -0700488 unsigned int h, s_h;
489 unsigned int e = 0, s_e;
490 struct dn_fib_table *tb;
Patrick McHardyabcab262006-08-10 23:11:47 -0700491 int dumped = 0;
492
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800493 if (!net_eq(net, &init_net))
Denis V. Lunevb8542722007-12-01 00:21:31 +1100494 return 0;
495
Hong zhi guo573ce262013-03-27 06:47:04 +0000496 if (nlmsg_len(cb->nlh) >= sizeof(struct rtmsg) &&
David S. Miller3f7a3282012-06-26 21:47:21 -0700497 ((struct rtmsg *)nlmsg_data(cb->nlh))->rtm_flags&RTM_F_CLONED)
Patrick McHardyabcab262006-08-10 23:11:47 -0700498 return dn_cache_dump(skb, cb);
499
500 s_h = cb->args[0];
501 s_e = cb->args[1];
502
503 for (h = s_h; h < DN_FIB_TABLE_HASHSZ; h++, s_h = 0) {
504 e = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800505 hlist_for_each_entry(tb, &dn_fib_table_hash[h], hlist) {
Patrick McHardyabcab262006-08-10 23:11:47 -0700506 if (e < s_e)
507 goto next;
508 if (dumped)
509 memset(&cb->args[2], 0, sizeof(cb->args) -
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900510 2 * sizeof(cb->args[0]));
Patrick McHardyabcab262006-08-10 23:11:47 -0700511 if (tb->dump(tb, skb, cb) < 0)
512 goto out;
513 dumped = 1;
514next:
515 e++;
516 }
517 }
518out:
519 cb->args[1] = e;
520 cb->args[0] = h;
521
522 return skb->len;
523}
524
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000525static int dn_fib_table_insert(struct dn_fib_table *tb, struct rtmsg *r, struct nlattr *attrs[],
526 struct nlmsghdr *n, struct netlink_skb_parms *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 struct dn_hash *table = (struct dn_hash *)tb->data;
529 struct dn_fib_node *new_f, *f, **fp, **del_fp;
530 struct dn_zone *dz;
531 struct dn_fib_info *fi;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900532 int z = r->rtm_dst_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int type = r->rtm_type;
534 dn_fib_key_t key;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900535 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900537 if (z > 16)
538 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 dz = table->dh_zones[z];
541 if (!dz && !(dz = dn_new_zone(table, z)))
542 return -ENOBUFS;
543
544 dz_key_0(key);
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000545 if (attrs[RTA_DST]) {
546 __le16 dst = nla_get_le16(attrs[RTA_DST]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (dst & ~DZ_MASK(dz))
548 return -EINVAL;
549 key = dz_key(dst, dz);
550 }
551
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000552 if ((fi = dn_fib_create_info(r, attrs, n, &err)) == NULL)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900553 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 if (dz->dz_nent > (dz->dz_divisor << 2) &&
556 dz->dz_divisor > DN_MAX_DIVISOR &&
557 (z==16 || (1<<z) > dz->dz_divisor))
558 dn_rehash_zone(dz);
559
560 fp = dn_chain_p(key, dz);
561
562 DN_FIB_SCAN(f, fp) {
563 if (dn_key_leq(key, f->fn_key))
564 break;
565 }
566
567 del_fp = NULL;
568
569 if (f && (f->fn_state & DN_S_ZOMBIE) &&
570 dn_key_eq(f->fn_key, key)) {
571 del_fp = fp;
572 fp = &f->fn_next;
573 f = *fp;
574 goto create;
575 }
576
577 DN_FIB_SCAN_KEY(f, fp, key) {
578 if (fi->fib_priority <= DN_FIB_INFO(f)->fib_priority)
579 break;
580 }
581
582 if (f && dn_key_eq(f->fn_key, key) &&
583 fi->fib_priority == DN_FIB_INFO(f)->fib_priority) {
584 struct dn_fib_node **ins_fp;
585
586 err = -EEXIST;
587 if (n->nlmsg_flags & NLM_F_EXCL)
588 goto out;
589
590 if (n->nlmsg_flags & NLM_F_REPLACE) {
591 del_fp = fp;
592 fp = &f->fn_next;
593 f = *fp;
594 goto replace;
595 }
596
597 ins_fp = fp;
598 err = -EEXIST;
599
600 DN_FIB_SCAN_KEY(f, fp, key) {
601 if (fi->fib_priority != DN_FIB_INFO(f)->fib_priority)
602 break;
Joe Perchesf64f9e72009-11-29 16:55:45 -0800603 if (f->fn_type == type &&
604 f->fn_scope == r->rtm_scope &&
605 DN_FIB_INFO(f) == fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 goto out;
607 }
608
609 if (!(n->nlmsg_flags & NLM_F_APPEND)) {
610 fp = ins_fp;
611 f = *fp;
612 }
613 }
614
615create:
616 err = -ENOENT;
617 if (!(n->nlmsg_flags & NLM_F_CREATE))
618 goto out;
619
620replace:
621 err = -ENOBUFS;
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800622 new_f = kmem_cache_zalloc(dn_hash_kmem, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (new_f == NULL)
624 goto out;
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 new_f->fn_key = key;
627 new_f->fn_type = type;
628 new_f->fn_scope = r->rtm_scope;
629 DN_FIB_INFO(new_f) = fi;
630
631 new_f->fn_next = f;
632 write_lock_bh(&dn_fib_tables_lock);
633 *fp = new_f;
634 write_unlock_bh(&dn_fib_tables_lock);
635 dz->dz_nent++;
636
637 if (del_fp) {
638 f = *del_fp;
639 write_lock_bh(&dn_fib_tables_lock);
640 *del_fp = f->fn_next;
641 write_unlock_bh(&dn_fib_tables_lock);
642
643 if (!(f->fn_state & DN_S_ZOMBIE))
644 dn_rtmsg_fib(RTM_DELROUTE, f, z, tb->n, n, req);
645 if (f->fn_state & DN_S_ACCESSED)
646 dn_rt_cache_flush(-1);
647 dn_free_node(f);
648 dz->dz_nent--;
649 } else {
650 dn_rt_cache_flush(-1);
651 }
652
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900653 dn_rtmsg_fib(RTM_NEWROUTE, new_f, z, tb->n, n, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656out:
657 dn_fib_release_info(fi);
658 return err;
659}
660
661
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000662static int dn_fib_table_delete(struct dn_fib_table *tb, struct rtmsg *r, struct nlattr *attrs[],
663 struct nlmsghdr *n, struct netlink_skb_parms *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct dn_hash *table = (struct dn_hash*)tb->data;
666 struct dn_fib_node **fp, **del_fp, *f;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900667 int z = r->rtm_dst_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 struct dn_zone *dz;
669 dn_fib_key_t key;
670 int matched;
671
672
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900673 if (z > 16)
674 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 if ((dz = table->dh_zones[z]) == NULL)
677 return -ESRCH;
678
679 dz_key_0(key);
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000680 if (attrs[RTA_DST]) {
681 __le16 dst = nla_get_le16(attrs[RTA_DST]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (dst & ~DZ_MASK(dz))
683 return -EINVAL;
684 key = dz_key(dst, dz);
685 }
686
687 fp = dn_chain_p(key, dz);
688
689 DN_FIB_SCAN(f, fp) {
690 if (dn_key_eq(f->fn_key, key))
691 break;
692 if (dn_key_leq(key, f->fn_key))
693 return -ESRCH;
694 }
695
696 matched = 0;
697 del_fp = NULL;
698 DN_FIB_SCAN_KEY(f, fp, key) {
699 struct dn_fib_info *fi = DN_FIB_INFO(f);
700
701 if (f->fn_state & DN_S_ZOMBIE)
702 return -ESRCH;
703
704 matched++;
705
706 if (del_fp == NULL &&
707 (!r->rtm_type || f->fn_type == r->rtm_type) &&
708 (r->rtm_scope == RT_SCOPE_NOWHERE || f->fn_scope == r->rtm_scope) &&
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900709 (!r->rtm_protocol ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 fi->fib_protocol == r->rtm_protocol) &&
Thomas Graf58d7d8f2013-03-21 07:45:28 +0000711 dn_fib_nh_match(r, n, attrs, fi) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 del_fp = fp;
713 }
714
715 if (del_fp) {
716 f = *del_fp;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900717 dn_rtmsg_fib(RTM_DELROUTE, f, z, tb->n, n, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (matched != 1) {
720 write_lock_bh(&dn_fib_tables_lock);
721 *del_fp = f->fn_next;
722 write_unlock_bh(&dn_fib_tables_lock);
723
724 if (f->fn_state & DN_S_ACCESSED)
725 dn_rt_cache_flush(-1);
726 dn_free_node(f);
727 dz->dz_nent--;
728 } else {
729 f->fn_state |= DN_S_ZOMBIE;
730 if (f->fn_state & DN_S_ACCESSED) {
731 f->fn_state &= ~DN_S_ACCESSED;
732 dn_rt_cache_flush(-1);
733 }
734 if (++dn_fib_hash_zombies > 128)
735 dn_fib_flush();
736 }
737
738 return 0;
739 }
740
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900741 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744static inline int dn_flush_list(struct dn_fib_node **fp, int z, struct dn_hash *table)
745{
746 int found = 0;
747 struct dn_fib_node *f;
748
749 while((f = *fp) != NULL) {
750 struct dn_fib_info *fi = DN_FIB_INFO(f);
751
752 if (fi && ((f->fn_state & DN_S_ZOMBIE) || (fi->fib_flags & RTNH_F_DEAD))) {
753 write_lock_bh(&dn_fib_tables_lock);
754 *fp = f->fn_next;
755 write_unlock_bh(&dn_fib_tables_lock);
756
757 dn_free_node(f);
758 found++;
759 continue;
760 }
761 fp = &f->fn_next;
762 }
763
764 return found;
765}
766
767static int dn_fib_table_flush(struct dn_fib_table *tb)
768{
769 struct dn_hash *table = (struct dn_hash *)tb->data;
770 struct dn_zone *dz;
771 int found = 0;
772
773 dn_fib_hash_zombies = 0;
774 for(dz = table->dh_zone_list; dz; dz = dz->dz_next) {
775 int i;
776 int tmp = 0;
777 for(i = dz->dz_divisor-1; i >= 0; i--)
778 tmp += dn_flush_list(&dz->dz_hash[i], dz->dz_order, table);
779 dz->dz_nent -= tmp;
780 found += tmp;
781 }
782
783 return found;
784}
785
David S. Millerbef55ae2011-03-12 17:17:10 -0500786static int dn_fib_table_lookup(struct dn_fib_table *tb, const struct flowidn *flp, struct dn_fib_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900788 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct dn_zone *dz;
790 struct dn_hash *t = (struct dn_hash *)tb->data;
791
792 read_lock(&dn_fib_tables_lock);
793 for(dz = t->dh_zone_list; dz; dz = dz->dz_next) {
794 struct dn_fib_node *f;
David S. Millerbef55ae2011-03-12 17:17:10 -0500795 dn_fib_key_t k = dz_key(flp->daddr, dz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 for(f = dz_chain(k, dz); f; f = f->fn_next) {
798 if (!dn_key_eq(k, f->fn_key)) {
799 if (dn_key_leq(k, f->fn_key))
800 break;
801 else
802 continue;
803 }
804
805 f->fn_state |= DN_S_ACCESSED;
806
807 if (f->fn_state&DN_S_ZOMBIE)
808 continue;
809
David S. Millerbef55ae2011-03-12 17:17:10 -0500810 if (f->fn_scope < flp->flowidn_scope)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 continue;
812
813 err = dn_fib_semantic_match(f->fn_type, DN_FIB_INFO(f), flp, res);
814
815 if (err == 0) {
816 res->type = f->fn_type;
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900817 res->scope = f->fn_scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 res->prefixlen = dz->dz_order;
819 goto out;
820 }
821 if (err < 0)
822 goto out;
823 }
824 }
825 err = 1;
826out:
827 read_unlock(&dn_fib_tables_lock);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900828 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700832struct dn_fib_table *dn_fib_get_table(u32 n, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900834 struct dn_fib_table *t;
Patrick McHardyabcab262006-08-10 23:11:47 -0700835 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900837 if (n < RT_TABLE_MIN)
838 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900840 if (n > RT_TABLE_MAX)
841 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Patrick McHardyabcab262006-08-10 23:11:47 -0700843 h = n & (DN_FIB_TABLE_HASHSZ - 1);
844 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800845 hlist_for_each_entry_rcu(t, &dn_fib_table_hash[h], hlist) {
Patrick McHardyabcab262006-08-10 23:11:47 -0700846 if (t->n == n) {
847 rcu_read_unlock();
848 return t;
849 }
850 }
851 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900853 if (!create)
854 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Joe Perchese87cc472012-05-13 21:56:26 +0000856 if (in_interrupt()) {
857 net_dbg_ratelimited("DECnet: BUG! Attempt to create routing table from interrupt\n");
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900858 return NULL;
859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900861 t = kzalloc(sizeof(struct dn_fib_table) + sizeof(struct dn_hash),
Arnaldo Carvalho de Meloe6b61102006-11-21 01:16:24 -0200862 GFP_KERNEL);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900863 if (t == NULL)
864 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900866 t->n = n;
867 t->insert = dn_fib_table_insert;
868 t->delete = dn_fib_table_delete;
869 t->lookup = dn_fib_table_lookup;
870 t->flush = dn_fib_table_flush;
871 t->dump = dn_fib_table_dump;
Patrick McHardyabcab262006-08-10 23:11:47 -0700872 hlist_add_head_rcu(&t->hlist, &dn_fib_table_hash[h]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900874 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877struct dn_fib_table *dn_fib_empty_table(void)
878{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900879 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900881 for(id = RT_TABLE_MIN; id <= RT_TABLE_MAX; id++)
Patrick McHardyabcab262006-08-10 23:11:47 -0700882 if (dn_fib_get_table(id, 0) == NULL)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900883 return dn_fib_get_table(id, 1);
884 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Patrick McHardyabcab262006-08-10 23:11:47 -0700887void dn_fib_flush(void)
888{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900889 int flushed = 0;
890 struct dn_fib_table *tb;
Patrick McHardyabcab262006-08-10 23:11:47 -0700891 unsigned int h;
892
893 for (h = 0; h < DN_FIB_TABLE_HASHSZ; h++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800894 hlist_for_each_entry(tb, &dn_fib_table_hash[h], hlist)
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900895 flushed += tb->flush(tb);
896 }
Patrick McHardyabcab262006-08-10 23:11:47 -0700897
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900898 if (flushed)
899 dn_rt_cache_flush(-1);
Patrick McHardyabcab262006-08-10 23:11:47 -0700900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902void __init dn_fib_table_init(void)
903{
904 dn_hash_kmem = kmem_cache_create("dn_fib_info_cache",
905 sizeof(struct dn_fib_info),
906 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900907 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
910void __exit dn_fib_table_cleanup(void)
911{
Patrick McHardyabcab262006-08-10 23:11:47 -0700912 struct dn_fib_table *t;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800913 struct hlist_node *next;
Patrick McHardyabcab262006-08-10 23:11:47 -0700914 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Patrick McHardyabcab262006-08-10 23:11:47 -0700916 write_lock(&dn_fib_tables_lock);
917 for (h = 0; h < DN_FIB_TABLE_HASHSZ; h++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800918 hlist_for_each_entry_safe(t, next, &dn_fib_table_hash[h],
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900919 hlist) {
Patrick McHardyabcab262006-08-10 23:11:47 -0700920 hlist_del(&t->hlist);
921 kfree(t);
922 }
923 }
924 write_unlock(&dn_fib_tables_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}