]> git.proxmox.com Git - mirror_frr.git/blame - lib/bfd.h
Merge pull request #2726 from sworleys/Netlink-Filter-AFI
[mirror_frr.git] / lib / bfd.h
CommitLineData
7f342629
DS
1/**
2 * bfd.h: BFD definitions and structures
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#ifndef _ZEBRA_BFD_H
24#define _ZEBRA_BFD_H
25
68fe91d6 26#include "lib/json.h"
27
7f342629
DS
28#define BFD_DEF_MIN_RX 300
29#define BFD_MIN_MIN_RX 50
30#define BFD_MAX_MIN_RX 60000
31#define BFD_DEF_MIN_TX 300
32#define BFD_MIN_MIN_TX 50
33#define BFD_MAX_MIN_TX 60000
34#define BFD_DEF_DETECT_MULT 3
35#define BFD_MIN_DETECT_MULT 2
36#define BFD_MAX_DETECT_MULT 255
37
567b877d 38#define BFD_GBL_FLAG_IN_SHUTDOWN (1 << 0) /* The daemon in shutdown */
d62a17ae 39struct bfd_gbl {
d7c0a89a 40 uint16_t flags;
567b877d 41};
42
7f342629
DS
43#define BFD_FLAG_PARAM_CFG (1 << 0) /* parameters have been configured */
44#define BFD_FLAG_BFD_REG (1 << 1) /* Peer registered with BFD */
986aa00f 45#define BFD_FLAG_BFD_TYPE_MULTIHOP (1 << 2) /* Peer registered with BFD as multihop */
7f342629 46
68fe91d6 47#define BFD_STATUS_UNKNOWN (1 << 0) /* BFD session status never received */
48#define BFD_STATUS_DOWN (1 << 1) /* BFD session status is down */
49#define BFD_STATUS_UP (1 << 2) /* BFD session status is up */
50
986aa00f 51enum bfd_sess_type {
d62a17ae 52 BFD_TYPE_NOT_CONFIGURED,
53 BFD_TYPE_SINGLEHOP,
54 BFD_TYPE_MULTIHOP
986aa00f 55};
56
d62a17ae 57struct bfd_info {
d7c0a89a
QY
58 uint16_t flags;
59 uint8_t detect_mult;
60 uint32_t desired_min_tx;
61 uint32_t required_min_rx;
d62a17ae 62 time_t last_update;
d7c0a89a 63 uint8_t status;
d62a17ae 64 enum bfd_sess_type type;
7f342629
DS
65};
66
d62a17ae 67extern struct bfd_info *bfd_info_create(void);
7f342629 68
d62a17ae 69extern void bfd_info_free(struct bfd_info **bfd_info);
7f342629 70
d62a17ae 71extern int bfd_validate_param(struct vty *vty, const char *dm_str,
72 const char *rx_str, const char *tx_str,
d7c0a89a
QY
73 uint8_t *dm_val, uint32_t *rx_val,
74 uint32_t *tx_val);
7f342629 75
d7c0a89a
QY
76extern void bfd_set_param(struct bfd_info **bfd_info, uint32_t min_rx,
77 uint32_t min_tx, uint8_t detect_mult, int defaults,
d62a17ae 78 int *command);
79extern void bfd_peer_sendmsg(struct zclient *zclient, struct bfd_info *bfd_info,
80 int family, void *dst_ip, void *src_ip,
81 char *if_name, int ttl, int multihop, int command,
82 int set_flag, vrf_id_t vrf_id);
7f342629 83
d62a17ae 84extern const char *bfd_get_command_dbg_str(int command);
7f342629 85
d62a17ae 86extern struct interface *bfd_get_peer_info(struct stream *s, struct prefix *dp,
87 struct prefix *sp, int *status,
88 vrf_id_t vrf_id);
68fe91d6 89
d62a17ae 90const char *bfd_get_status_str(int status);
68fe91d6 91
d62a17ae 92extern void bfd_show_param(struct vty *vty, struct bfd_info *bfd_info,
d7c0a89a 93 int bfd_tag, int extra_space, uint8_t use_json,
d62a17ae 94 json_object *json_obj);
68fe91d6 95
d62a17ae 96extern void bfd_show_info(struct vty *vty, struct bfd_info *bfd_info,
d7c0a89a 97 int multihop, int extra_space, uint8_t use_json,
d62a17ae 98 json_object *json_obj);
7f342629 99
d62a17ae 100extern void bfd_client_sendmsg(struct zclient *zclient, int command);
055c4dfc 101
d62a17ae 102extern void bfd_gbl_init(void);
567b877d 103
d62a17ae 104extern void bfd_gbl_exit(void);
567b877d 105
7f342629 106#endif /* _ZEBRA_BFD_H */