blob: 5413e1b75b5da7995ff12bf7a8a6f77d8912e37d [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 (Glue/Info List)
7 *
8 * Author: Steve Whitehouse <SteveW@ACM.org>
9 *
10 *
11 * Changes:
12 * Alexey Kuznetsov : SMP locking changes
13 * Steve Whitehouse : Rewrote it... Well to be more correct, I
14 * copied most of it from the ipv4 fib code.
15 * Steve Whitehouse : Updated it in style and fixed a few bugs
16 * which were fixed in the ipv4 code since
17 * this code was copied from it.
18 *
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/string.h>
21#include <linux/net.h>
22#include <linux/socket.h>
23#include <linux/sockios.h>
24#include <linux/init.h>
25#include <linux/skbuff.h>
26#include <linux/netlink.h>
27#include <linux/rtnetlink.h>
28#include <linux/proc_fs.h>
29#include <linux/netdevice.h>
30#include <linux/timer.h>
31#include <linux/spinlock.h>
32#include <asm/atomic.h>
33#include <asm/uaccess.h>
34#include <net/neighbour.h>
35#include <net/dst.h>
36#include <net/flow.h>
Steven Whitehousea8731cb2006-08-09 15:56:46 -070037#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <net/dn.h>
39#include <net/dn_route.h>
40#include <net/dn_fib.h>
41#include <net/dn_neigh.h>
42#include <net/dn_dev.h>
43
44#define RT_MIN_TABLE 1
45
46#define for_fib_info() { struct dn_fib_info *fi;\
47 for(fi = dn_fib_info_list; fi; fi = fi->fib_next)
48#define endfor_fib_info() }
49
50#define for_nexthops(fi) { int nhsel; const struct dn_fib_nh *nh;\
51 for(nhsel = 0, nh = (fi)->fib_nh; nhsel < (fi)->fib_nhs; nh++, nhsel++)
52
53#define change_nexthops(fi) { int nhsel; struct dn_fib_nh *nh;\
54 for(nhsel = 0, nh = (struct dn_fib_nh *)((fi)->fib_nh); nhsel < (fi)->fib_nhs; nh++, nhsel++)
55
56#define endfor_nexthops(fi) }
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static DEFINE_SPINLOCK(dn_fib_multipath_lock);
59static struct dn_fib_info *dn_fib_info_list;
Steven Whitehousea22ec362006-08-09 16:00:57 -070060static DEFINE_SPINLOCK(dn_fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62static struct
63{
64 int error;
65 u8 scope;
Thomas Grafa9791012007-03-24 20:33:27 -070066} dn_fib_props[RTN_MAX+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 [RTN_UNSPEC] = { .error = 0, .scope = RT_SCOPE_NOWHERE },
68 [RTN_UNICAST] = { .error = 0, .scope = RT_SCOPE_UNIVERSE },
69 [RTN_LOCAL] = { .error = 0, .scope = RT_SCOPE_HOST },
70 [RTN_BROADCAST] = { .error = -EINVAL, .scope = RT_SCOPE_NOWHERE },
71 [RTN_ANYCAST] = { .error = -EINVAL, .scope = RT_SCOPE_NOWHERE },
72 [RTN_MULTICAST] = { .error = -EINVAL, .scope = RT_SCOPE_NOWHERE },
73 [RTN_BLACKHOLE] = { .error = -EINVAL, .scope = RT_SCOPE_UNIVERSE },
74 [RTN_UNREACHABLE] = { .error = -EHOSTUNREACH, .scope = RT_SCOPE_UNIVERSE },
75 [RTN_PROHIBIT] = { .error = -EACCES, .scope = RT_SCOPE_UNIVERSE },
76 [RTN_THROW] = { .error = -EAGAIN, .scope = RT_SCOPE_UNIVERSE },
77 [RTN_NAT] = { .error = 0, .scope = RT_SCOPE_NOWHERE },
78 [RTN_XRESOLVE] = { .error = -EINVAL, .scope = RT_SCOPE_NOWHERE },
79};
80
Adrian Bunk2aa7f362006-08-14 23:55:20 -070081static int dn_fib_sync_down(__le16 local, struct net_device *dev, int force);
82static int dn_fib_sync_up(struct net_device *dev);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084void dn_fib_free_info(struct dn_fib_info *fi)
85{
86 if (fi->fib_dead == 0) {
87 printk(KERN_DEBUG "DECnet: BUG! Attempt to free alive dn_fib_info\n");
88 return;
89 }
90
91 change_nexthops(fi) {
92 if (nh->nh_dev)
93 dev_put(nh->nh_dev);
94 nh->nh_dev = NULL;
95 } endfor_nexthops(fi);
96 kfree(fi);
97}
98
99void dn_fib_release_info(struct dn_fib_info *fi)
100{
Steven Whitehousea22ec362006-08-09 16:00:57 -0700101 spin_lock(&dn_fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (fi && --fi->fib_treeref == 0) {
103 if (fi->fib_next)
104 fi->fib_next->fib_prev = fi->fib_prev;
105 if (fi->fib_prev)
106 fi->fib_prev->fib_next = fi->fib_next;
107 if (fi == dn_fib_info_list)
108 dn_fib_info_list = fi->fib_next;
109 fi->fib_dead = 1;
110 dn_fib_info_put(fi);
111 }
Steven Whitehousea22ec362006-08-09 16:00:57 -0700112 spin_unlock(&dn_fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static inline int dn_fib_nh_comp(const struct dn_fib_info *fi, const struct dn_fib_info *ofi)
116{
117 const struct dn_fib_nh *onh = ofi->fib_nh;
118
119 for_nexthops(fi) {
120 if (nh->nh_oif != onh->nh_oif ||
121 nh->nh_gw != onh->nh_gw ||
122 nh->nh_scope != onh->nh_scope ||
123 nh->nh_weight != onh->nh_weight ||
124 ((nh->nh_flags^onh->nh_flags)&~RTNH_F_DEAD))
125 return -1;
126 onh++;
127 } endfor_nexthops(fi);
128 return 0;
129}
130
131static inline struct dn_fib_info *dn_fib_find_info(const struct dn_fib_info *nfi)
132{
133 for_fib_info() {
134 if (fi->fib_nhs != nfi->fib_nhs)
135 continue;
136 if (nfi->fib_protocol == fi->fib_protocol &&
137 nfi->fib_prefsrc == fi->fib_prefsrc &&
138 nfi->fib_priority == fi->fib_priority &&
139 memcmp(nfi->fib_metrics, fi->fib_metrics, sizeof(fi->fib_metrics)) == 0 &&
140 ((nfi->fib_flags^fi->fib_flags)&~RTNH_F_DEAD) == 0 &&
141 (nfi->fib_nhs == 0 || dn_fib_nh_comp(fi, nfi) == 0))
142 return fi;
143 } endfor_fib_info();
144 return NULL;
145}
146
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800147__le16 dn_fib_get_attr16(struct rtattr *attr, int attrlen, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 while(RTA_OK(attr,attrlen)) {
150 if (attr->rta_type == type)
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800151 return *(__le16*)RTA_DATA(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 attr = RTA_NEXT(attr, attrlen);
153 }
154
155 return 0;
156}
157
158static int dn_fib_count_nhs(struct rtattr *rta)
159{
160 int nhs = 0;
161 struct rtnexthop *nhp = RTA_DATA(rta);
162 int nhlen = RTA_PAYLOAD(rta);
163
164 while(nhlen >= (int)sizeof(struct rtnexthop)) {
165 if ((nhlen -= nhp->rtnh_len) < 0)
166 return 0;
167 nhs++;
168 nhp = RTNH_NEXT(nhp);
169 }
170
171 return nhs;
172}
173
174static int dn_fib_get_nhs(struct dn_fib_info *fi, const struct rtattr *rta, const struct rtmsg *r)
175{
176 struct rtnexthop *nhp = RTA_DATA(rta);
177 int nhlen = RTA_PAYLOAD(rta);
178
179 change_nexthops(fi) {
180 int attrlen = nhlen - sizeof(struct rtnexthop);
181 if (attrlen < 0 || (nhlen -= nhp->rtnh_len) < 0)
182 return -EINVAL;
183
184 nh->nh_flags = (r->rtm_flags&~0xFF) | nhp->rtnh_flags;
185 nh->nh_oif = nhp->rtnh_ifindex;
186 nh->nh_weight = nhp->rtnh_hops + 1;
187
188 if (attrlen) {
189 nh->nh_gw = dn_fib_get_attr16(RTNH_DATA(nhp), attrlen, RTA_GATEWAY);
190 }
191 nhp = RTNH_NEXT(nhp);
192 } endfor_nexthops(fi);
193
194 return 0;
195}
196
197
198static int dn_fib_check_nh(const struct rtmsg *r, struct dn_fib_info *fi, struct dn_fib_nh *nh)
199{
200 int err;
201
202 if (nh->nh_gw) {
203 struct flowi fl;
204 struct dn_fib_res res;
205
206 memset(&fl, 0, sizeof(fl));
207
208 if (nh->nh_flags&RTNH_F_ONLINK) {
209 struct net_device *dev;
210
211 if (r->rtm_scope >= RT_SCOPE_LINK)
212 return -EINVAL;
213 if (dnet_addr_type(nh->nh_gw) != RTN_UNICAST)
214 return -EINVAL;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700215 if ((dev = __dev_get_by_index(&init_net, nh->nh_oif)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return -ENODEV;
217 if (!(dev->flags&IFF_UP))
218 return -ENETDOWN;
219 nh->nh_dev = dev;
220 dev_hold(dev);
221 nh->nh_scope = RT_SCOPE_LINK;
222 return 0;
223 }
224
225 memset(&fl, 0, sizeof(fl));
226 fl.fld_dst = nh->nh_gw;
227 fl.oif = nh->nh_oif;
228 fl.fld_scope = r->rtm_scope + 1;
229
230 if (fl.fld_scope < RT_SCOPE_LINK)
231 fl.fld_scope = RT_SCOPE_LINK;
232
233 if ((err = dn_fib_lookup(&fl, &res)) != 0)
234 return err;
235
236 err = -EINVAL;
237 if (res.type != RTN_UNICAST && res.type != RTN_LOCAL)
238 goto out;
239 nh->nh_scope = res.scope;
240 nh->nh_oif = DN_FIB_RES_OIF(res);
241 nh->nh_dev = DN_FIB_RES_DEV(res);
242 if (nh->nh_dev == NULL)
243 goto out;
244 dev_hold(nh->nh_dev);
245 err = -ENETDOWN;
246 if (!(nh->nh_dev->flags & IFF_UP))
247 goto out;
248 err = 0;
249out:
250 dn_fib_res_put(&res);
251 return err;
252 } else {
253 struct net_device *dev;
254
255 if (nh->nh_flags&(RTNH_F_PERVASIVE|RTNH_F_ONLINK))
256 return -EINVAL;
257
Eric W. Biederman881d9662007-09-17 11:56:21 -0700258 dev = __dev_get_by_index(&init_net, nh->nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (dev == NULL || dev->dn_ptr == NULL)
260 return -ENODEV;
261 if (!(dev->flags&IFF_UP))
262 return -ENETDOWN;
263 nh->nh_dev = dev;
264 dev_hold(nh->nh_dev);
265 nh->nh_scope = RT_SCOPE_HOST;
266 }
267
268 return 0;
269}
270
271
272struct dn_fib_info *dn_fib_create_info(const struct rtmsg *r, struct dn_kern_rta *rta, const struct nlmsghdr *nlh, int *errp)
273{
274 int err;
275 struct dn_fib_info *fi = NULL;
276 struct dn_fib_info *ofi;
277 int nhs = 1;
278
Thomas Grafa9791012007-03-24 20:33:27 -0700279 if (r->rtm_type > RTN_MAX)
280 goto err_inval;
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (dn_fib_props[r->rtm_type].scope > r->rtm_scope)
283 goto err_inval;
284
285 if (rta->rta_mp) {
286 nhs = dn_fib_count_nhs(rta->rta_mp);
287 if (nhs == 0)
288 goto err_inval;
289 }
290
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700291 fi = kzalloc(sizeof(*fi)+nhs*sizeof(struct dn_fib_nh), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 err = -ENOBUFS;
293 if (fi == NULL)
294 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 fi->fib_protocol = r->rtm_protocol;
297 fi->fib_nhs = nhs;
298 fi->fib_flags = r->rtm_flags;
299 if (rta->rta_priority)
300 fi->fib_priority = *rta->rta_priority;
301 if (rta->rta_mx) {
302 int attrlen = RTA_PAYLOAD(rta->rta_mx);
303 struct rtattr *attr = RTA_DATA(rta->rta_mx);
304
305 while(RTA_OK(attr, attrlen)) {
306 unsigned flavour = attr->rta_type;
307 if (flavour) {
308 if (flavour > RTAX_MAX)
309 goto err_inval;
310 fi->fib_metrics[flavour-1] = *(unsigned*)RTA_DATA(attr);
311 }
312 attr = RTA_NEXT(attr, attrlen);
313 }
314 }
315 if (rta->rta_prefsrc)
316 memcpy(&fi->fib_prefsrc, rta->rta_prefsrc, 2);
317
318 if (rta->rta_mp) {
319 if ((err = dn_fib_get_nhs(fi, rta->rta_mp, r)) != 0)
320 goto failure;
321 if (rta->rta_oif && fi->fib_nh->nh_oif != *rta->rta_oif)
322 goto err_inval;
323 if (rta->rta_gw && memcmp(&fi->fib_nh->nh_gw, rta->rta_gw, 2))
324 goto err_inval;
325 } else {
326 struct dn_fib_nh *nh = fi->fib_nh;
327 if (rta->rta_oif)
328 nh->nh_oif = *rta->rta_oif;
329 if (rta->rta_gw)
330 memcpy(&nh->nh_gw, rta->rta_gw, 2);
331 nh->nh_flags = r->rtm_flags;
332 nh->nh_weight = 1;
333 }
334
335 if (r->rtm_type == RTN_NAT) {
336 if (rta->rta_gw == NULL || nhs != 1 || rta->rta_oif)
337 goto err_inval;
338 memcpy(&fi->fib_nh->nh_gw, rta->rta_gw, 2);
339 goto link_it;
340 }
341
342 if (dn_fib_props[r->rtm_type].error) {
343 if (rta->rta_gw || rta->rta_oif || rta->rta_mp)
344 goto err_inval;
345 goto link_it;
346 }
347
348 if (r->rtm_scope > RT_SCOPE_HOST)
349 goto err_inval;
350
351 if (r->rtm_scope == RT_SCOPE_HOST) {
352 struct dn_fib_nh *nh = fi->fib_nh;
353
354 /* Local address is added */
355 if (nhs != 1 || nh->nh_gw)
356 goto err_inval;
357 nh->nh_scope = RT_SCOPE_NOWHERE;
Eric W. Biederman881d9662007-09-17 11:56:21 -0700358 nh->nh_dev = dev_get_by_index(&init_net, fi->fib_nh->nh_oif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 err = -ENODEV;
360 if (nh->nh_dev == NULL)
361 goto failure;
362 } else {
363 change_nexthops(fi) {
364 if ((err = dn_fib_check_nh(r, fi, nh)) != 0)
365 goto failure;
366 } endfor_nexthops(fi)
367 }
368
369 if (fi->fib_prefsrc) {
370 if (r->rtm_type != RTN_LOCAL || rta->rta_dst == NULL ||
371 memcmp(&fi->fib_prefsrc, rta->rta_dst, 2))
372 if (dnet_addr_type(fi->fib_prefsrc) != RTN_LOCAL)
373 goto err_inval;
374 }
375
376link_it:
377 if ((ofi = dn_fib_find_info(fi)) != NULL) {
378 fi->fib_dead = 1;
379 dn_fib_free_info(fi);
380 ofi->fib_treeref++;
381 return ofi;
382 }
383
384 fi->fib_treeref++;
385 atomic_inc(&fi->fib_clntref);
Steven Whitehousea22ec362006-08-09 16:00:57 -0700386 spin_lock(&dn_fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 fi->fib_next = dn_fib_info_list;
388 fi->fib_prev = NULL;
389 if (dn_fib_info_list)
390 dn_fib_info_list->fib_prev = fi;
391 dn_fib_info_list = fi;
Steven Whitehousea22ec362006-08-09 16:00:57 -0700392 spin_unlock(&dn_fib_info_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return fi;
394
395err_inval:
396 err = -EINVAL;
397
398failure:
399 *errp = err;
400 if (fi) {
401 fi->fib_dead = 1;
402 dn_fib_free_info(fi);
403 }
404
405 return NULL;
406}
407
408int dn_fib_semantic_match(int type, struct dn_fib_info *fi, const struct flowi *fl, struct dn_fib_res *res)
409{
410 int err = dn_fib_props[type].error;
411
412 if (err == 0) {
413 if (fi->fib_flags & RTNH_F_DEAD)
414 return 1;
415
416 res->fi = fi;
417
418 switch(type) {
419 case RTN_NAT:
420 DN_FIB_RES_RESET(*res);
421 atomic_inc(&fi->fib_clntref);
422 return 0;
423 case RTN_UNICAST:
424 case RTN_LOCAL:
425 for_nexthops(fi) {
426 if (nh->nh_flags & RTNH_F_DEAD)
427 continue;
428 if (!fl->oif || fl->oif == nh->nh_oif)
429 break;
430 }
431 if (nhsel < fi->fib_nhs) {
432 res->nh_sel = nhsel;
433 atomic_inc(&fi->fib_clntref);
434 return 0;
435 }
436 endfor_nexthops(fi);
437 res->fi = NULL;
438 return 1;
439 default:
440 if (net_ratelimit())
441 printk("DECnet: impossible routing event : dn_fib_semantic_match type=%d\n", type);
442 res->fi = NULL;
443 return -EINVAL;
444 }
445 }
446 return err;
447}
448
449void dn_fib_select_multipath(const struct flowi *fl, struct dn_fib_res *res)
450{
451 struct dn_fib_info *fi = res->fi;
452 int w;
453
454 spin_lock_bh(&dn_fib_multipath_lock);
455 if (fi->fib_power <= 0) {
456 int power = 0;
457 change_nexthops(fi) {
458 if (!(nh->nh_flags&RTNH_F_DEAD)) {
459 power += nh->nh_weight;
460 nh->nh_power = nh->nh_weight;
461 }
462 } endfor_nexthops(fi);
463 fi->fib_power = power;
464 if (power < 0) {
465 spin_unlock_bh(&dn_fib_multipath_lock);
466 res->nh_sel = 0;
467 return;
468 }
469 }
470
471 w = jiffies % fi->fib_power;
472
473 change_nexthops(fi) {
474 if (!(nh->nh_flags&RTNH_F_DEAD) && nh->nh_power) {
475 if ((w -= nh->nh_power) <= 0) {
476 nh->nh_power--;
477 fi->fib_power--;
478 res->nh_sel = nhsel;
479 spin_unlock_bh(&dn_fib_multipath_lock);
480 return;
481 }
482 }
483 } endfor_nexthops(fi);
484 res->nh_sel = 0;
485 spin_unlock_bh(&dn_fib_multipath_lock);
486}
487
488
489static int dn_fib_check_attr(struct rtmsg *r, struct rtattr **rta)
490{
491 int i;
492
493 for(i = 1; i <= RTA_MAX; i++) {
494 struct rtattr *attr = rta[i-1];
495 if (attr) {
496 if (RTA_PAYLOAD(attr) < 4 && RTA_PAYLOAD(attr) != 2)
497 return -EINVAL;
Patrick McHardy9e762a42006-08-10 23:09:48 -0700498 if (i != RTA_MULTIPATH && i != RTA_METRICS &&
499 i != RTA_TABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 rta[i-1] = (struct rtattr *)RTA_DATA(attr);
501 }
502 }
503
504 return 0;
505}
506
Thomas Graffa34ddd2007-03-22 11:57:46 -0700507static int dn_fib_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Denis V. Lunevb8542722007-12-01 00:21:31 +1100509 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 struct dn_fib_table *tb;
511 struct rtattr **rta = arg;
512 struct rtmsg *r = NLMSG_DATA(nlh);
513
Denis V. Lunevb8542722007-12-01 00:21:31 +1100514 if (net != &init_net)
515 return -EINVAL;
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (dn_fib_check_attr(r, rta))
518 return -EINVAL;
519
Patrick McHardy9e762a42006-08-10 23:09:48 -0700520 tb = dn_fib_get_table(rtm_get_table(rta, r->rtm_table), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (tb)
522 return tb->delete(tb, r, (struct dn_kern_rta *)rta, nlh, &NETLINK_CB(skb));
523
524 return -ESRCH;
525}
526
Thomas Graffa34ddd2007-03-22 11:57:46 -0700527static int dn_fib_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Denis V. Lunevb8542722007-12-01 00:21:31 +1100529 struct net *net = skb->sk->sk_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 struct dn_fib_table *tb;
531 struct rtattr **rta = arg;
532 struct rtmsg *r = NLMSG_DATA(nlh);
533
Denis V. Lunevb8542722007-12-01 00:21:31 +1100534 if (net != &init_net)
535 return -EINVAL;
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (dn_fib_check_attr(r, rta))
538 return -EINVAL;
539
Patrick McHardy9e762a42006-08-10 23:09:48 -0700540 tb = dn_fib_get_table(rtm_get_table(rta, r->rtm_table), 1);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900541 if (tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return tb->insert(tb, r, (struct dn_kern_rta *)rta, nlh, &NETLINK_CB(skb));
543
544 return -ENOBUFS;
545}
546
Steven Whitehousec4ea94a2006-03-20 22:42:39 -0800547static void fib_magic(int cmd, int type, __le16 dst, int dst_len, struct dn_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 struct dn_fib_table *tb;
550 struct {
551 struct nlmsghdr nlh;
552 struct rtmsg rtm;
553 } req;
554 struct dn_kern_rta rta;
555
556 memset(&req.rtm, 0, sizeof(req.rtm));
557 memset(&rta, 0, sizeof(rta));
558
559 if (type == RTN_UNICAST)
560 tb = dn_fib_get_table(RT_MIN_TABLE, 1);
561 else
562 tb = dn_fib_get_table(RT_TABLE_LOCAL, 1);
563
564 if (tb == NULL)
565 return;
566
567 req.nlh.nlmsg_len = sizeof(req);
568 req.nlh.nlmsg_type = cmd;
569 req.nlh.nlmsg_flags = NLM_F_REQUEST|NLM_F_CREATE|NLM_F_APPEND;
570 req.nlh.nlmsg_pid = 0;
571 req.nlh.nlmsg_seq = 0;
572
573 req.rtm.rtm_dst_len = dst_len;
574 req.rtm.rtm_table = tb->n;
575 req.rtm.rtm_protocol = RTPROT_KERNEL;
576 req.rtm.rtm_scope = (type != RTN_LOCAL ? RT_SCOPE_LINK : RT_SCOPE_HOST);
577 req.rtm.rtm_type = type;
578
579 rta.rta_dst = &dst;
580 rta.rta_prefsrc = &ifa->ifa_local;
581 rta.rta_oif = &ifa->ifa_dev->dev->ifindex;
582
583 if (cmd == RTM_NEWROUTE)
584 tb->insert(tb, &req.rtm, &rta, &req.nlh, NULL);
585 else
586 tb->delete(tb, &req.rtm, &rta, &req.nlh, NULL);
587}
588
589static void dn_fib_add_ifaddr(struct dn_ifaddr *ifa)
590{
591
592 fib_magic(RTM_NEWROUTE, RTN_LOCAL, ifa->ifa_local, 16, ifa);
593
594#if 0
595 if (!(dev->flags&IFF_UP))
596 return;
597 /* In the future, we will want to add default routes here */
598
599#endif
600}
601
602static void dn_fib_del_ifaddr(struct dn_ifaddr *ifa)
603{
604 int found_it = 0;
605 struct net_device *dev;
606 struct dn_dev *dn_db;
607 struct dn_ifaddr *ifa2;
608
609 ASSERT_RTNL();
610
611 /* Scan device list */
612 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700613 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 dn_db = dev->dn_ptr;
615 if (dn_db == NULL)
616 continue;
617 for(ifa2 = dn_db->ifa_list; ifa2; ifa2 = ifa2->ifa_next) {
618 if (ifa2->ifa_local == ifa->ifa_local) {
619 found_it = 1;
620 break;
621 }
622 }
623 }
624 read_unlock(&dev_base_lock);
625
626 if (found_it == 0) {
627 fib_magic(RTM_DELROUTE, RTN_LOCAL, ifa->ifa_local, 16, ifa);
628
629 if (dnet_addr_type(ifa->ifa_local) != RTN_LOCAL) {
630 if (dn_fib_sync_down(ifa->ifa_local, NULL, 0))
631 dn_fib_flush();
632 }
633 }
634}
635
636static void dn_fib_disable_addr(struct net_device *dev, int force)
637{
638 if (dn_fib_sync_down(0, dev, force))
639 dn_fib_flush();
640 dn_rt_cache_flush(0);
641 neigh_ifdown(&dn_neigh_table, dev);
642}
643
644static int dn_fib_dnaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
645{
646 struct dn_ifaddr *ifa = (struct dn_ifaddr *)ptr;
647
648 switch(event) {
649 case NETDEV_UP:
650 dn_fib_add_ifaddr(ifa);
651 dn_fib_sync_up(ifa->ifa_dev->dev);
652 dn_rt_cache_flush(-1);
653 break;
654 case NETDEV_DOWN:
655 dn_fib_del_ifaddr(ifa);
656 if (ifa->ifa_dev && ifa->ifa_dev->ifa_list == NULL) {
657 dn_fib_disable_addr(ifa->ifa_dev->dev, 1);
658 } else {
659 dn_rt_cache_flush(-1);
660 }
661 break;
662 }
663 return NOTIFY_DONE;
664}
665
Adrian Bunk2aa7f362006-08-14 23:55:20 -0700666static int dn_fib_sync_down(__le16 local, struct net_device *dev, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900668 int ret = 0;
669 int scope = RT_SCOPE_NOWHERE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900671 if (force)
672 scope = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900674 for_fib_info() {
675 /*
676 * This makes no sense for DECnet.... we will almost
677 * certainly have more than one local address the same
678 * over all our interfaces. It needs thinking about
679 * some more.
680 */
681 if (local && fi->fib_prefsrc == local) {
682 fi->fib_flags |= RTNH_F_DEAD;
683 ret++;
684 } else if (dev && fi->fib_nhs) {
685 int dead = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900687 change_nexthops(fi) {
688 if (nh->nh_flags&RTNH_F_DEAD)
689 dead++;
690 else if (nh->nh_dev == dev &&
691 nh->nh_scope != scope) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 spin_lock_bh(&dn_fib_multipath_lock);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900693 nh->nh_flags |= RTNH_F_DEAD;
694 fi->fib_power -= nh->nh_power;
695 nh->nh_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 spin_unlock_bh(&dn_fib_multipath_lock);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900697 dead++;
698 }
699 } endfor_nexthops(fi)
700 if (dead == fi->fib_nhs) {
701 fi->fib_flags |= RTNH_F_DEAD;
702 ret++;
703 }
704 }
705 } endfor_fib_info();
706 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
709
Adrian Bunk2aa7f362006-08-14 23:55:20 -0700710static int dn_fib_sync_up(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900712 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900714 if (!(dev->flags&IFF_UP))
715 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900717 for_fib_info() {
718 int alive = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900720 change_nexthops(fi) {
721 if (!(nh->nh_flags&RTNH_F_DEAD)) {
722 alive++;
723 continue;
724 }
725 if (nh->nh_dev == NULL || !(nh->nh_dev->flags&IFF_UP))
726 continue;
727 if (nh->nh_dev != dev || dev->dn_ptr == NULL)
728 continue;
729 alive++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 spin_lock_bh(&dn_fib_multipath_lock);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900731 nh->nh_power = 0;
732 nh->nh_flags &= ~RTNH_F_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 spin_unlock_bh(&dn_fib_multipath_lock);
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900734 } endfor_nexthops(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
YOSHIFUJI Hideaki429eb0f2007-02-09 23:24:40 +0900736 if (alive > 0) {
737 fi->fib_flags &= ~RTNH_F_DEAD;
738 ret++;
739 }
740 } endfor_fib_info();
741 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744static struct notifier_block dn_fib_dnaddr_notifier = {
745 .notifier_call = dn_fib_dnaddr_event,
746};
747
748void __exit dn_fib_cleanup(void)
749{
750 dn_fib_table_cleanup();
751 dn_fib_rules_cleanup();
752
753 unregister_dnaddr_notifier(&dn_fib_dnaddr_notifier);
754}
755
756
757void __init dn_fib_init(void)
758{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 dn_fib_table_init();
760 dn_fib_rules_init();
761
762 register_dnaddr_notifier(&dn_fib_dnaddr_notifier);
Thomas Graffa34ddd2007-03-22 11:57:46 -0700763
764 rtnl_register(PF_DECnet, RTM_NEWROUTE, dn_fib_rtm_newroute, NULL);
765 rtnl_register(PF_DECnet, RTM_DELROUTE, dn_fib_rtm_delroute, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768