]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_lsa.h
*: Add camelCase JSON keys in addition to PascalCase
[mirror_frr.git] / ospfd / ospf_lsa.h
1 /*
2 * OSPF Link State Advertisement
3 * Copyright (C) 1999, 2000 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 *
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
20 */
21
22 #ifndef _ZEBRA_OSPF_LSA_H
23 #define _ZEBRA_OSPF_LSA_H
24
25 #include "stream.h"
26
27 /* OSPF LSA Default metric values */
28 #define DEFAULT_DEFAULT_METRIC 20
29 #define DEFAULT_DEFAULT_ORIGINATE_METRIC 10
30 #define DEFAULT_DEFAULT_ALWAYS_METRIC 1
31 #define DEFAULT_METRIC_TYPE EXTERNAL_METRIC_TYPE_2
32
33 /* OSPF LSA Range definition. */
34 #define OSPF_MIN_LSA 1 /* begin range here */
35 #define OSPF_MAX_LSA 12
36
37 /* OSPF LSA Type definition. */
38 #define OSPF_UNKNOWN_LSA 0
39 #define OSPF_ROUTER_LSA 1
40 #define OSPF_NETWORK_LSA 2
41 #define OSPF_SUMMARY_LSA 3
42 #define OSPF_ASBR_SUMMARY_LSA 4
43 #define OSPF_AS_EXTERNAL_LSA 5
44 #define OSPF_GROUP_MEMBER_LSA 6 /* Not supported. */
45 #define OSPF_AS_NSSA_LSA 7
46 #define OSPF_EXTERNAL_ATTRIBUTES_LSA 8 /* Not supported. */
47 #define OSPF_OPAQUE_LINK_LSA 9
48 #define OSPF_OPAQUE_AREA_LSA 10
49 #define OSPF_OPAQUE_AS_LSA 11
50
51 #define OSPF_LSA_HEADER_SIZE 20U
52 #define OSPF_ROUTER_LSA_LINK_SIZE 12U
53 #define OSPF_ROUTER_LSA_TOS_SIZE 4U
54 #define OSPF_MAX_LSA_SIZE 1500U
55
56 /* AS-external-LSA refresh method. */
57 #define LSA_REFRESH_IF_CHANGED 0
58 #define LSA_REFRESH_FORCE 1
59
60 /* OSPF LSA header. */
61 struct lsa_header {
62 uint16_t ls_age;
63 uint8_t options;
64 uint8_t type;
65 struct in_addr id;
66 struct in_addr adv_router;
67 uint32_t ls_seqnum;
68 uint16_t checksum;
69 uint16_t length;
70 };
71
72 struct vertex;
73
74 /* OSPF LSA. */
75 struct ospf_lsa {
76 /* LSA origination flag. */
77 uint8_t flags;
78 #define OSPF_LSA_SELF 0x01
79 #define OSPF_LSA_SELF_CHECKED 0x02
80 #define OSPF_LSA_RECEIVED 0x04
81 #define OSPF_LSA_APPROVED 0x08
82 #define OSPF_LSA_DISCARD 0x10
83 #define OSPF_LSA_LOCAL_XLT 0x20
84 #define OSPF_LSA_PREMATURE_AGE 0x40
85 #define OSPF_LSA_IN_MAXAGE 0x80
86
87 /* LSA data. and size */
88 struct lsa_header *data;
89 size_t size;
90
91 /* Received time stamp. */
92 struct timeval tv_recv;
93
94 /* Last time it was originated */
95 struct timeval tv_orig;
96
97 /* All of reference count, also lock to remove. */
98 int lock;
99
100 /* Flags for the SPF calculation. */
101 struct vertex *stat;
102
103 /* References to this LSA in neighbor retransmission lists*/
104 int retransmit_counter;
105
106 /* Area the LSA belongs to, may be NULL if AS-external-LSA. */
107 struct ospf_area *area;
108
109 /* Parent LSDB. */
110 struct ospf_lsdb *lsdb;
111
112 /* Related Route. */
113 void *route;
114
115 /* Refreshement List or Queue */
116 int refresh_list;
117
118 /* For Type-9 Opaque-LSAs */
119 struct ospf_interface *oi;
120
121 /* VRF Id */
122 vrf_id_t vrf_id;
123
124 /*For topo chg detection in HELPER role*/
125 bool to_be_acknowledged;
126 };
127
128 /* OSPF LSA Link Type. */
129 #define LSA_LINK_TYPE_POINTOPOINT 1
130 #define LSA_LINK_TYPE_TRANSIT 2
131 #define LSA_LINK_TYPE_STUB 3
132 #define LSA_LINK_TYPE_VIRTUALLINK 4
133
134 /* OSPF Router LSA Flag. */
135 #define ROUTER_LSA_BORDER 0x01 /* The router is an ABR */
136 #define ROUTER_LSA_EXTERNAL 0x02 /* The router is an ASBR */
137 #define ROUTER_LSA_VIRTUAL 0x04 /* The router has a VL in this area */
138 #define ROUTER_LSA_NT 0x10 /* The routers always translates Type-7 */
139 #define ROUTER_LSA_SHORTCUT 0x20 /* Shortcut-ABR specific flag */
140
141 #define IS_ROUTER_LSA_VIRTUAL(x) ((x)->flags & ROUTER_LSA_VIRTUAL)
142 #define IS_ROUTER_LSA_EXTERNAL(x) ((x)->flags & ROUTER_LSA_EXTERNAL)
143 #define IS_ROUTER_LSA_BORDER(x) ((x)->flags & ROUTER_LSA_BORDER)
144 #define IS_ROUTER_LSA_SHORTCUT(x) ((x)->flags & ROUTER_LSA_SHORTCUT)
145 #define IS_ROUTER_LSA_NT(x) ((x)->flags & ROUTER_LSA_NT)
146
147 /* OSPF Router-LSA Link information. */
148 struct router_lsa_link {
149 struct in_addr link_id;
150 struct in_addr link_data;
151 struct {
152 uint8_t type;
153 uint8_t tos_count;
154 uint16_t metric;
155 } m[1];
156 };
157
158 /* OSPF Router-LSAs structure. */
159 #define OSPF_ROUTER_LSA_MIN_SIZE 4U /* w/0 link descriptors */
160 /* There is an edge case, when number of links in a Router-LSA may be 0 without
161 breaking the specification. A router, which has no other links to backbone
162 area besides one virtual link, will not put any VL descriptor blocks into
163 the Router-LSA generated for area 0 until a full adjacency over the VL is
164 reached (RFC2328 12.4.1.3). In this case the Router-LSA initially received
165 by the other end of the VL will have 0 link descriptor blocks, but soon will
166 be replaced with the next revision having 1 descriptor block. */
167 struct router_lsa {
168 struct lsa_header header;
169 uint8_t flags;
170 uint8_t zero;
171 uint16_t links;
172 struct router_link {
173 struct in_addr link_id;
174 struct in_addr link_data;
175 uint8_t type;
176 uint8_t tos;
177 uint16_t metric;
178 } link[1];
179 };
180
181 /* OSPF Network-LSAs structure. */
182 #define OSPF_NETWORK_LSA_MIN_SIZE 8U /* w/1 router-ID */
183 struct network_lsa {
184 struct lsa_header header;
185 struct in_addr mask;
186 struct in_addr routers[1];
187 };
188
189 /* OSPF Summary-LSAs structure. */
190 #define OSPF_SUMMARY_LSA_MIN_SIZE 8U /* w/1 TOS metric block */
191 struct summary_lsa {
192 struct lsa_header header;
193 struct in_addr mask;
194 uint8_t tos;
195 uint8_t metric[3];
196 };
197
198 /* OSPF AS-external-LSAs structure. */
199 #define OSPF_AS_EXTERNAL_LSA_MIN_SIZE 16U /* w/1 TOS forwarding block */
200 struct as_external_lsa {
201 struct lsa_header header;
202 struct in_addr mask;
203 struct as_route {
204 uint8_t tos;
205 uint8_t metric[3];
206 struct in_addr fwd_addr;
207 uint32_t route_tag;
208 } e[1];
209 };
210
211 #include "ospfd/ospf_opaque.h"
212
213 /* Macros. */
214 #define GET_METRIC(x) get_metric(x)
215 #define IS_EXTERNAL_METRIC(x) ((x) & 0x80)
216
217 #define GET_AGE(x) (ntohs ((x)->data->ls_age) + time (NULL) - (x)->tv_recv)
218 #define LS_AGE(x) (OSPF_LSA_MAXAGE < get_age(x) ? 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)
221 #define IS_LSA_MAX_SEQ(L) \
222 ((L)->data->ls_seqnum == htonl(OSPF_MAX_SEQUENCE_NUMBER))
223
224 #define OSPF_LSA_UPDATE_DELAY 2
225
226 #define CHECK_LSA_TYPE_1_TO_5_OR_7(type) \
227 ((type == OSPF_ROUTER_LSA) || (type == OSPF_NETWORK_LSA) \
228 || (type == OSPF_SUMMARY_LSA) || (type == OSPF_ASBR_SUMMARY_LSA) \
229 || (type == OSPF_AS_EXTERNAL_LSA) || (type == OSPF_AS_NSSA_LSA))
230
231 /* Prototypes. */
232 /* XXX: Eek, time functions, similar are in lib/thread.c */
233 extern struct timeval int2tv(int);
234 extern struct timeval msec2tv(int);
235
236 extern int get_age(struct ospf_lsa *);
237 extern uint16_t ospf_lsa_checksum(struct lsa_header *);
238 extern int ospf_lsa_checksum_valid(struct lsa_header *);
239 extern int ospf_lsa_refresh_delay(struct ospf_lsa *);
240
241 extern const char *dump_lsa_key(struct ospf_lsa *);
242 extern uint32_t lsa_seqnum_increment(struct ospf_lsa *);
243 extern void lsa_header_set(struct stream *, uint8_t, uint8_t, struct in_addr,
244 struct in_addr);
245 extern struct ospf_neighbor *ospf_nbr_lookup_ptop(struct ospf_interface *);
246 extern int ospf_check_nbr_status(struct ospf *);
247
248 /* Prototype for LSA primitive. */
249 extern struct ospf_lsa *ospf_lsa_new(void);
250 extern struct ospf_lsa *ospf_lsa_new_and_data(size_t size);
251 extern struct ospf_lsa *ospf_lsa_dup(struct ospf_lsa *);
252 extern void ospf_lsa_free(struct ospf_lsa *);
253 extern struct ospf_lsa *ospf_lsa_lock(struct ospf_lsa *);
254 extern void ospf_lsa_unlock(struct ospf_lsa **);
255 extern void ospf_lsa_discard(struct ospf_lsa *);
256 extern int ospf_lsa_flush_schedule(struct ospf *, struct ospf_lsa *);
257 extern struct lsa_header *ospf_lsa_data_new(size_t);
258 extern struct lsa_header *ospf_lsa_data_dup(struct lsa_header *);
259 extern void ospf_lsa_data_free(struct lsa_header *);
260
261 /* Prototype for various LSAs */
262 extern void ospf_router_lsa_body_set(struct stream **s, struct ospf_area *area);
263 extern uint8_t router_lsa_flags(struct ospf_area *area);
264 extern int ospf_router_lsa_update(struct ospf *);
265 extern int ospf_router_lsa_update_area(struct ospf_area *);
266
267 extern void ospf_network_lsa_update(struct ospf_interface *);
268
269 extern struct ospf_lsa *
270 ospf_summary_lsa_originate(struct prefix_ipv4 *, uint32_t, struct ospf_area *);
271 extern struct ospf_lsa *ospf_summary_asbr_lsa_originate(struct prefix_ipv4 *,
272 uint32_t,
273 struct ospf_area *);
274
275 extern struct ospf_lsa *ospf_lsa_install(struct ospf *, struct ospf_interface *,
276 struct ospf_lsa *);
277
278 extern void ospf_nssa_lsa_flush(struct ospf *ospf, struct prefix_ipv4 *p);
279 extern void ospf_external_lsa_flush(struct ospf *, uint8_t,
280 struct prefix_ipv4 *,
281 ifindex_t /* , struct in_addr nexthop */);
282
283 extern struct in_addr ospf_get_ip_from_ifp(struct ospf_interface *);
284
285 extern struct ospf_lsa *ospf_external_lsa_originate(struct ospf *,
286 struct external_info *);
287 extern void ospf_external_lsa_rid_change(struct ospf *ospf);
288 extern struct ospf_lsa *ospf_lsa_lookup(struct ospf *ospf, struct ospf_area *,
289 uint32_t, struct in_addr,
290 struct in_addr);
291 extern struct ospf_lsa *ospf_lsa_lookup_by_id(struct ospf_area *, uint32_t,
292 struct in_addr);
293 extern struct ospf_lsa *ospf_lsa_lookup_by_header(struct ospf_area *,
294 struct lsa_header *);
295 extern int ospf_lsa_more_recent(struct ospf_lsa *, struct ospf_lsa *);
296 extern int ospf_lsa_different(struct ospf_lsa *, struct ospf_lsa *,
297 bool ignore_rcvd_flag);
298 extern void ospf_flush_self_originated_lsas_now(struct ospf *);
299
300 extern int ospf_lsa_is_self_originated(struct ospf *, struct ospf_lsa *);
301
302 extern struct ospf_lsa *ospf_lsa_lookup_by_prefix(struct ospf_lsdb *, uint8_t,
303 struct prefix_ipv4 *,
304 struct in_addr);
305
306 extern void ospf_lsa_maxage(struct ospf *, struct ospf_lsa *);
307 extern uint32_t get_metric(uint8_t *);
308
309 extern int ospf_lsa_maxage_walker(struct thread *);
310 extern struct ospf_lsa *ospf_lsa_refresh(struct ospf *, struct ospf_lsa *);
311
312 extern void ospf_external_lsa_refresh_default(struct ospf *);
313
314 extern void ospf_external_lsa_refresh_type(struct ospf *, uint8_t,
315 unsigned short, int);
316 extern struct ospf_lsa *ospf_external_lsa_refresh(struct ospf *,
317 struct ospf_lsa *,
318 struct external_info *, int,
319 bool aggr);
320 extern struct in_addr ospf_lsa_unique_id(struct ospf *, struct ospf_lsdb *,
321 uint8_t, struct prefix_ipv4 *);
322 extern void ospf_schedule_lsa_flood_area(struct ospf_area *, struct ospf_lsa *);
323 extern void ospf_schedule_lsa_flush_area(struct ospf_area *, struct ospf_lsa *);
324
325 extern void ospf_refresher_register_lsa(struct ospf *, struct ospf_lsa *);
326 extern void ospf_refresher_unregister_lsa(struct ospf *, struct ospf_lsa *);
327 extern int ospf_lsa_refresh_walker(struct thread *);
328
329 extern void ospf_lsa_maxage_delete(struct ospf *, struct ospf_lsa *);
330
331 extern void ospf_discard_from_db(struct ospf *, struct ospf_lsdb *,
332 struct ospf_lsa *);
333
334 extern int metric_type(struct ospf *, uint8_t, unsigned short);
335 extern int metric_value(struct ospf *, uint8_t, unsigned short);
336
337 extern char link_info_set(struct stream **s, struct in_addr id,
338 struct in_addr data, uint8_t type, uint8_t tos,
339 uint16_t cost);
340
341 extern struct in_addr ospf_get_nssa_ip(struct ospf_area *);
342 extern int ospf_translated_nssa_compare(struct ospf_lsa *, struct ospf_lsa *);
343 extern struct ospf_lsa *ospf_translated_nssa_refresh(struct ospf *ospf,
344 struct ospf_lsa *type7,
345 struct ospf_lsa *type5);
346 extern struct ospf_lsa *ospf_translated_nssa_originate(struct ospf *ospf,
347 struct ospf_lsa *type7,
348 struct ospf_lsa *type5);
349 extern void ospf_check_and_gen_init_seq_lsa(struct ospf_interface *oi,
350 struct ospf_lsa *lsa);
351 extern void ospf_flush_lsa_from_area(struct ospf *ospf, struct in_addr area_id,
352 int type);
353 #endif /* _ZEBRA_OSPF_LSA_H */