]> git.proxmox.com Git - mirror_frr.git/blame - ospfd/ospf_dump.h
ospfd: Fix leak of stream
[mirror_frr.git] / ospfd / ospf_dump.h
CommitLineData
718e3744 1/*
2 * OSPFd dump routine.
3 * Copyright (C) 1999 Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 20 */
21
22#ifndef _ZEBRA_OSPF_DUMP_H
23#define _ZEBRA_OSPF_DUMP_H
24
25/* Debug Flags. */
26#define OSPF_DEBUG_HELLO 0x01
27#define OSPF_DEBUG_DB_DESC 0x02
28#define OSPF_DEBUG_LS_REQ 0x04
29#define OSPF_DEBUG_LS_UPD 0x08
30#define OSPF_DEBUG_LS_ACK 0x10
31#define OSPF_DEBUG_ALL 0x1f
32
33#define OSPF_DEBUG_SEND 0x01
34#define OSPF_DEBUG_RECV 0x02
35#define OSPF_DEBUG_SEND_RECV 0x03
36#define OSPF_DEBUG_DETAIL 0x04
37
38#define OSPF_DEBUG_ISM_STATUS 0x01
39#define OSPF_DEBUG_ISM_EVENTS 0x02
40#define OSPF_DEBUG_ISM_TIMERS 0x04
41#define OSPF_DEBUG_ISM 0x07
42#define OSPF_DEBUG_NSM_STATUS 0x01
43#define OSPF_DEBUG_NSM_EVENTS 0x02
44#define OSPF_DEBUG_NSM_TIMERS 0x04
45#define OSPF_DEBUG_NSM 0x07
46
47#define OSPF_DEBUG_LSA_GENERATE 0x01
48#define OSPF_DEBUG_LSA_FLOODING 0x02
49#define OSPF_DEBUG_LSA_INSTALL 0x04
50#define OSPF_DEBUG_LSA_REFRESH 0x08
51#define OSPF_DEBUG_LSA 0x0F
52
53#define OSPF_DEBUG_ZEBRA_INTERFACE 0x01
54#define OSPF_DEBUG_ZEBRA_REDISTRIBUTE 0x02
55#define OSPF_DEBUG_ZEBRA 0x03
56
57#define OSPF_DEBUG_EVENT 0x01
58#define OSPF_DEBUG_NSSA 0x02
16f1b9ee 59#define OSPF_DEBUG_TE 0x04
718e3744 60
61/* Macro for setting debug option. */
62#define CONF_DEBUG_PACKET_ON(a, b) conf_debug_ospf_packet[a] |= (b)
63#define CONF_DEBUG_PACKET_OFF(a, b) conf_debug_ospf_packet[a] &= ~(b)
64#define TERM_DEBUG_PACKET_ON(a, b) term_debug_ospf_packet[a] |= (b)
65#define TERM_DEBUG_PACKET_OFF(a, b) term_debug_ospf_packet[a] &= ~(b)
d62a17ae 66#define DEBUG_PACKET_ON(a, b) \
67 do { \
68 CONF_DEBUG_PACKET_ON(a, b); \
69 TERM_DEBUG_PACKET_ON(a, b); \
70 } while (0)
71#define DEBUG_PACKET_OFF(a, b) \
72 do { \
73 CONF_DEBUG_PACKET_OFF(a, b); \
74 TERM_DEBUG_PACKET_OFF(a, b); \
75 } while (0)
718e3744 76
77#define CONF_DEBUG_ON(a, b) conf_debug_ospf_ ## a |= (OSPF_DEBUG_ ## b)
78#define CONF_DEBUG_OFF(a, b) conf_debug_ospf_ ## a &= ~(OSPF_DEBUG_ ## b)
79#define TERM_DEBUG_ON(a, b) term_debug_ospf_ ## a |= (OSPF_DEBUG_ ## b)
80#define TERM_DEBUG_OFF(a, b) term_debug_ospf_ ## a &= ~(OSPF_DEBUG_ ## b)
d62a17ae 81#define DEBUG_ON(a, b) \
82 do { \
83 CONF_DEBUG_ON(a, b); \
84 TERM_DEBUG_ON(a, b); \
85 } while (0)
86#define DEBUG_OFF(a, b) \
87 do { \
88 CONF_DEBUG_OFF(a, b); \
89 TERM_DEBUG_OFF(a, b); \
90 } while (0)
718e3744 91
92/* Macro for checking debug option. */
d62a17ae 93#define IS_DEBUG_OSPF_PACKET(a, b) (term_debug_ospf_packet[a] & OSPF_DEBUG_##b)
94#define IS_DEBUG_OSPF(a, b) (term_debug_ospf_##a & OSPF_DEBUG_##b)
718e3744 95#define IS_DEBUG_OSPF_EVENT IS_DEBUG_OSPF(event,EVENT)
96
305100fc 97#define IS_DEBUG_OSPF_NSSA IS_DEBUG_OSPF(nssa,NSSA)
718e3744 98
16f1b9ee
OD
99#define IS_DEBUG_OSPF_TE IS_DEBUG_OSPF(te,TE)
100
d62a17ae 101#define IS_CONF_DEBUG_OSPF_PACKET(a, b) \
102 (conf_debug_ospf_packet[a] & OSPF_DEBUG_##b)
103#define IS_CONF_DEBUG_OSPF(a, b) (conf_debug_ospf_##a & OSPF_DEBUG_##b)
718e3744 104
105#ifdef ORIGINAL_CODING
d62a17ae 106#else /* ORIGINAL_CODING */
718e3744 107struct stream;
108#endif /* ORIGINAL_CODING */
109
110#define AREA_NAME(A) ospf_area_name_string ((A))
111#define IF_NAME(I) ospf_if_name_string ((I))
112
113/* Extern debug flag. */
114extern unsigned long term_debug_ospf_packet[];
115extern unsigned long term_debug_ospf_event;
116extern unsigned long term_debug_ospf_ism;
117extern unsigned long term_debug_ospf_nsm;
118extern unsigned long term_debug_ospf_lsa;
119extern unsigned long term_debug_ospf_zebra;
120extern unsigned long term_debug_ospf_nssa;
16f1b9ee 121extern unsigned long term_debug_ospf_te;
718e3744 122
123/* Message Strings. */
718e3744 124extern char *ospf_lsa_type_str[];
125
126/* Prototypes. */
d62a17ae 127extern const char *ospf_area_name_string(struct ospf_area *);
128extern const char *ospf_area_desc_string(struct ospf_area *);
129extern const char *ospf_if_name_string(struct ospf_interface *);
130extern void ospf_nbr_state_message(struct ospf_neighbor *, char *, size_t);
131extern const char *ospf_timer_dump(struct thread *, char *, size_t);
132extern const char *ospf_timeval_dump(struct timeval *, char *, size_t);
133extern void ospf_ip_header_dump(struct ip *);
134extern void ospf_packet_dump(struct stream *);
135extern void debug_init(void);
718e3744 136
649654ab 137/* Appropriate buffer size to use with ospf_timer_dump and ospf_timeval_dump: */
138#define OSPF_TIME_DUMP_SIZE 16
139
718e3744 140#endif /* _ZEBRA_OSPF_DUMP_H */