[cleanup] Make command nodes static
[jleu-quagga.git] / ospfd / ospf_interface.h
blob79b178d8543e88f4a72287ab7ea2a340c49b5bdf
1 /*
2 * OSPF Interface functions.
3 * Copyright (C) 1999 Toshiaki Takada
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
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.
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
23 #ifndef _ZEBRA_OSPF_INTERFACE_H
24 #define _ZEBRA_OSPF_INTERFACE_H
26 #include "ospfd/ospf_packet.h"
27 #include "ospfd/ospf_spf.h"
29 #define IF_OSPF_IF_INFO(I) ((struct ospf_if_info *)((I)->info))
30 #define IF_DEF_PARAMS(I) (IF_OSPF_IF_INFO (I)->def_params)
31 #define IF_OIFS(I) (IF_OSPF_IF_INFO (I)->oifs)
32 #define IF_OIFS_PARAMS(I) (IF_OSPF_IF_INFO (I)->params)
34 #define OSPF_IF_PARAM_CONFIGURED(S, P) ((S) && (S)->P##__config)
35 #define OSPF_IF_PARAM(O, P) \
36 (OSPF_IF_PARAM_CONFIGURED ((O)->params, P)?\
37 (O)->params->P:IF_DEF_PARAMS((O)->ifp)->P)
39 #define DECLARE_IF_PARAM(T, P) T P; u_char P##__config:1
40 #define UNSET_IF_PARAM(S, P) ((S)->P##__config) = 0
41 #define SET_IF_PARAM(S, P) ((S)->P##__config) = 1
43 struct ospf_if_params
45 DECLARE_IF_PARAM (u_int32_t, transmit_delay); /* Interface Transmisson Delay */
46 DECLARE_IF_PARAM (u_int32_t, output_cost_cmd);/* Command Interface Output Cost */
47 DECLARE_IF_PARAM (u_int32_t, retransmit_interval); /* Retransmission Interval */
48 DECLARE_IF_PARAM (u_char, passive_interface); /* OSPF Interface is passive: no sending or receiving (no need to join multicast groups) */
49 DECLARE_IF_PARAM (u_char, priority); /* OSPF Interface priority */
50 DECLARE_IF_PARAM (u_char, type); /* type of interface */
51 #define OSPF_IF_ACTIVE 0
52 #define OSPF_IF_PASSIVE 1
54 #define OSPF_IF_PASSIVE_STATUS(O) \
55 (OSPF_IF_PARAM_CONFIGURED((O)->params, passive_interface) ? \
56 (O)->params->passive_interface : \
57 (OSPF_IF_PARAM_CONFIGURED(IF_DEF_PARAMS((O)->ifp), passive_interface) ? \
58 IF_DEF_PARAMS((O)->ifp)->passive_interface : \
59 (O)->ospf->passive_interface_default))
61 DECLARE_IF_PARAM (u_int32_t, v_hello); /* Hello Interval */
62 DECLARE_IF_PARAM (u_int32_t, v_wait); /* Router Dead Interval */
64 /* MTU mismatch check (see RFC2328, chap 10.6) */
65 DECLARE_IF_PARAM (u_char, mtu_ignore);
67 /* Fast-Hellos */
68 DECLARE_IF_PARAM (u_char, fast_hello);
70 /* Authentication data. */
71 u_char auth_simple[OSPF_AUTH_SIMPLE_SIZE + 1]; /* Simple password. */
72 u_char auth_simple__config:1;
74 DECLARE_IF_PARAM (struct list *, auth_crypt); /* List of Auth cryptographic data. */
75 DECLARE_IF_PARAM (int, auth_type); /* OSPF authentication type */
78 enum
80 MEMBER_ALLROUTERS = 0,
81 MEMBER_DROUTERS,
82 MEMBER_MAX,
85 struct ospf_if_info
87 struct ospf_if_params *def_params;
88 struct route_table *params;
89 struct route_table *oifs;
90 unsigned int membership_counts[MEMBER_MAX]; /* multicast group refcnts */
93 struct ospf_interface;
95 struct ospf_vl_data
97 struct in_addr vl_peer; /* Router-ID of the peer for VLs. */
98 struct in_addr vl_area_id; /* Transit area for this VL. */
99 int format; /* area ID format */
100 struct ospf_interface *vl_oi; /* Interface data structure for the VL. */
101 struct vertex_nexthop nexthop; /* Nexthop router and oi to use */
102 struct in_addr peer_addr; /* Address used to reach the peer. */
103 u_char flags;
107 #define OSPF_VL_MAX_COUNT 256
108 #define OSPF_VL_MTU 1500
110 #define OSPF_VL_FLAG_APPROVED 0x01
112 struct crypt_key
114 u_char key_id;
115 u_char auth_key[OSPF_AUTH_MD5_SIZE + 1];
118 /* OSPF interface structure. */
119 struct ospf_interface
121 /* This interface's parent ospf instance. */
122 struct ospf *ospf;
124 /* OSPF Area. */
125 struct ospf_area *area;
127 /* Interface data from zebra. */
128 struct interface *ifp;
129 struct ospf_vl_data *vl_data; /* Data for Virtual Link */
131 /* Packet send buffer. */
132 struct ospf_fifo *obuf; /* Output queue */
134 /* OSPF Network Type. */
135 u_char type;
136 #define OSPF_IFTYPE_NONE 0
137 #define OSPF_IFTYPE_POINTOPOINT 1
138 #define OSPF_IFTYPE_BROADCAST 2
139 #define OSPF_IFTYPE_NBMA 3
140 #define OSPF_IFTYPE_POINTOMULTIPOINT 4
141 #define OSPF_IFTYPE_VIRTUALLINK 5
142 #define OSPF_IFTYPE_LOOPBACK 6
143 #define OSPF_IFTYPE_MAX 7
145 /* State of Interface State Machine. */
146 u_char state;
148 /* To which multicast groups do we currently belong? */
149 u_char multicast_memberships;
150 #define OI_MEMBER_FLAG(M) (1 << (M))
151 #define OI_MEMBER_COUNT(O,M) (IF_OSPF_IF_INFO(oi->ifp)->membership_counts[(M)])
152 #define OI_MEMBER_CHECK(O,M) \
153 (CHECK_FLAG((O)->multicast_memberships, OI_MEMBER_FLAG(M)))
154 #define OI_MEMBER_JOINED(O,M) \
155 do { \
156 SET_FLAG ((O)->multicast_memberships, OI_MEMBER_FLAG(M)); \
157 IF_OSPF_IF_INFO((O)->ifp)->membership_counts[(M)]++; \
158 } while (0)
159 #define OI_MEMBER_LEFT(O,M) \
160 do { \
161 UNSET_FLAG ((O)->multicast_memberships, OI_MEMBER_FLAG(M)); \
162 IF_OSPF_IF_INFO((O)->ifp)->membership_counts[(M)]--; \
163 } while (0)
165 struct prefix *address; /* Interface prefix */
166 struct connected *connected; /* Pointer to connected */
168 /* Configured varables. */
169 struct ospf_if_params *params;
170 u_int32_t crypt_seqnum; /* Cryptographic Sequence Number */
171 u_int32_t output_cost; /* Acutual Interface Output Cost */
173 /* Neighbor information. */
174 struct route_table *nbrs; /* OSPF Neighbor List */
175 struct ospf_neighbor *nbr_self; /* Neighbor Self */
176 #define DR(I) ((I)->nbr_self->d_router)
177 #define BDR(I) ((I)->nbr_self->bd_router)
178 #define OPTIONS(I) ((I)->nbr_self->options)
179 #define PRIORITY(I) ((I)->nbr_self->priority)
181 /* List of configured NBMA neighbor. */
182 struct list *nbr_nbma;
184 /* self-originated LSAs. */
185 struct ospf_lsa *network_lsa_self; /* network-LSA. */
186 #ifdef HAVE_OPAQUE_LSA
187 struct list *opaque_lsa_self; /* Type-9 Opaque-LSAs */
188 #endif /* HAVE_OPAQUE_LSA */
190 struct route_table *ls_upd_queue;
192 struct list *ls_ack; /* Link State Acknowledgment list. */
194 struct
196 struct list *ls_ack;
197 struct in_addr dst;
198 } ls_ack_direct;
200 /* Timer values. */
201 u_int32_t v_ls_ack; /* Delayed Link State Acknowledgment */
203 /* Threads. */
204 struct thread *t_hello; /* timer */
205 struct thread *t_wait; /* timer */
206 struct thread *t_ls_ack; /* timer */
207 struct thread *t_ls_ack_direct; /* event */
208 struct thread *t_ls_upd_event; /* event */
209 struct thread *t_network_lsa_self; /* self-originated network-LSA
210 reflesh thread. timer */
211 #ifdef HAVE_OPAQUE_LSA
212 struct thread *t_opaque_lsa_self; /* Type-9 Opaque-LSAs */
213 #endif /* HAVE_OPAQUE_LSA */
215 int on_write_q;
217 /* Statistics fields. */
218 u_int32_t hello_in; /* Hello message input count. */
219 u_int32_t hello_out; /* Hello message output count. */
220 u_int32_t db_desc_in; /* database desc. message input count. */
221 u_int32_t db_desc_out; /* database desc. message output count. */
222 u_int32_t ls_req_in; /* LS request message input count. */
223 u_int32_t ls_req_out; /* LS request message output count. */
224 u_int32_t ls_upd_in; /* LS update message input count. */
225 u_int32_t ls_upd_out; /* LS update message output count. */
226 u_int32_t ls_ack_in; /* LS Ack message input count. */
227 u_int32_t ls_ack_out; /* LS Ack message output count. */
228 u_int32_t discarded; /* discarded input count by error. */
229 u_int32_t state_change; /* Number of status change. */
231 u_int32_t full_nbrs;
234 /* Prototypes. */
235 extern char *ospf_if_name (struct ospf_interface *);
236 extern struct ospf_interface *ospf_if_new (struct ospf *, struct interface *,
237 struct prefix *);
238 extern void ospf_if_cleanup (struct ospf_interface *);
239 extern void ospf_if_free (struct ospf_interface *);
240 extern int ospf_if_up (struct ospf_interface *);
241 extern int ospf_if_down (struct ospf_interface *);
243 extern int ospf_if_is_up (struct ospf_interface *);
244 extern struct ospf_interface *ospf_if_exists (struct ospf_interface *);
245 extern struct ospf_interface *ospf_if_lookup_by_local_addr (struct ospf *,
246 struct interface
248 struct in_addr);
249 extern struct ospf_interface *ospf_if_lookup_by_prefix (struct ospf *,
250 struct prefix_ipv4 *);
251 extern struct ospf_interface *ospf_if_addr_local (struct in_addr);
252 extern struct ospf_interface *ospf_if_lookup_recv_if (struct ospf *,
253 struct in_addr);
254 extern struct ospf_interface *ospf_if_is_configured (struct ospf *,
255 struct in_addr *);
257 extern struct ospf_if_params *ospf_lookup_if_params (struct interface *,
258 struct in_addr);
259 extern struct ospf_if_params *ospf_get_if_params (struct interface *,
260 struct in_addr);
261 extern void ospf_del_if_params (struct ospf_if_params *);
262 extern void ospf_free_if_params (struct interface *, struct in_addr);
263 extern void ospf_if_update_params (struct interface *, struct in_addr);
265 extern int ospf_if_new_hook (struct interface *);
266 extern void ospf_if_init (void);
267 extern void ospf_if_stream_set (struct ospf_interface *);
268 extern void ospf_if_stream_unset (struct ospf_interface *);
269 extern void ospf_if_reset_variables (struct ospf_interface *);
270 extern int ospf_if_is_enable (struct ospf_interface *);
271 extern int ospf_if_get_output_cost (struct ospf_interface *);
272 extern void ospf_if_recalculate_output_cost (struct interface *);
274 /* Simulate down/up on the interface. */
275 extern void ospf_if_reset (struct interface *);
277 extern struct ospf_interface *ospf_vl_new (struct ospf *,
278 struct ospf_vl_data *);
279 extern struct ospf_vl_data *ospf_vl_data_new (struct ospf_area *,
280 struct in_addr);
281 extern struct ospf_vl_data *ospf_vl_lookup (struct ospf *, struct ospf_area *,
282 struct in_addr);
283 extern void ospf_vl_data_free (struct ospf_vl_data *);
284 extern void ospf_vl_add (struct ospf *, struct ospf_vl_data *);
285 extern void ospf_vl_delete (struct ospf *, struct ospf_vl_data *);
286 extern void ospf_vl_up_check (struct ospf_area *, struct in_addr,
287 struct vertex *);
288 extern void ospf_vl_unapprove (struct ospf *);
289 extern void ospf_vl_shut_unapproved (struct ospf *);
290 extern int ospf_full_virtual_nbrs (struct ospf_area *);
291 extern int ospf_vls_in_area (struct ospf_area *);
293 extern struct crypt_key *ospf_crypt_key_lookup (struct list *, u_char);
294 extern struct crypt_key *ospf_crypt_key_new (void);
295 extern void ospf_crypt_key_add (struct list *, struct crypt_key *);
296 extern int ospf_crypt_key_delete (struct list *, u_char);
298 extern u_char ospf_default_iftype (struct interface *ifp);
300 /* Set all multicast memberships appropriately based on the type and
301 state of the interface. */
302 extern void ospf_if_set_multicast (struct ospf_interface *);
304 #endif /* _ZEBRA_OSPF_INTERFACE_H */