]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_neighbor.h
staticd: Do not ready prefix for printing till it's decoded
[mirror_frr.git] / ospf6d / ospf6_neighbor.h
CommitLineData
718e3744 1/*
508e53e2 2 * Copyright (C) 2003 Yasuhiro Ohara
718e3744 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
718e3744 19 */
20
21#ifndef OSPF6_NEIGHBOR_H
22#define OSPF6_NEIGHBOR_H
23
3012671f
DL
24#include "hook.h"
25
508e53e2 26/* Debug option */
27extern unsigned char conf_debug_ospf6_neighbor;
28#define OSPF6_DEBUG_NEIGHBOR_STATE 0x01
29#define OSPF6_DEBUG_NEIGHBOR_EVENT 0x02
d62a17ae 30#define OSPF6_DEBUG_NEIGHBOR_ON(level) (conf_debug_ospf6_neighbor |= (level))
31#define OSPF6_DEBUG_NEIGHBOR_OFF(level) (conf_debug_ospf6_neighbor &= ~(level))
32#define IS_OSPF6_DEBUG_NEIGHBOR(level) \
33 (conf_debug_ospf6_neighbor & OSPF6_DEBUG_NEIGHBOR_##level)
508e53e2 34
718e3744 35/* Neighbor structure */
d62a17ae 36struct ospf6_neighbor {
37 /* Neighbor Router ID String */
ff44f570 38 char name[36];
718e3744 39
d62a17ae 40 /* OSPFv3 Interface this neighbor belongs to */
41 struct ospf6_interface *ospf6_if;
718e3744 42
d62a17ae 43 /* Neighbor state */
d7c0a89a 44 uint8_t state;
508e53e2 45
d62a17ae 46 /* timestamp of last changing state */
d7c0a89a 47 uint32_t state_change;
d62a17ae 48 struct timeval last_changed;
718e3744 49
d62a17ae 50 /* Neighbor Router ID */
d7c0a89a 51 uint32_t router_id;
718e3744 52
d62a17ae 53 /* Neighbor Interface ID */
54 ifindex_t ifindex;
508e53e2 55
d62a17ae 56 /* Router Priority of this neighbor */
d7c0a89a 57 uint8_t priority;
718e3744 58
d7c0a89a
QY
59 uint32_t drouter;
60 uint32_t bdrouter;
61 uint32_t prev_drouter;
62 uint32_t prev_bdrouter;
718e3744 63
d62a17ae 64 /* Options field (Capability) */
65 char options[3];
718e3744 66
d62a17ae 67 /* IPaddr of I/F on our side link */
68 struct in6_addr linklocal_addr;
718e3744 69
d62a17ae 70 /* For Database Exchange */
d7c0a89a
QY
71 uint8_t dbdesc_bits;
72 uint32_t dbdesc_seqnum;
d62a17ae 73 /* Last received Database Description packet */
74 struct ospf6_dbdesc dbdesc_last;
718e3744 75
d62a17ae 76 /* LS-list */
77 struct ospf6_lsdb *summary_list;
78 struct ospf6_lsdb *request_list;
79 struct ospf6_lsdb *retrans_list;
718e3744 80
d62a17ae 81 /* LSA list for message transmission */
82 struct ospf6_lsdb *dbdesc_list;
83 struct ospf6_lsdb *lsreq_list;
84 struct ospf6_lsdb *lsupdate_list;
85 struct ospf6_lsdb *lsack_list;
718e3744 86
d62a17ae 87 struct ospf6_lsa *last_ls_req;
eb82e9ee 88
d62a17ae 89 /* Inactivity timer */
90 struct thread *inactivity_timer;
718e3744 91
d62a17ae 92 /* Thread for sending message */
93 struct thread *thread_send_dbdesc;
94 struct thread *thread_send_lsreq;
95 struct thread *thread_send_lsupdate;
96 struct thread *thread_send_lsack;
68fe91d6 97
d62a17ae 98 /* BFD information */
99 void *bfd_info;
718e3744 100};
101
508e53e2 102/* Neighbor state */
103#define OSPF6_NEIGHBOR_DOWN 1
104#define OSPF6_NEIGHBOR_ATTEMPT 2
105#define OSPF6_NEIGHBOR_INIT 3
106#define OSPF6_NEIGHBOR_TWOWAY 4
107#define OSPF6_NEIGHBOR_EXSTART 5
108#define OSPF6_NEIGHBOR_EXCHANGE 6
109#define OSPF6_NEIGHBOR_LOADING 7
110#define OSPF6_NEIGHBOR_FULL 8
111
3d35ca48
DD
112/* Neighbor Events */
113#define OSPF6_NEIGHBOR_EVENT_NO_EVENT 0
114#define OSPF6_NEIGHBOR_EVENT_HELLO_RCVD 1
115#define OSPF6_NEIGHBOR_EVENT_TWOWAY_RCVD 2
116#define OSPF6_NEIGHBOR_EVENT_NEGOTIATION_DONE 3
117#define OSPF6_NEIGHBOR_EVENT_EXCHANGE_DONE 4
118#define OSPF6_NEIGHBOR_EVENT_LOADING_DONE 5
119#define OSPF6_NEIGHBOR_EVENT_ADJ_OK 6
120#define OSPF6_NEIGHBOR_EVENT_SEQNUMBER_MISMATCH 7
121#define OSPF6_NEIGHBOR_EVENT_BAD_LSREQ 8
122#define OSPF6_NEIGHBOR_EVENT_ONEWAY_RCVD 9
123#define OSPF6_NEIGHBOR_EVENT_INACTIVITY_TIMER 10
124#define OSPF6_NEIGHBOR_EVENT_MAX_EVENT 11
125
d62a17ae 126static const char *ospf6_neighbor_event_str[] = {
127 "NoEvent", "HelloReceived", "2-WayReceived", "NegotiationDone",
128 "ExchangeDone", "LoadingDone", "AdjOK?", "SeqNumberMismatch",
129 "BadLSReq", "1-WayReceived", "InactivityTimer",
130};
131
132static inline const char *ospf6_neighbor_event_string(int event)
3d35ca48 133{
d62a17ae 134#define OSPF6_NEIGHBOR_UNKNOWN_EVENT_STRING "UnknownEvent"
3d35ca48 135
d62a17ae 136 if (event < OSPF6_NEIGHBOR_EVENT_MAX_EVENT)
137 return ospf6_neighbor_event_str[event];
138 return OSPF6_NEIGHBOR_UNKNOWN_EVENT_STRING;
3d35ca48
DD
139}
140
6ac29a51 141extern const char *ospf6_neighbor_state_str[];
718e3744 142
6b0655a2 143
718e3744 144/* Function Prototypes */
d62a17ae 145int ospf6_neighbor_cmp(void *va, void *vb);
146void ospf6_neighbor_dbex_init(struct ospf6_neighbor *on);
508e53e2 147
d7c0a89a 148struct ospf6_neighbor *ospf6_neighbor_lookup(uint32_t,
d62a17ae 149 struct ospf6_interface *);
d7c0a89a 150struct ospf6_neighbor *ospf6_neighbor_create(uint32_t,
d62a17ae 151 struct ospf6_interface *);
152void ospf6_neighbor_delete(struct ospf6_neighbor *);
508e53e2 153
154/* Neighbor event */
d62a17ae 155extern int hello_received(struct thread *);
156extern int twoway_received(struct thread *);
157extern int negotiation_done(struct thread *);
158extern int exchange_done(struct thread *);
159extern int loading_done(struct thread *);
160extern int adj_ok(struct thread *);
161extern int seqnumber_mismatch(struct thread *);
162extern int bad_lsreq(struct thread *);
163extern int oneway_received(struct thread *);
164extern int inactivity_timer(struct thread *);
165extern void ospf6_check_nbr_loading(struct ospf6_neighbor *);
166
167extern void ospf6_neighbor_init(void);
168extern int config_write_ospf6_debug_neighbor(struct vty *vty);
169extern void install_element_ospf6_debug_neighbor(void);
718e3744 170
3012671f 171DECLARE_HOOK(ospf6_neighbor_change,
d62a17ae 172 (struct ospf6_neighbor * on, int state, int next_state),
173 (on, state, next_state))
3012671f 174
718e3744 175#endif /* OSPF6_NEIGHBOR_H */