]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_ptm.c
zebra: add struct zmsghdr
[mirror_frr.git] / zebra / zebra_ptm.c
CommitLineData
244c1cdc
DS
1/* Kernel routing table updates using netlink over GNU/Linux system.
2 * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra 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
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
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
244c1cdc
DS
19 */
20
21#include <zebra.h>
d62a17ae 22#include <sys/un.h> /* for sockaddr_un */
244c1cdc 23#include <net/if.h>
c8ed14dd 24#include "vty.h"
244c1cdc
DS
25#include "zebra/zserv.h"
26#include "zebra/interface.h"
27#include "zebra/debug.h"
28#include "zebra/zebra_ptm.h"
29#include "if.h"
30#include "command.h"
c43ed2e4
DS
31#include "stream.h"
32#include "ptm_lib.h"
8f500a1c 33#include "network.h"
c8ed14dd 34#include "buffer.h"
c43ed2e4 35#include "zebra/zebra_ptm_redistribute.h"
68fe91d6 36#include "bfd.h"
d553294e 37#include "vrf.h"
7c551956
DS
38#include "rib.h"
39#include "zebra_vrf.h"
ae435b19 40#include "version.h"
244c1cdc
DS
41
42#define ZEBRA_PTM_RECONNECT_TIME_INITIAL 1 /* initial reconnect is 1s */
43#define ZEBRA_PTM_RECONNECT_TIME_MAX 300
c01acf98 44
c01acf98 45#define PTM_MSG_LEN 4
0a56c844 46#define PTM_HEADER_LEN 37
c43ed2e4
DS
47
48const char ZEBRA_PTM_GET_STATUS_CMD[] = "get-status";
49const char ZEBRA_PTM_BFD_START_CMD[] = "start-bfd-sess";
50const char ZEBRA_PTM_BFD_STOP_CMD[] = "stop-bfd-sess";
055c4dfc 51const char ZEBRA_PTM_BFD_CLIENT_REG_CMD[] = "reg-bfd-client";
567b877d 52const char ZEBRA_PTM_BFD_CLIENT_DEREG_CMD[] = "dereg-bfd-client";
c43ed2e4 53
c8ed14dd 54const char ZEBRA_PTM_CMD_STR[] = "cmd";
b255a4b1 55const char ZEBRA_PTM_CMD_STATUS_STR[] = "cmd_status";
c43ed2e4
DS
56const char ZEBRA_PTM_PORT_STR[] = "port";
57const char ZEBRA_PTM_CBL_STR[] = "cbl status";
58const char ZEBRA_PTM_PASS_STR[] = "pass";
59const char ZEBRA_PTM_FAIL_STR[] = "fail";
60const char ZEBRA_PTM_BFDSTATUS_STR[] = "state";
61const char ZEBRA_PTM_BFDSTATUS_UP_STR[] = "Up";
62const char ZEBRA_PTM_BFDSTATUS_DOWN_STR[] = "Down";
63const char ZEBRA_PTM_BFDDEST_STR[] = "peer";
64const char ZEBRA_PTM_BFDSRC_STR[] = "local";
d553294e 65const char ZEBRA_PTM_BFDVRF_STR[] = "vrf";
c43ed2e4
DS
66const char ZEBRA_PTM_INVALID_PORT_NAME[] = "N/A";
67const char ZEBRA_PTM_INVALID_SRC_IP[] = "N/A";
d553294e 68const char ZEBRA_PTM_INVALID_VRF[] = "N/A";
c43ed2e4
DS
69
70const char ZEBRA_PTM_BFD_DST_IP_FIELD[] = "dstIPaddr";
71const char ZEBRA_PTM_BFD_SRC_IP_FIELD[] = "srcIPaddr";
72const char ZEBRA_PTM_BFD_MIN_RX_FIELD[] = "requiredMinRx";
73const char ZEBRA_PTM_BFD_MIN_TX_FIELD[] = "upMinTx";
74const char ZEBRA_PTM_BFD_DETECT_MULT_FIELD[] = "detectMult";
75const char ZEBRA_PTM_BFD_MULTI_HOP_FIELD[] = "multiHop";
76const char ZEBRA_PTM_BFD_CLIENT_FIELD[] = "client";
77const char ZEBRA_PTM_BFD_SEQID_FIELD[] = "seqid";
78const char ZEBRA_PTM_BFD_IFNAME_FIELD[] = "ifName";
79const char ZEBRA_PTM_BFD_MAX_HOP_CNT_FIELD[] = "maxHopCnt";
68fe91d6 80const char ZEBRA_PTM_BFD_SEND_EVENT[] = "sendEvent";
d553294e 81const char ZEBRA_PTM_BFD_VRF_NAME_FIELD[] = "vrfName";
c01acf98 82
c43ed2e4 83static ptm_lib_handle_t *ptm_hdl;
244c1cdc 84
c8ed14dd
DS
85struct zebra_ptm_cb ptm_cb;
86
244c1cdc 87static int zebra_ptm_socket_init(void);
244c1cdc 88int zebra_ptm_sock_read(struct thread *);
d62a17ae 89static void zebra_ptm_install_commands(void);
b255a4b1 90static int zebra_ptm_handle_msg_cb(void *arg, void *in_ctxt);
d62a17ae 91void zebra_bfd_peer_replay_req(void);
950bd436 92void zebra_ptm_send_status_req(void);
93void zebra_ptm_reset_status(int ptm_disable);
244c1cdc
DS
94
95const char ZEBRA_PTM_SOCK_NAME[] = "\0/var/run/ptmd.socket";
96
d62a17ae 97void zebra_ptm_init(void)
244c1cdc 98{
d62a17ae 99 char buf[64];
c43ed2e4 100
d62a17ae 101 memset(&ptm_cb, 0, sizeof(struct zebra_ptm_cb));
c8ed14dd 102
d62a17ae 103 ptm_cb.out_data = calloc(1, ZEBRA_PTM_SEND_MAX_SOCKBUF);
104 if (!ptm_cb.out_data) {
105 zlog_warn("%s: Allocation of send data failed", __func__);
106 return;
107 }
c8ed14dd 108
d62a17ae 109 ptm_cb.in_data = calloc(1, ZEBRA_PTM_MAX_SOCKBUF);
110 if (!ptm_cb.in_data) {
111 zlog_warn("%s: Allocation of recv data failed", __func__);
112 free(ptm_cb.out_data);
113 return;
114 }
c8ed14dd 115
d62a17ae 116 ptm_cb.pid = getpid();
117 zebra_ptm_install_commands();
c43ed2e4 118
d62a17ae 119 sprintf(buf, "%s", FRR_PTM_NAME);
120 ptm_hdl = ptm_lib_register(buf, NULL, zebra_ptm_handle_msg_cb,
121 zebra_ptm_handle_msg_cb);
122 ptm_cb.wb = buffer_new(0);
c8ed14dd 123
d62a17ae 124 ptm_cb.reconnect_time = ZEBRA_PTM_RECONNECT_TIME_INITIAL;
c8ed14dd 125
d62a17ae 126 ptm_cb.ptm_sock = -1;
c8ed14dd
DS
127}
128
d62a17ae 129void zebra_ptm_finish(void)
c8ed14dd 130{
d62a17ae 131 int proto;
c8ed14dd 132
d62a17ae 133 for (proto = 0; proto < ZEBRA_ROUTE_MAX; proto++)
134 if (CHECK_FLAG(ptm_cb.client_flags[proto],
135 ZEBRA_PTM_BFD_CLIENT_FLAG_REG))
136 zebra_ptm_bfd_client_deregister(proto);
2376c3f2 137
d62a17ae 138 buffer_flush_all(ptm_cb.wb, ptm_cb.ptm_sock);
c8ed14dd 139
d62a17ae 140 free(ptm_hdl);
58ac32e2 141
d62a17ae 142 if (ptm_cb.out_data)
143 free(ptm_cb.out_data);
c8ed14dd 144
d62a17ae 145 if (ptm_cb.in_data)
146 free(ptm_cb.in_data);
c8ed14dd 147
d62a17ae 148 /* Release threads. */
149 if (ptm_cb.t_read)
150 thread_cancel(ptm_cb.t_read);
151 if (ptm_cb.t_write)
152 thread_cancel(ptm_cb.t_write);
153 if (ptm_cb.t_timer)
154 thread_cancel(ptm_cb.t_timer);
2376c3f2 155
d62a17ae 156 if (ptm_cb.wb)
157 buffer_free(ptm_cb.wb);
2376c3f2 158
1e9f448f 159 if (ptm_cb.ptm_sock >= 0)
d62a17ae 160 close(ptm_cb.ptm_sock);
c8ed14dd
DS
161}
162
d62a17ae 163static int zebra_ptm_flush_messages(struct thread *thread)
c8ed14dd 164{
d62a17ae 165 ptm_cb.t_write = NULL;
166
167 if (ptm_cb.ptm_sock == -1)
168 return -1;
169
170 errno = 0;
171
172 switch (buffer_flush_available(ptm_cb.wb, ptm_cb.ptm_sock)) {
173 case BUFFER_ERROR:
174 zlog_warn("%s ptm socket error: %s", __func__,
175 safe_strerror(errno));
176 close(ptm_cb.ptm_sock);
177 ptm_cb.ptm_sock = -1;
178 zebra_ptm_reset_status(0);
179 ptm_cb.t_timer = NULL;
180 thread_add_timer(zebrad.master, zebra_ptm_connect, NULL,
181 ptm_cb.reconnect_time, &ptm_cb.t_timer);
182 return (-1);
183 case BUFFER_PENDING:
184 ptm_cb.t_write = NULL;
185 thread_add_write(zebrad.master, zebra_ptm_flush_messages, NULL,
186 ptm_cb.ptm_sock, &ptm_cb.t_write);
187 break;
188 case BUFFER_EMPTY:
189 break;
190 }
191
192 return (0);
c8ed14dd
DS
193}
194
d62a17ae 195static int zebra_ptm_send_message(char *data, int size)
c8ed14dd 196{
d62a17ae 197 errno = 0;
198 switch (buffer_write(ptm_cb.wb, ptm_cb.ptm_sock, data, size)) {
199 case BUFFER_ERROR:
200 zlog_warn("%s ptm socket error: %s", __func__,
201 safe_strerror(errno));
202 close(ptm_cb.ptm_sock);
203 ptm_cb.ptm_sock = -1;
204 zebra_ptm_reset_status(0);
205 ptm_cb.t_timer = NULL;
206 thread_add_timer(zebrad.master, zebra_ptm_connect, NULL,
207 ptm_cb.reconnect_time, &ptm_cb.t_timer);
208 return -1;
209 case BUFFER_EMPTY:
210 THREAD_OFF(ptm_cb.t_write);
211 break;
212 case BUFFER_PENDING:
213 thread_add_write(zebrad.master, zebra_ptm_flush_messages, NULL,
214 ptm_cb.ptm_sock, &ptm_cb.t_write);
215 break;
216 }
217
218 return 0;
244c1cdc
DS
219}
220
d62a17ae 221int zebra_ptm_connect(struct thread *t)
244c1cdc 222{
d62a17ae 223 int init = 0;
224
225 if (ptm_cb.ptm_sock == -1) {
226 zebra_ptm_socket_init();
227 init = 1;
228 }
229
230 if (ptm_cb.ptm_sock != -1) {
231 if (init) {
232 ptm_cb.t_read = NULL;
233 thread_add_read(zebrad.master, zebra_ptm_sock_read,
234 NULL, ptm_cb.ptm_sock, &ptm_cb.t_read);
235 zebra_bfd_peer_replay_req();
236 }
237 zebra_ptm_send_status_req();
238 ptm_cb.reconnect_time = ZEBRA_PTM_RECONNECT_TIME_INITIAL;
239 } else if (ptm_cb.reconnect_time < ZEBRA_PTM_RECONNECT_TIME_MAX) {
240 ptm_cb.reconnect_time *= 2;
241 if (ptm_cb.reconnect_time > ZEBRA_PTM_RECONNECT_TIME_MAX)
242 ptm_cb.reconnect_time = ZEBRA_PTM_RECONNECT_TIME_MAX;
243
244 ptm_cb.t_timer = NULL;
245 thread_add_timer(zebrad.master, zebra_ptm_connect, NULL,
246 ptm_cb.reconnect_time, &ptm_cb.t_timer);
247 } else if (ptm_cb.reconnect_time >= ZEBRA_PTM_RECONNECT_TIME_MAX) {
248 ptm_cb.reconnect_time = ZEBRA_PTM_RECONNECT_TIME_INITIAL;
249 }
250
251 return (errno);
244c1cdc
DS
252}
253
244c1cdc
DS
254DEFUN (zebra_ptm_enable,
255 zebra_ptm_enable_cmd,
256 "ptm-enable",
257 "Enable neighbor check with specified topology\n")
258{
d62a17ae 259 struct vrf *vrf;
d62a17ae 260 struct interface *ifp;
261 struct zebra_if *if_data;
262
263 ptm_cb.ptm_enable = ZEBRA_IF_PTM_ENABLE_ON;
264
a2addae8 265 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name)
451fda4f 266 FOR_ALL_INTERFACES (vrf, ifp)
a2addae8
RW
267 if (!ifp->ptm_enable) {
268 if_data = (struct zebra_if *)ifp->info;
269 if (if_data
270 && (if_data->ptm_enable
9d303b37 271 == ZEBRA_IF_PTM_ENABLE_UNSPEC)) {
a2addae8
RW
272 ifp->ptm_enable =
273 ZEBRA_IF_PTM_ENABLE_ON;
274 }
275 /* Assign a default unknown status */
276 ifp->ptm_status = ZEBRA_PTM_STATUS_UNKNOWN;
d62a17ae 277 }
d62a17ae 278
279 zebra_ptm_connect(NULL);
280
281 return CMD_SUCCESS;
244c1cdc
DS
282}
283
284DEFUN (no_zebra_ptm_enable,
285 no_zebra_ptm_enable_cmd,
286 "no ptm-enable",
287 NO_STR
288 "Enable neighbor check with specified topology\n")
289{
d62a17ae 290 ptm_cb.ptm_enable = ZEBRA_IF_PTM_ENABLE_OFF;
291 zebra_ptm_reset_status(1);
292 return CMD_SUCCESS;
244c1cdc
DS
293}
294
986aa00f 295DEFUN (zebra_ptm_enable_if,
296 zebra_ptm_enable_if_cmd,
297 "ptm-enable",
298 "Enable neighbor check with specified topology\n")
299{
d62a17ae 300 VTY_DECLVAR_CONTEXT(interface, ifp);
301 struct zebra_if *if_data;
302 int old_ptm_enable;
303 int send_linkdown = 0;
304
305 if (ifp->ifindex == IFINDEX_INTERNAL) {
306 return CMD_SUCCESS;
307 }
308
309 old_ptm_enable = ifp->ptm_enable;
310 ifp->ptm_enable = ptm_cb.ptm_enable;
311
312 if (if_is_no_ptm_operative(ifp))
313 send_linkdown = 1;
314
315 if (!old_ptm_enable && ptm_cb.ptm_enable) {
316 if (!if_is_operative(ifp) && send_linkdown) {
317 if (IS_ZEBRA_DEBUG_EVENT)
318 zlog_debug("%s: Bringing down interface %s\n",
319 __func__, ifp->name);
320 if_down(ifp);
321 }
322 }
323
324 if_data = ifp->info;
325 if_data->ptm_enable = ZEBRA_IF_PTM_ENABLE_UNSPEC;
326
327 return CMD_SUCCESS;
986aa00f 328}
329
330DEFUN (no_zebra_ptm_enable_if,
331 no_zebra_ptm_enable_if_cmd,
332 "no ptm-enable",
333 NO_STR
334 "Enable neighbor check with specified topology\n")
335{
d62a17ae 336 VTY_DECLVAR_CONTEXT(interface, ifp);
337 int send_linkup = 0;
338 struct zebra_if *if_data;
339
340 if ((ifp->ifindex != IFINDEX_INTERNAL) && (ifp->ptm_enable)) {
341 if (!if_is_operative(ifp))
342 send_linkup = 1;
343
344 ifp->ptm_enable = ZEBRA_IF_PTM_ENABLE_OFF;
345 if (if_is_no_ptm_operative(ifp) && send_linkup) {
346 if (IS_ZEBRA_DEBUG_EVENT)
347 zlog_debug("%s: Bringing up interface %s\n",
348 __func__, ifp->name);
349 if_up(ifp);
350 }
351 }
352
353 if_data = ifp->info;
354 if_data->ptm_enable = ZEBRA_IF_PTM_ENABLE_OFF;
355
356 return CMD_SUCCESS;
986aa00f 357}
358
359
d62a17ae 360void zebra_ptm_write(struct vty *vty)
244c1cdc 361{
d62a17ae 362 if (ptm_cb.ptm_enable)
363 vty_out(vty, "ptm-enable\n");
244c1cdc 364
d62a17ae 365 return;
244c1cdc
DS
366}
367
d62a17ae 368static int zebra_ptm_socket_init(void)
244c1cdc 369{
d62a17ae 370 int ret;
371 int sock;
372 struct sockaddr_un addr;
373
374 ptm_cb.ptm_sock = -1;
375
376 sock = socket(PF_UNIX, SOCK_STREAM, 0);
377 if (sock < 0)
378 return -1;
379 if (set_nonblocking(sock) < 0) {
380 if (IS_ZEBRA_DEBUG_EVENT)
381 zlog_debug("%s: Unable to set socket non blocking[%s]",
382 __PRETTY_FUNCTION__, safe_strerror(errno));
383 close(sock);
384 return -1;
385 }
386
387 /* Make server socket. */
388 memset(&addr, 0, sizeof(struct sockaddr_un));
389 addr.sun_family = AF_UNIX;
390 memcpy(&addr.sun_path, ZEBRA_PTM_SOCK_NAME,
391 sizeof(ZEBRA_PTM_SOCK_NAME));
392
393 ret = connect(sock, (struct sockaddr *)&addr,
394 sizeof(addr.sun_family) + sizeof(ZEBRA_PTM_SOCK_NAME)
395 - 1);
396 if (ret < 0) {
397 if (IS_ZEBRA_DEBUG_EVENT)
398 zlog_debug("%s: Unable to connect to socket %s [%s]",
399 __func__, ZEBRA_PTM_SOCK_NAME,
400 safe_strerror(errno));
401 close(sock);
402 return -1;
403 }
404 ptm_cb.ptm_sock = sock;
405 return sock;
244c1cdc
DS
406}
407
d62a17ae 408static void zebra_ptm_install_commands(void)
244c1cdc 409{
d62a17ae 410 install_element(CONFIG_NODE, &zebra_ptm_enable_cmd);
411 install_element(CONFIG_NODE, &no_zebra_ptm_enable_cmd);
412 install_element(INTERFACE_NODE, &zebra_ptm_enable_if_cmd);
413 install_element(INTERFACE_NODE, &no_zebra_ptm_enable_if_cmd);
244c1cdc
DS
414}
415
c43ed2e4 416/* BFD session goes down, send message to the protocols. */
d62a17ae 417static void if_bfd_session_update(struct interface *ifp, struct prefix *dp,
418 struct prefix *sp, int status,
419 vrf_id_t vrf_id)
c01acf98 420{
d62a17ae 421 if (IS_ZEBRA_DEBUG_EVENT) {
422 char buf[2][INET6_ADDRSTRLEN];
423
424 if (ifp) {
425 zlog_debug(
426 "MESSAGE: ZEBRA_INTERFACE_BFD_DEST_UPDATE %s/%d on %s"
427 " %s event",
428 inet_ntop(dp->family, &dp->u.prefix, buf[0],
429 INET6_ADDRSTRLEN),
430 dp->prefixlen, ifp->name,
431 bfd_get_status_str(status));
432 } else {
433 zlog_debug(
434 "MESSAGE: ZEBRA_INTERFACE_BFD_DEST_UPDATE %s/%d "
a9ff90c4 435 "with src %s/%d and vrf %u %s event",
d62a17ae 436 inet_ntop(dp->family, &dp->u.prefix, buf[0],
437 INET6_ADDRSTRLEN),
438 dp->prefixlen,
439 inet_ntop(sp->family, &sp->u.prefix, buf[1],
440 INET6_ADDRSTRLEN),
441 sp->prefixlen, vrf_id,
442 bfd_get_status_str(status));
443 }
444 }
445
446 zebra_interface_bfd_update(ifp, dp, sp, status, vrf_id);
c01acf98
DS
447}
448
d62a17ae 449static int zebra_ptm_handle_bfd_msg(void *arg, void *in_ctxt,
450 struct interface *ifp)
244c1cdc 451{
d62a17ae 452 char bfdst_str[32];
453 char dest_str[64];
454 char src_str[64];
455 char vrf_str[64];
456 struct prefix dest_prefix;
457 struct prefix src_prefix;
458 vrf_id_t vrf_id;
459
460 ptm_lib_find_key_in_msg(in_ctxt, ZEBRA_PTM_BFDSTATUS_STR, bfdst_str);
461
462 if (bfdst_str[0] == '\0') {
463 return -1;
464 }
465
466 ptm_lib_find_key_in_msg(in_ctxt, ZEBRA_PTM_BFDDEST_STR, dest_str);
467
468 if (dest_str[0] == '\0') {
469 zlog_debug("%s: Key %s not found in PTM msg", __func__,
470 ZEBRA_PTM_BFDDEST_STR);
471 return -1;
472 }
473
474 ptm_lib_find_key_in_msg(in_ctxt, ZEBRA_PTM_BFDSRC_STR, src_str);
475
476 if (src_str[0] == '\0') {
477 zlog_debug("%s: Key %s not found in PTM msg", __func__,
478 ZEBRA_PTM_BFDSRC_STR);
479 return -1;
480 }
481
482 ptm_lib_find_key_in_msg(in_ctxt, ZEBRA_PTM_BFDVRF_STR, vrf_str);
483
484 if (vrf_str[0] == '\0') {
485 zlog_debug("%s: Key %s not found in PTM msg", __func__,
486 ZEBRA_PTM_BFDVRF_STR);
487 return -1;
488 }
489
490 if (IS_ZEBRA_DEBUG_EVENT)
491 zlog_debug(
492 "%s: Recv Port [%s] bfd status [%s] vrf [%s]"
493 " peer [%s] local [%s]",
494 __func__, ifp ? ifp->name : "N/A", bfdst_str, vrf_str,
495 dest_str, src_str);
496
497 if (str2prefix(dest_str, &dest_prefix) == 0) {
498 zlog_err("%s: Peer addr %s not found", __func__, dest_str);
499 return -1;
500 }
501
502 memset(&src_prefix, 0, sizeof(struct prefix));
503 if (strcmp(ZEBRA_PTM_INVALID_SRC_IP, src_str)) {
504 if (str2prefix(src_str, &src_prefix) == 0) {
505 zlog_err("%s: Local addr %s not found", __func__,
506 src_str);
507 return -1;
508 }
509 }
510
511 if (!strcmp(ZEBRA_PTM_INVALID_VRF, vrf_str) && ifp) {
512 vrf_id = ifp->vrf_id;
513 } else {
514 vrf_id = vrf_name_to_id(vrf_str);
515 }
516
517 if (!strcmp(bfdst_str, ZEBRA_PTM_BFDSTATUS_DOWN_STR)) {
518 if_bfd_session_update(ifp, &dest_prefix, &src_prefix,
519 BFD_STATUS_DOWN, vrf_id);
520 } else {
521 if_bfd_session_update(ifp, &dest_prefix, &src_prefix,
522 BFD_STATUS_UP, vrf_id);
523 }
524
525 return 0;
c01acf98
DS
526}
527
d62a17ae 528static int zebra_ptm_handle_cbl_msg(void *arg, void *in_ctxt,
529 struct interface *ifp, char *cbl_str)
c01acf98 530{
d62a17ae 531 int send_linkup = 0;
532
533 if (IS_ZEBRA_DEBUG_EVENT)
534 zlog_debug("%s: Recv Port [%s] cbl status [%s]", __func__,
535 ifp->name, cbl_str);
536
537 if (!strcmp(cbl_str, ZEBRA_PTM_PASS_STR)
538 && (ifp->ptm_status != ZEBRA_PTM_STATUS_UP)) {
539
540 if (ifp->ptm_status == ZEBRA_PTM_STATUS_DOWN)
541 send_linkup = 1;
542 ifp->ptm_status = ZEBRA_PTM_STATUS_UP;
543 if (ifp->ptm_enable && if_is_no_ptm_operative(ifp)
544 && send_linkup)
545 if_up(ifp);
546 } else if (!strcmp(cbl_str, ZEBRA_PTM_FAIL_STR)
547 && (ifp->ptm_status != ZEBRA_PTM_STATUS_DOWN)) {
548 ifp->ptm_status = ZEBRA_PTM_STATUS_DOWN;
549 if (ifp->ptm_enable && if_is_no_ptm_operative(ifp))
550 if_down(ifp);
551 }
552
553 return 0;
b255a4b1 554}
950bd436 555
b255a4b1 556/*
557 * zebra_ptm_handle_msg_cb - The purpose of this callback function is to handle
558 * all the command responses and notifications received from PTM.
559 *
560 * Command responses: Upon establishing connection with PTM, Zebra requests
561 * status of all interfaces using 'get-status' command if global ptm-enable
562 * knob is enabled. As a response to the get-status command PTM sends status
563 * of all the interfaces as command responses. All other type of command
564 * responses with cmd_status key word are dropped. The sole purpose of
565 * registering this function as callback for the command responses is to
566 * handle the responses to get-status command.
567 *
568 * Notifications: Cable status and BFD session status changes are sent as
569 * notifications by PTM. So, this function is also the callback function for
570 * processing all the notifications from the PTM.
571 *
572 */
d62a17ae 573static int zebra_ptm_handle_msg_cb(void *arg, void *in_ctxt)
b255a4b1 574{
d62a17ae 575 struct interface *ifp = NULL;
576 char port_str[128];
577 char cbl_str[32];
578 char cmd_status_str[32];
579
580 ptm_lib_find_key_in_msg(in_ctxt, ZEBRA_PTM_CMD_STATUS_STR,
581 cmd_status_str);
582
583 /* Drop command response messages */
584 if (cmd_status_str[0] != '\0') {
585 return 0;
586 }
587
588 ptm_lib_find_key_in_msg(in_ctxt, ZEBRA_PTM_PORT_STR, port_str);
589
590 if (port_str[0] == '\0') {
591 zlog_debug("%s: Key %s not found in PTM msg", __func__,
592 ZEBRA_PTM_PORT_STR);
593 return -1;
594 }
595
596 if (strcmp(ZEBRA_PTM_INVALID_PORT_NAME, port_str)) {
597 ifp = if_lookup_by_name_all_vrf(port_str);
598
599 if (!ifp) {
600 zlog_err("%s: %s not found in interface list", __func__,
601 port_str);
602 return -1;
603 }
604 }
605
606 ptm_lib_find_key_in_msg(in_ctxt, ZEBRA_PTM_CBL_STR, cbl_str);
607
608 if (cbl_str[0] == '\0') {
609 return zebra_ptm_handle_bfd_msg(arg, in_ctxt, ifp);
610 } else {
611 if (ifp) {
612 return zebra_ptm_handle_cbl_msg(arg, in_ctxt, ifp,
613 cbl_str);
614 } else {
615 return -1;
616 }
617 }
c01acf98
DS
618}
619
d62a17ae 620int zebra_ptm_sock_read(struct thread *thread)
c01acf98 621{
d62a17ae 622 int sock, done = 0;
623 int rc;
624
625 errno = 0;
626 sock = THREAD_FD(thread);
627
628 if (sock == -1)
629 return -1;
630
631 /* PTM communicates in CSV format */
632 while (!done) {
633 rc = ptm_lib_process_msg(ptm_hdl, sock, ptm_cb.in_data,
634 ZEBRA_PTM_MAX_SOCKBUF, NULL);
635 if (rc <= 0)
636 break;
637 }
638
639 if (rc <= 0) {
640 if (((rc == 0) && !errno)
641 || (errno && (errno != EWOULDBLOCK) && (errno != EAGAIN))) {
642 zlog_warn("%s routing socket error: %s(%d) bytes %d",
643 __func__, safe_strerror(errno), errno, rc);
644
645 close(ptm_cb.ptm_sock);
646 ptm_cb.ptm_sock = -1;
647 zebra_ptm_reset_status(0);
648 ptm_cb.t_timer = NULL;
649 thread_add_timer(zebrad.master, zebra_ptm_connect, NULL,
650 ptm_cb.reconnect_time,
651 &ptm_cb.t_timer);
652 return (-1);
653 }
654 }
655
656 ptm_cb.t_read = NULL;
657 thread_add_read(zebrad.master, zebra_ptm_sock_read, NULL,
658 ptm_cb.ptm_sock, &ptm_cb.t_read);
659
660 return 0;
c43ed2e4
DS
661}
662
663/* BFD peer/dst register/update */
8068a649
QY
664void zebra_ptm_bfd_dst_register(struct zserv *client, u_short length,
665 int command, struct zebra_vrf *zvrf)
c43ed2e4 666{
d62a17ae 667 struct stream *s;
668 struct prefix src_p;
669 struct prefix dst_p;
670 u_char multi_hop;
671 u_char multi_hop_cnt;
672 u_char detect_mul;
673 unsigned int min_rx_timer;
674 unsigned int min_tx_timer;
675 char if_name[INTERFACE_NAMSIZ];
676 u_char len;
677 void *out_ctxt;
678 char buf[INET6_ADDRSTRLEN];
679 char tmp_buf[64];
680 int data_len = ZEBRA_PTM_SEND_MAX_SOCKBUF;
681 unsigned int pid;
682
683 if (command == ZEBRA_BFD_DEST_UPDATE)
684 client->bfd_peer_upd8_cnt++;
685 else
686 client->bfd_peer_add_cnt++;
687
688 if (IS_ZEBRA_DEBUG_EVENT)
689 zlog_debug("bfd_dst_register msg from client %s: length=%d",
690 zebra_route_string(client->proto), length);
691
692 if (ptm_cb.ptm_sock == -1) {
693 ptm_cb.t_timer = NULL;
694 thread_add_timer(zebrad.master, zebra_ptm_connect, NULL,
695 ptm_cb.reconnect_time, &ptm_cb.t_timer);
8068a649 696 return;
d62a17ae 697 }
698
699 ptm_lib_init_msg(ptm_hdl, 0, PTMLIB_MSG_TYPE_CMD, NULL, &out_ctxt);
700 sprintf(tmp_buf, "%s", ZEBRA_PTM_BFD_START_CMD);
701 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_CMD_STR, tmp_buf);
702 sprintf(tmp_buf, "%s", zebra_route_string(client->proto));
703 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_CLIENT_FIELD,
704 tmp_buf);
705
706 s = client->ibuf;
707
ec93aa12 708 STREAM_GETL(s, pid);
d62a17ae 709 sprintf(tmp_buf, "%d", pid);
710 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_SEQID_FIELD,
711 tmp_buf);
712
ec93aa12 713 STREAM_GETW(s, dst_p.family);
d62a17ae 714
715 if (dst_p.family == AF_INET)
716 dst_p.prefixlen = IPV4_MAX_BYTELEN;
717 else
718 dst_p.prefixlen = IPV6_MAX_BYTELEN;
719
ec93aa12 720 STREAM_GET(&dst_p.u.prefix, s, dst_p.prefixlen);
d62a17ae 721 if (dst_p.family == AF_INET) {
722 inet_ntop(AF_INET, &dst_p.u.prefix4, buf, sizeof(buf));
723 ptm_lib_append_msg(ptm_hdl, out_ctxt,
724 ZEBRA_PTM_BFD_DST_IP_FIELD, buf);
725 } else {
726 inet_ntop(AF_INET6, &dst_p.u.prefix6, buf, sizeof(buf));
727 ptm_lib_append_msg(ptm_hdl, out_ctxt,
728 ZEBRA_PTM_BFD_DST_IP_FIELD, buf);
729 }
730
ec93aa12 731 STREAM_GETL(s, min_rx_timer);
d62a17ae 732 sprintf(tmp_buf, "%d", min_rx_timer);
733 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_MIN_RX_FIELD,
734 tmp_buf);
ec93aa12 735 STREAM_GETL(s, min_tx_timer);
d62a17ae 736 sprintf(tmp_buf, "%d", min_tx_timer);
737 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_MIN_TX_FIELD,
738 tmp_buf);
ec93aa12 739 STREAM_GETC(s, detect_mul);
d62a17ae 740 sprintf(tmp_buf, "%d", detect_mul);
741 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_DETECT_MULT_FIELD,
742 tmp_buf);
743
ec93aa12 744 STREAM_GETC(s, multi_hop);
d62a17ae 745 if (multi_hop) {
746 sprintf(tmp_buf, "%d", 1);
747 ptm_lib_append_msg(ptm_hdl, out_ctxt,
748 ZEBRA_PTM_BFD_MULTI_HOP_FIELD, tmp_buf);
ec93aa12 749 STREAM_GETW(s, src_p.family);
d62a17ae 750
751 if (src_p.family == AF_INET)
752 src_p.prefixlen = IPV4_MAX_BYTELEN;
753 else
754 src_p.prefixlen = IPV6_MAX_BYTELEN;
755
ec93aa12 756 STREAM_GET(&src_p.u.prefix, s, src_p.prefixlen);
d62a17ae 757 if (src_p.family == AF_INET) {
758 inet_ntop(AF_INET, &src_p.u.prefix4, buf, sizeof(buf));
759 ptm_lib_append_msg(ptm_hdl, out_ctxt,
760 ZEBRA_PTM_BFD_SRC_IP_FIELD, buf);
761 } else {
762 inet_ntop(AF_INET6, &src_p.u.prefix6, buf, sizeof(buf));
763 ptm_lib_append_msg(ptm_hdl, out_ctxt,
764 ZEBRA_PTM_BFD_SRC_IP_FIELD, buf);
765 }
766
ec93aa12 767 STREAM_GETC(s, multi_hop_cnt);
d62a17ae 768 sprintf(tmp_buf, "%d", multi_hop_cnt);
769 ptm_lib_append_msg(ptm_hdl, out_ctxt,
770 ZEBRA_PTM_BFD_MAX_HOP_CNT_FIELD, tmp_buf);
771
772 if (zvrf_id(zvrf) != VRF_DEFAULT)
773 ptm_lib_append_msg(ptm_hdl, out_ctxt,
774 ZEBRA_PTM_BFD_VRF_NAME_FIELD,
775 zvrf_name(zvrf));
776 } else {
777 if (dst_p.family == AF_INET6) {
ec93aa12 778 STREAM_GETW(s, src_p.family);
d62a17ae 779
780 if (src_p.family == AF_INET)
781 src_p.prefixlen = IPV4_MAX_BYTELEN;
782 else
783 src_p.prefixlen = IPV6_MAX_BYTELEN;
784
ec93aa12 785 STREAM_GET(&src_p.u.prefix, s, src_p.prefixlen);
d62a17ae 786 if (src_p.family == AF_INET) {
787 inet_ntop(AF_INET, &src_p.u.prefix4, buf,
788 sizeof(buf));
789 ptm_lib_append_msg(ptm_hdl, out_ctxt,
790 ZEBRA_PTM_BFD_SRC_IP_FIELD,
791 buf);
792 } else {
793 inet_ntop(AF_INET6, &src_p.u.prefix6, buf,
794 sizeof(buf));
795 ptm_lib_append_msg(ptm_hdl, out_ctxt,
796 ZEBRA_PTM_BFD_SRC_IP_FIELD,
797 buf);
798 }
799 }
ec93aa12
DS
800 STREAM_GETC(s, len);
801 STREAM_GET(if_name, s, len);
d62a17ae 802 if_name[len] = '\0';
803
804 ptm_lib_append_msg(ptm_hdl, out_ctxt,
805 ZEBRA_PTM_BFD_IFNAME_FIELD, if_name);
806 }
807
808 sprintf(tmp_buf, "%d", 1);
809 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_SEND_EVENT,
810 tmp_buf);
811
812 ptm_lib_complete_msg(ptm_hdl, out_ctxt, ptm_cb.out_data, &data_len);
813
814 if (IS_ZEBRA_DEBUG_SEND)
815 zlog_debug("%s: Sent message (%d) %s", __func__, data_len,
816 ptm_cb.out_data);
817 zebra_ptm_send_message(ptm_cb.out_data, data_len);
ec93aa12 818
8068a649 819 return;
9cc46248 820
ec93aa12 821stream_failure:
a928d464 822 ptm_lib_cleanup_msg(ptm_hdl, out_ctxt);
8068a649 823 return;
c43ed2e4
DS
824}
825
826/* BFD peer/dst deregister */
8068a649
QY
827void zebra_ptm_bfd_dst_deregister(struct zserv *client, u_short length,
828 struct zebra_vrf *zvrf)
c43ed2e4 829{
d62a17ae 830 struct stream *s;
831 struct prefix src_p;
832 struct prefix dst_p;
833 u_char multi_hop;
834 char if_name[INTERFACE_NAMSIZ];
835 u_char len;
836 char buf[INET6_ADDRSTRLEN];
837 char tmp_buf[64];
838 int data_len = ZEBRA_PTM_SEND_MAX_SOCKBUF;
839 void *out_ctxt;
840 unsigned int pid;
841
842 client->bfd_peer_del_cnt++;
843
844 if (IS_ZEBRA_DEBUG_EVENT)
845 zlog_debug("bfd_dst_deregister msg from client %s: length=%d",
846 zebra_route_string(client->proto), length);
847
848 if (ptm_cb.ptm_sock == -1) {
849 ptm_cb.t_timer = NULL;
850 thread_add_timer(zebrad.master, zebra_ptm_connect, NULL,
851 ptm_cb.reconnect_time, &ptm_cb.t_timer);
8068a649 852 return;
d62a17ae 853 }
854
855 ptm_lib_init_msg(ptm_hdl, 0, PTMLIB_MSG_TYPE_CMD, NULL, &out_ctxt);
856
857 sprintf(tmp_buf, "%s", ZEBRA_PTM_BFD_STOP_CMD);
858 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_CMD_STR, tmp_buf);
859
860 sprintf(tmp_buf, "%s", zebra_route_string(client->proto));
861 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_CLIENT_FIELD,
862 tmp_buf);
863
864 s = client->ibuf;
865
ec93aa12 866 STREAM_GETL(s, pid);
d62a17ae 867 sprintf(tmp_buf, "%d", pid);
868 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_SEQID_FIELD,
869 tmp_buf);
870
ec93aa12 871 STREAM_GETW(s, dst_p.family);
d62a17ae 872
873 if (dst_p.family == AF_INET)
874 dst_p.prefixlen = IPV4_MAX_BYTELEN;
875 else
876 dst_p.prefixlen = IPV6_MAX_BYTELEN;
877
ec93aa12 878 STREAM_GET(&dst_p.u.prefix, s, dst_p.prefixlen);
d62a17ae 879 if (dst_p.family == AF_INET)
880 inet_ntop(AF_INET, &dst_p.u.prefix4, buf, sizeof(buf));
881 else
882 inet_ntop(AF_INET6, &dst_p.u.prefix6, buf, sizeof(buf));
883 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_DST_IP_FIELD, buf);
884
885
ec93aa12 886 STREAM_GETC(s, multi_hop);
d62a17ae 887 if (multi_hop) {
888 sprintf(tmp_buf, "%d", 1);
889 ptm_lib_append_msg(ptm_hdl, out_ctxt,
890 ZEBRA_PTM_BFD_MULTI_HOP_FIELD, tmp_buf);
891
ec93aa12 892 STREAM_GETW(s, src_p.family);
d62a17ae 893
894 if (src_p.family == AF_INET)
895 src_p.prefixlen = IPV4_MAX_BYTELEN;
896 else
897 src_p.prefixlen = IPV6_MAX_BYTELEN;
898
ec93aa12 899 STREAM_GET(&src_p.u.prefix, s, src_p.prefixlen);
d62a17ae 900 if (src_p.family == AF_INET)
901 inet_ntop(AF_INET, &src_p.u.prefix4, buf, sizeof(buf));
902 else
903 inet_ntop(AF_INET6, &src_p.u.prefix6, buf, sizeof(buf));
904 ptm_lib_append_msg(ptm_hdl, out_ctxt,
905 ZEBRA_PTM_BFD_SRC_IP_FIELD, buf);
906
907 if (zvrf_id(zvrf) != VRF_DEFAULT)
908 ptm_lib_append_msg(ptm_hdl, out_ctxt,
909 ZEBRA_PTM_BFD_VRF_NAME_FIELD,
910 zvrf_name(zvrf));
911 } else {
912 if (dst_p.family == AF_INET6) {
ec93aa12 913 STREAM_GETW(s, src_p.family);
d62a17ae 914
915 if (src_p.family == AF_INET)
916 src_p.prefixlen = IPV4_MAX_BYTELEN;
917 else
918 src_p.prefixlen = IPV6_MAX_BYTELEN;
919
ec93aa12 920 STREAM_GET(&src_p.u.prefix, s, src_p.prefixlen);
d62a17ae 921 if (src_p.family == AF_INET) {
922 inet_ntop(AF_INET, &src_p.u.prefix4, buf,
923 sizeof(buf));
924 ptm_lib_append_msg(ptm_hdl, out_ctxt,
925 ZEBRA_PTM_BFD_SRC_IP_FIELD,
926 buf);
927 } else {
928 inet_ntop(AF_INET6, &src_p.u.prefix6, buf,
929 sizeof(buf));
930 ptm_lib_append_msg(ptm_hdl, out_ctxt,
931 ZEBRA_PTM_BFD_SRC_IP_FIELD,
932 buf);
933 }
934 }
935
ec93aa12
DS
936 STREAM_GETC(s, len);
937 STREAM_GET(if_name, s, len);
d62a17ae 938 if_name[len] = '\0';
939
940 ptm_lib_append_msg(ptm_hdl, out_ctxt,
941 ZEBRA_PTM_BFD_IFNAME_FIELD, if_name);
942 }
943
944 ptm_lib_complete_msg(ptm_hdl, out_ctxt, ptm_cb.out_data, &data_len);
945 if (IS_ZEBRA_DEBUG_SEND)
946 zlog_debug("%s: Sent message (%d) %s", __func__, data_len,
947 ptm_cb.out_data);
948
949 zebra_ptm_send_message(ptm_cb.out_data, data_len);
ec93aa12 950
8068a649 951 return;
9cc46248 952
ec93aa12 953stream_failure:
a928d464 954 ptm_lib_cleanup_msg(ptm_hdl, out_ctxt);
8068a649 955 return;
c01acf98 956}
c8ed14dd 957
055c4dfc 958/* BFD client register */
8068a649 959void zebra_ptm_bfd_client_register(struct zserv *client, u_short length)
055c4dfc 960{
d62a17ae 961 struct stream *s;
962 unsigned int pid;
9cc46248 963 void *out_ctxt = NULL;
d62a17ae 964 char tmp_buf[64];
965 int data_len = ZEBRA_PTM_SEND_MAX_SOCKBUF;
055c4dfc 966
d62a17ae 967 client->bfd_client_reg_cnt++;
055c4dfc 968
d62a17ae 969 if (IS_ZEBRA_DEBUG_EVENT)
970 zlog_debug("bfd_client_register msg from client %s: length=%d",
971 zebra_route_string(client->proto), length);
055c4dfc 972
bf6e101c 973 s = client->ibuf;
ec93aa12 974 STREAM_GETL(s, pid);
bf6e101c 975
d62a17ae 976 if (ptm_cb.ptm_sock == -1) {
977 ptm_cb.t_timer = NULL;
978 thread_add_timer(zebrad.master, zebra_ptm_connect, NULL,
979 ptm_cb.reconnect_time, &ptm_cb.t_timer);
8068a649 980 return;
d62a17ae 981 }
055c4dfc 982
d62a17ae 983 ptm_lib_init_msg(ptm_hdl, 0, PTMLIB_MSG_TYPE_CMD, NULL, &out_ctxt);
055c4dfc 984
d62a17ae 985 sprintf(tmp_buf, "%s", ZEBRA_PTM_BFD_CLIENT_REG_CMD);
986 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_CMD_STR, tmp_buf);
055c4dfc 987
d62a17ae 988 sprintf(tmp_buf, "%s", zebra_route_string(client->proto));
989 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_CLIENT_FIELD,
990 tmp_buf);
055c4dfc 991
d62a17ae 992 sprintf(tmp_buf, "%d", pid);
993 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_SEQID_FIELD,
994 tmp_buf);
055c4dfc 995
d62a17ae 996 ptm_lib_complete_msg(ptm_hdl, out_ctxt, ptm_cb.out_data, &data_len);
055c4dfc 997
d62a17ae 998 if (IS_ZEBRA_DEBUG_SEND)
999 zlog_debug("%s: Sent message (%d) %s", __func__, data_len,
1000 ptm_cb.out_data);
1001 zebra_ptm_send_message(ptm_cb.out_data, data_len);
2376c3f2 1002
d62a17ae 1003 SET_FLAG(ptm_cb.client_flags[client->proto],
1004 ZEBRA_PTM_BFD_CLIENT_FLAG_REG);
9cc46248 1005
8068a649 1006 return;
9cc46248 1007
ec93aa12 1008stream_failure:
6447dbb3
DS
1009 /*
1010 * IF we ever add more STREAM_GETXXX functions after the out_ctxt
1011 * is allocated then we need to add this code back in
1012 *
1013 * if (out_ctxt)
1014 * ptm_lib_cleanup_msg(ptm_hdl, out_ctxt);
1015 */
8068a649 1016 return;
055c4dfc 1017}
1018
567b877d 1019/* BFD client deregister */
d62a17ae 1020void zebra_ptm_bfd_client_deregister(int proto)
567b877d 1021{
d62a17ae 1022 void *out_ctxt;
1023 char tmp_buf[64];
1024 int data_len = ZEBRA_PTM_SEND_MAX_SOCKBUF;
567b877d 1025
d62a17ae 1026 if (proto != ZEBRA_ROUTE_OSPF && proto != ZEBRA_ROUTE_BGP
1027 && proto != ZEBRA_ROUTE_OSPF6 && proto != ZEBRA_ROUTE_PIM)
1028 return;
567b877d 1029
d62a17ae 1030 if (IS_ZEBRA_DEBUG_EVENT)
1031 zlog_err("bfd_client_deregister msg for client %s",
1032 zebra_route_string(proto));
567b877d 1033
d62a17ae 1034 if (ptm_cb.ptm_sock == -1) {
1035 ptm_cb.t_timer = NULL;
1036 thread_add_timer(zebrad.master, zebra_ptm_connect, NULL,
1037 ptm_cb.reconnect_time, &ptm_cb.t_timer);
1038 return;
1039 }
567b877d 1040
d62a17ae 1041 ptm_lib_init_msg(ptm_hdl, 0, PTMLIB_MSG_TYPE_CMD, NULL, &out_ctxt);
567b877d 1042
d62a17ae 1043 sprintf(tmp_buf, "%s", ZEBRA_PTM_BFD_CLIENT_DEREG_CMD);
1044 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_CMD_STR, tmp_buf);
567b877d 1045
d62a17ae 1046 sprintf(tmp_buf, "%s", zebra_route_string(proto));
1047 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_BFD_CLIENT_FIELD,
1048 tmp_buf);
567b877d 1049
d62a17ae 1050 ptm_lib_complete_msg(ptm_hdl, out_ctxt, ptm_cb.out_data, &data_len);
567b877d 1051
d62a17ae 1052 if (IS_ZEBRA_DEBUG_SEND)
1053 zlog_debug("%s: Sent message (%d) %s", __func__, data_len,
1054 ptm_cb.out_data);
2376c3f2 1055
d62a17ae 1056 zebra_ptm_send_message(ptm_cb.out_data, data_len);
1057 UNSET_FLAG(ptm_cb.client_flags[proto], ZEBRA_PTM_BFD_CLIENT_FLAG_REG);
567b877d 1058}
1059
d62a17ae 1060int zebra_ptm_get_enable_state(void)
c8ed14dd 1061{
d62a17ae 1062 return ptm_cb.ptm_enable;
c8ed14dd 1063}
950bd436 1064
1065/*
1066 * zebra_ptm_get_status_str - Convert status to a display string.
1067 */
d62a17ae 1068static const char *zebra_ptm_get_status_str(int status)
950bd436 1069{
d62a17ae 1070 switch (status) {
1071 case ZEBRA_PTM_STATUS_DOWN:
1072 return "fail";
1073 case ZEBRA_PTM_STATUS_UP:
1074 return "pass";
1075 case ZEBRA_PTM_STATUS_UNKNOWN:
1076 default:
1077 return "n/a";
1078 }
950bd436 1079}
1080
d62a17ae 1081void zebra_ptm_show_status(struct vty *vty, struct interface *ifp)
950bd436 1082{
d62a17ae 1083 vty_out(vty, " PTM status: ");
1084 if (ifp->ptm_enable) {
1085 vty_out(vty, "%s\n", zebra_ptm_get_status_str(ifp->ptm_status));
1086 } else {
1087 vty_out(vty, "disabled\n");
1088 }
950bd436 1089}
1090
d62a17ae 1091void zebra_ptm_send_status_req(void)
950bd436 1092{
d62a17ae 1093 void *out_ctxt;
1094 int len = ZEBRA_PTM_SEND_MAX_SOCKBUF;
1095
1096 if (ptm_cb.ptm_enable) {
1097 ptm_lib_init_msg(ptm_hdl, 0, PTMLIB_MSG_TYPE_CMD, NULL,
1098 &out_ctxt);
1099 ptm_lib_append_msg(ptm_hdl, out_ctxt, ZEBRA_PTM_CMD_STR,
1100 ZEBRA_PTM_GET_STATUS_CMD);
1101 ptm_lib_complete_msg(ptm_hdl, out_ctxt, ptm_cb.out_data, &len);
1102
1103 zebra_ptm_send_message(ptm_cb.out_data, len);
1104 }
950bd436 1105}
1106
d62a17ae 1107void zebra_ptm_reset_status(int ptm_disable)
950bd436 1108{
d62a17ae 1109 struct vrf *vrf;
d62a17ae 1110 struct interface *ifp;
1111 int send_linkup;
1112
a2addae8 1113 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id)
451fda4f 1114 FOR_ALL_INTERFACES (vrf, ifp) {
a2addae8
RW
1115 send_linkup = 0;
1116 if (ifp->ptm_enable) {
1117 if (!if_is_operative(ifp))
1118 send_linkup = 1;
1119
1120 if (ptm_disable)
1121 ifp->ptm_enable =
1122 ZEBRA_IF_PTM_ENABLE_OFF;
1123 ifp->ptm_status = ZEBRA_PTM_STATUS_UNKNOWN;
1124
1125 if (if_is_operative(ifp) && send_linkup) {
1126 if (IS_ZEBRA_DEBUG_EVENT)
1127 zlog_debug(
1128 "%s: Bringing up interface %s",
1129 __func__, ifp->name);
1130 if_up(ifp);
1131 }
d62a17ae 1132 }
1133 }
950bd436 1134}
986aa00f 1135
d62a17ae 1136void zebra_ptm_if_init(struct zebra_if *zebra_ifp)
986aa00f 1137{
d62a17ae 1138 zebra_ifp->ptm_enable = ZEBRA_IF_PTM_ENABLE_UNSPEC;
986aa00f 1139}
1140
d62a17ae 1141void zebra_ptm_if_set_ptm_state(struct interface *ifp,
1142 struct zebra_if *zebra_ifp)
986aa00f 1143{
d62a17ae 1144 if (zebra_ifp && zebra_ifp->ptm_enable != ZEBRA_IF_PTM_ENABLE_UNSPEC)
1145 ifp->ptm_enable = zebra_ifp->ptm_enable;
986aa00f 1146}
1147
d62a17ae 1148void zebra_ptm_if_write(struct vty *vty, struct zebra_if *zebra_ifp)
986aa00f 1149{
d62a17ae 1150 if (zebra_ifp->ptm_enable == ZEBRA_IF_PTM_ENABLE_OFF)
1151 vty_out(vty, " no ptm-enable\n");
986aa00f 1152}