]> git.proxmox.com Git - mirror_frr.git/blame - ospfd/ospf_bfd.c
Merge pull request #5248 from opensourcerouting/bgp-sender-as-path-loop-detection
[mirror_frr.git] / ospfd / ospf_bfd.c
CommitLineData
7f342629
DS
1/**
2 * ospf_bfd.c: OSPF BFD handling routines
3 *
4 * @copyright Copyright (C) 2015 Cumulus Networks, Inc.
5 *
6 * This file is part of GNU Zebra.
7 *
8 * GNU Zebra is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * GNU Zebra is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
896014f4
DL
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
7f342629
DS
21 */
22
23#include <zebra.h>
24
25#include "command.h"
26#include "linklist.h"
27#include "memory.h"
28#include "prefix.h"
29#include "thread.h"
30#include "buffer.h"
31#include "stream.h"
32#include "zclient.h"
33#include "vty.h"
34#include "table.h"
35#include "bfd.h"
36#include "ospfd.h"
37#include "ospf_asbr.h"
38#include "ospf_lsa.h"
39#include "ospf_lsdb.h"
40#include "ospf_neighbor.h"
41#include "ospf_interface.h"
42#include "ospf_nsm.h"
43#include "ospf_bfd.h"
44#include "ospf_dump.h"
45#include "ospf_vty.h"
46
47extern struct zclient *zclient;
48
68fe91d6 49/*
50 * ospf_bfd_info_free - Free BFD info structure
51 */
d62a17ae 52void ospf_bfd_info_free(void **bfd_info)
68fe91d6 53{
d62a17ae 54 bfd_info_free((struct bfd_info **)bfd_info);
68fe91d6 55}
56
7f342629
DS
57/*
58 * ospf_bfd_reg_dereg_nbr - Register/Deregister a neighbor with BFD through
59 * zebra for starting/stopping the monitoring of
60 * the neighbor rechahability.
61 */
d62a17ae 62static void ospf_bfd_reg_dereg_nbr(struct ospf_neighbor *nbr, int command)
7f342629 63{
d62a17ae 64 struct ospf_interface *oi = nbr->oi;
65 struct interface *ifp = oi->ifp;
66 struct ospf_if_params *params;
67 struct bfd_info *bfd_info;
9beff0bd 68 int cbit;
d62a17ae 69
70 /* Check if BFD is enabled */
71 params = IF_DEF_PARAMS(ifp);
72
73 /* Check if BFD is enabled */
74 if (!params->bfd_info)
75 return;
76 bfd_info = (struct bfd_info *)params->bfd_info;
77
78 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
b5a8894d 79 zlog_debug("%s nbr (%s) with BFD. OSPF vrf %s",
d62a17ae 80 bfd_get_command_dbg_str(command),
b5a8894d
CS
81 inet_ntoa(nbr->src),
82 ospf_vrf_id_to_name(oi->ospf->vrf_id));
d62a17ae 83
9beff0bd
PG
84 cbit = CHECK_FLAG(bfd_info->flags, BFD_FLAG_BFD_CBIT_ON);
85
d62a17ae 86 bfd_peer_sendmsg(zclient, bfd_info, AF_INET, &nbr->src, NULL, ifp->name,
9beff0bd 87 0, 0, cbit, command, 0, oi->ospf->vrf_id);
7f342629
DS
88}
89
90/*
91 * ospf_bfd_trigger_event - Neighbor is registered/deregistered with BFD when
92 * neighbor state is changed to/from 2way.
93 */
d62a17ae 94void ospf_bfd_trigger_event(struct ospf_neighbor *nbr, int old_state, int state)
7f342629 95{
d62a17ae 96 if ((old_state < NSM_TwoWay) && (state >= NSM_TwoWay))
97 ospf_bfd_reg_dereg_nbr(nbr, ZEBRA_BFD_DEST_REGISTER);
98 else if ((old_state >= NSM_TwoWay) && (state < NSM_TwoWay))
99 ospf_bfd_reg_dereg_nbr(nbr, ZEBRA_BFD_DEST_DEREGISTER);
7f342629
DS
100}
101
102/*
103 * ospf_bfd_reg_dereg_all_nbr - Register/Deregister all neighbors associated
104 * with a interface with BFD through
105 * zebra for starting/stopping the monitoring of
106 * the neighbor rechahability.
107 */
d62a17ae 108static int ospf_bfd_reg_dereg_all_nbr(struct interface *ifp, int command)
7f342629 109{
d62a17ae 110 struct ospf_interface *oi;
111 struct route_table *nbrs;
112 struct ospf_neighbor *nbr;
113 struct route_node *irn;
114 struct route_node *nrn;
115
116 for (irn = route_top(IF_OIFS(ifp)); irn; irn = route_next(irn)) {
117 if ((oi = irn->info) == NULL)
118 continue;
119
120 if ((nbrs = oi->nbrs) == NULL)
121 continue;
122
123 for (nrn = route_top(nbrs); nrn; nrn = route_next(nrn)) {
124 if ((nbr = nrn->info) == NULL || nbr == oi->nbr_self)
125 continue;
126
127 if (command != ZEBRA_BFD_DEST_DEREGISTER)
128 ospf_bfd_info_nbr_create(oi, nbr);
129 else
130 bfd_info_free(
131 (struct bfd_info **)&nbr->bfd_info);
132
133 if (nbr->state < NSM_TwoWay)
134 continue;
135
136 ospf_bfd_reg_dereg_nbr(nbr, command);
137 }
138 }
139
140 return 0;
7f342629
DS
141}
142
143/*
144 * ospf_bfd_nbr_replay - Replay all the neighbors that have BFD enabled
145 * to zebra
146 */
121f9dee 147static int ospf_bfd_nbr_replay(ZAPI_CALLBACK_ARGS)
7f342629 148{
d62a17ae 149 struct listnode *inode, *node, *onode;
150 struct ospf *ospf;
151 struct ospf_interface *oi;
152 struct route_table *nbrs;
153 struct route_node *rn;
154 struct ospf_neighbor *nbr;
155 struct ospf_if_params *params;
156
157 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE)) {
158 zlog_debug("Zebra: BFD Dest replay request");
159 }
160
161 /* Send the client registration */
0945d5ed 162 bfd_client_sendmsg(zclient, ZEBRA_BFD_CLIENT_REGISTER, vrf_id);
d62a17ae 163
b5a8894d 164 /* Replay the neighbor, if BFD is enabled in OSPF */
d62a17ae 165 for (ALL_LIST_ELEMENTS(om->ospf, node, onode, ospf)) {
166 for (ALL_LIST_ELEMENTS_RO(ospf->oiflist, inode, oi)) {
167 if ((nbrs = oi->nbrs) == NULL)
168 continue;
169
170 params = IF_DEF_PARAMS(oi->ifp);
171 if (!params->bfd_info)
172 continue;
173
174 for (rn = route_top(nbrs); rn; rn = route_next(rn)) {
175 if ((nbr = rn->info) == NULL
176 || nbr == oi->nbr_self)
177 continue;
178
179 if (nbr->state < NSM_TwoWay)
180 continue;
181
182 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
183 zlog_debug("Replaying nbr (%s) to BFD",
184 inet_ntoa(nbr->src));
185
186 ospf_bfd_reg_dereg_nbr(nbr,
187 ZEBRA_BFD_DEST_UPDATE);
188 }
189 }
190 }
191 return 0;
7f342629
DS
192}
193
194/*
68fe91d6 195 * ospf_bfd_interface_dest_update - Find the neighbor for which the BFD status
196 * has changed and bring down the neighbor
197 * connectivity if the BFD status changed to
198 * down.
7f342629 199 */
121f9dee 200static int ospf_bfd_interface_dest_update(ZAPI_CALLBACK_ARGS)
7f342629 201{
d62a17ae 202 struct interface *ifp;
203 struct ospf_interface *oi;
204 struct ospf_if_params *params;
205 struct ospf_neighbor *nbr;
206 struct route_node *node;
207 struct prefix p;
208 int status;
209 int old_status;
210 struct bfd_info *bfd_info;
211 struct timeval tv;
212
9beff0bd
PG
213 ifp = bfd_get_peer_info(zclient->ibuf, &p, NULL, &status,
214 NULL, vrf_id);
d62a17ae 215
216 if ((ifp == NULL) || (p.family != AF_INET))
217 return 0;
218
219 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE)) {
220 char buf[PREFIX2STR_BUFFER];
221 prefix2str(&p, buf, sizeof(buf));
222 zlog_debug("Zebra: interface %s bfd destination %s %s",
223 ifp->name, buf, bfd_get_status_str(status));
224 }
225
226 params = IF_DEF_PARAMS(ifp);
227 if (!params->bfd_info)
228 return 0;
229
230 for (node = route_top(IF_OIFS(ifp)); node; node = route_next(node)) {
231 if ((oi = node->info) == NULL)
232 continue;
233
234 nbr = ospf_nbr_lookup_by_addr(oi->nbrs, &p.u.prefix4);
235 if (!nbr || !nbr->bfd_info)
236 continue;
237
238 bfd_info = (struct bfd_info *)nbr->bfd_info;
239 if (bfd_info->status == status)
240 continue;
241
242 old_status = bfd_info->status;
7555dc61 243 BFD_SET_CLIENT_STATUS(bfd_info->status, status);
d62a17ae 244 monotime(&tv);
245 bfd_info->last_update = tv.tv_sec;
246
247 if ((status == BFD_STATUS_DOWN)
248 && (old_status == BFD_STATUS_UP)) {
249 if (IS_DEBUG_OSPF(nsm, NSM_EVENTS))
250 zlog_debug("NSM[%s:%s]: BFD Down",
251 IF_NAME(nbr->oi),
252 inet_ntoa(nbr->address.u.prefix4));
253
254 OSPF_NSM_EVENT_SCHEDULE(nbr, NSM_InactivityTimer);
255 }
4828ea77
PG
256 if ((status == BFD_STATUS_UP)
257 && (old_status == BFD_STATUS_DOWN)) {
258 if (IS_DEBUG_OSPF(nsm, NSM_EVENTS))
259 zlog_debug("NSM[%s:%s]: BFD Up",
260 IF_NAME(nbr->oi),
261 inet_ntoa(nbr->address.u.prefix4));
262 }
d62a17ae 263 }
264
265 return 0;
7f342629
DS
266}
267
68fe91d6 268/*
269 * ospf_bfd_info_nbr_create - Create/update BFD information for a neighbor.
270 */
d62a17ae 271void ospf_bfd_info_nbr_create(struct ospf_interface *oi,
272 struct ospf_neighbor *nbr)
68fe91d6 273{
d62a17ae 274 struct bfd_info *oi_bfd_info;
275 struct bfd_info *nbr_bfd_info;
276 struct interface *ifp = oi->ifp;
277 struct ospf_if_params *params;
278
279 /* Check if BFD is enabled */
280 params = IF_DEF_PARAMS(ifp);
281
282 /* Check if BFD is enabled */
283 if (!params->bfd_info)
284 return;
285
286 oi_bfd_info = (struct bfd_info *)params->bfd_info;
287 if (!nbr->bfd_info)
288 nbr->bfd_info = bfd_info_create();
289
290 nbr_bfd_info = (struct bfd_info *)nbr->bfd_info;
291 nbr_bfd_info->detect_mult = oi_bfd_info->detect_mult;
292 nbr_bfd_info->desired_min_tx = oi_bfd_info->desired_min_tx;
293 nbr_bfd_info->required_min_rx = oi_bfd_info->required_min_rx;
68fe91d6 294}
295
7f342629
DS
296/*
297 * ospf_bfd_write_config - Write the interface BFD configuration.
298 */
d62a17ae 299void ospf_bfd_write_config(struct vty *vty, struct ospf_if_params *params)
7f342629
DS
300
301{
a0841732 302#if HAVE_BFDD == 0
d62a17ae 303 struct bfd_info *bfd_info;
a0841732 304#endif /* ! HAVE_BFDD */
7f342629 305
d62a17ae 306 if (!params->bfd_info)
307 return;
7f342629 308
a0841732 309#if HAVE_BFDD == 0
d62a17ae 310 bfd_info = (struct bfd_info *)params->bfd_info;
7f342629 311
d62a17ae 312 if (CHECK_FLAG(bfd_info->flags, BFD_FLAG_PARAM_CFG))
313 vty_out(vty, " ip ospf bfd %d %d %d\n", bfd_info->detect_mult,
314 bfd_info->required_min_rx, bfd_info->desired_min_tx);
315 else
a0841732 316#endif /* ! HAVE_BFDD */
d62a17ae 317 vty_out(vty, " ip ospf bfd\n");
7f342629
DS
318}
319
68fe91d6 320/*
321 * ospf_bfd_show_info - Show BFD info structure
322 */
d62a17ae 323void ospf_bfd_show_info(struct vty *vty, void *bfd_info, json_object *json_obj,
9f049418 324 bool use_json, int param_only)
68fe91d6 325{
d62a17ae 326 if (param_only)
327 bfd_show_param(vty, (struct bfd_info *)bfd_info, 1, 0, use_json,
328 json_obj);
329 else
330 bfd_show_info(vty, (struct bfd_info *)bfd_info, 0, 1, use_json,
331 json_obj);
68fe91d6 332}
333
334/*
335 * ospf_bfd_interface_show - Show the interface BFD configuration.
336 */
d62a17ae 337void ospf_bfd_interface_show(struct vty *vty, struct interface *ifp,
9f049418 338 json_object *json_interface_sub, bool use_json)
68fe91d6 339{
d62a17ae 340 struct ospf_if_params *params;
68fe91d6 341
d62a17ae 342 params = IF_DEF_PARAMS(ifp);
68fe91d6 343
d62a17ae 344 ospf_bfd_show_info(vty, params->bfd_info, json_interface_sub, use_json,
345 1);
68fe91d6 346}
7f342629
DS
347
348/*
349 * ospf_bfd_if_param_set - Set the configured BFD paramter values for
350 * interface.
351 */
d7c0a89a
QY
352static void ospf_bfd_if_param_set(struct interface *ifp, uint32_t min_rx,
353 uint32_t min_tx, uint8_t detect_mult,
d62a17ae 354 int defaults)
7f342629 355{
d62a17ae 356 struct ospf_if_params *params;
357 int command = 0;
7f342629 358
d62a17ae 359 params = IF_DEF_PARAMS(ifp);
7f342629 360
d62a17ae 361 bfd_set_param((struct bfd_info **)&(params->bfd_info), min_rx, min_tx,
362 detect_mult, defaults, &command);
363 if (command)
364 ospf_bfd_reg_dereg_all_nbr(ifp, command);
7f342629
DS
365}
366
7f342629
DS
367DEFUN (ip_ospf_bfd,
368 ip_ospf_bfd_cmd,
369 "ip ospf bfd",
370 "IP Information\n"
371 "OSPF interface commands\n"
372 "Enables BFD support\n")
373{
d62a17ae 374 VTY_DECLVAR_CONTEXT(interface, ifp);
375 struct ospf_if_params *params;
376 struct bfd_info *bfd_info;
7f342629 377
d62a17ae 378 assert(ifp);
379 params = IF_DEF_PARAMS(ifp);
380 bfd_info = params->bfd_info;
487f2302 381
d62a17ae 382 if (!bfd_info || !CHECK_FLAG(bfd_info->flags, BFD_FLAG_PARAM_CFG))
383 ospf_bfd_if_param_set(ifp, BFD_DEF_MIN_RX, BFD_DEF_MIN_TX,
384 BFD_DEF_DETECT_MULT, 1);
7f342629 385
d62a17ae 386 return CMD_SUCCESS;
7f342629
DS
387}
388
64dc4b2d
RZ
389#if HAVE_BFDD > 0
390DEFUN_HIDDEN(
391#else
392DEFUN(
393#endif /* HAVE_BFDD */
394 ip_ospf_bfd_param,
7f342629 395 ip_ospf_bfd_param_cmd,
9ccf14f7 396 "ip ospf bfd (2-255) (50-60000) (50-60000)",
7f342629
DS
397 "IP Information\n"
398 "OSPF interface commands\n"
399 "Enables BFD support\n"
400 "Detect Multiplier\n"
401 "Required min receive interval\n"
402 "Desired min transmit interval\n")
403{
d62a17ae 404 VTY_DECLVAR_CONTEXT(interface, ifp);
405 int idx_number = 3;
406 int idx_number_2 = 4;
407 int idx_number_3 = 5;
d7c0a89a
QY
408 uint32_t rx_val;
409 uint32_t tx_val;
410 uint8_t dm_val;
d62a17ae 411 int ret;
412
413 assert(ifp);
414
415 if ((ret = bfd_validate_param(
416 vty, argv[idx_number]->arg, argv[idx_number_2]->arg,
417 argv[idx_number_3]->arg, &dm_val, &rx_val, &tx_val))
418 != CMD_SUCCESS)
419 return ret;
420
421 ospf_bfd_if_param_set(ifp, rx_val, tx_val, dm_val, 0);
422
423 return CMD_SUCCESS;
7f342629
DS
424}
425
426DEFUN (no_ip_ospf_bfd,
427 no_ip_ospf_bfd_cmd,
64dc4b2d
RZ
428#if HAVE_BFDD > 0
429 "no ip ospf bfd",
430#else
692b4c65 431 "no ip ospf bfd [(2-255) (50-60000) (50-60000)]",
64dc4b2d 432#endif /* HAVE_BFDD */
7f342629
DS
433 NO_STR
434 "IP Information\n"
435 "OSPF interface commands\n"
692b4c65 436 "Disables BFD support\n"
64dc4b2d 437#if HAVE_BFDD == 0
692b4c65
QY
438 "Detect Multiplier\n"
439 "Required min receive interval\n"
64dc4b2d
RZ
440 "Desired min transmit interval\n"
441#endif /* !HAVE_BFDD */
442)
7f342629 443{
d62a17ae 444 VTY_DECLVAR_CONTEXT(interface, ifp);
445 struct ospf_if_params *params;
7f342629 446
d62a17ae 447 assert(ifp);
7f342629 448
d62a17ae 449 params = IF_DEF_PARAMS(ifp);
450 if (params->bfd_info) {
451 ospf_bfd_reg_dereg_all_nbr(ifp, ZEBRA_BFD_DEST_DEREGISTER);
452 bfd_info_free(&(params->bfd_info));
453 }
7f342629 454
d62a17ae 455 return CMD_SUCCESS;
7f342629
DS
456}
457
d62a17ae 458void ospf_bfd_init(void)
7f342629 459{
d62a17ae 460 bfd_gbl_init();
567b877d 461
d62a17ae 462 /* Initialize BFD client functions */
463 zclient->interface_bfd_dest_update = ospf_bfd_interface_dest_update;
464 zclient->bfd_dest_replay = ospf_bfd_nbr_replay;
7f342629 465
d62a17ae 466 /* Install BFD command */
467 install_element(INTERFACE_NODE, &ip_ospf_bfd_cmd);
468 install_element(INTERFACE_NODE, &ip_ospf_bfd_param_cmd);
469 install_element(INTERFACE_NODE, &no_ip_ospf_bfd_cmd);
7f342629 470}