]>
git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_lsa.h
2 * OSPF Link State Advertisement
3 * Copyright (C) 1999, 2000 Toshiaki Takada
5 * This file is part of GNU Zebra.
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
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 Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 #ifndef _ZEBRA_OSPF_LSA_H
24 #define _ZEBRA_OSPF_LSA_H
28 /* OSPF LSA Range definition. */
29 #define OSPF_MIN_LSA 1 /* begin range here */
30 #define OSPF_MAX_LSA 12
32 /* OSPF LSA Type definition. */
33 #define OSPF_UNKNOWN_LSA 0
34 #define OSPF_ROUTER_LSA 1
35 #define OSPF_NETWORK_LSA 2
36 #define OSPF_SUMMARY_LSA 3
37 #define OSPF_ASBR_SUMMARY_LSA 4
38 #define OSPF_AS_EXTERNAL_LSA 5
39 #define OSPF_GROUP_MEMBER_LSA 6 /* Not supported. */
40 #define OSPF_AS_NSSA_LSA 7
41 #define OSPF_EXTERNAL_ATTRIBUTES_LSA 8 /* Not supported. */
42 #define OSPF_OPAQUE_LINK_LSA 9
43 #define OSPF_OPAQUE_AREA_LSA 10
44 #define OSPF_OPAQUE_AS_LSA 11
46 #define OSPF_LSA_HEADER_SIZE 20U
47 #define OSPF_ROUTER_LSA_LINK_SIZE 12U
48 #define OSPF_ROUTER_LSA_TOS_SIZE 4U
49 #define OSPF_MAX_LSA_SIZE 1500U
51 /* AS-external-LSA refresh method. */
52 #define LSA_REFRESH_IF_CHANGED 0
53 #define LSA_REFRESH_FORCE 1
55 /* OSPF LSA header. */
62 struct in_addr adv_router
;
71 /* LSA origination flag. */
73 #define OSPF_LSA_SELF 0x01
74 #define OSPF_LSA_SELF_CHECKED 0x02
75 #define OSPF_LSA_RECEIVED 0x04
76 #define OSPF_LSA_APPROVED 0x08
77 #define OSPF_LSA_DISCARD 0x10
78 #define OSPF_LSA_LOCAL_XLT 0x20
79 #define OSPF_LSA_PREMATURE_AGE 0x40
80 #define OSPF_LSA_IN_MAXAGE 0x80
83 struct lsa_header
*data
;
85 /* Received time stamp. */
86 struct timeval tv_recv
;
88 /* Last time it was originated */
89 struct timeval tv_orig
;
91 /* All of reference count, also lock to remove. */
94 /* Flags for the SPF calculation. */
96 #define LSA_SPF_NOT_EXPLORED -1
97 #define LSA_SPF_IN_SPFTREE -2
98 /* If stat >= 0, stat is LSA position in candidates heap. */
100 /* References to this LSA in neighbor retransmission lists*/
101 int retransmit_counter
;
103 /* Area the LSA belongs to, may be NULL if AS-external-LSA. */
104 struct ospf_area
*area
;
107 struct ospf_lsdb
*lsdb
;
112 /* Refreshement List or Queue */
115 /* For Type-9 Opaque-LSAs */
116 struct ospf_interface
*oi
;
119 /* OSPF LSA Link Type. */
120 #define LSA_LINK_TYPE_POINTOPOINT 1
121 #define LSA_LINK_TYPE_TRANSIT 2
122 #define LSA_LINK_TYPE_STUB 3
123 #define LSA_LINK_TYPE_VIRTUALLINK 4
125 /* OSPF Router LSA Flag. */
126 #define ROUTER_LSA_BORDER 0x01 /* The router is an ABR */
127 #define ROUTER_LSA_EXTERNAL 0x02 /* The router is an ASBR */
128 #define ROUTER_LSA_VIRTUAL 0x04 /* The router has a VL in this area */
129 #define ROUTER_LSA_NT 0x10 /* The routers always translates Type-7 */
130 #define ROUTER_LSA_SHORTCUT 0x20 /* Shortcut-ABR specific flag */
132 #define IS_ROUTER_LSA_VIRTUAL(x) ((x)->flags & ROUTER_LSA_VIRTUAL)
133 #define IS_ROUTER_LSA_EXTERNAL(x) ((x)->flags & ROUTER_LSA_EXTERNAL)
134 #define IS_ROUTER_LSA_BORDER(x) ((x)->flags & ROUTER_LSA_BORDER)
135 #define IS_ROUTER_LSA_SHORTCUT(x) ((x)->flags & ROUTER_LSA_SHORTCUT)
136 #define IS_ROUTER_LSA_NT(x) ((x)->flags & ROUTER_LSA_NT)
138 /* OSPF Router-LSA Link information. */
139 struct router_lsa_link
141 struct in_addr link_id
;
142 struct in_addr link_data
;
151 /* OSPF Router-LSAs structure. */
152 #define OSPF_ROUTER_LSA_MIN_SIZE 4U /* w/0 link descriptors */
153 /* There is an edge case, when number of links in a Router-LSA may be 0 without
154 breaking the specification. A router, which has no other links to backbone
155 area besides one virtual link, will not put any VL descriptor blocks into
156 the Router-LSA generated for area 0 until a full adjacency over the VL is
157 reached (RFC2328 12.4.1.3). In this case the Router-LSA initially received
158 by the other end of the VL will have 0 link descriptor blocks, but soon will
159 be replaced with the next revision having 1 descriptor block. */
162 struct lsa_header header
;
168 struct in_addr link_id
;
169 struct in_addr link_data
;
176 /* OSPF Network-LSAs structure. */
177 #define OSPF_NETWORK_LSA_MIN_SIZE 8U /* w/1 router-ID */
180 struct lsa_header header
;
182 struct in_addr routers
[1];
185 /* OSPF Summary-LSAs structure. */
186 #define OSPF_SUMMARY_LSA_MIN_SIZE 8U /* w/1 TOS metric block */
189 struct lsa_header header
;
195 /* OSPF AS-external-LSAs structure. */
196 #define OSPF_AS_EXTERNAL_LSA_MIN_SIZE 16U /* w/1 TOS forwarding block */
197 struct as_external_lsa
199 struct lsa_header header
;
205 struct in_addr fwd_addr
;
210 #include "ospfd/ospf_opaque.h"
213 #define GET_METRIC(x) get_metric(x)
214 #define IS_EXTERNAL_METRIC(x) ((x) & 0x80)
216 #define GET_AGE(x) (ntohs ((x)->data->ls_age) + time (NULL) - (x)->tv_recv)
217 #define LS_AGE(x) (OSPF_LSA_MAXAGE < get_age(x) ? \
218 OSPF_LSA_MAXAGE : get_age(x))
219 #define IS_LSA_SELF(L) (CHECK_FLAG ((L)->flags, OSPF_LSA_SELF))
220 #define IS_LSA_MAXAGE(L) (LS_AGE ((L)) == OSPF_LSA_MAXAGE)
222 #define OSPF_LSA_UPDATE_DELAY 2
224 #define OSPF_LSA_UPDATE_TIMER_ON(T,F) \
226 (T) = thread_add_timer (master, (F), 0, 2)
229 /* XXX: Eek, time functions, similar are in lib/thread.c */
230 extern struct timeval
int2tv (int);
231 extern struct timeval
msec2tv (int);
233 extern int get_age (struct ospf_lsa
*);
234 extern u_int16_t
ospf_lsa_checksum (struct lsa_header
*);
235 extern int ospf_lsa_checksum_valid (struct lsa_header
*);
236 extern int ospf_lsa_refresh_delay (struct ospf_lsa
*);
238 extern const char *dump_lsa_key (struct ospf_lsa
*);
239 extern u_int32_t
lsa_seqnum_increment (struct ospf_lsa
*);
240 extern void lsa_header_set (struct stream
*, u_char
, u_char
, struct in_addr
,
242 extern struct ospf_neighbor
*ospf_nbr_lookup_ptop (struct ospf_interface
*);
243 extern int ospf_check_nbr_status (struct ospf
*);
245 /* Prototype for LSA primitive. */
246 extern struct ospf_lsa
*ospf_lsa_new (void);
247 extern struct ospf_lsa
*ospf_lsa_dup (struct ospf_lsa
*);
248 extern void ospf_lsa_free (struct ospf_lsa
*);
249 extern struct ospf_lsa
*ospf_lsa_lock (struct ospf_lsa
*);
250 extern void ospf_lsa_unlock (struct ospf_lsa
**);
251 extern void ospf_lsa_discard (struct ospf_lsa
*);
252 extern int ospf_lsa_flush_schedule (struct ospf
*, struct ospf_lsa
*);
253 extern struct lsa_header
*ospf_lsa_data_new (size_t);
254 extern struct lsa_header
*ospf_lsa_data_dup (struct lsa_header
*);
255 extern void ospf_lsa_data_free (struct lsa_header
*);
257 /* Prototype for various LSAs */
258 extern int ospf_router_lsa_update (struct ospf
*);
259 extern int ospf_router_lsa_update_area (struct ospf_area
*);
261 extern void ospf_network_lsa_update (struct ospf_interface
*);
263 extern struct ospf_lsa
*ospf_summary_lsa_originate (struct prefix_ipv4
*, u_int32_t
,
265 extern struct ospf_lsa
*ospf_summary_asbr_lsa_originate (struct prefix_ipv4
*,
269 extern struct ospf_lsa
*ospf_lsa_install (struct ospf
*,
270 struct ospf_interface
*, struct ospf_lsa
*);
272 extern void ospf_nssa_lsa_flush (struct ospf
*ospf
, struct prefix_ipv4
*p
);
273 extern void ospf_external_lsa_flush (struct ospf
*, u_char
, struct prefix_ipv4
*,
274 ifindex_t
/* , struct in_addr nexthop */);
276 extern struct in_addr
ospf_get_ip_from_ifp (struct ospf_interface
*);
278 extern struct ospf_lsa
*ospf_external_lsa_originate (struct ospf
*, struct external_info
*);
279 extern int ospf_external_lsa_originate_timer (struct thread
*);
280 extern int ospf_default_originate_timer (struct thread
*);
281 extern struct ospf_lsa
*ospf_lsa_lookup (struct ospf_area
*, u_int32_t
,
282 struct in_addr
, struct in_addr
);
283 extern struct ospf_lsa
*ospf_lsa_lookup_by_id (struct ospf_area
*,
286 extern struct ospf_lsa
*ospf_lsa_lookup_by_header (struct ospf_area
*,
287 struct lsa_header
*);
288 extern int ospf_lsa_more_recent (struct ospf_lsa
*, struct ospf_lsa
*);
289 extern int ospf_lsa_different (struct ospf_lsa
*, struct ospf_lsa
*);
290 extern void ospf_flush_self_originated_lsas_now (struct ospf
*);
292 extern int ospf_lsa_is_self_originated (struct ospf
*, struct ospf_lsa
*);
294 extern struct ospf_lsa
*ospf_lsa_lookup_by_prefix (struct ospf_lsdb
*, u_char
,
295 struct prefix_ipv4
*,
298 extern void ospf_lsa_maxage (struct ospf
*, struct ospf_lsa
*);
299 extern u_int32_t
get_metric (u_char
*);
301 extern int ospf_lsa_maxage_walker (struct thread
*);
302 extern struct ospf_lsa
*ospf_lsa_refresh (struct ospf
*, struct ospf_lsa
*);
304 extern void ospf_external_lsa_refresh_default (struct ospf
*);
306 extern void ospf_external_lsa_refresh_type (struct ospf
*, u_char
, u_short
, int);
307 extern struct ospf_lsa
*ospf_external_lsa_refresh (struct ospf
*,
309 struct external_info
*,
311 extern struct in_addr
ospf_lsa_unique_id (struct ospf
*, struct ospf_lsdb
*, u_char
,
312 struct prefix_ipv4
*);
313 extern void ospf_schedule_lsa_flood_area (struct ospf_area
*, struct ospf_lsa
*);
314 extern void ospf_schedule_lsa_flush_area (struct ospf_area
*, struct ospf_lsa
*);
316 extern void ospf_refresher_register_lsa (struct ospf
*, struct ospf_lsa
*);
317 extern void ospf_refresher_unregister_lsa (struct ospf
*, struct ospf_lsa
*);
318 extern int ospf_lsa_refresh_walker (struct thread
*);
320 extern void ospf_lsa_maxage_delete (struct ospf
*, struct ospf_lsa
*);
322 extern void ospf_discard_from_db (struct ospf
*, struct ospf_lsdb
*, struct ospf_lsa
*);
323 extern int is_prefix_default (struct prefix_ipv4
*);
325 extern int metric_type (struct ospf
*, u_char
, u_short
);
326 extern int metric_value (struct ospf
*, u_char
, u_short
);
328 extern struct in_addr
ospf_get_nssa_ip (struct ospf_area
*);
329 extern int ospf_translated_nssa_compare (struct ospf_lsa
*, struct ospf_lsa
*);
330 extern struct ospf_lsa
*ospf_translated_nssa_refresh (struct ospf
*, struct ospf_lsa
*,
332 extern struct ospf_lsa
*ospf_translated_nssa_originate (struct ospf
*, struct ospf_lsa
*);
334 #endif /* _ZEBRA_OSPF_LSA_H */