paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2 | * Copyright (C) 2003 Yasuhiro Ohara |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 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 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with GNU Zebra; see the file COPYING. If not, write to the |
| 18 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 19 | * Boston, MA 02111-1307, USA. |
| 20 | */ |
| 21 | |
| 22 | #ifndef OSPF6_LSA_H |
| 23 | #define OSPF6_LSA_H |
| 24 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 25 | /* Debug option */ |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 26 | #define OSPF6_LSA_DEBUG 0x01 |
| 27 | #define OSPF6_LSA_DEBUG_ORIGINATE 0x02 |
| 28 | #define OSPF6_LSA_DEBUG_EXAMIN 0x04 |
| 29 | #define OSPF6_LSA_DEBUG_FLOOD 0x08 |
| 30 | |
| 31 | #define IS_OSPF6_DEBUG_LSA(name) \ |
| 32 | (ospf6_lstype_debug (htons (OSPF6_LSTYPE_ ## name)) & \ |
| 33 | OSPF6_LSA_DEBUG) |
| 34 | #define IS_OSPF6_DEBUG_ORIGINATE(name) \ |
| 35 | (ospf6_lstype_debug (htons (OSPF6_LSTYPE_ ## name)) & \ |
| 36 | OSPF6_LSA_DEBUG_ORIGINATE) |
| 37 | #define IS_OSPF6_DEBUG_EXAMIN(name) \ |
| 38 | (ospf6_lstype_debug (htons (OSPF6_LSTYPE_ ## name)) & \ |
| 39 | OSPF6_LSA_DEBUG_EXAMIN) |
| 40 | #define IS_OSPF6_DEBUG_LSA_TYPE(type) \ |
| 41 | (ospf6_lstype_debug (type) & OSPF6_LSA_DEBUG) |
| 42 | #define IS_OSPF6_DEBUG_ORIGINATE_TYPE(type) \ |
| 43 | (ospf6_lstype_debug (type) & OSPF6_LSA_DEBUG_ORIGINATE) |
| 44 | #define IS_OSPF6_DEBUG_EXAMIN_TYPE(type) \ |
| 45 | (ospf6_lstype_debug (type) & OSPF6_LSA_DEBUG_EXAMIN) |
| 46 | #define IS_OSPF6_DEBUG_FLOOD_TYPE(type) \ |
| 47 | (ospf6_lstype_debug (type) & OSPF6_LSA_DEBUG_FLOOD) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 48 | |
| 49 | /* LSA definition */ |
| 50 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 51 | #define OSPF6_MAX_LSASIZE 4096 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 52 | |
| 53 | /* Type */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 54 | #define OSPF6_LSTYPE_UNKNOWN 0x0000 |
| 55 | #define OSPF6_LSTYPE_ROUTER 0x2001 |
| 56 | #define OSPF6_LSTYPE_NETWORK 0x2002 |
| 57 | #define OSPF6_LSTYPE_INTER_PREFIX 0x2003 |
| 58 | #define OSPF6_LSTYPE_INTER_ROUTER 0x2004 |
| 59 | #define OSPF6_LSTYPE_AS_EXTERNAL 0x4005 |
| 60 | #define OSPF6_LSTYPE_GROUP_MEMBERSHIP 0x2006 |
| 61 | #define OSPF6_LSTYPE_TYPE_7 0x2007 |
| 62 | #define OSPF6_LSTYPE_LINK 0x0008 |
| 63 | #define OSPF6_LSTYPE_INTRA_PREFIX 0x2009 |
| 64 | #define OSPF6_LSTYPE_SIZE 0x000a |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 65 | |
| 66 | /* Masks for LS Type : RFC 2740 A.4.2.1 "LS type" */ |
| 67 | #define OSPF6_LSTYPE_UBIT_MASK 0x8000 |
| 68 | #define OSPF6_LSTYPE_SCOPE_MASK 0x6000 |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 69 | #define OSPF6_LSTYPE_FCODE_MASK 0x1fff |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 70 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 71 | /* LSA scope */ |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 72 | #define OSPF6_SCOPE_LINKLOCAL 0x0000 |
| 73 | #define OSPF6_SCOPE_AREA 0x2000 |
| 74 | #define OSPF6_SCOPE_AS 0x4000 |
| 75 | #define OSPF6_SCOPE_RESERVED 0x6000 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 76 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 77 | /* XXX U-bit handling should be treated here */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 78 | #define OSPF6_LSA_SCOPE(type) \ |
| 79 | (ntohs (type) & OSPF6_LSTYPE_SCOPE_MASK) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 80 | |
| 81 | /* LSA Header */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 82 | struct ospf6_lsa_header |
| 83 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 84 | u_int16_t age; /* LS age */ |
| 85 | u_int16_t type; /* LS type */ |
| 86 | u_int32_t id; /* Link State ID */ |
| 87 | u_int32_t adv_router; /* Advertising Router */ |
| 88 | u_int32_t seqnum; /* LS sequence number */ |
| 89 | u_int16_t checksum; /* LS checksum */ |
| 90 | u_int16_t length; /* LSA length */ |
| 91 | }; |
| 92 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 93 | #define OSPF6_LSA_HEADER_END(h) \ |
| 94 | ((caddr_t)(h) + sizeof (struct ospf6_lsa_header)) |
| 95 | #define OSPF6_LSA_SIZE(h) \ |
| 96 | (ntohs (((struct ospf6_lsa_header *) (h))->length)) |
| 97 | #define OSPF6_LSA_END(h) \ |
| 98 | ((caddr_t)(h) + ntohs (((struct ospf6_lsa_header *) (h))->length)) |
| 99 | #define OSPF6_LSA_IS_TYPE(t, L) \ |
| 100 | ((L)->header->type == htons (OSPF6_LSTYPE_ ## t) ? 1 : 0) |
| 101 | #define OSPF6_LSA_IS_SAME(L1, L2) \ |
| 102 | ((L1)->header->adv_router == (L2)->header->adv_router && \ |
| 103 | (L1)->header->id == (L2)->header->id && \ |
| 104 | (L1)->header->type == (L2)->header->type) |
| 105 | #define OSPF6_LSA_IS_MATCH(t, i, a, L) \ |
| 106 | ((L)->header->adv_router == (a) && (L)->header->id == (i) && \ |
| 107 | (L)->header->type == (t)) |
| 108 | #define OSPF6_LSA_IS_DIFFER(L1, L2) ospf6_lsa_is_differ (L1, L2) |
| 109 | #define OSPF6_LSA_IS_MAXAGE(L) (ospf6_lsa_age_current (L) == MAXAGE) |
| 110 | #define OSPF6_LSA_IS_CHANGED(L1, L2) ospf6_lsa_is_changed (L1, L2) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 111 | |
| 112 | struct ospf6_lsa |
| 113 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 114 | char name[64]; /* dump string */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 115 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 116 | struct ospf6_lsa *prev; |
| 117 | struct ospf6_lsa *next; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 118 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 119 | unsigned char lock; /* reference counter */ |
| 120 | unsigned char flag; /* special meaning (e.g. floodback) */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 121 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 122 | struct timeval birth; /* tv_sec when LS age 0 */ |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 123 | struct timeval originated; /* used by MinLSInterval check */ |
hasso | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 124 | struct timeval received; /* used by MinLSArrival check */ |
| 125 | struct timeval installed; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 126 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 127 | struct thread *expire; |
| 128 | struct thread *refresh; /* For self-originated LSA */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 129 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 130 | int retrans_count; |
| 131 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 132 | struct ospf6_lsdb *lsdb; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 133 | |
| 134 | /* lsa instance */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 135 | struct ospf6_lsa_header *header; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 136 | }; |
| 137 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 138 | #define OSPF6_LSA_HEADERONLY 0x01 |
| 139 | #define OSPF6_LSA_FLOODBACK 0x02 |
| 140 | #define OSPF6_LSA_DUPLICATE 0x04 |
| 141 | #define OSPF6_LSA_IMPLIEDACK 0x08 |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 142 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 143 | struct ospf6_lsa_handler |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 144 | { |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 145 | u_int16_t type; /* host byte order */ |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 146 | const char *name; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 147 | int (*show) (struct vty *, struct ospf6_lsa *); |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 148 | u_char debug; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 149 | }; |
| 150 | |
hasso | 2680aa2 | 2004-11-25 20:54:46 +0000 | [diff] [blame] | 151 | extern struct ospf6_lsa_handler unknown_handler; |
| 152 | #define OSPF6_LSA_IS_KNOWN(type) \ |
| 153 | (ospf6_get_lsa_handler (type) != &unknown_handler ? 1 : 0) |
| 154 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 155 | /* Macro for LSA Origination */ |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 156 | /* addr is (struct prefix *) */ |
| 157 | #define CONTINUE_IF_ADDRESS_LINKLOCAL(debug,addr) \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 158 | if (IN6_IS_ADDR_LINKLOCAL (&(addr)->u.prefix6)) \ |
| 159 | { \ |
| 160 | char buf[64]; \ |
| 161 | prefix2str (addr, buf, sizeof (buf)); \ |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 162 | if (debug) \ |
ajs | d1db06f | 2004-12-08 22:01:48 +0000 | [diff] [blame] | 163 | zlog_debug ("Filter out Linklocal: %s", buf); \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 164 | continue; \ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 165 | } |
| 166 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 167 | #define CONTINUE_IF_ADDRESS_UNSPECIFIED(debug,addr) \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 168 | if (IN6_IS_ADDR_UNSPECIFIED (&(addr)->u.prefix6)) \ |
| 169 | { \ |
| 170 | char buf[64]; \ |
| 171 | prefix2str (addr, buf, sizeof (buf)); \ |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 172 | if (debug) \ |
ajs | d1db06f | 2004-12-08 22:01:48 +0000 | [diff] [blame] | 173 | zlog_debug ("Filter out Unspecified: %s", buf);\ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 174 | continue; \ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 175 | } |
| 176 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 177 | #define CONTINUE_IF_ADDRESS_LOOPBACK(debug,addr) \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 178 | if (IN6_IS_ADDR_LOOPBACK (&(addr)->u.prefix6)) \ |
| 179 | { \ |
| 180 | char buf[64]; \ |
| 181 | prefix2str (addr, buf, sizeof (buf)); \ |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 182 | if (debug) \ |
ajs | d1db06f | 2004-12-08 22:01:48 +0000 | [diff] [blame] | 183 | zlog_debug ("Filter out Loopback: %s", buf); \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 184 | continue; \ |
| 185 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 186 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 187 | #define CONTINUE_IF_ADDRESS_V4COMPAT(debug,addr) \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 188 | if (IN6_IS_ADDR_V4COMPAT (&(addr)->u.prefix6)) \ |
| 189 | { \ |
| 190 | char buf[64]; \ |
| 191 | prefix2str (addr, buf, sizeof (buf)); \ |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 192 | if (debug) \ |
ajs | d1db06f | 2004-12-08 22:01:48 +0000 | [diff] [blame] | 193 | zlog_debug ("Filter out V4Compat: %s", buf); \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 194 | continue; \ |
| 195 | } |
| 196 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 197 | #define CONTINUE_IF_ADDRESS_V4MAPPED(debug,addr) \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 198 | if (IN6_IS_ADDR_V4MAPPED (&(addr)->u.prefix6)) \ |
| 199 | { \ |
| 200 | char buf[64]; \ |
| 201 | prefix2str (addr, buf, sizeof (buf)); \ |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 202 | if (debug) \ |
ajs | d1db06f | 2004-12-08 22:01:48 +0000 | [diff] [blame] | 203 | zlog_debug ("Filter out V4Mapped: %s", buf); \ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 204 | continue; \ |
| 205 | } |
| 206 | |
| 207 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 208 | /* Function Prototypes */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 209 | extern const char *ospf6_lstype_name (u_int16_t type); |
| 210 | extern u_char ospf6_lstype_debug (u_int16_t type); |
| 211 | extern int ospf6_lsa_is_differ (struct ospf6_lsa *lsa1, struct ospf6_lsa *lsa2); |
| 212 | extern int ospf6_lsa_is_changed (struct ospf6_lsa *lsa1, struct ospf6_lsa *lsa2); |
| 213 | extern u_int16_t ospf6_lsa_age_current (struct ospf6_lsa *); |
| 214 | extern void ospf6_lsa_age_update_to_send (struct ospf6_lsa *, u_int32_t); |
| 215 | extern void ospf6_lsa_premature_aging (struct ospf6_lsa *); |
| 216 | extern int ospf6_lsa_compare (struct ospf6_lsa *, struct ospf6_lsa *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 217 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 218 | extern char *ospf6_lsa_printbuf (struct ospf6_lsa *lsa, char *buf, int size); |
| 219 | extern void ospf6_lsa_header_print_raw (struct ospf6_lsa_header *header); |
| 220 | extern void ospf6_lsa_header_print (struct ospf6_lsa *lsa); |
| 221 | extern void ospf6_lsa_show_summary_header (struct vty *vty); |
| 222 | extern void ospf6_lsa_show_summary (struct vty *vty, struct ospf6_lsa *lsa); |
| 223 | extern void ospf6_lsa_show_dump (struct vty *vty, struct ospf6_lsa *lsa); |
| 224 | extern void ospf6_lsa_show_internal (struct vty *vty, struct ospf6_lsa *lsa); |
| 225 | extern void ospf6_lsa_show (struct vty *vty, struct ospf6_lsa *lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 226 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 227 | extern struct ospf6_lsa *ospf6_lsa_create (struct ospf6_lsa_header *header); |
| 228 | extern struct ospf6_lsa *ospf6_lsa_create_headeronly (struct ospf6_lsa_header *header); |
| 229 | extern void ospf6_lsa_delete (struct ospf6_lsa *lsa); |
| 230 | extern struct ospf6_lsa *ospf6_lsa_copy (struct ospf6_lsa *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 231 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 232 | extern void ospf6_lsa_lock (struct ospf6_lsa *); |
| 233 | extern void ospf6_lsa_unlock (struct ospf6_lsa *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 234 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 235 | extern int ospf6_lsa_expire (struct thread *); |
| 236 | extern int ospf6_lsa_refresh (struct thread *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 237 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 238 | extern unsigned short ospf6_lsa_checksum (struct ospf6_lsa_header *); |
| 239 | extern int ospf6_lsa_prohibited_duration (u_int16_t type, u_int32_t id, |
| 240 | u_int32_t adv_router, void *scope); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 241 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 242 | extern void ospf6_install_lsa_handler (struct ospf6_lsa_handler *handler); |
| 243 | extern struct ospf6_lsa_handler *ospf6_get_lsa_handler (u_int16_t type); |
hasso | 2680aa2 | 2004-11-25 20:54:46 +0000 | [diff] [blame] | 244 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 245 | extern void ospf6_lsa_init (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 246 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 247 | extern int config_write_ospf6_debug_lsa (struct vty *vty); |
| 248 | extern void install_element_ospf6_debug_lsa (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 249 | |
| 250 | #endif /* OSPF6_LSA_H */ |
| 251 | |