blob: e51f7e8e63ad82a77c7d7f618060a850a19e173a [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
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
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
20 * 02111-1307, USA.
21 */
22
23#ifndef _ZEBRA_OSPF_LSA_H
24#define _ZEBRA_OSPF_LSA_H
25
paul4dadc292005-05-06 21:37:42 +000026#include "stream.h"
27
paul718e3742002-12-13 20:15:29 +000028/* OSPF LSA Range definition. */
29#define OSPF_MIN_LSA 1 /* begin range here */
30#if defined (HAVE_OPAQUE_LSA)
31#define OSPF_MAX_LSA 12
paul718e3742002-12-13 20:15:29 +000032#else
hassobeebba72004-06-20 21:00:27 +000033#define OSPF_MAX_LSA 8
paul718e3742002-12-13 20:15:29 +000034#endif
35
36/* OSPF LSA Type definition. */
37#define OSPF_UNKNOWN_LSA 0
38#define OSPF_ROUTER_LSA 1
39#define OSPF_NETWORK_LSA 2
40#define OSPF_SUMMARY_LSA 3
41#define OSPF_ASBR_SUMMARY_LSA 4
42#define OSPF_AS_EXTERNAL_LSA 5
43#define OSPF_GROUP_MEMBER_LSA 6 /* Not supported. */
44#define OSPF_AS_NSSA_LSA 7
45#define OSPF_EXTERNAL_ATTRIBUTES_LSA 8 /* Not supported. */
46#define OSPF_OPAQUE_LINK_LSA 9
47#define OSPF_OPAQUE_AREA_LSA 10
48#define OSPF_OPAQUE_AS_LSA 11
49
paul779adb02006-01-18 15:07:38 +000050#define OSPF_LSA_HEADER_SIZE 20U
51#define OSPF_ROUTER_LSA_LINK_SIZE 12U
Denis Ovsienko68aa0c52011-08-23 11:36:27 +040052#define OSPF_ROUTER_LSA_TOS_SIZE 4U
paul779adb02006-01-18 15:07:38 +000053#define OSPF_MAX_LSA_SIZE 1500U
paul718e3742002-12-13 20:15:29 +000054
55/* AS-external-LSA refresh method. */
56#define LSA_REFRESH_IF_CHANGED 0
57#define LSA_REFRESH_FORCE 1
58
59/* OSPF LSA header. */
60struct lsa_header
61{
62 u_int16_t ls_age;
63 u_char options;
64 u_char type;
65 struct in_addr id;
66 struct in_addr adv_router;
paul6c835672004-10-11 11:00:30 +000067 u_int32_t ls_seqnum;
paul718e3742002-12-13 20:15:29 +000068 u_int16_t checksum;
69 u_int16_t length;
70};
71
72/* OSPF LSA. */
73struct ospf_lsa
74{
75 /* LSA origination flag. */
76 u_char flags;
77#define OSPF_LSA_SELF 0x01
78#define OSPF_LSA_SELF_CHECKED 0x02
79#define OSPF_LSA_RECEIVED 0x04
80#define OSPF_LSA_APPROVED 0x08
81#define OSPF_LSA_DISCARD 0x10
paul718e3742002-12-13 20:15:29 +000082#define OSPF_LSA_LOCAL_XLT 0x20
paul7ddf1d62003-10-13 09:06:46 +000083#define OSPF_LSA_PREMATURE_AGE 0x40
Stephen Hemminger3106a032009-08-06 12:58:05 -070084#define OSPF_LSA_IN_MAXAGE 0x80
paul718e3742002-12-13 20:15:29 +000085
86 /* LSA data. */
87 struct lsa_header *data;
88
89 /* Received time stamp. */
90 struct timeval tv_recv;
91
92 /* Last time it was originated */
93 struct timeval tv_orig;
94
95 /* All of reference count, also lock to remove. */
96 int lock;
97
hasso462f20d2005-02-23 11:29:02 +000098 /* Flags for the SPF calculation. */
99 int stat;
100 #define LSA_SPF_NOT_EXPLORED -1
101 #define LSA_SPF_IN_SPFTREE -2
102 /* If stat >= 0, stat is LSA position in candidates heap. */
103
paul718e3742002-12-13 20:15:29 +0000104 /* References to this LSA in neighbor retransmission lists*/
105 int retransmit_counter;
106
107 /* Area the LSA belongs to, may be NULL if AS-external-LSA. */
108 struct ospf_area *area;
109
110 /* Parent LSDB. */
111 struct ospf_lsdb *lsdb;
112
113 /* Related Route. */
114 void *route;
115
116 /* Refreshement List or Queue */
117 int refresh_list;
118
119#ifdef HAVE_OPAQUE_LSA
120 /* For Type-9 Opaque-LSAs, reference to ospf-interface is required. */
121 struct ospf_interface *oi;
122#endif /* HAVE_OPAQUE_LSA */
123};
124
125/* OSPF LSA Link Type. */
126#define LSA_LINK_TYPE_POINTOPOINT 1
127#define LSA_LINK_TYPE_TRANSIT 2
128#define LSA_LINK_TYPE_STUB 3
129#define LSA_LINK_TYPE_VIRTUALLINK 4
130
131/* OSPF Router LSA Flag. */
132#define ROUTER_LSA_BORDER 0x01 /* The router is an ABR */
133#define ROUTER_LSA_EXTERNAL 0x02 /* The router is an ASBR */
134#define ROUTER_LSA_VIRTUAL 0x04 /* The router has a VL in this area */
paul0c9491b2003-06-22 08:23:01 +0000135#define ROUTER_LSA_NT 0x10 /* The routers always translates Type-7 */
paul718e3742002-12-13 20:15:29 +0000136#define ROUTER_LSA_SHORTCUT 0x20 /* Shortcut-ABR specific flag */
137
138#define IS_ROUTER_LSA_VIRTUAL(x) ((x)->flags & ROUTER_LSA_VIRTUAL)
139#define IS_ROUTER_LSA_EXTERNAL(x) ((x)->flags & ROUTER_LSA_EXTERNAL)
140#define IS_ROUTER_LSA_BORDER(x) ((x)->flags & ROUTER_LSA_BORDER)
141#define IS_ROUTER_LSA_SHORTCUT(x) ((x)->flags & ROUTER_LSA_SHORTCUT)
paul0c9491b2003-06-22 08:23:01 +0000142#define IS_ROUTER_LSA_NT(x) ((x)->flags & ROUTER_LSA_NT)
paul718e3742002-12-13 20:15:29 +0000143
144/* OSPF Router-LSA Link information. */
145struct router_lsa_link
146{
147 struct in_addr link_id;
148 struct in_addr link_data;
149 struct
150 {
151 u_char type;
152 u_char tos_count;
153 u_int16_t metric;
154 } m[1];
155};
156
157/* OSPF Router-LSAs structure. */
158struct router_lsa
159{
160 struct lsa_header header;
161 u_char flags;
162 u_char zero;
163 u_int16_t links;
164 struct
165 {
166 struct in_addr link_id;
167 struct in_addr link_data;
168 u_char type;
169 u_char tos;
170 u_int16_t metric;
171 } link[1];
172};
173
174/* OSPF Network-LSAs structure. */
175struct network_lsa
176{
177 struct lsa_header header;
178 struct in_addr mask;
179 struct in_addr routers[1];
180};
181
182/* OSPF Summary-LSAs structure. */
183struct summary_lsa
184{
185 struct lsa_header header;
186 struct in_addr mask;
187 u_char tos;
188 u_char metric[3];
189};
190
191/* OSPF AS-external-LSAs structure. */
192struct as_external_lsa
193{
194 struct lsa_header header;
195 struct in_addr mask;
196 struct
197 {
198 u_char tos;
199 u_char metric[3];
200 struct in_addr fwd_addr;
201 u_int32_t route_tag;
202 } e[1];
203};
204
205#ifdef HAVE_OPAQUE_LSA
206#include "ospfd/ospf_opaque.h"
207#endif /* HAVE_OPAQUE_LSA */
208
209/* Macros. */
210#define GET_METRIC(x) get_metric(x)
211#define IS_EXTERNAL_METRIC(x) ((x) & 0x80)
212
213#define GET_AGE(x) (ntohs ((x)->data->ls_age) + time (NULL) - (x)->tv_recv)
214#define LS_AGE(x) (OSPF_LSA_MAXAGE < get_age(x) ? \
215 OSPF_LSA_MAXAGE : get_age(x))
216#define IS_LSA_SELF(L) (CHECK_FLAG ((L)->flags, OSPF_LSA_SELF))
217#define IS_LSA_MAXAGE(L) (LS_AGE ((L)) == OSPF_LSA_MAXAGE)
218
paul718e3742002-12-13 20:15:29 +0000219#define OSPF_LSA_UPDATE_DELAY 2
220
221#define OSPF_LSA_UPDATE_TIMER_ON(T,F) \
222 if (!(T)) \
223 (T) = thread_add_timer (master, (F), 0, 2)
224
paul718e3742002-12-13 20:15:29 +0000225/* Prototypes. */
paul4dadc292005-05-06 21:37:42 +0000226/* XXX: Eek, time functions, similar are in lib/thread.c */
227extern struct timeval tv_adjust (struct timeval);
228extern int tv_ceil (struct timeval);
229extern int tv_floor (struct timeval);
230extern struct timeval int2tv (int);
231extern struct timeval tv_add (struct timeval, struct timeval);
232extern struct timeval tv_sub (struct timeval, struct timeval);
233extern int tv_cmp (struct timeval, struct timeval);
paul718e3742002-12-13 20:15:29 +0000234
paul4dadc292005-05-06 21:37:42 +0000235extern int get_age (struct ospf_lsa *);
236extern u_int16_t ospf_lsa_checksum (struct lsa_header *);
237extern int ospf_lsa_refresh_delay (struct ospf_lsa *);
paul718e3742002-12-13 20:15:29 +0000238
paul4dadc292005-05-06 21:37:42 +0000239extern const char *dump_lsa_key (struct ospf_lsa *);
240extern u_int32_t lsa_seqnum_increment (struct ospf_lsa *);
241extern void lsa_header_set (struct stream *, u_char, u_char, struct in_addr,
paul68980082003-03-25 05:07:42 +0000242 struct in_addr);
paul4dadc292005-05-06 21:37:42 +0000243extern struct ospf_neighbor *ospf_nbr_lookup_ptop (struct ospf_interface *);
paul718e3742002-12-13 20:15:29 +0000244
245/* Prototype for LSA primitive. */
paul4dadc292005-05-06 21:37:42 +0000246extern struct ospf_lsa *ospf_lsa_new (void);
247extern struct ospf_lsa *ospf_lsa_dup (struct ospf_lsa *);
248extern void ospf_lsa_free (struct ospf_lsa *);
249extern struct ospf_lsa *ospf_lsa_lock (struct ospf_lsa *);
Paul Jakma1fe6ed32006-07-26 09:37:26 +0000250extern void ospf_lsa_unlock (struct ospf_lsa **);
paul4dadc292005-05-06 21:37:42 +0000251extern void ospf_lsa_discard (struct ospf_lsa *);
paul718e3742002-12-13 20:15:29 +0000252
paul4dadc292005-05-06 21:37:42 +0000253extern struct lsa_header *ospf_lsa_data_new (size_t);
254extern struct lsa_header *ospf_lsa_data_dup (struct lsa_header *);
255extern void ospf_lsa_data_free (struct lsa_header *);
paul718e3742002-12-13 20:15:29 +0000256
257/* Prototype for various LSAs */
paul4dadc292005-05-06 21:37:42 +0000258extern int ospf_router_lsa_update_timer (struct thread *);
259extern void ospf_router_lsa_timer_add (struct ospf_area *);
paul718e3742002-12-13 20:15:29 +0000260
paul4dadc292005-05-06 21:37:42 +0000261extern int ospf_network_lsa_refresh (struct ospf_lsa *, struct ospf_interface *);
262extern void ospf_network_lsa_timer_add (struct ospf_interface *);
paul718e3742002-12-13 20:15:29 +0000263
paul4dadc292005-05-06 21:37:42 +0000264extern struct ospf_lsa *ospf_summary_lsa_originate (struct prefix_ipv4 *, u_int32_t,
paul718e3742002-12-13 20:15:29 +0000265 struct ospf_area *);
paul4dadc292005-05-06 21:37:42 +0000266extern struct ospf_lsa *ospf_summary_asbr_lsa_originate (struct prefix_ipv4 *,
paul718e3742002-12-13 20:15:29 +0000267 u_int32_t,
268 struct ospf_area *);
paul4dadc292005-05-06 21:37:42 +0000269extern struct ospf_lsa *ospf_summary_lsa_refresh (struct ospf *, struct ospf_lsa *);
270extern struct ospf_lsa *ospf_summary_asbr_lsa_refresh (struct ospf *, struct ospf_lsa *);
paul718e3742002-12-13 20:15:29 +0000271
paul4dadc292005-05-06 21:37:42 +0000272extern struct ospf_lsa *ospf_lsa_install (struct ospf *,
paul68980082003-03-25 05:07:42 +0000273 struct ospf_interface *, struct ospf_lsa *);
paul718e3742002-12-13 20:15:29 +0000274
paul4dadc292005-05-06 21:37:42 +0000275extern void ospf_nssa_lsa_flush (struct ospf *ospf, struct prefix_ipv4 *p);
276extern void ospf_external_lsa_flush (struct ospf *, u_char, struct prefix_ipv4 *,
ajs5339cfd2005-09-19 13:28:05 +0000277 unsigned int /* , struct in_addr nexthop */);
paul718e3742002-12-13 20:15:29 +0000278
paul4dadc292005-05-06 21:37:42 +0000279extern struct in_addr ospf_get_ip_from_ifp (struct ospf_interface *);
paul718e3742002-12-13 20:15:29 +0000280
paul4dadc292005-05-06 21:37:42 +0000281extern struct ospf_lsa *ospf_external_lsa_originate (struct ospf *, struct external_info *);
282extern int ospf_external_lsa_originate_timer (struct thread *);
283extern struct ospf_lsa *ospf_lsa_lookup (struct ospf_area *, u_int32_t,
paul718e3742002-12-13 20:15:29 +0000284 struct in_addr, struct in_addr);
paul4dadc292005-05-06 21:37:42 +0000285extern struct ospf_lsa *ospf_lsa_lookup_by_id (struct ospf_area *,
pauld4a53d52003-07-12 21:30:57 +0000286 u_int32_t,
287 struct in_addr);
paul4dadc292005-05-06 21:37:42 +0000288extern struct ospf_lsa *ospf_lsa_lookup_by_header (struct ospf_area *,
paul718e3742002-12-13 20:15:29 +0000289 struct lsa_header *);
paul4dadc292005-05-06 21:37:42 +0000290extern int ospf_lsa_more_recent (struct ospf_lsa *, struct ospf_lsa *);
291extern int ospf_lsa_different (struct ospf_lsa *, struct ospf_lsa *);
292extern void ospf_flush_self_originated_lsas_now (struct ospf *);
paul718e3742002-12-13 20:15:29 +0000293
paul4dadc292005-05-06 21:37:42 +0000294extern int ospf_lsa_is_self_originated (struct ospf *, struct ospf_lsa *);
paul718e3742002-12-13 20:15:29 +0000295
paul4dadc292005-05-06 21:37:42 +0000296extern struct ospf_lsa *ospf_lsa_lookup_by_prefix (struct ospf_lsdb *, u_char,
paul68980082003-03-25 05:07:42 +0000297 struct prefix_ipv4 *,
298 struct in_addr);
paul718e3742002-12-13 20:15:29 +0000299
paul4dadc292005-05-06 21:37:42 +0000300extern void ospf_lsa_maxage (struct ospf *, struct ospf_lsa *);
301extern u_int32_t get_metric (u_char *);
paul718e3742002-12-13 20:15:29 +0000302
paul4dadc292005-05-06 21:37:42 +0000303extern int ospf_lsa_maxage_walker (struct thread *);
paul718e3742002-12-13 20:15:29 +0000304
paul4dadc292005-05-06 21:37:42 +0000305extern void ospf_external_lsa_refresh_default (struct ospf *);
paul718e3742002-12-13 20:15:29 +0000306
paul4dadc292005-05-06 21:37:42 +0000307extern void ospf_external_lsa_refresh_type (struct ospf *, u_char, int);
308extern void ospf_external_lsa_refresh (struct ospf *, struct ospf_lsa *,
paul68980082003-03-25 05:07:42 +0000309 struct external_info *, int);
paul4dadc292005-05-06 21:37:42 +0000310extern struct in_addr ospf_lsa_unique_id (struct ospf *, struct ospf_lsdb *, u_char,
paul718e3742002-12-13 20:15:29 +0000311 struct prefix_ipv4 *);
paul4dadc292005-05-06 21:37:42 +0000312extern void ospf_schedule_lsa_flood_area (struct ospf_area *, struct ospf_lsa *);
313extern void ospf_schedule_lsa_flush_area (struct ospf_area *, struct ospf_lsa *);
paul718e3742002-12-13 20:15:29 +0000314
paul4dadc292005-05-06 21:37:42 +0000315extern void ospf_refresher_register_lsa (struct ospf *, struct ospf_lsa *);
316extern void ospf_refresher_unregister_lsa (struct ospf *, struct ospf_lsa *);
317extern int ospf_lsa_refresh_walker (struct thread *);
paul718e3742002-12-13 20:15:29 +0000318
paul4dadc292005-05-06 21:37:42 +0000319extern void ospf_lsa_maxage_delete (struct ospf *, struct ospf_lsa *);
paul718e3742002-12-13 20:15:29 +0000320
paul4dadc292005-05-06 21:37:42 +0000321extern void ospf_discard_from_db (struct ospf *, struct ospf_lsdb *, struct ospf_lsa*);
322extern int is_prefix_default (struct prefix_ipv4 *);
paul718e3742002-12-13 20:15:29 +0000323
paul4dadc292005-05-06 21:37:42 +0000324extern int metric_type (struct ospf *, u_char);
325extern int metric_value (struct ospf *, u_char);
paul68980082003-03-25 05:07:42 +0000326
paul4dadc292005-05-06 21:37:42 +0000327extern struct in_addr ospf_get_nssa_ip (struct ospf_area *);
328extern int ospf_translated_nssa_compare (struct ospf_lsa *, struct ospf_lsa *);
329extern struct ospf_lsa *ospf_translated_nssa_refresh (struct ospf *, struct ospf_lsa *,
pauld4a53d52003-07-12 21:30:57 +0000330 struct ospf_lsa *);
paul4dadc292005-05-06 21:37:42 +0000331extern struct ospf_lsa *ospf_translated_nssa_originate (struct ospf *, struct ospf_lsa *);
paulf2c80652002-12-13 21:44:27 +0000332
paul718e3742002-12-13 20:15:29 +0000333#endif /* _ZEBRA_OSPF_LSA_H */