]> git.proxmox.com Git - mirror_frr.git/blob - nhrpd/nhrp_route.c
Merge pull request #1047 from dwalton76/bgpd-draft-ietf-grow-bgp-gshut-10
[mirror_frr.git] / nhrpd / nhrp_route.c
1 /* NHRP routing functions
2 * Copyright (c) 2014-2015 Timo Teräs
3 *
4 * This file is free software: you may copy, redistribute and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
8 */
9
10 #include "nhrpd.h"
11 #include "table.h"
12 #include "memory.h"
13 #include "stream.h"
14 #include "log.h"
15 #include "zclient.h"
16
17 DEFINE_MTYPE_STATIC(NHRPD, NHRP_ROUTE, "NHRP routing entry")
18
19 static struct zclient *zclient;
20 static struct route_table *zebra_rib[AFI_MAX];
21
22 struct route_info {
23 union sockunion via;
24 struct interface *ifp;
25 struct interface *nhrp_ifp;
26 };
27
28 static struct route_node *nhrp_route_update_get(const struct prefix *p, int create)
29 {
30 struct route_node *rn;
31 afi_t afi = family2afi(PREFIX_FAMILY(p));
32
33 if (!zebra_rib[afi])
34 return NULL;
35
36 if (create) {
37 rn = route_node_get(zebra_rib[afi], p);
38 if (!rn->info) {
39 rn->info = XCALLOC(MTYPE_NHRP_ROUTE, sizeof(struct route_info));
40 route_lock_node(rn);
41 }
42 return rn;
43 } else {
44 return route_node_lookup(zebra_rib[afi], p);
45 }
46 }
47
48 static void nhrp_route_update_put(struct route_node *rn)
49 {
50 struct route_info *ri = rn->info;
51
52 if (!ri->ifp && !ri->nhrp_ifp && sockunion_family(&ri->via) == AF_UNSPEC) {
53 XFREE(MTYPE_NHRP_ROUTE, rn->info);
54 rn->info = NULL;
55 route_unlock_node(rn);
56 }
57 route_unlock_node(rn);
58 }
59
60 static void nhrp_route_update_zebra(const struct prefix *p, union sockunion *nexthop, struct interface *ifp)
61 {
62 struct route_node *rn;
63 struct route_info *ri;
64
65 rn = nhrp_route_update_get(p, (sockunion_family(nexthop) != AF_UNSPEC) || ifp);
66 if (rn) {
67 ri = rn->info;
68 ri->via = *nexthop;
69 ri->ifp = ifp;
70 nhrp_route_update_put(rn);
71 }
72 }
73
74 void nhrp_route_update_nhrp(const struct prefix *p, struct interface *ifp)
75 {
76 struct route_node *rn;
77 struct route_info *ri;
78
79 rn = nhrp_route_update_get(p, ifp != NULL);
80 if (rn) {
81 ri = rn->info;
82 ri->nhrp_ifp = ifp;
83 nhrp_route_update_put(rn);
84 }
85 }
86
87 void nhrp_route_announce(int add, enum nhrp_cache_type type, const struct prefix *p, struct interface *ifp, const union sockunion *nexthop, uint32_t mtu)
88 {
89 struct zapi_route api;
90 struct zapi_nexthop *api_nh;
91
92 if (zclient->sock < 0)
93 return;
94
95 memset(&api, 0, sizeof(api));
96 api.type = ZEBRA_ROUTE_NHRP;
97 api.safi = SAFI_UNICAST;
98 api.prefix = *p;
99
100 switch (type) {
101 case NHRP_CACHE_NEGATIVE:
102 zapi_route_set_blackhole(&api, BLACKHOLE_REJECT);
103 ifp = NULL;
104 nexthop = NULL;
105 break;
106 case NHRP_CACHE_DYNAMIC:
107 case NHRP_CACHE_NHS:
108 case NHRP_CACHE_STATIC:
109 /* Regular route, so these are announced
110 * to other routing daemons */
111 break;
112 default:
113 SET_FLAG(api.flags, ZEBRA_FLAG_FIB_OVERRIDE);
114 break;
115 }
116 SET_FLAG(api.flags, ZEBRA_FLAG_INTERNAL);
117
118 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
119 api.nexthop_num = 1;
120 api_nh = &api.nexthops[0];
121
122 switch (api.prefix.family) {
123 case AF_INET:
124 if (nexthop) {
125 api_nh->gate.ipv4 = nexthop->sin.sin_addr;
126 api_nh->type = NEXTHOP_TYPE_IPV4;
127 }
128 if (ifp) {
129 api_nh->ifindex = ifp->ifindex;
130 if (api_nh->type == NEXTHOP_TYPE_IPV4)
131 api_nh->type = NEXTHOP_TYPE_IPV4_IFINDEX;
132 else
133 api_nh->type = NEXTHOP_TYPE_IFINDEX;
134 }
135 break;
136 case AF_INET6:
137 if (nexthop) {
138 api_nh->gate.ipv6 = nexthop->sin6.sin6_addr;
139 api_nh->type = NEXTHOP_TYPE_IPV6;
140 }
141 if (ifp) {
142 api_nh->ifindex = ifp->ifindex;
143 if (api_nh->type == NEXTHOP_TYPE_IPV6)
144 api_nh->type = NEXTHOP_TYPE_IPV6_IFINDEX;
145 else
146 api_nh->type = NEXTHOP_TYPE_IFINDEX;
147 }
148 break;
149 }
150 if (mtu) {
151 SET_FLAG(api.message, ZAPI_MESSAGE_MTU);
152 api.mtu = mtu;
153 }
154
155 if (unlikely(debug_flags & NHRP_DEBUG_ROUTE)) {
156 char buf[2][PREFIX_STRLEN];
157
158 prefix2str(&api.prefix, buf[0], sizeof(buf[0]));
159 zlog_debug("Zebra send: route %s %s nexthop %s metric %u"
160 " count %d dev %s",
161 add ? "add" : "del", buf[0],
162 nexthop ? inet_ntop(api.prefix.family, &api_nh->gate, buf[1], sizeof(buf[1])) : "<onlink>",
163 api.metric, api.nexthop_num, ifp ? ifp->name : "none");
164 }
165
166 zclient_route_send(add ? ZEBRA_ROUTE_ADD : ZEBRA_ROUTE_DELETE, zclient,
167 &api);
168 }
169
170 int nhrp_route_read(int cmd, struct zclient *zclient, zebra_size_t length, vrf_id_t vrf_id)
171 {
172 struct zapi_route api;
173 struct zapi_nexthop *api_nh;
174 struct interface *ifp = NULL;
175 union sockunion nexthop_addr;
176 char buf[2][PREFIX_STRLEN];
177 int added;
178
179 if (zapi_route_decode(zclient->ibuf, &api) < 0)
180 return -1;
181
182 /* we completely ignore srcdest routes for now. */
183 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX))
184 return 0;
185
186 sockunion_family(&nexthop_addr) = AF_UNSPEC;
187 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP)) {
188 api_nh = &api.nexthops[0];
189
190 nexthop_addr.sa.sa_family = api.prefix.family;
191 switch (nexthop_addr.sa.sa_family) {
192 case AF_INET:
193 nexthop_addr.sin.sin_addr = api_nh->gate.ipv4;
194 break;
195 case AF_INET6:
196 nexthop_addr.sin6.sin6_addr = api_nh->gate.ipv6;
197 break;
198 }
199
200 if (api_nh->ifindex != IFINDEX_INTERNAL)
201 ifp = if_lookup_by_index(api_nh->ifindex, VRF_DEFAULT);
202 }
203
204 added = (cmd == ZEBRA_REDISTRIBUTE_ROUTE_ADD);
205 debugf(NHRP_DEBUG_ROUTE, "if-route-%s: %s via %s dev %s",
206 added ? "add" : "del",
207 prefix2str(&api.prefix, buf[0], sizeof buf[0]),
208 sockunion2str(&nexthop_addr, buf[1], sizeof buf[1]),
209 ifp ? ifp->name : "(none)");
210
211 nhrp_route_update_zebra(&api.prefix, &nexthop_addr, ifp);
212 nhrp_shortcut_prefix_change(&api.prefix, !added);
213
214 return 0;
215 }
216
217 int nhrp_route_get_nexthop(const union sockunion *addr, struct prefix *p, union sockunion *via, struct interface **ifp)
218 {
219 struct route_node *rn;
220 struct route_info *ri;
221 struct prefix lookup;
222 afi_t afi = family2afi(sockunion_family(addr));
223 char buf[PREFIX_STRLEN];
224
225 sockunion2hostprefix(addr, &lookup);
226
227 rn = route_node_match(zebra_rib[afi], &lookup);
228 if (!rn) return 0;
229
230 ri = rn->info;
231 if (ri->nhrp_ifp) {
232 debugf(NHRP_DEBUG_ROUTE, "lookup %s: nhrp_if=%s",
233 prefix2str(&lookup, buf, sizeof buf),
234 ri->nhrp_ifp->name);
235
236 if (via) sockunion_family(via) = AF_UNSPEC;
237 if (ifp) *ifp = ri->nhrp_ifp;
238 } else {
239 debugf(NHRP_DEBUG_ROUTE, "lookup %s: zebra route dev %s",
240 prefix2str(&lookup, buf, sizeof buf),
241 ri->ifp ? ri->ifp->name : "(none)");
242
243 if (via) *via = ri->via;
244 if (ifp) *ifp = ri->ifp;
245 }
246 if (p) *p = rn->p;
247 route_unlock_node(rn);
248 return 1;
249 }
250
251 enum nhrp_route_type nhrp_route_address(struct interface *in_ifp, union sockunion *addr, struct prefix *p, struct nhrp_peer **peer)
252 {
253 struct interface *ifp = in_ifp;
254 struct nhrp_interface *nifp;
255 struct nhrp_cache *c;
256 union sockunion via[4];
257 uint32_t network_id = 0;
258 afi_t afi = family2afi(sockunion_family(addr));
259 int i;
260
261 if (ifp) {
262 nifp = ifp->info;
263 network_id = nifp->afi[afi].network_id;
264
265 c = nhrp_cache_get(ifp, addr, 0);
266 if (c && c->cur.type == NHRP_CACHE_LOCAL) {
267 if (p) memset(p, 0, sizeof(*p));
268 return NHRP_ROUTE_LOCAL;
269 }
270 }
271
272 for (i = 0; i < 4; i++) {
273 if (!nhrp_route_get_nexthop(addr, p, &via[i], &ifp))
274 return NHRP_ROUTE_BLACKHOLE;
275 if (ifp) {
276 /* Departing from nbma network? */
277 nifp = ifp->info;
278 if (network_id && network_id != nifp->afi[afi].network_id)
279 return NHRP_ROUTE_OFF_NBMA;
280 }
281 if (sockunion_family(&via[i]) == AF_UNSPEC)
282 break;
283 /* Resolve via node, but return the prefix of first match */
284 addr = &via[i];
285 p = NULL;
286 }
287
288 if (ifp) {
289 c = nhrp_cache_get(ifp, addr, 0);
290 if (c && c->cur.type >= NHRP_CACHE_DYNAMIC) {
291 if (p) memset(p, 0, sizeof(*p));
292 if (c->cur.type == NHRP_CACHE_LOCAL)
293 return NHRP_ROUTE_LOCAL;
294 if (peer) *peer = nhrp_peer_ref(c->cur.peer);
295 return NHRP_ROUTE_NBMA_NEXTHOP;
296 }
297 }
298
299 return NHRP_ROUTE_BLACKHOLE;
300 }
301
302 static void
303 nhrp_zebra_connected (struct zclient *zclient)
304 {
305 zclient_send_reg_requests(zclient, VRF_DEFAULT);
306 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP,
307 ZEBRA_ROUTE_ALL, 0, VRF_DEFAULT);
308 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP6,
309 ZEBRA_ROUTE_ALL, 0, VRF_DEFAULT);
310 }
311
312 void nhrp_zebra_init(void)
313 {
314 zebra_rib[AFI_IP] = route_table_init();
315 zebra_rib[AFI_IP6] = route_table_init();
316
317 zclient = zclient_new(master);
318 zclient->zebra_connected = nhrp_zebra_connected;
319 zclient->interface_add = nhrp_interface_add;
320 zclient->interface_delete = nhrp_interface_delete;
321 zclient->interface_up = nhrp_interface_up;
322 zclient->interface_down = nhrp_interface_down;
323 zclient->interface_address_add = nhrp_interface_address_add;
324 zclient->interface_address_delete = nhrp_interface_address_delete;
325 zclient->redistribute_route_add = nhrp_route_read;
326 zclient->redistribute_route_del = nhrp_route_read;
327
328 zclient_init(zclient, ZEBRA_ROUTE_NHRP, 0);
329 }
330
331 void nhrp_zebra_terminate(void)
332 {
333 zclient_stop(zclient);
334 zclient_free(zclient);
335 route_table_finish(zebra_rib[AFI_IP]);
336 route_table_finish(zebra_rib[AFI_IP6]);
337 }