]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_debug.h
Merge pull request #2035 from vincentbernat/fix/no-etag-esi-ignore
[mirror_frr.git] / bgpd / bgp_debug.h
1 /* BGP message debug header.
2 * Copyright (C) 1996, 97, 98 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 *
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
21 #ifndef _QUAGGA_BGP_DEBUG_H
22 #define _QUAGGA_BGP_DEBUG_H
23
24 #include "bgp_attr.h"
25 #include "bgp_updgrp.h"
26
27 /* sort of packet direction */
28 #define DUMP_ON 1
29 #define DUMP_SEND 2
30 #define DUMP_RECV 4
31
32 /* for dump_update */
33 #define DUMP_WITHDRAW 8
34 #define DUMP_NLRI 16
35
36 /* dump detail */
37 #define DUMP_DETAIL 32
38
39 /* RD + Prefix + Path-Id */
40 #define BGP_PRD_PATH_STRLEN (PREFIX_STRLEN + RD_ADDRSTRLEN + 20)
41
42 extern int dump_open;
43 extern int dump_update;
44 extern int dump_keepalive;
45 extern int dump_notify;
46
47 extern int Debug_Event;
48 extern int Debug_Keepalive;
49 extern int Debug_Update;
50 extern int Debug_Radix;
51
52 #define NLRI 1
53 #define WITHDRAW 2
54 #define NO_OPT 3
55 #define SEND 4
56 #define RECV 5
57 #define DETAIL 6
58
59 /* Prototypes. */
60 extern void bgp_debug_init(void);
61 extern void bgp_packet_dump(struct stream *);
62
63 extern int debug(unsigned int option);
64
65 extern unsigned long conf_bgp_debug_as4;
66 extern unsigned long conf_bgp_debug_neighbor_events;
67 extern unsigned long conf_bgp_debug_packet;
68 extern unsigned long conf_bgp_debug_keepalive;
69 extern unsigned long conf_bgp_debug_update;
70 extern unsigned long conf_bgp_debug_bestpath;
71 extern unsigned long conf_bgp_debug_zebra;
72 extern unsigned long conf_bgp_debug_allow_martians;
73 extern unsigned long conf_bgp_debug_nht;
74 extern unsigned long conf_bgp_debug_update_groups;
75 extern unsigned long conf_bgp_debug_vpn;
76 extern unsigned long conf_bgp_debug_flowspec;
77 extern unsigned long conf_bgp_debug_labelpool;
78
79 extern unsigned long term_bgp_debug_as4;
80 extern unsigned long term_bgp_debug_neighbor_events;
81 extern unsigned long term_bgp_debug_packet;
82 extern unsigned long term_bgp_debug_keepalive;
83 extern unsigned long term_bgp_debug_update;
84 extern unsigned long term_bgp_debug_bestpath;
85 extern unsigned long term_bgp_debug_zebra;
86 extern unsigned long term_bgp_debug_allow_martians;
87 extern unsigned long term_bgp_debug_nht;
88 extern unsigned long term_bgp_debug_update_groups;
89 extern unsigned long term_bgp_debug_vpn;
90 extern unsigned long term_bgp_debug_flowspec;
91 extern unsigned long term_bgp_debug_labelpool;
92
93 extern struct list *bgp_debug_neighbor_events_peers;
94 extern struct list *bgp_debug_keepalive_peers;
95 extern struct list *bgp_debug_update_in_peers;
96 extern struct list *bgp_debug_update_out_peers;
97 extern struct list *bgp_debug_update_prefixes;
98 extern struct list *bgp_debug_bestpath_prefixes;
99 extern struct list *bgp_debug_zebra_prefixes;
100
101 struct bgp_debug_filter {
102 char *host;
103 struct prefix *p;
104 };
105
106 #define BGP_DEBUG_AS4 0x01
107 #define BGP_DEBUG_AS4_SEGMENT 0x02
108
109 #define BGP_DEBUG_BESTPATH 0x01
110 #define BGP_DEBUG_NEIGHBOR_EVENTS 0x01
111 #define BGP_DEBUG_PACKET 0x01
112 #define BGP_DEBUG_KEEPALIVE 0x01
113 #define BGP_DEBUG_UPDATE_IN 0x01
114 #define BGP_DEBUG_UPDATE_OUT 0x02
115 #define BGP_DEBUG_UPDATE_PREFIX 0x04
116 #define BGP_DEBUG_ZEBRA 0x01
117 #define BGP_DEBUG_ALLOW_MARTIANS 0x01
118 #define BGP_DEBUG_NHT 0x01
119 #define BGP_DEBUG_UPDATE_GROUPS 0x01
120 #define BGP_DEBUG_VPN_LEAK_FROM_VRF 0x01
121 #define BGP_DEBUG_VPN_LEAK_TO_VRF 0x02
122 #define BGP_DEBUG_VPN_LEAK_RMAP_EVENT 0x04
123 #define BGP_DEBUG_VPN_LEAK_LABEL 0x08
124 #define BGP_DEBUG_FLOWSPEC 0x01
125 #define BGP_DEBUG_LABELPOOL 0x01
126
127 #define BGP_DEBUG_PACKET_SEND 0x01
128 #define BGP_DEBUG_PACKET_SEND_DETAIL 0x02
129
130 #define CONF_DEBUG_ON(a, b) (conf_bgp_debug_ ## a |= (BGP_DEBUG_ ## b))
131 #define CONF_DEBUG_OFF(a, b) (conf_bgp_debug_ ## a &= ~(BGP_DEBUG_ ## b))
132
133 #define TERM_DEBUG_ON(a, b) (term_bgp_debug_ ## a |= (BGP_DEBUG_ ## b))
134 #define TERM_DEBUG_OFF(a, b) (term_bgp_debug_ ## a &= ~(BGP_DEBUG_ ## b))
135
136 #define DEBUG_ON(a, b) \
137 do { \
138 CONF_DEBUG_ON(a, b); \
139 TERM_DEBUG_ON(a, b); \
140 } while (0)
141 #define DEBUG_OFF(a, b) \
142 do { \
143 CONF_DEBUG_OFF(a, b); \
144 TERM_DEBUG_OFF(a, b); \
145 } while (0)
146
147 #define BGP_DEBUG(a, b) (term_bgp_debug_ ## a & BGP_DEBUG_ ## b)
148 #define CONF_BGP_DEBUG(a, b) (conf_bgp_debug_ ## a & BGP_DEBUG_ ## b)
149
150 extern const char *bgp_type_str[];
151 extern const char *pmsi_tnltype_str[];
152
153 extern int bgp_dump_attr(struct attr *, char *, size_t);
154 extern int bgp_debug_peer_updout_enabled(char *host);
155 extern const char *bgp_notify_code_str(char);
156 extern const char *bgp_notify_subcode_str(char, char);
157 extern void bgp_notify_print(struct peer *, struct bgp_notify *, const char *);
158
159 extern const struct message bgp_status_msg[];
160 extern int bgp_debug_neighbor_events(struct peer *peer);
161 extern int bgp_debug_keepalive(struct peer *peer);
162 extern int bgp_debug_update(struct peer *peer, struct prefix *p,
163 struct update_group *updgrp, unsigned int inbound);
164 extern int bgp_debug_bestpath(struct prefix *p);
165 extern int bgp_debug_zebra(struct prefix *p);
166
167 extern int bgp_debug_count(void);
168 extern const char *bgp_debug_rdpfxpath2str(afi_t, safi_t, struct prefix_rd *,
169 union prefixconstptr, mpls_label_t *,
170 uint32_t, int, uint32_t, char *,
171 int);
172 const char *bgp_notify_admin_message(char *buf, size_t bufsz, uint8_t *data,
173 size_t datalen);
174
175 #endif /* _QUAGGA_BGP_DEBUG_H */