]> git.proxmox.com Git - mirror_frr.git/blame - staticd/static_zebra.c
staticd: fix spelling in an error message
[mirror_frr.git] / staticd / static_zebra.c
CommitLineData
7e24fdf3
DS
1/*
2 * Zebra connect code.
3 * Copyright (C) 2018 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
8d5cbee9
DS
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
7e24fdf3 10 *
8d5cbee9
DS
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
7e24fdf3
DS
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20#include <zebra.h>
21
22#include "thread.h"
23#include "command.h"
24#include "network.h"
25#include "prefix.h"
26#include "routemap.h"
27#include "table.h"
28#include "srcdest_table.h"
29#include "stream.h"
30#include "memory.h"
31#include "zclient.h"
32#include "filter.h"
33#include "plist.h"
34#include "log.h"
35#include "nexthop.h"
36#include "nexthop_group.h"
74f0a94e 37#include "hash.h"
f591b309 38#include "jhash.h"
7e24fdf3
DS
39
40#include "static_vrf.h"
41#include "static_routes.h"
42#include "static_zebra.h"
43#include "static_nht.h"
44#include "static_vty.h"
b2f6ab67 45#include "static_debug.h"
6f5db0b1 46
7e24fdf3
DS
47/* Zebra structure to hold current status. */
48struct zclient *zclient;
74f0a94e 49static struct hash *static_nht_hash;
7e24fdf3 50
7e24fdf3 51/* Inteface addition message from zebra. */
ef7bd2a3 52static int static_ifp_create(struct interface *ifp)
7e24fdf3 53{
7e24fdf3 54 static_ifindex_update(ifp, true);
ef7bd2a3 55
7e24fdf3
DS
56 return 0;
57}
58
3c3c3252 59static int static_ifp_destroy(struct interface *ifp)
7e24fdf3 60{
7e24fdf3
DS
61 static_ifindex_update(ifp, false);
62 return 0;
63}
64
121f9dee 65static int interface_address_add(ZAPI_CALLBACK_ARGS)
7e24fdf3 66{
121f9dee 67 zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
7e24fdf3
DS
68
69 return 0;
70}
71
121f9dee 72static int interface_address_delete(ZAPI_CALLBACK_ARGS)
7e24fdf3
DS
73{
74 struct connected *c;
75
121f9dee 76 c = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
7e24fdf3
DS
77
78 if (!c)
79 return 0;
80
721c0857 81 connected_free(&c);
7e24fdf3
DS
82 return 0;
83}
84
ddbf3e60 85static int static_ifp_up(struct interface *ifp)
7e24fdf3 86{
ddbf3e60
DS
87 /* Install any static reliant on this interface coming up */
88 static_install_intf_nh(ifp);
89 static_ifindex_update(ifp, true);
90
7e24fdf3
DS
91 return 0;
92}
93
b0b69e59 94static int static_ifp_down(struct interface *ifp)
7e24fdf3 95{
b0b69e59 96 static_ifindex_update(ifp, false);
7e24fdf3
DS
97
98 return 0;
99}
100
121f9dee 101static int route_notify_owner(ZAPI_CALLBACK_ARGS)
7e24fdf3
DS
102{
103 struct prefix p;
104 enum zapi_route_notify_owner note;
105 uint32_t table_id;
7e24fdf3 106
77b38a4a
S
107 if (!zapi_route_notify_decode(zclient->ibuf, &p, &table_id, &note,
108 NULL, NULL))
7e24fdf3
DS
109 return -1;
110
111 switch (note) {
112 case ZAPI_ROUTE_FAIL_INSTALL:
9fafbd15 113 static_nht_mark_state(&p, vrf_id, STATIC_NOT_INSTALLED);
2dbe669b
DA
114 zlog_warn("%s: Route %pFX failed to install for table: %u",
115 __func__, &p, table_id);
7e24fdf3
DS
116 break;
117 case ZAPI_ROUTE_BETTER_ADMIN_WON:
9fafbd15 118 static_nht_mark_state(&p, vrf_id, STATIC_NOT_INSTALLED);
15569c58 119 zlog_warn(
2dbe669b
DA
120 "%s: Route %pFX over-ridden by better route for table: %u",
121 __func__, &p, table_id);
7e24fdf3
DS
122 break;
123 case ZAPI_ROUTE_INSTALLED:
9fafbd15 124 static_nht_mark_state(&p, vrf_id, STATIC_INSTALLED);
7e24fdf3
DS
125 break;
126 case ZAPI_ROUTE_REMOVED:
9fafbd15 127 static_nht_mark_state(&p, vrf_id, STATIC_NOT_INSTALLED);
7e24fdf3
DS
128 break;
129 case ZAPI_ROUTE_REMOVE_FAIL:
9fafbd15 130 static_nht_mark_state(&p, vrf_id, STATIC_INSTALLED);
2dbe669b
DA
131 zlog_warn("%s: Route %pFX failure to remove for table: %u",
132 __func__, &p, table_id);
7e24fdf3
DS
133 break;
134 }
135
136 return 0;
137}
138static void zebra_connected(struct zclient *zclient)
139{
140 zclient_send_reg_requests(zclient, VRF_DEFAULT);
141}
142
74f0a94e
DS
143struct static_nht_data {
144 struct prefix *nh;
f591b309
DS
145
146 vrf_id_t nh_vrf_id;
147
74f0a94e
DS
148 uint32_t refcount;
149 uint8_t nh_num;
150};
7e24fdf3 151
b1ab2876 152/* API to check whether the configured nexthop address is
153 * one of its local connected address or not.
154 */
155static bool
156static_nexthop_is_local(vrf_id_t vrfid, struct prefix *addr, int family)
157{
158 if (family == AF_INET) {
1e9044be 159 if (if_address_is_local(&addr->u.prefix4, AF_INET, vrfid))
b1ab2876 160 return true;
161 } else if (family == AF_INET6) {
1e9044be 162 if (if_address_is_local(&addr->u.prefix6, AF_INET6, vrfid))
b1ab2876 163 return true;
164 }
165 return false;
166}
121f9dee 167static int static_zebra_nexthop_update(ZAPI_CALLBACK_ARGS)
7e24fdf3 168{
74f0a94e 169 struct static_nht_data *nhtd, lookup;
7e24fdf3
DS
170 struct zapi_route nhr;
171 afi_t afi = AFI_IP;
172
173 if (!zapi_nexthop_update_decode(zclient->ibuf, &nhr)) {
6c83dded 174 zlog_err("Failure to decode nexthop update message");
7e24fdf3
DS
175 return 1;
176 }
177
178 if (nhr.prefix.family == AF_INET6)
179 afi = AFI_IP6;
180
b1ab2876 181 if (nhr.type == ZEBRA_ROUTE_CONNECT) {
182 if (static_nexthop_is_local(vrf_id, &nhr.prefix,
183 nhr.prefix.family))
184 nhr.nexthop_num = 0;
185 }
186
74f0a94e
DS
187 memset(&lookup, 0, sizeof(lookup));
188 lookup.nh = &nhr.prefix;
f591b309 189 lookup.nh_vrf_id = vrf_id;
74f0a94e
DS
190
191 nhtd = hash_lookup(static_nht_hash, &lookup);
f591b309
DS
192
193 if (nhtd) {
74f0a94e
DS
194 nhtd->nh_num = nhr.nexthop_num;
195
9fafbd15 196 static_nht_reset_start(&nhr.prefix, afi, nhtd->nh_vrf_id);
27da3044 197 static_nht_update(NULL, &nhr.prefix, nhr.nexthop_num, afi,
f591b309
DS
198 nhtd->nh_vrf_id);
199 } else
200 zlog_err("No nhtd?");
74f0a94e 201
7e24fdf3
DS
202 return 1;
203}
204
205static void static_zebra_capabilities(struct zclient_capabilities *cap)
206{
207 mpls_enabled = cap->mpls_enabled;
208}
209
d8b87afe 210static unsigned int static_nht_hash_key(const void *data)
74f0a94e 211{
d8b87afe 212 const struct static_nht_data *nhtd = data;
f591b309 213 unsigned int key = 0;
74f0a94e 214
f591b309
DS
215 key = prefix_hash_key(nhtd->nh);
216 return jhash_1word(nhtd->nh_vrf_id, key);
74f0a94e
DS
217}
218
74df8d6d 219static bool static_nht_hash_cmp(const void *d1, const void *d2)
74f0a94e
DS
220{
221 const struct static_nht_data *nhtd1 = d1;
222 const struct static_nht_data *nhtd2 = d2;
223
f591b309 224 if (nhtd1->nh_vrf_id != nhtd2->nh_vrf_id)
74df8d6d 225 return false;
f591b309 226
74f0a94e
DS
227 return prefix_same(nhtd1->nh, nhtd2->nh);
228}
229
230static void *static_nht_hash_alloc(void *data)
231{
232 struct static_nht_data *copy = data;
233 struct static_nht_data *new;
234
235 new = XMALLOC(MTYPE_TMP, sizeof(*new));
236
237 new->nh = prefix_new();
238 prefix_copy(new->nh, copy->nh);
239 new->refcount = 0;
240 new->nh_num = 0;
f591b309 241 new->nh_vrf_id = copy->nh_vrf_id;
74f0a94e
DS
242
243 return new;
244}
245
246static void static_nht_hash_free(void *data)
247{
248 struct static_nht_data *nhtd = data;
249
63265b5c 250 prefix_free(&nhtd->nh);
74f0a94e
DS
251 XFREE(MTYPE_TMP, nhtd);
252}
253
4067e951 254void static_zebra_nht_register(struct static_nexthop *nh, bool reg)
7e24fdf3 255{
4067e951
IR
256 struct static_path *pn = nh->pn;
257 struct route_node *rn = pn->rn;
74f0a94e 258 struct static_nht_data *nhtd, lookup;
7e24fdf3
DS
259 uint32_t cmd;
260 struct prefix p;
74f0a94e 261 afi_t afi = AFI_IP;
7e24fdf3
DS
262
263 cmd = (reg) ?
264 ZEBRA_NEXTHOP_REGISTER : ZEBRA_NEXTHOP_UNREGISTER;
265
88fa5104 266 if (nh->nh_registered && reg)
7e24fdf3
DS
267 return;
268
88fa5104 269 if (!nh->nh_registered && !reg)
7e24fdf3
DS
270 return;
271
272 memset(&p, 0, sizeof(p));
88fa5104 273 switch (nh->type) {
7e24fdf3
DS
274 case STATIC_IFNAME:
275 case STATIC_BLACKHOLE:
7e24fdf3
DS
276 return;
277 case STATIC_IPV4_GATEWAY:
88a90016 278 case STATIC_IPV4_GATEWAY_IFNAME:
7e24fdf3
DS
279 p.family = AF_INET;
280 p.prefixlen = IPV4_MAX_BITLEN;
88fa5104 281 p.u.prefix4 = nh->addr.ipv4;
74f0a94e 282 afi = AFI_IP;
7e24fdf3
DS
283 break;
284 case STATIC_IPV6_GATEWAY:
88a90016 285 case STATIC_IPV6_GATEWAY_IFNAME:
7e24fdf3
DS
286 p.family = AF_INET6;
287 p.prefixlen = IPV6_MAX_BITLEN;
88fa5104 288 p.u.prefix6 = nh->addr.ipv6;
74f0a94e 289 afi = AFI_IP6;
7e24fdf3
DS
290 break;
291 }
292
74f0a94e
DS
293 memset(&lookup, 0, sizeof(lookup));
294 lookup.nh = &p;
88fa5104 295 lookup.nh_vrf_id = nh->nh_vrf_id;
74f0a94e 296
88fa5104 297 nh->nh_registered = reg;
74f0a94e
DS
298
299 if (reg) {
300 nhtd = hash_get(static_nht_hash, &lookup,
301 static_nht_hash_alloc);
302 nhtd->refcount++;
303
b2f6ab67 304 DEBUGD(&static_dbg_route,
305 "Registered nexthop(%pFX) for %pRN %d", &p, rn,
306 nhtd->nh_num);
6f5db0b1 307 if (nhtd->refcount > 1 && nhtd->nh_num) {
88fa5104 308 static_nht_update(&rn->p, nhtd->nh, nhtd->nh_num, afi,
309 nh->nh_vrf_id);
74f0a94e
DS
310 return;
311 }
312 } else {
313 nhtd = hash_lookup(static_nht_hash, &lookup);
314 if (!nhtd)
315 return;
316
317 nhtd->refcount--;
318 if (nhtd->refcount >= 1)
319 return;
320
321 hash_release(static_nht_hash, nhtd);
322 static_nht_hash_free(nhtd);
323 }
324
ed6cec97 325 if (zclient_send_rnh(zclient, cmd, &p, false, false, nh->nh_vrf_id)
7cfdb485 326 == ZCLIENT_SEND_FAILURE)
15569c58 327 zlog_warn("%s: Failure to send nexthop to zebra", __func__);
7e24fdf3 328}
88fa5104 329/*
330 * When nexthop gets updated via configuration then use the
331 * already registered NH and resend the route to zebra
332 */
4067e951 333int static_zebra_nh_update(struct static_nexthop *nh)
88fa5104 334{
4067e951
IR
335 struct static_path *pn = nh->pn;
336 struct route_node *rn = pn->rn;
88fa5104 337 struct static_nht_data *nhtd, lookup = {};
338 struct prefix p = {};
339 afi_t afi = AFI_IP;
340
341 if (!nh->nh_registered)
342 return 0;
343
344 switch (nh->type) {
345 case STATIC_IFNAME:
346 case STATIC_BLACKHOLE:
347 return 0;
348 case STATIC_IPV4_GATEWAY:
349 case STATIC_IPV4_GATEWAY_IFNAME:
350 p.family = AF_INET;
351 p.prefixlen = IPV4_MAX_BITLEN;
352 p.u.prefix4 = nh->addr.ipv4;
353 afi = AFI_IP;
354 break;
355 case STATIC_IPV6_GATEWAY:
356 case STATIC_IPV6_GATEWAY_IFNAME:
357 p.family = AF_INET6;
358 p.prefixlen = IPV6_MAX_BITLEN;
359 p.u.prefix6 = nh->addr.ipv6;
360 afi = AFI_IP6;
361 break;
362 }
363
364 lookup.nh = &p;
365 lookup.nh_vrf_id = nh->nh_vrf_id;
366
367 nhtd = hash_lookup(static_nht_hash, &lookup);
368 if (nhtd && nhtd->nh_num) {
369 nh->state = STATIC_START;
370 static_nht_update(&rn->p, nhtd->nh, nhtd->nh_num, afi,
371 nh->nh_vrf_id);
372 return 1;
373 }
374 return 0;
375}
7e24fdf3 376
4067e951 377extern void static_zebra_route_add(struct static_path *pn, bool install)
7e24fdf3 378{
4067e951
IR
379 struct route_node *rn = pn->rn;
380 struct static_route_info *si = rn->info;
88fa5104 381 struct static_nexthop *nh;
7e24fdf3
DS
382 const struct prefix *p, *src_pp;
383 struct zapi_nexthop *api_nh;
384 struct zapi_route api;
385 uint32_t nh_num = 0;
386
387 p = src_pp = NULL;
388 srcdest_rnode_prefixes(rn, &p, &src_pp);
389
390 memset(&api, 0, sizeof(api));
4067e951 391 api.vrf_id = si->svrf->vrf->vrf_id;
7e24fdf3 392 api.type = ZEBRA_ROUTE_STATIC;
4067e951 393 api.safi = si->safi;
7e24fdf3
DS
394 memcpy(&api.prefix, p, sizeof(api.prefix));
395
396 if (src_pp) {
397 SET_FLAG(api.message, ZAPI_MESSAGE_SRCPFX);
398 memcpy(&api.src_prefix, src_pp, sizeof(api.src_prefix));
399 }
8bc8de2c 400 SET_FLAG(api.flags, ZEBRA_FLAG_RR_USE_DISTANCE);
6b193087 401 SET_FLAG(api.flags, ZEBRA_FLAG_ALLOW_RECURSION);
7e24fdf3 402 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
88fa5104 403 if (pn->distance) {
8bc8de2c 404 SET_FLAG(api.message, ZAPI_MESSAGE_DISTANCE);
88fa5104 405 api.distance = pn->distance;
8bc8de2c 406 }
88fa5104 407 if (pn->tag) {
8bc8de2c 408 SET_FLAG(api.message, ZAPI_MESSAGE_TAG);
88fa5104 409 api.tag = pn->tag;
8bc8de2c 410 }
88fa5104 411 if (pn->table_id != 0) {
31d4a8e5 412 SET_FLAG(api.message, ZAPI_MESSAGE_TABLEID);
88fa5104 413 api.tableid = pn->table_id;
31d4a8e5 414 }
88fa5104 415 frr_each(static_nexthop_list, &pn->nexthop_list, nh) {
7e24fdf3 416 api_nh = &api.nexthops[nh_num];
88fa5104 417 if (nh->nh_vrf_id == VRF_UNKNOWN)
95cdbe5d
DS
418 continue;
419
88fa5104 420 api_nh->vrf_id = nh->nh_vrf_id;
421 if (nh->onlink)
68a02e06 422 SET_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_ONLINK);
065276ae
SM
423 if (nh->color != 0) {
424 SET_FLAG(api.message, ZAPI_MESSAGE_SRTE);
425 api_nh->srte_color = nh->color;
426 }
fe85601c 427
88fa5104 428 nh->state = STATIC_SENT_TO_ZEBRA;
9fafbd15 429
88fa5104 430 switch (nh->type) {
7e24fdf3 431 case STATIC_IFNAME:
88fa5104 432 if (nh->ifindex == IFINDEX_INTERNAL)
7e24fdf3 433 continue;
88fa5104 434 api_nh->ifindex = nh->ifindex;
7e24fdf3
DS
435 api_nh->type = NEXTHOP_TYPE_IFINDEX;
436 break;
437 case STATIC_IPV4_GATEWAY:
88fa5104 438 if (!nh->nh_valid)
7e24fdf3
DS
439 continue;
440 api_nh->type = NEXTHOP_TYPE_IPV4;
88fa5104 441 api_nh->gate = nh->addr;
7e24fdf3
DS
442 break;
443 case STATIC_IPV4_GATEWAY_IFNAME:
88fa5104 444 if (nh->ifindex == IFINDEX_INTERNAL)
7e24fdf3 445 continue;
88fa5104 446 api_nh->ifindex = nh->ifindex;
7e24fdf3 447 api_nh->type = NEXTHOP_TYPE_IPV4_IFINDEX;
88fa5104 448 api_nh->gate = nh->addr;
7e24fdf3
DS
449 break;
450 case STATIC_IPV6_GATEWAY:
88fa5104 451 if (!nh->nh_valid)
7e24fdf3
DS
452 continue;
453 api_nh->type = NEXTHOP_TYPE_IPV6;
88fa5104 454 api_nh->gate = nh->addr;
7e24fdf3
DS
455 break;
456 case STATIC_IPV6_GATEWAY_IFNAME:
88fa5104 457 if (nh->ifindex == IFINDEX_INTERNAL)
7e24fdf3
DS
458 continue;
459 api_nh->type = NEXTHOP_TYPE_IPV6_IFINDEX;
88fa5104 460 api_nh->ifindex = nh->ifindex;
461 api_nh->gate = nh->addr;
7e24fdf3
DS
462 break;
463 case STATIC_BLACKHOLE:
464 api_nh->type = NEXTHOP_TYPE_BLACKHOLE;
88fa5104 465 switch (nh->bh_type) {
7e24fdf3
DS
466 case STATIC_BLACKHOLE_DROP:
467 case STATIC_BLACKHOLE_NULL:
468 api_nh->bh_type = BLACKHOLE_NULL;
469 break;
470 case STATIC_BLACKHOLE_REJECT:
471 api_nh->bh_type = BLACKHOLE_REJECT;
472 }
473 break;
474 }
475
88fa5104 476 if (nh->snh_label.num_labels) {
7e24fdf3
DS
477 int i;
478
68a02e06 479 SET_FLAG(api_nh->flags, ZAPI_NEXTHOP_FLAG_LABEL);
88fa5104 480 api_nh->label_num = nh->snh_label.num_labels;
7e24fdf3 481 for (i = 0; i < api_nh->label_num; i++)
88fa5104 482 api_nh->labels[i] = nh->snh_label.label[i];
7e24fdf3
DS
483 }
484 nh_num++;
485 }
486
487 api.nexthop_num = nh_num;
488
489 /*
490 * If we have been given an install but nothing is valid
491 * go ahead and delete the route for double plus fun
492 */
493 if (!nh_num && install)
494 install = false;
495
496 zclient_route_send(install ?
497 ZEBRA_ROUTE_ADD : ZEBRA_ROUTE_DELETE,
498 zclient, &api);
499}
138c5a74 500
a243d1db
DL
501static zclient_handler *const static_handlers[] = {
502 [ZEBRA_INTERFACE_ADDRESS_ADD] = interface_address_add,
503 [ZEBRA_INTERFACE_ADDRESS_DELETE] = interface_address_delete,
504 [ZEBRA_ROUTE_NOTIFY_OWNER] = route_notify_owner,
505 [ZEBRA_NEXTHOP_UPDATE] = static_zebra_nexthop_update,
506};
507
7e24fdf3
DS
508void static_zebra_init(void)
509{
510 struct zclient_options opt = { .receive_notify = true };
511
138c5a74
DS
512 if_zapi_callbacks(static_ifp_create, static_ifp_up,
513 static_ifp_down, static_ifp_destroy);
514
a243d1db
DL
515 zclient = zclient_new(master, &opt, static_handlers,
516 array_size(static_handlers));
7e24fdf3
DS
517
518 zclient_init(zclient, ZEBRA_ROUTE_STATIC, 0, &static_privs);
519 zclient->zebra_capabilities = static_zebra_capabilities;
520 zclient->zebra_connected = zebra_connected;
74f0a94e
DS
521
522 static_nht_hash = hash_create(static_nht_hash_key,
523 static_nht_hash_cmp,
524 "Static Nexthop Tracking hash");
7e24fdf3 525}
fceb6174 526
deca28a3
CH
527/* static_zebra_stop used by tests/lib/test_grpc.cpp */
528void static_zebra_stop(void)
529{
530 if (!zclient)
531 return;
532 zclient_stop(zclient);
533 zclient_free(zclient);
534 zclient = NULL;
535}
536
fceb6174
PG
537void static_zebra_vrf_register(struct vrf *vrf)
538{
539 if (vrf->vrf_id == VRF_DEFAULT)
540 return;
541 zclient_send_reg_requests(zclient, vrf->vrf_id);
542}
543
544void static_zebra_vrf_unregister(struct vrf *vrf)
545{
546 if (vrf->vrf_id == VRF_DEFAULT)
547 return;
548 zclient_send_dereg_requests(zclient, vrf->vrf_id);
549}