]> git.ipfire.org Git - thirdparty/bird.git/blob - nest/rt-dev.c
Nest: Fixes symbols in router id
[thirdparty/bird.git] / nest / rt-dev.c
1 /*
2 * BIRD -- Direct Device Routes
3 *
4 * (c) 1998--2000 Martin Mares <mj@ucw.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9 /**
10 * DOC: Direct
11 *
12 * The Direct protocol works by converting all ifa_notify() events it receives
13 * to rte_update() calls for the corresponding network.
14 */
15
16 #undef LOCAL_DEBUG
17
18 #include "nest/bird.h"
19 #include "nest/iface.h"
20 #include "nest/protocol.h"
21 #include "nest/route.h"
22 #include "nest/rt-dev.h"
23 #include "conf/conf.h"
24 #include "lib/resource.h"
25 #include "lib/string.h"
26
27 static void
28 dev_ifa_notify(struct proto *p, unsigned c, struct ifa *ad)
29 {
30 struct rt_dev_config *P = (void *) p->cf;
31
32 if (!EMPTY_LIST(P->iface_list) &&
33 !iface_patt_find(&P->iface_list, ad->iface, ad->iface->addr))
34 /* Empty list is automagically treated as "*" */
35 return;
36
37 if (ad->flags & IA_SECONDARY)
38 return;
39
40 if (ad->scope <= SCOPE_LINK)
41 return;
42
43 if (c & IF_CHANGE_DOWN)
44 {
45 net *n;
46
47 DBG("dev_if_notify: %s:%I going down\n", ad->iface->name, ad->ip);
48 n = net_find(p->table, ad->prefix, ad->pxlen);
49 if (!n)
50 {
51 DBG("dev_if_notify: device shutdown: prefix not found\n");
52 return;
53 }
54
55 /* Use iface ID as local source ID */
56 struct rte_src *src = rt_get_source(p, ad->iface->index);
57 rte_update2(p->main_ahook, n, NULL, src);
58 }
59 else if (c & IF_CHANGE_UP)
60 {
61 rta *a;
62 net *n;
63 rte *e;
64
65 DBG("dev_if_notify: %s:%I going up\n", ad->iface->name, ad->ip);
66
67 /* Use iface ID as local source ID */
68 struct rte_src *src = rt_get_source(p, ad->iface->index);
69
70 rta a0 = {
71 .src = src,
72 .source = RTS_DEVICE,
73 .scope = SCOPE_UNIVERSE,
74 .cast = RTC_UNICAST,
75 .dest = RTD_DEVICE,
76 .iface = ad->iface
77 };
78
79 a = rta_lookup(&a0);
80 n = net_get(p->table, ad->prefix, ad->pxlen);
81 e = rte_get_temp(a);
82 e->net = n;
83 e->pflags = 0;
84 rte_update2(p->main_ahook, n, e, src);
85 }
86 }
87
88 static struct proto *
89 dev_init(struct proto_config *c)
90 {
91 struct proto *p = proto_new(c, sizeof(struct proto));
92
93 p->ifa_notify = dev_ifa_notify;
94 return p;
95 }
96
97 static int
98 dev_reconfigure(struct proto *p, struct proto_config *new)
99 {
100 struct rt_dev_config *o = (struct rt_dev_config *) p->cf;
101 struct rt_dev_config *n = (struct rt_dev_config *) new;
102
103 return iface_patts_equal(&o->iface_list, &n->iface_list, NULL);
104 }
105
106 static void
107 dev_copy_config(struct proto_config *dest, struct proto_config *src)
108 {
109 struct rt_dev_config *d = (struct rt_dev_config *) dest;
110 struct rt_dev_config *s = (struct rt_dev_config *) src;
111
112 /*
113 * We copy iface_list as ifaces can be shared by more direct protocols.
114 * Copy suffices to be is shallow, because new nodes can be added, but
115 * old nodes cannot be modified (although they contain internal lists).
116 */
117 cfg_copy_list(&d->iface_list, &s->iface_list, sizeof(struct iface_patt));
118 }
119
120 struct protocol proto_device = {
121 .name = "Direct",
122 .template = "direct%d",
123 .preference = DEF_PREF_DIRECT,
124 .config_size = sizeof(struct rt_dev_config),
125 .init = dev_init,
126 .reconfigure = dev_reconfigure,
127 .copy_config = dev_copy_config
128 };