jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * IS-IS Rout(e)ing protocol - isis_pdu.c |
| 3 | * PDU processing |
| 4 | * |
| 5 | * Copyright (C) 2001,2002 Sampo Saaristo |
| 6 | * Tampere University of Technology |
| 7 | * Institute of Communications Engineering |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public Licenseas published by the Free |
| 11 | * Software Foundation; either version 2 of the License, or (at your option) |
| 12 | * any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful,but WITHOUT |
| 15 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 17 | * more details. |
| 18 | |
| 19 | * You should have received a copy of the GNU General Public License along |
| 20 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 21 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 22 | */ |
| 23 | |
| 24 | #include <stdio.h> |
| 25 | #include <string.h> |
| 26 | #include <zebra.h> |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 27 | |
| 28 | #include "memory.h" |
| 29 | #include "thread.h" |
| 30 | #include "linklist.h" |
| 31 | #include "log.h" |
| 32 | #include "stream.h" |
| 33 | #include "vty.h" |
| 34 | #include "hash.c" |
| 35 | #include "prefix.h" |
| 36 | #include "if.h" |
| 37 | |
| 38 | #include "isisd/dict.h" |
| 39 | #include "isisd/include-netbsd/iso.h" |
| 40 | #include "isisd/isis_constants.h" |
| 41 | #include "isisd/isis_common.h" |
| 42 | #include "isisd/isis_adjacency.h" |
| 43 | #include "isisd/isis_circuit.h" |
| 44 | #include "isisd/isis_network.h" |
| 45 | #include "isisd/isis_misc.h" |
| 46 | #include "isisd/isis_dr.h" |
| 47 | #include "isisd/isis_flags.h" |
| 48 | #include "isisd/isis_tlv.h" |
| 49 | #include "isisd/isisd.h" |
| 50 | #include "isisd/isis_dynhn.h" |
| 51 | #include "isisd/isis_lsp.h" |
| 52 | #include "isisd/isis_pdu.h" |
| 53 | #include "isisd/iso_checksum.h" |
| 54 | #include "isisd/isis_csm.h" |
| 55 | #include "isisd/isis_events.h" |
| 56 | |
| 57 | extern struct thread_master *master; |
| 58 | extern struct isis *isis; |
| 59 | |
| 60 | #define ISIS_MINIMUM_FIXED_HDR_LEN 15 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 61 | #define ISIS_MIN_PDU_LEN 13 /* partial seqnum pdu with id_len=2 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 62 | |
| 63 | #ifndef PNBBY |
| 64 | #define PNBBY 8 |
| 65 | #endif /* PNBBY */ |
| 66 | |
| 67 | /* Utility mask array. */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 68 | static u_char maskbit[] = { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 69 | 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff |
| 70 | }; |
| 71 | |
| 72 | /* |
| 73 | * HELPER FUNCS |
| 74 | */ |
| 75 | |
| 76 | /* |
| 77 | * Compares two sets of area addresses |
| 78 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 79 | static int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 80 | area_match (struct list *left, struct list *right) |
| 81 | { |
| 82 | struct area_addr *addr1, *addr2; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 83 | struct listnode *node1, *nnode1; |
| 84 | struct listnode *node2, *nnode2; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 85 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 86 | for (ALL_LIST_ELEMENTS (left, node1, nnode1, addr1)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 87 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 88 | for (ALL_LIST_ELEMENTS (right, node2, nnode2, addr2)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 89 | { |
| 90 | if (addr1->addr_len == addr2->addr_len && |
| 91 | !memcmp (addr1->area_addr, addr2->area_addr, (int) addr1->addr_len)) |
| 92 | return 1; /* match */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 93 | } |
| 94 | } |
| 95 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 96 | return 0; /* mismatch */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /* |
| 100 | * Check if ip2 is in the ip1's network (function like Prefix.h:prefix_match() ) |
| 101 | * param ip1 the IS interface ip address structure |
| 102 | * param ip2 the IIH's ip address |
| 103 | * return 0 the IIH's IP is not in the IS's subnetwork |
| 104 | * 1 the IIH's IP is in the IS's subnetwork |
| 105 | */ |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 106 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 107 | ip_same_subnet (struct prefix_ipv4 *ip1, struct in_addr *ip2) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 108 | { |
| 109 | u_char *addr1, *addr2; |
hasso | 53c997c | 2004-09-15 16:21:59 +0000 | [diff] [blame] | 110 | int shift, offset, offsetloop; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 111 | int len; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 112 | |
| 113 | addr1 = (u_char *) & ip1->prefix.s_addr; |
| 114 | addr2 = (u_char *) & ip2->s_addr; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 115 | len = ip1->prefixlen; |
| 116 | |
| 117 | shift = len % PNBBY; |
hasso | 53c997c | 2004-09-15 16:21:59 +0000 | [diff] [blame] | 118 | offsetloop = offset = len / PNBBY; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 119 | |
hasso | 53c997c | 2004-09-15 16:21:59 +0000 | [diff] [blame] | 120 | while (offsetloop--) |
| 121 | if (addr1[offsetloop] != addr2[offsetloop]) |
| 122 | return 0; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 123 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 124 | if (shift) |
hasso | 53c997c | 2004-09-15 16:21:59 +0000 | [diff] [blame] | 125 | if (maskbit[shift] & (addr1[offset] ^ addr2[offset])) |
| 126 | return 0; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 127 | |
| 128 | return 1; /* match */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 129 | } |
| 130 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 131 | /* |
| 132 | * Compares two set of ip addresses |
| 133 | * param left the local interface's ip addresses |
| 134 | * param right the iih interface's ip address |
| 135 | * return 0 no match; |
| 136 | * 1 match; |
| 137 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 138 | static int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 139 | ip_match (struct list *left, struct list *right) |
| 140 | { |
| 141 | struct prefix_ipv4 *ip1; |
| 142 | struct in_addr *ip2; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 143 | struct listnode *node1, *nnode1; |
| 144 | struct listnode *node2, *nnode2; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 145 | |
hasso | e082ac1 | 2004-09-27 18:13:57 +0000 | [diff] [blame] | 146 | if ((left == NULL) || (right == NULL)) |
| 147 | return 0; |
| 148 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 149 | for (ALL_LIST_ELEMENTS (left, node1, nnode1, ip1)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 150 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 151 | for (ALL_LIST_ELEMENTS (right, node2, nnode2, ip2)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 152 | { |
| 153 | if (ip_same_subnet (ip1, ip2)) |
| 154 | { |
| 155 | return 1; /* match */ |
| 156 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 157 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 158 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 159 | } |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | /* |
| 164 | * Checks whether we should accept a PDU of given level |
| 165 | */ |
| 166 | static int |
| 167 | accept_level (int level, int circuit_t) |
| 168 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 169 | int retval = ((circuit_t & level) == level); /* simple approach */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 170 | |
| 171 | return retval; |
| 172 | } |
| 173 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 174 | int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 175 | authentication_check (struct isis_passwd *one, struct isis_passwd *theother) |
| 176 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 177 | if (one->type != theother->type) |
| 178 | { |
| 179 | zlog_warn ("Unsupported authentication type %d", theother->type); |
| 180 | return 1; /* Auth fail (different authentication types) */ |
| 181 | } |
| 182 | switch (one->type) |
| 183 | { |
| 184 | case ISIS_PASSWD_TYPE_CLEARTXT: |
| 185 | if (one->len != theother->len) |
| 186 | return 1; /* Auth fail () - passwd len mismatch */ |
| 187 | return memcmp (one->passwd, theother->passwd, one->len); |
| 188 | break; |
| 189 | default: |
| 190 | zlog_warn ("Unsupported authentication type"); |
| 191 | break; |
| 192 | } |
| 193 | return 0; /* Auth pass */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | /* |
| 197 | * Processing helper functions |
| 198 | */ |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 199 | static void |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 200 | tlvs_to_adj_nlpids (struct tlvs *tlvs, struct isis_adjacency *adj) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 201 | { |
| 202 | int i; |
| 203 | struct nlpids *tlv_nlpids; |
| 204 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 205 | if (tlvs->nlpids) |
| 206 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 207 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 208 | tlv_nlpids = tlvs->nlpids; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 209 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 210 | adj->nlpids.count = tlv_nlpids->count; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 211 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 212 | for (i = 0; i < tlv_nlpids->count; i++) |
| 213 | { |
| 214 | adj->nlpids.nlpids[i] = tlv_nlpids->nlpids[i]; |
| 215 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 216 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 217 | } |
| 218 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 219 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 220 | del_ip_addr (void *val) |
| 221 | { |
| 222 | XFREE (MTYPE_ISIS_TMP, val); |
| 223 | } |
| 224 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 225 | static void |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 226 | tlvs_to_adj_ipv4_addrs (struct tlvs *tlvs, struct isis_adjacency *adj) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 227 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 228 | struct listnode *node, *nnode; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 229 | struct in_addr *ipv4_addr, *malloced; |
| 230 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 231 | if (adj->ipv4_addrs) |
| 232 | { |
| 233 | adj->ipv4_addrs->del = del_ip_addr; |
| 234 | list_delete (adj->ipv4_addrs); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 235 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 236 | adj->ipv4_addrs = list_new (); |
| 237 | if (tlvs->ipv4_addrs) |
| 238 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 239 | for (ALL_LIST_ELEMENTS (tlvs->ipv4_addrs, node, nnode, ipv4_addr)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 240 | { |
| 241 | malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in_addr)); |
| 242 | memcpy (malloced, ipv4_addr, sizeof (struct in_addr)); |
| 243 | listnode_add (adj->ipv4_addrs, malloced); |
| 244 | } |
| 245 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | #ifdef HAVE_IPV6 |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 249 | static void |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 250 | tlvs_to_adj_ipv6_addrs (struct tlvs *tlvs, struct isis_adjacency *adj) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 251 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 252 | struct listnode *node, *nnode; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 253 | struct in6_addr *ipv6_addr, *malloced; |
| 254 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 255 | if (adj->ipv6_addrs) |
| 256 | { |
| 257 | adj->ipv6_addrs->del = del_ip_addr; |
| 258 | list_delete (adj->ipv6_addrs); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 259 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 260 | adj->ipv6_addrs = list_new (); |
| 261 | if (tlvs->ipv6_addrs) |
| 262 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 263 | for (ALL_LIST_ELEMENTS (tlvs->ipv6_addrs, node, nnode, ipv6_addr)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 264 | { |
| 265 | malloced = XMALLOC (MTYPE_ISIS_TMP, sizeof (struct in6_addr)); |
| 266 | memcpy (malloced, ipv6_addr, sizeof (struct in6_addr)); |
| 267 | listnode_add (adj->ipv6_addrs, malloced); |
| 268 | } |
| 269 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 270 | |
| 271 | } |
| 272 | #endif /* HAVE_IPV6 */ |
| 273 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 274 | /* |
| 275 | * RECEIVE SIDE |
| 276 | */ |
| 277 | |
| 278 | /* |
| 279 | * Process P2P IIH |
| 280 | * ISO - 10589 |
| 281 | * Section 8.2.5 - Receiving point-to-point IIH PDUs |
| 282 | * |
| 283 | */ |
| 284 | static int |
| 285 | process_p2p_hello (struct isis_circuit *circuit) |
| 286 | { |
| 287 | int retval = ISIS_OK; |
| 288 | struct isis_p2p_hello_hdr *hdr; |
| 289 | struct isis_adjacency *adj; |
| 290 | u_int32_t expected = 0, found; |
| 291 | struct tlvs tlvs; |
| 292 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 293 | if ((stream_get_endp (circuit->rcv_stream) - |
| 294 | stream_get_getp (circuit->rcv_stream)) < ISIS_P2PHELLO_HDRLEN) |
| 295 | { |
| 296 | zlog_warn ("Packet too short"); |
| 297 | return ISIS_WARNING; |
| 298 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 299 | |
| 300 | /* 8.2.5.1 PDU acceptance tests */ |
| 301 | |
| 302 | /* 8.2.5.1 a) external domain untrue */ |
| 303 | /* FIXME: not useful at all? */ |
| 304 | |
| 305 | /* 8.2.5.1 b) ID Length mismatch */ |
| 306 | /* checked at the handle_pdu */ |
| 307 | |
| 308 | /* 8.2.5.2 IIH PDU Processing */ |
| 309 | |
| 310 | /* 8.2.5.2 a) 1) Maximum Area Addresses */ |
| 311 | /* Already checked, and can also be ommited */ |
| 312 | |
| 313 | /* |
| 314 | * Get the header |
| 315 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 316 | hdr = (struct isis_p2p_hello_hdr *) STREAM_PNT (circuit->rcv_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 317 | circuit->rcv_stream->getp += ISIS_P2PHELLO_HDRLEN; |
| 318 | |
| 319 | /* hdr.circuit_t = stream_getc (stream); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 320 | stream_get (hdr.source_id, stream, ISIS_SYS_ID_LEN); |
| 321 | hdr.hold_time = stream_getw (stream); |
| 322 | hdr.pdu_len = stream_getw (stream); |
| 323 | hdr.local_id = stream_getc (stream); */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 324 | |
| 325 | /* |
| 326 | * My interpertation of the ISO, if no adj exists we will create one for |
| 327 | * the circuit |
| 328 | */ |
| 329 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 330 | if (isis->debugs & DEBUG_ADJ_PACKETS) |
| 331 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 332 | zlog_debug ("ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s," |
| 333 | " cir id %02d, length %d", |
| 334 | circuit->area->area_tag, circuit->interface->name, |
| 335 | circuit_t2string (circuit->circuit_is_type), |
| 336 | circuit->circuit_id, ntohs (hdr->pdu_len)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 337 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 338 | |
| 339 | adj = circuit->u.p2p.neighbor; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 340 | if (!adj) |
| 341 | { |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 342 | adj = isis_new_adj (hdr->source_id, (u_char *) " ", 0, circuit); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 343 | if (adj == NULL) |
| 344 | return ISIS_ERROR; |
| 345 | circuit->u.p2p.neighbor = adj; |
| 346 | isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL); |
| 347 | adj->sys_type = ISIS_SYSTYPE_UNKNOWN; |
| 348 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 349 | |
| 350 | /* 8.2.6 Monitoring point-to-point adjacencies */ |
| 351 | adj->hold_time = ntohs (hdr->hold_time); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 352 | adj->last_upd = time (NULL); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 353 | |
| 354 | /* |
| 355 | * Lets get the TLVS now |
| 356 | */ |
| 357 | expected |= TLVFLAG_AREA_ADDRS; |
| 358 | expected |= TLVFLAG_AUTH_INFO; |
| 359 | expected |= TLVFLAG_NLPID; |
| 360 | expected |= TLVFLAG_IPV4_ADDR; |
| 361 | expected |= TLVFLAG_IPV6_ADDR; |
| 362 | |
| 363 | retval = parse_tlvs (circuit->area->area_tag, |
| 364 | STREAM_PNT (circuit->rcv_stream), |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 365 | ntohs (hdr->pdu_len) - ISIS_P2PHELLO_HDRLEN |
| 366 | - ISIS_FIXED_HDR_LEN, &expected, &found, &tlvs); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 367 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 368 | if (retval > ISIS_WARNING) |
| 369 | { |
| 370 | free_tlvs (&tlvs); |
| 371 | return retval; |
| 372 | }; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 373 | |
| 374 | /* 8.2.5.1 c) Authentication */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 375 | if (circuit->passwd.type) |
| 376 | { |
| 377 | if (!(found & TLVFLAG_AUTH_INFO) || |
| 378 | authentication_check (&circuit->passwd, &tlvs.auth_info)) |
| 379 | { |
| 380 | isis_event_auth_failure (circuit->area->area_tag, |
| 381 | "P2P hello authentication failure", |
| 382 | hdr->source_id); |
| 383 | return ISIS_OK; |
| 384 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 385 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 386 | |
| 387 | /* we do this now because the adj may not survive till the end... */ |
| 388 | |
| 389 | /* we need to copy addresses to the adj */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 390 | tlvs_to_adj_ipv4_addrs (&tlvs, adj); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 391 | |
| 392 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 393 | tlvs_to_adj_ipv6_addrs (&tlvs, adj); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 394 | #endif /* HAVE_IPV6 */ |
| 395 | |
| 396 | /* lets take care of the expiry */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 397 | THREAD_TIMER_OFF (adj->t_expire); |
| 398 | THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj, |
| 399 | (long) adj->hold_time); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 400 | |
| 401 | /* 8.2.5.2 a) a match was detected */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 402 | if (area_match (circuit->area->area_addrs, tlvs.area_addrs)) |
| 403 | { |
| 404 | /* 8.2.5.2 a) 2) If the system is L1 - table 5 */ |
| 405 | if (circuit->area->is_type == IS_LEVEL_1) |
| 406 | { |
| 407 | switch (hdr->circuit_t) |
| 408 | { |
| 409 | case IS_LEVEL_1: |
| 410 | case IS_LEVEL_1_AND_2: |
| 411 | if (adj->adj_state != ISIS_ADJ_UP) |
| 412 | { |
| 413 | /* (4) adj state up */ |
| 414 | isis_adj_state_change (adj, ISIS_ADJ_UP, NULL); |
| 415 | /* (5) adj usage level 1 */ |
| 416 | adj->adj_usage = ISIS_ADJ_LEVEL1; |
| 417 | } |
| 418 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1) |
| 419 | { |
| 420 | ; /* accept */ |
| 421 | } |
| 422 | break; |
| 423 | case IS_LEVEL_2: |
| 424 | if (adj->adj_state != ISIS_ADJ_UP) |
| 425 | { |
| 426 | /* (7) reject - wrong system type event */ |
| 427 | zlog_warn ("wrongSystemType"); |
| 428 | return ISIS_WARNING; /* Reject */ |
| 429 | } |
| 430 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1) |
| 431 | { |
| 432 | /* (6) down - wrong system */ |
| 433 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System"); |
| 434 | } |
| 435 | break; |
| 436 | } |
| 437 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 438 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 439 | /* 8.2.5.2 a) 3) If the system is L1L2 - table 6 */ |
| 440 | if (circuit->area->is_type == IS_LEVEL_1_AND_2) |
| 441 | { |
| 442 | switch (hdr->circuit_t) |
| 443 | { |
| 444 | case IS_LEVEL_1: |
| 445 | if (adj->adj_state != ISIS_ADJ_UP) |
| 446 | { |
| 447 | /* (6) adj state up */ |
| 448 | isis_adj_state_change (adj, ISIS_ADJ_UP, NULL); |
| 449 | /* (7) adj usage level 1 */ |
| 450 | adj->adj_usage = ISIS_ADJ_LEVEL1; |
| 451 | } |
| 452 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1) |
| 453 | { |
| 454 | ; /* accept */ |
| 455 | } |
| 456 | else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) || |
| 457 | (adj->adj_usage == ISIS_ADJ_LEVEL2)) |
| 458 | { |
| 459 | /* (8) down - wrong system */ |
| 460 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System"); |
| 461 | } |
| 462 | break; |
| 463 | case IS_LEVEL_2: |
| 464 | if (adj->adj_state != ISIS_ADJ_UP) |
| 465 | { |
| 466 | /* (6) adj state up */ |
| 467 | isis_adj_state_change (adj, ISIS_ADJ_UP, NULL); |
| 468 | /* (9) adj usage level 2 */ |
| 469 | adj->adj_usage = ISIS_ADJ_LEVEL2; |
| 470 | } |
| 471 | else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) || |
| 472 | (adj->adj_usage == ISIS_ADJ_LEVEL1AND2)) |
| 473 | { |
| 474 | /* (8) down - wrong system */ |
| 475 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System"); |
| 476 | } |
| 477 | else if (adj->adj_usage == ISIS_ADJ_LEVEL2) |
| 478 | { |
| 479 | ; /* Accept */ |
| 480 | } |
| 481 | break; |
| 482 | case IS_LEVEL_1_AND_2: |
| 483 | if (adj->adj_state != ISIS_ADJ_UP) |
| 484 | { |
| 485 | /* (6) adj state up */ |
| 486 | isis_adj_state_change (adj, ISIS_ADJ_UP, NULL); |
| 487 | /* (10) adj usage level 1 */ |
| 488 | adj->adj_usage = ISIS_ADJ_LEVEL1AND2; |
| 489 | } |
| 490 | else if ((adj->adj_usage == ISIS_ADJ_LEVEL1) || |
| 491 | (adj->adj_usage == ISIS_ADJ_LEVEL2)) |
| 492 | { |
| 493 | /* (8) down - wrong system */ |
| 494 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System"); |
| 495 | } |
| 496 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2) |
| 497 | { |
| 498 | ; /* Accept */ |
| 499 | } |
| 500 | break; |
| 501 | } |
| 502 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 503 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 504 | /* 8.2.5.2 a) 4) If the system is L2 - table 7 */ |
| 505 | if (circuit->area->is_type == IS_LEVEL_2) |
| 506 | { |
| 507 | switch (hdr->circuit_t) |
| 508 | { |
| 509 | case IS_LEVEL_1: |
| 510 | if (adj->adj_state != ISIS_ADJ_UP) |
| 511 | { |
| 512 | /* (5) reject - wrong system type event */ |
| 513 | zlog_warn ("wrongSystemType"); |
| 514 | return ISIS_WARNING; /* Reject */ |
| 515 | } |
| 516 | else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) || |
| 517 | (adj->adj_usage == ISIS_ADJ_LEVEL2)) |
| 518 | { |
| 519 | /* (6) down - wrong system */ |
| 520 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System"); |
| 521 | } |
| 522 | break; |
| 523 | case IS_LEVEL_1_AND_2: |
| 524 | case IS_LEVEL_2: |
| 525 | if (adj->adj_state != ISIS_ADJ_UP) |
| 526 | { |
| 527 | /* (7) adj state up */ |
| 528 | isis_adj_state_change (adj, ISIS_ADJ_UP, NULL); |
| 529 | /* (8) adj usage level 2 */ |
| 530 | adj->adj_usage = ISIS_ADJ_LEVEL2; |
| 531 | } |
| 532 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2) |
| 533 | { |
| 534 | /* (6) down - wrong system */ |
| 535 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System"); |
| 536 | } |
| 537 | else if (adj->adj_usage == ISIS_ADJ_LEVEL2) |
| 538 | { |
| 539 | ; /* Accept */ |
| 540 | } |
| 541 | break; |
| 542 | } |
| 543 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 544 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 545 | /* 8.2.5.2 b) if no match was detected */ |
| 546 | else |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 547 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 548 | if (circuit->area->is_type == IS_LEVEL_1) |
| 549 | { |
| 550 | /* 8.2.5.2 b) 1) is_type L1 and adj is not up */ |
| 551 | if (adj->adj_state != ISIS_ADJ_UP) |
| 552 | { |
| 553 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch"); |
| 554 | /* 8.2.5.2 b) 2)is_type L1 and adj is up */ |
| 555 | } |
| 556 | else |
| 557 | { |
| 558 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, |
| 559 | "Down - Area Mismatch"); |
| 560 | } |
| 561 | } |
| 562 | /* 8.2.5.2 b 3 If the system is L2 or L1L2 - table 8 */ |
| 563 | else |
| 564 | { |
| 565 | switch (hdr->circuit_t) |
| 566 | { |
| 567 | case IS_LEVEL_1: |
| 568 | if (adj->adj_state != ISIS_ADJ_UP) |
| 569 | { |
| 570 | /* (6) reject - Area Mismatch event */ |
| 571 | zlog_warn ("AreaMismatch"); |
| 572 | return ISIS_WARNING; /* Reject */ |
| 573 | } |
| 574 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1) |
| 575 | { |
| 576 | /* (7) down - area mismatch */ |
| 577 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 578 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 579 | } |
| 580 | else if ((adj->adj_usage == ISIS_ADJ_LEVEL1AND2) || |
| 581 | (adj->adj_usage == ISIS_ADJ_LEVEL2)) |
| 582 | { |
| 583 | /* (7) down - wrong system */ |
| 584 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System"); |
| 585 | } |
| 586 | break; |
| 587 | case IS_LEVEL_1_AND_2: |
| 588 | case IS_LEVEL_2: |
| 589 | if (adj->adj_state != ISIS_ADJ_UP) |
| 590 | { |
| 591 | /* (8) adj state up */ |
| 592 | isis_adj_state_change (adj, ISIS_ADJ_UP, NULL); |
| 593 | /* (9) adj usage level 2 */ |
| 594 | adj->adj_usage = ISIS_ADJ_LEVEL2; |
| 595 | } |
| 596 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1) |
| 597 | { |
| 598 | /* (7) down - wrong system */ |
| 599 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System"); |
| 600 | } |
| 601 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2) |
| 602 | { |
| 603 | if (hdr->circuit_t == IS_LEVEL_2) |
| 604 | { |
| 605 | /* (7) down - wrong system */ |
| 606 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, |
| 607 | "Wrong System"); |
| 608 | } |
| 609 | else |
| 610 | { |
| 611 | /* (7) down - area mismatch */ |
| 612 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, |
| 613 | "Area Mismatch"); |
| 614 | } |
| 615 | } |
| 616 | else if (adj->adj_usage == ISIS_ADJ_LEVEL2) |
| 617 | { |
| 618 | ; /* Accept */ |
| 619 | } |
| 620 | break; |
| 621 | } |
| 622 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 623 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 624 | /* 8.2.5.2 c) if the action was up - comparing circuit IDs */ |
| 625 | /* FIXME - Missing parts */ |
| 626 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 627 | /* some of my own understanding of the ISO, why the heck does |
| 628 | * it not say what should I change the system_type to... |
| 629 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 630 | switch (adj->adj_usage) |
| 631 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 632 | case ISIS_ADJ_LEVEL1: |
| 633 | adj->sys_type = ISIS_SYSTYPE_L1_IS; |
| 634 | break; |
| 635 | case ISIS_ADJ_LEVEL2: |
| 636 | adj->sys_type = ISIS_SYSTYPE_L2_IS; |
| 637 | break; |
| 638 | case ISIS_ADJ_LEVEL1AND2: |
| 639 | adj->sys_type = ISIS_SYSTYPE_L2_IS; |
| 640 | break; |
| 641 | case ISIS_ADJ_NONE: |
| 642 | adj->sys_type = ISIS_SYSTYPE_UNKNOWN; |
| 643 | break; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 644 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 645 | |
| 646 | adj->circuit_t = hdr->circuit_t; |
| 647 | adj->level = hdr->circuit_t; |
| 648 | |
| 649 | free_tlvs (&tlvs); |
| 650 | |
| 651 | return retval; |
| 652 | } |
| 653 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 654 | /* |
| 655 | * Process IS-IS LAN Level 1/2 Hello PDU |
| 656 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 657 | static int |
| 658 | process_lan_hello (int level, struct isis_circuit *circuit, u_char * ssnpa) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 659 | { |
| 660 | int retval = ISIS_OK; |
| 661 | struct isis_lan_hello_hdr hdr; |
| 662 | struct isis_adjacency *adj; |
| 663 | u_int32_t expected = 0, found; |
| 664 | struct tlvs tlvs; |
| 665 | u_char *snpa; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 666 | struct listnode *node, *nnode; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 667 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 668 | if ((stream_get_endp (circuit->rcv_stream) - |
| 669 | stream_get_getp (circuit->rcv_stream)) < ISIS_LANHELLO_HDRLEN) |
| 670 | { |
| 671 | zlog_warn ("Packet too short"); |
| 672 | return ISIS_WARNING; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 673 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 674 | |
| 675 | if (circuit->ext_domain) |
| 676 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 677 | zlog_debug ("level %d LAN Hello received over circuit with " |
| 678 | "externalDomain = true", level); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 679 | return ISIS_WARNING; |
| 680 | } |
| 681 | |
| 682 | if (!accept_level (level, circuit->circuit_is_type)) |
| 683 | { |
| 684 | if (isis->debugs & DEBUG_ADJ_PACKETS) |
| 685 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 686 | zlog_debug ("ISIS-Adj (%s): Interface level mismatch, %s", |
| 687 | circuit->area->area_tag, circuit->interface->name); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 688 | } |
| 689 | return ISIS_WARNING; |
| 690 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 691 | |
| 692 | #if 0 |
| 693 | /* Cisco's debug message compatability */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 694 | if (!accept_level (level, circuit->area->is_type)) |
| 695 | { |
| 696 | if (isis->debugs & DEBUG_ADJ_PACKETS) |
| 697 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 698 | zlog_debug ("ISIS-Adj (%s): is type mismatch", |
| 699 | circuit->area->area_tag); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 700 | } |
| 701 | return ISIS_WARNING; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 702 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 703 | #endif |
| 704 | /* |
| 705 | * Fill the header |
| 706 | */ |
| 707 | hdr.circuit_t = stream_getc (circuit->rcv_stream); |
| 708 | stream_get (hdr.source_id, circuit->rcv_stream, ISIS_SYS_ID_LEN); |
| 709 | hdr.hold_time = stream_getw (circuit->rcv_stream); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 710 | hdr.pdu_len = stream_getw (circuit->rcv_stream); |
| 711 | hdr.prio = stream_getc (circuit->rcv_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 712 | stream_get (hdr.lan_id, circuit->rcv_stream, ISIS_SYS_ID_LEN + 1); |
| 713 | |
| 714 | if (hdr.circuit_t != IS_LEVEL_1 && hdr.circuit_t != IS_LEVEL_2 && |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 715 | hdr.circuit_t != IS_LEVEL_1_AND_2) |
| 716 | { |
| 717 | zlog_warn ("Level %d LAN Hello with Circuit Type %d", level, |
| 718 | hdr.circuit_t); |
| 719 | return ISIS_ERROR; |
| 720 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 721 | /* |
| 722 | * Then get the tlvs |
| 723 | */ |
| 724 | expected |= TLVFLAG_AUTH_INFO; |
| 725 | expected |= TLVFLAG_AREA_ADDRS; |
| 726 | expected |= TLVFLAG_LAN_NEIGHS; |
| 727 | expected |= TLVFLAG_NLPID; |
| 728 | expected |= TLVFLAG_IPV4_ADDR; |
| 729 | expected |= TLVFLAG_IPV6_ADDR; |
| 730 | |
| 731 | retval = parse_tlvs (circuit->area->area_tag, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 732 | STREAM_PNT (circuit->rcv_stream), |
| 733 | hdr.pdu_len - ISIS_LANHELLO_HDRLEN - |
| 734 | ISIS_FIXED_HDR_LEN, &expected, &found, &tlvs); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 735 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 736 | if (retval > ISIS_WARNING) |
| 737 | { |
| 738 | zlog_warn ("parse_tlvs() failed"); |
| 739 | goto out; |
| 740 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 741 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 742 | if (!(found & TLVFLAG_AREA_ADDRS)) |
| 743 | { |
| 744 | zlog_warn ("No Area addresses TLV in Level %d LAN IS to IS hello", |
| 745 | level); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 746 | retval = ISIS_WARNING; |
| 747 | goto out; |
| 748 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 749 | |
| 750 | if (circuit->passwd.type) |
| 751 | { |
| 752 | if (!(found & TLVFLAG_AUTH_INFO) || |
| 753 | authentication_check (&circuit->passwd, &tlvs.auth_info)) |
| 754 | { |
| 755 | isis_event_auth_failure (circuit->area->area_tag, |
| 756 | "LAN hello authentication failure", |
| 757 | hdr.source_id); |
| 758 | retval = ISIS_WARNING; |
| 759 | goto out; |
| 760 | } |
| 761 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 762 | |
| 763 | /* |
| 764 | * Accept the level 1 adjacency only if a match between local and |
| 765 | * remote area addresses is found |
| 766 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 767 | if (level == 1 && !area_match (circuit->area->area_addrs, tlvs.area_addrs)) |
| 768 | { |
| 769 | if (isis->debugs & DEBUG_ADJ_PACKETS) |
| 770 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 771 | zlog_debug ("ISIS-Adj (%s): Area mismatch, level %d IIH on %s", |
| 772 | circuit->area->area_tag, level, |
| 773 | circuit->interface->name); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 774 | } |
| 775 | retval = ISIS_OK; |
| 776 | goto out; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 777 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 778 | |
| 779 | /* |
| 780 | * it's own IIH PDU - discard silently |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 781 | */ |
| 782 | if (!memcmp (circuit->u.bc.snpa, ssnpa, ETH_ALEN)) |
| 783 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 784 | zlog_debug ("ISIS-Adj (%s): it's own IIH PDU - discarded", |
| 785 | circuit->area->area_tag); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 786 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 787 | retval = ISIS_OK; |
| 788 | goto out; |
| 789 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 790 | |
| 791 | /* |
| 792 | * check if it's own interface ip match iih ip addrs |
| 793 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 794 | if (!(found & TLVFLAG_IPV4_ADDR) |
| 795 | || !ip_match (circuit->ip_addrs, tlvs.ipv4_addrs)) |
| 796 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 797 | zlog_debug |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 798 | ("ISIS-Adj: No usable IP interface addresses in LAN IIH from %s\n", |
| 799 | circuit->interface->name); |
| 800 | retval = ISIS_WARNING; |
| 801 | goto out; |
| 802 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 803 | |
| 804 | adj = isis_adj_lookup (hdr.source_id, circuit->u.bc.adjdb[level - 1]); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 805 | if (!adj) |
| 806 | { |
| 807 | /* |
| 808 | * Do as in 8.4.2.5 |
| 809 | */ |
| 810 | adj = isis_new_adj (hdr.source_id, ssnpa, level, circuit); |
| 811 | if (adj == NULL) |
hasso | 13c48f7 | 2004-09-10 21:19:13 +0000 | [diff] [blame] | 812 | { |
| 813 | retval = ISIS_ERROR; |
| 814 | goto out; |
| 815 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 816 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 817 | adj->level = level; |
| 818 | isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 819 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 820 | if (level == 1) |
| 821 | { |
| 822 | adj->sys_type = ISIS_SYSTYPE_L1_IS; |
| 823 | } |
| 824 | else |
| 825 | { |
| 826 | adj->sys_type = ISIS_SYSTYPE_L2_IS; |
| 827 | } |
| 828 | list_delete_all_node (circuit->u.bc.lan_neighs[level - 1]); |
| 829 | isis_adj_build_neigh_list (circuit->u.bc.adjdb[level - 1], |
| 830 | circuit->u.bc.lan_neighs[level - 1]); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 831 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 832 | |
hasso | a211d65 | 2004-09-20 14:55:29 +0000 | [diff] [blame] | 833 | if(adj->dis_record[level-1].dis==ISIS_IS_DIS) |
| 834 | switch (level) |
| 835 | { |
| 836 | case 1: |
| 837 | if (memcmp (circuit->u.bc.l1_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1)) |
| 838 | { |
| 839 | thread_add_event (master, isis_event_dis_status_change, circuit, 0); |
hasso | 64a7afd | 2004-09-14 11:05:13 +0000 | [diff] [blame] | 840 | memcpy (&circuit->u.bc.l1_desig_is, hdr.lan_id, |
| 841 | ISIS_SYS_ID_LEN + 1); |
hasso | a211d65 | 2004-09-20 14:55:29 +0000 | [diff] [blame] | 842 | } |
| 843 | break; |
| 844 | case 2: |
| 845 | if (memcmp (circuit->u.bc.l2_desig_is, hdr.lan_id, ISIS_SYS_ID_LEN + 1)) |
| 846 | { |
| 847 | thread_add_event (master, isis_event_dis_status_change, circuit, 0); |
hasso | 64a7afd | 2004-09-14 11:05:13 +0000 | [diff] [blame] | 848 | memcpy (&circuit->u.bc.l2_desig_is, hdr.lan_id, |
| 849 | ISIS_SYS_ID_LEN + 1); |
hasso | a211d65 | 2004-09-20 14:55:29 +0000 | [diff] [blame] | 850 | } |
| 851 | break; |
| 852 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 853 | |
| 854 | adj->hold_time = hdr.hold_time; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 855 | adj->last_upd = time (NULL); |
| 856 | adj->prio[level - 1] = hdr.prio; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 857 | |
| 858 | memcpy (adj->lanid, hdr.lan_id, ISIS_SYS_ID_LEN + 1); |
| 859 | |
| 860 | /* which protocol are spoken ??? */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 861 | if (found & TLVFLAG_NLPID) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 862 | tlvs_to_adj_nlpids (&tlvs, adj); |
| 863 | |
| 864 | /* we need to copy addresses to the adj */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 865 | if (found & TLVFLAG_IPV4_ADDR) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 866 | tlvs_to_adj_ipv4_addrs (&tlvs, adj); |
| 867 | |
| 868 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 869 | if (found & TLVFLAG_IPV6_ADDR) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 870 | tlvs_to_adj_ipv6_addrs (&tlvs, adj); |
| 871 | #endif /* HAVE_IPV6 */ |
| 872 | |
| 873 | adj->circuit_t = hdr.circuit_t; |
| 874 | |
| 875 | /* lets take care of the expiry */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 876 | THREAD_TIMER_OFF (adj->t_expire); |
| 877 | THREAD_TIMER_ON (master, adj->t_expire, isis_adj_expire, adj, |
| 878 | (long) adj->hold_time); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 879 | |
| 880 | /* |
| 881 | * If the snpa for this circuit is found from LAN Neighbours TLV |
| 882 | * we have two-way communication -> adjacency can be put to state "up" |
| 883 | */ |
| 884 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 885 | if (found & TLVFLAG_LAN_NEIGHS) |
| 886 | { |
| 887 | if (adj->adj_state != ISIS_ADJ_UP) |
| 888 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 889 | for (ALL_LIST_ELEMENTS (tlvs.lan_neighs, node, nnode, snpa)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 890 | if (!memcmp (snpa, circuit->u.bc.snpa, ETH_ALEN)) |
| 891 | { |
| 892 | isis_adj_state_change (adj, ISIS_ADJ_UP, |
| 893 | "own SNPA found in LAN Neighbours TLV"); |
| 894 | } |
| 895 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 896 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 897 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 898 | out: |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 899 | /* DEBUG_ADJ_PACKETS */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 900 | if (isis->debugs & DEBUG_ADJ_PACKETS) |
| 901 | { |
| 902 | /* FIXME: is this place right? fix missing info */ |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 903 | zlog_debug ("ISIS-Adj (%s): Rcvd L%d LAN IIH from %s on %s, cirType %s, " |
| 904 | "cirID %u, length %ld", |
| 905 | circuit->area->area_tag, |
| 906 | level, snpa_print (ssnpa), circuit->interface->name, |
| 907 | circuit_t2string (circuit->circuit_is_type), |
| 908 | circuit->circuit_id, stream_get_endp (circuit->rcv_stream)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 909 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 910 | |
| 911 | free_tlvs (&tlvs); |
| 912 | |
| 913 | return retval; |
| 914 | } |
| 915 | |
| 916 | /* |
| 917 | * Process Level 1/2 Link State |
| 918 | * ISO - 10589 |
| 919 | * Section 7.3.15.1 - Action on receipt of a link state PDU |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 920 | */ |
| 921 | static int |
| 922 | process_lsp (int level, struct isis_circuit *circuit, u_char * ssnpa) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 923 | { |
| 924 | struct isis_link_state_hdr *hdr; |
| 925 | struct isis_adjacency *adj = NULL; |
| 926 | struct isis_lsp *lsp, *lsp0 = NULL; |
| 927 | int retval = ISIS_OK, comp = 0; |
| 928 | u_char lspid[ISIS_SYS_ID_LEN + 2]; |
| 929 | struct isis_passwd *passwd; |
| 930 | |
| 931 | /* Sanity check - FIXME: move to correct place */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 932 | if ((stream_get_endp (circuit->rcv_stream) - |
| 933 | stream_get_getp (circuit->rcv_stream)) < ISIS_LSP_HDR_LEN) |
| 934 | { |
| 935 | zlog_warn ("Packet too short"); |
| 936 | return ISIS_WARNING; |
| 937 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 938 | |
| 939 | /* Reference the header */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 940 | hdr = (struct isis_link_state_hdr *) STREAM_PNT (circuit->rcv_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 941 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 942 | if (isis->debugs & DEBUG_UPDATE_PACKETS) |
| 943 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 944 | zlog_debug ("ISIS-Upd (%s): Rcvd L%d LSP %s, seq 0x%08x, cksum 0x%04x, " |
| 945 | "lifetime %us, len %lu, on %s", |
| 946 | circuit->area->area_tag, |
| 947 | level, |
| 948 | rawlspid_print (hdr->lsp_id), |
| 949 | ntohl (hdr->seq_num), |
| 950 | ntohs (hdr->checksum), |
| 951 | ntohs (hdr->rem_lifetime), |
paul | 15935e9 | 2005-05-03 09:27:23 +0000 | [diff] [blame] | 952 | stream_get_endp (circuit->rcv_stream), |
| 953 | circuit->interface->name); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 954 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 955 | |
| 956 | assert (ntohs (hdr->pdu_len) > ISIS_LSP_HDR_LEN); |
| 957 | |
| 958 | /* Checksum sanity check - FIXME: move to correct place */ |
| 959 | /* 12 = sysid+pdu+remtime */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 960 | if (iso_csum_verify (STREAM_PNT (circuit->rcv_stream) + 4, |
| 961 | ntohs (hdr->pdu_len) - 12, &hdr->checksum)) |
| 962 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 963 | zlog_debug ("ISIS-Upd (%s): LSP %s invalid LSP checksum 0x%04x", |
| 964 | circuit->area->area_tag, |
| 965 | rawlspid_print (hdr->lsp_id), ntohs (hdr->checksum)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 966 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 967 | return ISIS_WARNING; |
| 968 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 969 | |
| 970 | /* 7.3.15.1 a) 1 - external domain circuit will discard lsps */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 971 | if (circuit->ext_domain) |
| 972 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 973 | zlog_debug |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 974 | ("ISIS-Upd (%s): LSP %s received at level %d over circuit with " |
| 975 | "externalDomain = true", circuit->area->area_tag, |
| 976 | rawlspid_print (hdr->lsp_id), level); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 977 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 978 | return ISIS_WARNING; |
| 979 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 980 | |
| 981 | /* 7.3.15.1 a) 2,3 - manualL2OnlyMode not implemented */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 982 | if (!accept_level (level, circuit->circuit_is_type)) |
| 983 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 984 | zlog_debug ("ISIS-Upd (%s): LSP %s received at level %d over circuit of" |
| 985 | " type %s", |
| 986 | circuit->area->area_tag, |
| 987 | rawlspid_print (hdr->lsp_id), |
| 988 | level, circuit_t2string (circuit->circuit_is_type)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 989 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 990 | return ISIS_WARNING; |
| 991 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 992 | |
| 993 | /* 7.3.15.1 a) 4 - need to make sure IDLength matches */ |
| 994 | |
| 995 | /* 7.3.15.1 a) 5 - maximum area match, can be ommited since we only use 3 */ |
| 996 | |
| 997 | /* 7.3.15.1 a) 7 - password check */ |
| 998 | (level == ISIS_LEVEL1) ? (passwd = &circuit->area->area_passwd) : |
| 999 | (passwd = &circuit->area->domain_passwd); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1000 | if (passwd->type) |
| 1001 | { |
| 1002 | if (isis_lsp_authinfo_check (circuit->rcv_stream, circuit->area, |
| 1003 | ntohs (hdr->pdu_len), passwd)) |
| 1004 | { |
| 1005 | isis_event_auth_failure (circuit->area->area_tag, |
| 1006 | "LSP authentication failure", hdr->lsp_id); |
| 1007 | return ISIS_WARNING; |
| 1008 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1009 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1010 | /* Find the LSP in our database and compare it to this Link State header */ |
| 1011 | lsp = lsp_search (hdr->lsp_id, circuit->area->lspdb[level - 1]); |
| 1012 | if (lsp) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1013 | comp = lsp_compare (circuit->area->area_tag, lsp, hdr->seq_num, |
| 1014 | hdr->checksum, hdr->rem_lifetime); |
| 1015 | if (lsp && (lsp->own_lsp |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1016 | #ifdef TOPOLOGY_GENERATE |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1017 | || lsp->from_topology |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1018 | #endif /* TOPOLOGY_GENERATE */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1019 | )) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1020 | goto dontcheckadj; |
| 1021 | |
| 1022 | /* 7.3.15.1 a) 6 - Must check that we have an adjacency of the same level */ |
| 1023 | /* for broadcast circuits, snpa should be compared */ |
| 1024 | /* FIXME : Point To Point */ |
| 1025 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1026 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 1027 | { |
| 1028 | adj = isis_adj_lookup_snpa (ssnpa, circuit->u.bc.adjdb[level - 1]); |
| 1029 | if (!adj) |
| 1030 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1031 | zlog_debug ("(%s): DS ======= LSP %s, seq 0x%08x, cksum 0x%04x, " |
| 1032 | "lifetime %us on %s", |
| 1033 | circuit->area->area_tag, |
| 1034 | rawlspid_print (hdr->lsp_id), |
| 1035 | ntohl (hdr->seq_num), |
| 1036 | ntohs (hdr->checksum), |
| 1037 | ntohs (hdr->rem_lifetime), circuit->interface->name); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1038 | return ISIS_WARNING; /* Silently discard */ |
| 1039 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1040 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1041 | |
| 1042 | /* for non broadcast, we just need to find same level adj */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1043 | else |
| 1044 | { |
| 1045 | /* If no adj, or no sharing of level */ |
| 1046 | if (!circuit->u.p2p.neighbor) |
| 1047 | { |
| 1048 | return ISIS_OK; /* Silently discard */ |
| 1049 | } |
| 1050 | else |
| 1051 | { |
| 1052 | if (((level == 1) && |
| 1053 | (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL2)) || |
| 1054 | ((level == 2) && |
| 1055 | (circuit->u.p2p.neighbor->adj_usage == ISIS_ADJ_LEVEL1))) |
| 1056 | return ISIS_WARNING; /* Silently discard */ |
| 1057 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1058 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1059 | dontcheckadj: |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1060 | /* 7.3.15.1 a) 7 - Passwords for level 1 - not implemented */ |
| 1061 | |
| 1062 | /* 7.3.15.1 a) 8 - Passwords for level 2 - not implemented */ |
| 1063 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1064 | /* 7.3.15.1 a) 9 - OriginatingLSPBufferSize - not implemented FIXME: do it */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1065 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1066 | /* 7.3.15.1 b) - If the remaining life time is 0, we perform 7.3.16.4 */ |
| 1067 | if (hdr->rem_lifetime == 0) |
| 1068 | { |
| 1069 | if (!lsp) |
| 1070 | { |
| 1071 | /* 7.3.16.4 a) 1) No LSP in db -> send an ack, but don't save */ |
| 1072 | /* only needed on explicit update, eg - p2p */ |
| 1073 | if (circuit->circ_type == CIRCUIT_T_P2P) |
| 1074 | ack_lsp (hdr, circuit, level); |
| 1075 | return retval; /* FIXME: do we need a purge? */ |
| 1076 | } |
| 1077 | else |
| 1078 | { |
| 1079 | if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN)) |
| 1080 | { |
| 1081 | /* LSP by some other system -> do 7.3.16.4 b) */ |
| 1082 | /* 7.3.16.4 b) 1) */ |
| 1083 | if (comp == LSP_NEWER) |
| 1084 | { |
| 1085 | lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area); |
| 1086 | /* ii */ |
| 1087 | ISIS_FLAGS_SET_ALL (lsp->SRMflags); |
| 1088 | /* iii */ |
| 1089 | ISIS_CLEAR_FLAG (lsp->SRMflags, circuit); |
| 1090 | /* v */ |
| 1091 | ISIS_FLAGS_CLEAR_ALL (lsp->SSNflags); /* FIXME: OTHER than c */ |
| 1092 | /* iv */ |
| 1093 | if (circuit->circ_type != CIRCUIT_T_BROADCAST) |
| 1094 | ISIS_SET_FLAG (lsp->SSNflags, circuit); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1095 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1096 | } /* 7.3.16.4 b) 2) */ |
| 1097 | else if (comp == LSP_EQUAL) |
| 1098 | { |
| 1099 | /* i */ |
| 1100 | ISIS_CLEAR_FLAG (lsp->SRMflags, circuit); |
| 1101 | /* ii */ |
| 1102 | if (circuit->circ_type != CIRCUIT_T_BROADCAST) |
| 1103 | ISIS_SET_FLAG (lsp->SSNflags, circuit); |
| 1104 | } /* 7.3.16.4 b) 3) */ |
| 1105 | else |
| 1106 | { |
| 1107 | ISIS_SET_FLAG (lsp->SRMflags, circuit); |
| 1108 | ISIS_CLEAR_FLAG (lsp->SSNflags, circuit); |
| 1109 | } |
| 1110 | } |
| 1111 | else |
| 1112 | { |
| 1113 | /* our own LSP -> 7.3.16.4 c) */ |
| 1114 | if (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) != |
| 1115 | circuit->circuit_id |
| 1116 | || (LSP_PSEUDO_ID (lsp->lsp_header->lsp_id) == |
| 1117 | circuit->circuit_id |
| 1118 | && circuit->u.bc.is_dr[level - 1] == 1)) |
| 1119 | { |
| 1120 | lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1); |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1121 | zlog_debug ("LSP LEN: %d", ntohs (lsp->lsp_header->pdu_len)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1122 | iso_csum_create (STREAM_DATA (lsp->pdu) + 12, |
| 1123 | ntohs (lsp->lsp_header->pdu_len) - 12, 12); |
| 1124 | ISIS_FLAGS_SET_ALL (lsp->SRMflags); |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1125 | zlog_debug |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1126 | ("ISIS-Upd (%s): (1) re-originating LSP %s new seq 0x%08x", |
| 1127 | circuit->area->area_tag, rawlspid_print (hdr->lsp_id), |
| 1128 | ntohl (lsp->lsp_header->seq_num)); |
| 1129 | lsp->lsp_header->rem_lifetime = |
| 1130 | htons (isis_jitter |
| 1131 | (circuit->area->max_lsp_lifetime[level - 1], |
| 1132 | MAX_AGE_JITTER)); |
| 1133 | } |
| 1134 | else |
| 1135 | { |
| 1136 | /* Got purge for own pseudo-lsp, and we are not DR */ |
| 1137 | lsp_purge_dr (lsp->lsp_header->lsp_id, circuit, level); |
| 1138 | } |
| 1139 | } |
| 1140 | } |
| 1141 | return retval; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1142 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1143 | /* 7.3.15.1 c) - If this is our own lsp and we don't have it initiate a |
| 1144 | * purge */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1145 | if (memcmp (hdr->lsp_id, isis->sysid, ISIS_SYS_ID_LEN) == 0) |
| 1146 | { |
| 1147 | if (!lsp) |
| 1148 | { |
| 1149 | /* 7.3.16.4: initiate a purge */ |
| 1150 | lsp_purge_non_exist (hdr, circuit->area); |
| 1151 | return ISIS_OK; |
| 1152 | } |
| 1153 | /* 7.3.15.1 d) - If this is our own lsp and we have it */ |
| 1154 | |
| 1155 | /* In 7.3.16.1, If an Intermediate system R somewhere in the domain |
| 1156 | * has information that the current sequence number for source S is |
| 1157 | * "greater" than that held by S, ... */ |
| 1158 | |
| 1159 | else if (ntohl (hdr->seq_num) > ntohl (lsp->lsp_header->seq_num)) |
| 1160 | { |
| 1161 | /* 7.3.16.1 */ |
| 1162 | lsp->lsp_header->seq_num = htonl (ntohl (hdr->seq_num) + 1); |
| 1163 | |
| 1164 | iso_csum_create (STREAM_DATA (lsp->pdu) + 12, |
| 1165 | ntohs (lsp->lsp_header->pdu_len) - 12, 12); |
| 1166 | |
| 1167 | ISIS_FLAGS_SET_ALL (lsp->SRMflags); |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1168 | zlog_debug |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1169 | ("ISIS-Upd (%s): (2) re-originating LSP %s new seq 0x%08x", |
| 1170 | circuit->area->area_tag, rawlspid_print (hdr->lsp_id), |
| 1171 | ntohl (lsp->lsp_header->seq_num)); |
| 1172 | lsp->lsp_header->rem_lifetime = |
| 1173 | htons (isis_jitter |
| 1174 | (circuit->area->max_lsp_lifetime[level - 1], |
| 1175 | MAX_AGE_JITTER)); |
| 1176 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1177 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1178 | else |
| 1179 | { |
| 1180 | /* 7.3.15.1 e) - This lsp originated on another system */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1181 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1182 | /* 7.3.15.1 e) 1) LSP newer than the one in db or no LSP in db */ |
| 1183 | if ((!lsp || comp == LSP_NEWER)) |
| 1184 | { |
| 1185 | /* i */ |
| 1186 | if (lsp) |
| 1187 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1188 | #ifdef EXTREME_DEBUG |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1189 | zlog_debug ("level %d number is - %ld", level, |
| 1190 | circuit->area->lspdb[level - 1]->dict_nodecount); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1191 | #endif /* EXTREME DEBUG */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1192 | lsp_search_and_destroy (hdr->lsp_id, |
| 1193 | circuit->area->lspdb[level - 1]); |
| 1194 | /* exists, so we overwrite */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1195 | #ifdef EXTREME_DEBUG |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1196 | zlog_debug ("level %d number is - %ld", level, |
| 1197 | circuit->area->lspdb[level - 1]->dict_nodecount); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1198 | #endif /* EXTREME DEBUG */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1199 | } |
| 1200 | /* |
| 1201 | * If this lsp is a frag, need to see if we have zero lsp present |
| 1202 | */ |
| 1203 | if (LSP_FRAGMENT (hdr->lsp_id) != 0) |
| 1204 | { |
| 1205 | memcpy (lspid, hdr->lsp_id, ISIS_SYS_ID_LEN + 1); |
| 1206 | LSP_FRAGMENT (lspid) = 0; |
| 1207 | lsp0 = lsp_search (lspid, circuit->area->lspdb[level - 1]); |
| 1208 | if (!lsp0) |
| 1209 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1210 | zlog_debug ("Got lsp frag, while zero lsp not database"); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1211 | return ISIS_OK; |
| 1212 | } |
| 1213 | } |
| 1214 | lsp = |
| 1215 | lsp_new_from_stream_ptr (circuit->rcv_stream, |
| 1216 | ntohs (hdr->pdu_len), lsp0, |
| 1217 | circuit->area); |
| 1218 | lsp->level = level; |
| 1219 | lsp->adj = adj; |
| 1220 | lsp_insert (lsp, circuit->area->lspdb[level - 1]); |
| 1221 | /* ii */ |
| 1222 | ISIS_FLAGS_SET_ALL (lsp->SRMflags); |
| 1223 | /* iii */ |
| 1224 | ISIS_CLEAR_FLAG (lsp->SRMflags, circuit); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1225 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1226 | /* iv */ |
| 1227 | if (circuit->circ_type != CIRCUIT_T_BROADCAST) |
| 1228 | ISIS_SET_FLAG (lsp->SSNflags, circuit); |
| 1229 | /* FIXME: v) */ |
| 1230 | } |
| 1231 | /* 7.3.15.1 e) 2) LSP equal to the one in db */ |
| 1232 | else if (comp == LSP_EQUAL) |
| 1233 | { |
| 1234 | ISIS_CLEAR_FLAG (lsp->SRMflags, circuit); |
| 1235 | lsp_update (lsp, hdr, circuit->rcv_stream, circuit->area); |
| 1236 | if (circuit->circ_type != CIRCUIT_T_BROADCAST) |
| 1237 | { |
| 1238 | ISIS_SET_FLAG (lsp->SSNflags, circuit); |
| 1239 | } |
| 1240 | } |
| 1241 | /* 7.3.15.1 e) 3) LSP older than the one in db */ |
| 1242 | else |
| 1243 | { |
| 1244 | ISIS_SET_FLAG (lsp->SRMflags, circuit); |
| 1245 | ISIS_CLEAR_FLAG (lsp->SSNflags, circuit); |
| 1246 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1247 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1248 | if (lsp) |
| 1249 | lsp->adj = adj; |
| 1250 | return retval; |
| 1251 | } |
| 1252 | |
| 1253 | /* |
| 1254 | * Process Sequence Numbers |
| 1255 | * ISO - 10589 |
| 1256 | * Section 7.3.15.2 - Action on receipt of a sequence numbers PDU |
| 1257 | */ |
| 1258 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 1259 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1260 | process_snp (int snp_type, int level, struct isis_circuit *circuit, |
| 1261 | u_char * ssnpa) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1262 | { |
| 1263 | int retval = ISIS_OK; |
| 1264 | int cmp, own_lsp; |
| 1265 | char typechar = ' '; |
| 1266 | int len; |
| 1267 | struct isis_adjacency *adj; |
| 1268 | struct isis_complete_seqnum_hdr *chdr = NULL; |
| 1269 | struct isis_partial_seqnum_hdr *phdr = NULL; |
| 1270 | uint32_t found = 0, expected = 0; |
| 1271 | struct isis_lsp *lsp; |
| 1272 | struct lsp_entry *entry; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1273 | struct listnode *node, *nnode; |
| 1274 | struct listnode *node2, *nnode2; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1275 | struct tlvs tlvs; |
| 1276 | struct list *lsp_list = NULL; |
| 1277 | struct isis_passwd *passwd; |
| 1278 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1279 | if (snp_type == ISIS_SNP_CSNP_FLAG) |
| 1280 | { |
| 1281 | /* getting the header info */ |
| 1282 | typechar = 'C'; |
| 1283 | chdr = |
| 1284 | (struct isis_complete_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream); |
| 1285 | circuit->rcv_stream->getp += ISIS_CSNP_HDRLEN; |
| 1286 | len = ntohs (chdr->pdu_len); |
| 1287 | if (len < ISIS_CSNP_HDRLEN) |
| 1288 | { |
| 1289 | zlog_warn ("Received a CSNP with bogus length!"); |
| 1290 | return ISIS_OK; |
| 1291 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1292 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1293 | else |
| 1294 | { |
| 1295 | typechar = 'P'; |
| 1296 | phdr = |
| 1297 | (struct isis_partial_seqnum_hdr *) STREAM_PNT (circuit->rcv_stream); |
| 1298 | circuit->rcv_stream->getp += ISIS_PSNP_HDRLEN; |
| 1299 | len = ntohs (phdr->pdu_len); |
| 1300 | if (len < ISIS_PSNP_HDRLEN) |
| 1301 | { |
| 1302 | zlog_warn ("Received a CSNP with bogus length!"); |
| 1303 | return ISIS_OK; |
| 1304 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1305 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1306 | |
| 1307 | /* 7.3.15.2 a) 1 - external domain circuit will discard snp pdu */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1308 | if (circuit->ext_domain) |
| 1309 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1310 | |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1311 | zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, " |
| 1312 | "skipping: circuit externalDomain = true", |
| 1313 | circuit->area->area_tag, |
| 1314 | level, typechar, circuit->interface->name); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1315 | |
| 1316 | return ISIS_OK; |
| 1317 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1318 | |
| 1319 | /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */ |
| 1320 | if (!accept_level (level, circuit->circuit_is_type)) |
| 1321 | { |
| 1322 | |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1323 | zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP on %s, " |
| 1324 | "skipping: circuit type %s does not match level %d", |
| 1325 | circuit->area->area_tag, |
| 1326 | level, |
| 1327 | typechar, |
| 1328 | circuit->interface->name, |
| 1329 | circuit_t2string (circuit->circuit_is_type), level); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1330 | |
| 1331 | return ISIS_OK; |
| 1332 | } |
| 1333 | |
| 1334 | /* 7.3.15.2 a) 4 - not applicable for CSNP only PSNPs on broadcast */ |
| 1335 | if ((snp_type == ISIS_SNP_PSNP_FLAG) && |
| 1336 | (circuit->circ_type == CIRCUIT_T_BROADCAST)) |
| 1337 | { |
| 1338 | if (!circuit->u.bc.is_dr[level - 1]) |
| 1339 | { |
| 1340 | |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1341 | zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, " |
| 1342 | "skipping: we are not the DIS", |
| 1343 | circuit->area->area_tag, |
| 1344 | level, |
| 1345 | typechar, snpa_print (ssnpa), circuit->interface->name); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1346 | |
| 1347 | return ISIS_OK; |
| 1348 | } |
| 1349 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1350 | |
| 1351 | /* 7.3.15.2 a) 5 - need to make sure IDLength matches - already checked */ |
| 1352 | |
| 1353 | /* 7.3.15.2 a) 6 - maximum area match, can be ommited since we only use 3 |
| 1354 | * - already checked */ |
| 1355 | |
| 1356 | /* 7.3.15.2 a) 7 - Must check that we have an adjacency of the same level */ |
| 1357 | /* for broadcast circuits, snpa should be compared */ |
| 1358 | /* FIXME : Do we need to check SNPA? */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1359 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 1360 | { |
| 1361 | if (snp_type == ISIS_SNP_CSNP_FLAG) |
| 1362 | { |
| 1363 | adj = |
| 1364 | isis_adj_lookup (chdr->source_id, circuit->u.bc.adjdb[level - 1]); |
| 1365 | } |
| 1366 | else |
| 1367 | { |
| 1368 | /* a psnp on a broadcast, how lovely of Juniper :) */ |
| 1369 | adj = |
| 1370 | isis_adj_lookup (phdr->source_id, circuit->u.bc.adjdb[level - 1]); |
| 1371 | } |
| 1372 | if (!adj) |
| 1373 | return ISIS_OK; /* Silently discard */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1374 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1375 | else |
| 1376 | { |
| 1377 | if (!circuit->u.p2p.neighbor) |
| 1378 | return ISIS_OK; /* Silently discard */ |
| 1379 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1380 | |
| 1381 | /* 7.3.15.2 a) 8 - Passwords for level 1 - not implemented */ |
| 1382 | |
| 1383 | /* 7.3.15.2 a) 9 - Passwords for level 2 - not implemented */ |
| 1384 | |
| 1385 | memset (&tlvs, 0, sizeof (struct tlvs)); |
| 1386 | |
| 1387 | /* parse the SNP */ |
| 1388 | expected |= TLVFLAG_LSP_ENTRIES; |
| 1389 | expected |= TLVFLAG_AUTH_INFO; |
| 1390 | retval = parse_tlvs (circuit->area->area_tag, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1391 | STREAM_PNT (circuit->rcv_stream), |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1392 | len - circuit->rcv_stream->getp, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1393 | &expected, &found, &tlvs); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1394 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1395 | if (retval > ISIS_WARNING) |
| 1396 | { |
| 1397 | zlog_warn ("something went very wrong processing SNP"); |
| 1398 | free_tlvs (&tlvs); |
| 1399 | return retval; |
| 1400 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1401 | |
hasso | 1cbc562 | 2005-01-01 10:29:51 +0000 | [diff] [blame] | 1402 | if (level == 1) |
| 1403 | passwd = &circuit->area->area_passwd; |
| 1404 | else |
| 1405 | passwd = &circuit->area->domain_passwd; |
| 1406 | |
| 1407 | if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_RECV)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1408 | { |
hasso | 1cbc562 | 2005-01-01 10:29:51 +0000 | [diff] [blame] | 1409 | if (passwd->type) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1410 | { |
hasso | 1cbc562 | 2005-01-01 10:29:51 +0000 | [diff] [blame] | 1411 | if (!(found & TLVFLAG_AUTH_INFO) || |
| 1412 | authentication_check (passwd, &tlvs.auth_info)) |
| 1413 | { |
| 1414 | isis_event_auth_failure (circuit->area->area_tag, |
| 1415 | "SNP authentication" " failure", |
| 1416 | phdr ? phdr->source_id : chdr->source_id); |
| 1417 | return ISIS_OK; |
| 1418 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1419 | } |
| 1420 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1421 | |
| 1422 | /* debug isis snp-packets */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1423 | if (isis->debugs & DEBUG_SNP_PACKETS) |
| 1424 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1425 | zlog_debug ("ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s", |
| 1426 | circuit->area->area_tag, |
| 1427 | level, |
| 1428 | typechar, snpa_print (ssnpa), circuit->interface->name); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1429 | if (tlvs.lsp_entries) |
| 1430 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1431 | for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1432 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1433 | zlog_debug ("ISIS-Snp (%s): %cSNP entry %s, seq 0x%08x," |
| 1434 | " cksum 0x%04x, lifetime %us", |
| 1435 | circuit->area->area_tag, |
| 1436 | typechar, |
| 1437 | rawlspid_print (entry->lsp_id), |
| 1438 | ntohl (entry->seq_num), |
| 1439 | ntohs (entry->checksum), ntohs (entry->rem_lifetime)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1440 | } |
| 1441 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1442 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1443 | |
| 1444 | /* 7.3.15.2 b) Actions on LSP_ENTRIES reported */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1445 | if (tlvs.lsp_entries) |
| 1446 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1447 | for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1448 | { |
| 1449 | lsp = lsp_search (entry->lsp_id, circuit->area->lspdb[level - 1]); |
| 1450 | own_lsp = !memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN); |
| 1451 | if (lsp) |
| 1452 | { |
| 1453 | /* 7.3.15.2 b) 1) is this LSP newer */ |
| 1454 | cmp = lsp_compare (circuit->area->area_tag, lsp, entry->seq_num, |
| 1455 | entry->checksum, entry->rem_lifetime); |
| 1456 | /* 7.3.15.2 b) 2) if it equals, clear SRM on p2p */ |
| 1457 | if (cmp == LSP_EQUAL) |
| 1458 | { |
| 1459 | if (circuit->circ_type != CIRCUIT_T_BROADCAST) |
| 1460 | ISIS_CLEAR_FLAG (lsp->SRMflags, circuit); |
| 1461 | /* 7.3.15.2 b) 3) if it is older, clear SSN and set SRM */ |
| 1462 | } |
| 1463 | else if (cmp == LSP_OLDER) |
| 1464 | { |
| 1465 | ISIS_CLEAR_FLAG (lsp->SSNflags, circuit); |
| 1466 | ISIS_SET_FLAG (lsp->SRMflags, circuit); |
| 1467 | } |
| 1468 | else |
| 1469 | { |
| 1470 | /* 7.3.15.2 b) 4) if it is newer, set SSN and clear SRM |
| 1471 | * on p2p */ |
| 1472 | if (own_lsp) |
| 1473 | { |
| 1474 | lsp_inc_seqnum (lsp, ntohl (entry->seq_num)); |
| 1475 | ISIS_SET_FLAG (lsp->SRMflags, circuit); |
| 1476 | } |
| 1477 | else |
| 1478 | { |
| 1479 | ISIS_SET_FLAG (lsp->SSNflags, circuit); |
| 1480 | if (circuit->circ_type != CIRCUIT_T_BROADCAST) |
| 1481 | ISIS_CLEAR_FLAG (lsp->SRMflags, circuit); |
| 1482 | } |
| 1483 | } |
| 1484 | } |
| 1485 | else |
| 1486 | { |
| 1487 | /* 7.3.15.2 b) 5) if it was not found, and all of those are not 0, |
| 1488 | * insert it and set SSN on it */ |
| 1489 | if (entry->rem_lifetime && entry->checksum && entry->seq_num && |
| 1490 | memcmp (entry->lsp_id, isis->sysid, ISIS_SYS_ID_LEN)) |
| 1491 | { |
| 1492 | lsp = lsp_new (entry->lsp_id, ntohs (entry->rem_lifetime), |
| 1493 | 0, 0, entry->checksum, level); |
| 1494 | lsp_insert (lsp, circuit->area->lspdb[level - 1]); |
| 1495 | ISIS_SET_FLAG (lsp->SSNflags, circuit); |
| 1496 | } |
| 1497 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1498 | } |
| 1499 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1500 | |
| 1501 | /* 7.3.15.2 c) on CSNP set SRM for all in range which were not reported */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1502 | if (snp_type == ISIS_SNP_CSNP_FLAG) |
| 1503 | { |
| 1504 | /* |
| 1505 | * Build a list from our own LSP db bounded with start_ and stop_lsp_id |
| 1506 | */ |
| 1507 | lsp_list = list_new (); |
| 1508 | lsp_build_list_nonzero_ht (chdr->start_lsp_id, chdr->stop_lsp_id, |
| 1509 | lsp_list, circuit->area->lspdb[level - 1]); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1510 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1511 | /* Fixme: Find a better solution */ |
| 1512 | if (tlvs.lsp_entries) |
| 1513 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1514 | for (ALL_LIST_ELEMENTS (tlvs.lsp_entries, node, nnode, entry)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1515 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1516 | for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1517 | { |
| 1518 | if (lsp_id_cmp (lsp->lsp_header->lsp_id, entry->lsp_id) == 0) |
| 1519 | { |
| 1520 | list_delete_node (lsp_list, node2); |
| 1521 | break; |
| 1522 | } |
| 1523 | } |
| 1524 | } |
| 1525 | } |
| 1526 | /* on remaining LSPs we set SRM (neighbor knew not of) */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1527 | for (ALL_LIST_ELEMENTS (lsp_list, node2, nnode2, lsp)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1528 | { |
| 1529 | ISIS_SET_FLAG (lsp->SRMflags, circuit); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1530 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1531 | /* lets free it */ |
| 1532 | list_free (lsp_list); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1533 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1534 | |
| 1535 | free_tlvs (&tlvs); |
| 1536 | return retval; |
| 1537 | } |
| 1538 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 1539 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1540 | process_csnp (int level, struct isis_circuit *circuit, u_char * ssnpa) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1541 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1542 | /* Sanity check - FIXME: move to correct place */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1543 | if ((stream_get_endp (circuit->rcv_stream) - |
| 1544 | stream_get_getp (circuit->rcv_stream)) < ISIS_CSNP_HDRLEN) |
| 1545 | { |
| 1546 | zlog_warn ("Packet too short ( < %d)", ISIS_CSNP_HDRLEN); |
| 1547 | return ISIS_WARNING; |
| 1548 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1549 | |
| 1550 | return process_snp (ISIS_SNP_CSNP_FLAG, level, circuit, ssnpa); |
| 1551 | } |
| 1552 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 1553 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1554 | process_psnp (int level, struct isis_circuit *circuit, u_char * ssnpa) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1555 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1556 | if ((stream_get_endp (circuit->rcv_stream) - |
| 1557 | stream_get_getp (circuit->rcv_stream)) < ISIS_PSNP_HDRLEN) |
| 1558 | { |
| 1559 | zlog_warn ("Packet too short"); |
| 1560 | return ISIS_WARNING; |
| 1561 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1562 | |
| 1563 | return process_snp (ISIS_SNP_PSNP_FLAG, level, circuit, ssnpa); |
| 1564 | } |
| 1565 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1566 | /* |
| 1567 | * Process ISH |
| 1568 | * ISO - 10589 |
| 1569 | * Section 8.2.2 - Receiving ISH PDUs by an intermediate system |
| 1570 | * FIXME: sample packet dump, need to figure 0x81 - looks like NLPid |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1571 | * 0x82 0x15 0x01 0x00 0x04 0x01 0x2c 0x59 |
| 1572 | * 0x38 0x08 0x47 0x00 0x01 0x00 0x02 0x00 |
| 1573 | * 0x03 0x00 0x81 0x01 0xcc |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1574 | */ |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 1575 | static int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1576 | process_is_hello (struct isis_circuit *circuit) |
| 1577 | { |
| 1578 | struct isis_adjacency *adj; |
| 1579 | int retval = ISIS_OK; |
| 1580 | u_char neigh_len; |
| 1581 | u_char *sysid; |
| 1582 | |
| 1583 | /* In this point in time we are not yet able to handle is_hellos |
| 1584 | * on lan - Sorry juniper... |
| 1585 | */ |
| 1586 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 1587 | return retval; |
| 1588 | |
| 1589 | neigh_len = stream_getc (circuit->rcv_stream); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1590 | sysid = STREAM_PNT (circuit->rcv_stream) + neigh_len - 1 - ISIS_SYS_ID_LEN; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1591 | adj = circuit->u.p2p.neighbor; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1592 | if (!adj) |
| 1593 | { |
| 1594 | /* 8.2.2 */ |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 1595 | adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1596 | if (adj == NULL) |
| 1597 | return ISIS_ERROR; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1598 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1599 | isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL); |
| 1600 | adj->sys_type = ISIS_SYSTYPE_UNKNOWN; |
| 1601 | circuit->u.p2p.neighbor = adj; |
| 1602 | } |
| 1603 | /* 8.2.2 a) */ |
| 1604 | if ((adj->adj_state == ISIS_ADJ_UP) && memcmp (adj->sysid, sysid, |
| 1605 | ISIS_SYS_ID_LEN)) |
| 1606 | { |
| 1607 | /* 8.2.2 a) 1) FIXME: adjStateChange(down) event */ |
| 1608 | /* 8.2.2 a) 2) delete the adj */ |
| 1609 | XFREE (MTYPE_ISIS_ADJACENCY, adj); |
| 1610 | /* 8.2.2 a) 3) create a new adj */ |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 1611 | adj = isis_new_adj (sysid, (u_char *) " ", 0, circuit); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1612 | if (adj == NULL) |
| 1613 | return ISIS_ERROR; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1614 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1615 | /* 8.2.2 a) 3) i */ |
| 1616 | isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL); |
| 1617 | /* 8.2.2 a) 3) ii */ |
| 1618 | adj->sys_type = ISIS_SYSTYPE_UNKNOWN; |
| 1619 | /* 8.2.2 a) 4) quite meaningless */ |
| 1620 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1621 | /* 8.2.2 b) ignore on condition */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1622 | if ((adj->adj_state == ISIS_ADJ_INITIALIZING) && |
| 1623 | (adj->sys_type == ISIS_SYSTYPE_IS)) |
| 1624 | { |
| 1625 | /* do nothing */ |
| 1626 | } |
| 1627 | else |
| 1628 | { |
| 1629 | /* 8.2.2 c) respond with a p2p IIH */ |
| 1630 | send_hello (circuit, 1); |
| 1631 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1632 | /* 8.2.2 d) type is IS */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1633 | adj->sys_type = ISIS_SYSTYPE_IS; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1634 | /* 8.2.2 e) FIXME: Circuit type of? */ |
| 1635 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1636 | return retval; |
| 1637 | } |
| 1638 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1639 | /* |
| 1640 | * PDU Dispatcher |
| 1641 | */ |
| 1642 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 1643 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1644 | isis_handle_pdu (struct isis_circuit *circuit, u_char * ssnpa) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1645 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1646 | struct isis_fixed_hdr *hdr; |
| 1647 | struct esis_fixed_hdr *esis_hdr; |
| 1648 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1649 | int retval = ISIS_OK; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1650 | |
| 1651 | /* |
| 1652 | * Let's first read data from stream to the header |
| 1653 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1654 | hdr = (struct isis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1655 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1656 | if ((hdr->idrp != ISO10589_ISIS) && (hdr->idrp != ISO9542_ESIS)) |
| 1657 | { |
| 1658 | zlog_warn ("Not an IS-IS or ES-IS packet IDRP=%02x", hdr->idrp); |
| 1659 | return ISIS_ERROR; |
| 1660 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1661 | |
| 1662 | /* now we need to know if this is an ISO 9542 packet and |
| 1663 | * take real good care of it, waaa! |
| 1664 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1665 | if (hdr->idrp == ISO9542_ESIS) |
| 1666 | { |
| 1667 | esis_hdr = (struct esis_fixed_hdr *) STREAM_DATA (circuit->rcv_stream); |
| 1668 | stream_set_getp (circuit->rcv_stream, ESIS_FIXED_HDR_LEN); |
| 1669 | /* FIXME: Need to do some acceptence tests */ |
| 1670 | /* example length... */ |
| 1671 | switch (esis_hdr->pdu_type) |
| 1672 | { |
| 1673 | case ESH_PDU: |
| 1674 | /* FIXME */ |
| 1675 | break; |
| 1676 | case ISH_PDU: |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 1677 | zlog_debug ("AN ISH PDU!!"); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1678 | retval = process_is_hello (circuit); |
| 1679 | break; |
| 1680 | default: |
| 1681 | return ISIS_ERROR; |
| 1682 | } |
| 1683 | return retval; |
| 1684 | } |
| 1685 | else |
| 1686 | { |
| 1687 | stream_set_getp (circuit->rcv_stream, ISIS_FIXED_HDR_LEN); |
| 1688 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1689 | /* |
| 1690 | * and then process it |
| 1691 | */ |
| 1692 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1693 | if (hdr->length < ISIS_MINIMUM_FIXED_HDR_LEN) |
| 1694 | { |
| 1695 | zlog_err ("Fixed header length = %d", hdr->length); |
| 1696 | return ISIS_ERROR; |
| 1697 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1698 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1699 | if (hdr->version1 != 1) |
| 1700 | { |
| 1701 | zlog_warn ("Unsupported ISIS version %u", hdr->version1); |
| 1702 | return ISIS_WARNING; |
| 1703 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1704 | /* either 6 or 0 */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1705 | if ((hdr->id_len != 0) && (hdr->id_len != ISIS_SYS_ID_LEN)) |
| 1706 | { |
| 1707 | zlog_err |
| 1708 | ("IDFieldLengthMismatch: ID Length field in a received PDU %u, " |
| 1709 | "while the parameter for this IS is %u", hdr->id_len, |
| 1710 | ISIS_SYS_ID_LEN); |
| 1711 | return ISIS_ERROR; |
| 1712 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1713 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1714 | if (hdr->version2 != 1) |
| 1715 | { |
| 1716 | zlog_warn ("Unsupported ISIS version %u", hdr->version2); |
| 1717 | return ISIS_WARNING; |
| 1718 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1719 | /* either 3 or 0 */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1720 | if ((hdr->max_area_addrs != 0) |
| 1721 | && (hdr->max_area_addrs != isis->max_area_addrs)) |
| 1722 | { |
| 1723 | zlog_err ("maximumAreaAddressesMismatch: maximumAreaAdresses in a " |
| 1724 | "received PDU %u while the parameter for this IS is %u", |
| 1725 | hdr->max_area_addrs, isis->max_area_addrs); |
| 1726 | return ISIS_ERROR; |
| 1727 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1728 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1729 | switch (hdr->pdu_type) |
| 1730 | { |
| 1731 | case L1_LAN_HELLO: |
| 1732 | retval = process_lan_hello (ISIS_LEVEL1, circuit, ssnpa); |
| 1733 | break; |
| 1734 | case L2_LAN_HELLO: |
| 1735 | retval = process_lan_hello (ISIS_LEVEL2, circuit, ssnpa); |
| 1736 | break; |
| 1737 | case P2P_HELLO: |
| 1738 | retval = process_p2p_hello (circuit); |
| 1739 | break; |
| 1740 | case L1_LINK_STATE: |
| 1741 | retval = process_lsp (ISIS_LEVEL1, circuit, ssnpa); |
| 1742 | break; |
| 1743 | case L2_LINK_STATE: |
| 1744 | retval = process_lsp (ISIS_LEVEL2, circuit, ssnpa); |
| 1745 | break; |
| 1746 | case L1_COMPLETE_SEQ_NUM: |
| 1747 | retval = process_csnp (ISIS_LEVEL1, circuit, ssnpa); |
| 1748 | break; |
| 1749 | case L2_COMPLETE_SEQ_NUM: |
| 1750 | retval = process_csnp (ISIS_LEVEL2, circuit, ssnpa); |
| 1751 | break; |
| 1752 | case L1_PARTIAL_SEQ_NUM: |
| 1753 | retval = process_psnp (ISIS_LEVEL1, circuit, ssnpa); |
| 1754 | break; |
| 1755 | case L2_PARTIAL_SEQ_NUM: |
| 1756 | retval = process_psnp (ISIS_LEVEL2, circuit, ssnpa); |
| 1757 | break; |
| 1758 | default: |
| 1759 | return ISIS_ERROR; |
| 1760 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1761 | |
| 1762 | return retval; |
| 1763 | } |
| 1764 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1765 | #ifdef GNU_LINUX |
| 1766 | int |
| 1767 | isis_receive (struct thread *thread) |
| 1768 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1769 | struct isis_circuit *circuit; |
| 1770 | u_char ssnpa[ETH_ALEN]; |
| 1771 | int retval; |
| 1772 | |
| 1773 | /* |
| 1774 | * Get the circuit |
| 1775 | */ |
| 1776 | circuit = THREAD_ARG (thread); |
| 1777 | assert (circuit); |
| 1778 | |
| 1779 | if (circuit->rcv_stream == NULL) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1780 | circuit->rcv_stream = stream_new (ISO_MTU (circuit)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1781 | else |
| 1782 | stream_reset (circuit->rcv_stream); |
| 1783 | |
| 1784 | retval = circuit->rx (circuit, ssnpa); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1785 | circuit->t_read = NULL; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1786 | |
| 1787 | if (retval == ISIS_OK) |
| 1788 | retval = isis_handle_pdu (circuit, ssnpa); |
| 1789 | |
| 1790 | /* |
| 1791 | * prepare for next packet. |
| 1792 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1793 | THREAD_READ_ON (master, circuit->t_read, isis_receive, circuit, |
| 1794 | circuit->fd); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1795 | |
| 1796 | return retval; |
| 1797 | } |
| 1798 | |
| 1799 | #else |
| 1800 | int |
| 1801 | isis_receive (struct thread *thread) |
| 1802 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1803 | struct isis_circuit *circuit; |
| 1804 | u_char ssnpa[ETH_ALEN]; |
| 1805 | int retval; |
| 1806 | |
| 1807 | /* |
| 1808 | * Get the circuit |
| 1809 | */ |
| 1810 | circuit = THREAD_ARG (thread); |
| 1811 | assert (circuit); |
| 1812 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1813 | circuit->t_read = NULL; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1814 | |
| 1815 | if (circuit->rcv_stream == NULL) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1816 | circuit->rcv_stream = stream_new (ISO_MTU (circuit)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1817 | else |
| 1818 | stream_reset (circuit->rcv_stream); |
| 1819 | |
| 1820 | retval = circuit->rx (circuit, ssnpa); |
| 1821 | |
| 1822 | if (retval == ISIS_OK) |
| 1823 | retval = isis_handle_pdu (circuit, ssnpa); |
| 1824 | |
| 1825 | /* |
| 1826 | * prepare for next packet. |
| 1827 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1828 | circuit->t_read = thread_add_timer_msec (master, isis_receive, circuit, |
| 1829 | listcount |
| 1830 | (circuit->area->circuit_list) * |
| 1831 | 100); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1832 | |
| 1833 | return retval; |
| 1834 | } |
| 1835 | |
| 1836 | #endif |
| 1837 | |
| 1838 | /* filling of the fixed isis header */ |
| 1839 | void |
| 1840 | fill_fixed_hdr (struct isis_fixed_hdr *hdr, u_char pdu_type) |
| 1841 | { |
| 1842 | memset (hdr, 0, sizeof (struct isis_fixed_hdr)); |
| 1843 | |
| 1844 | hdr->idrp = ISO10589_ISIS; |
| 1845 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1846 | switch (pdu_type) |
| 1847 | { |
| 1848 | case L1_LAN_HELLO: |
| 1849 | case L2_LAN_HELLO: |
| 1850 | hdr->length = ISIS_LANHELLO_HDRLEN; |
| 1851 | break; |
| 1852 | case P2P_HELLO: |
| 1853 | hdr->length = ISIS_P2PHELLO_HDRLEN; |
| 1854 | break; |
| 1855 | case L1_LINK_STATE: |
| 1856 | case L2_LINK_STATE: |
| 1857 | hdr->length = ISIS_LSP_HDR_LEN; |
| 1858 | break; |
| 1859 | case L1_COMPLETE_SEQ_NUM: |
| 1860 | case L2_COMPLETE_SEQ_NUM: |
| 1861 | hdr->length = ISIS_CSNP_HDRLEN; |
| 1862 | break; |
| 1863 | case L1_PARTIAL_SEQ_NUM: |
| 1864 | case L2_PARTIAL_SEQ_NUM: |
| 1865 | hdr->length = ISIS_PSNP_HDRLEN; |
| 1866 | break; |
| 1867 | default: |
| 1868 | zlog_warn ("fill_fixed_hdr(): unknown pdu type %d", pdu_type); |
| 1869 | return; |
| 1870 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1871 | hdr->length += ISIS_FIXED_HDR_LEN; |
| 1872 | hdr->pdu_type = pdu_type; |
| 1873 | hdr->version1 = 1; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1874 | hdr->id_len = 0; /* ISIS_SYS_ID_LEN - 0==6 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1875 | hdr->version2 = 1; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1876 | hdr->max_area_addrs = 0; /* isis->max_area_addrs - 0==3 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1877 | } |
| 1878 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1879 | /* |
| 1880 | * SEND SIDE |
| 1881 | */ |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 1882 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1883 | fill_fixed_hdr_andstream (struct isis_fixed_hdr *hdr, u_char pdu_type, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1884 | struct stream *stream) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1885 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1886 | fill_fixed_hdr (hdr, pdu_type); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1887 | |
| 1888 | stream_putc (stream, hdr->idrp); |
| 1889 | stream_putc (stream, hdr->length); |
| 1890 | stream_putc (stream, hdr->version1); |
| 1891 | stream_putc (stream, hdr->id_len); |
| 1892 | stream_putc (stream, hdr->pdu_type); |
| 1893 | stream_putc (stream, hdr->version2); |
| 1894 | stream_putc (stream, hdr->reserved); |
| 1895 | stream_putc (stream, hdr->max_area_addrs); |
| 1896 | |
| 1897 | return; |
| 1898 | } |
| 1899 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1900 | int |
| 1901 | send_hello (struct isis_circuit *circuit, int level) |
| 1902 | { |
| 1903 | struct isis_fixed_hdr fixed_hdr; |
| 1904 | struct isis_lan_hello_hdr hello_hdr; |
| 1905 | struct isis_p2p_hello_hdr p2p_hello_hdr; |
| 1906 | |
| 1907 | u_int32_t interval; |
| 1908 | unsigned long len_pointer, length; |
| 1909 | int retval; |
| 1910 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1911 | if (circuit->interface->mtu == 0) |
| 1912 | { |
| 1913 | zlog_warn ("circuit has zero MTU"); |
| 1914 | return ISIS_WARNING; |
| 1915 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1916 | |
| 1917 | if (!circuit->snd_stream) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1918 | circuit->snd_stream = stream_new (ISO_MTU (circuit)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1919 | else |
| 1920 | stream_reset (circuit->snd_stream); |
| 1921 | |
| 1922 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 1923 | if (level == 1) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1924 | fill_fixed_hdr_andstream (&fixed_hdr, L1_LAN_HELLO, |
| 1925 | circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1926 | else |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1927 | fill_fixed_hdr_andstream (&fixed_hdr, L2_LAN_HELLO, |
| 1928 | circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1929 | else |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1930 | fill_fixed_hdr_andstream (&fixed_hdr, P2P_HELLO, circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1931 | |
| 1932 | /* |
| 1933 | * Fill LAN Level 1 or 2 Hello PDU header |
| 1934 | */ |
| 1935 | memset (&hello_hdr, 0, sizeof (struct isis_lan_hello_hdr)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1936 | interval = circuit->hello_multiplier[level - 1] * |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1937 | circuit->hello_interval[level - 1]; |
| 1938 | if (interval > USHRT_MAX) |
| 1939 | interval = USHRT_MAX; |
| 1940 | hello_hdr.circuit_t = circuit->circuit_is_type; |
| 1941 | memcpy (hello_hdr.source_id, isis->sysid, ISIS_SYS_ID_LEN); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1942 | hello_hdr.hold_time = htons ((u_int16_t) interval); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1943 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1944 | hello_hdr.pdu_len = 0; /* Update the PDU Length later */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 1945 | len_pointer = stream_get_endp (circuit->snd_stream) + 3 + ISIS_SYS_ID_LEN; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1946 | |
| 1947 | /* copy the shared part of the hello to the p2p hello if needed */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1948 | if (circuit->circ_type == CIRCUIT_T_P2P) |
| 1949 | { |
| 1950 | memcpy (&p2p_hello_hdr, &hello_hdr, 5 + ISIS_SYS_ID_LEN); |
| 1951 | p2p_hello_hdr.local_id = circuit->circuit_id; |
| 1952 | /* FIXME: need better understanding */ |
| 1953 | stream_put (circuit->snd_stream, &p2p_hello_hdr, ISIS_P2PHELLO_HDRLEN); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1954 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1955 | else |
| 1956 | { |
| 1957 | hello_hdr.prio = circuit->u.bc.priority[level - 1]; |
| 1958 | if (level == 1 && circuit->u.bc.l1_desig_is) |
| 1959 | { |
| 1960 | memcpy (hello_hdr.lan_id, circuit->u.bc.l1_desig_is, |
| 1961 | ISIS_SYS_ID_LEN + 1); |
| 1962 | } |
| 1963 | else if (level == 2 && circuit->u.bc.l2_desig_is) |
| 1964 | { |
| 1965 | memcpy (hello_hdr.lan_id, circuit->u.bc.l2_desig_is, |
| 1966 | ISIS_SYS_ID_LEN + 1); |
| 1967 | } |
| 1968 | stream_put (circuit->snd_stream, &hello_hdr, ISIS_LANHELLO_HDRLEN); |
| 1969 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1970 | |
| 1971 | /* |
| 1972 | * Then the variable length part |
| 1973 | */ |
| 1974 | /* add circuit password */ |
| 1975 | if (circuit->passwd.type) |
| 1976 | if (tlv_add_authinfo (circuit->passwd.type, circuit->passwd.len, |
| 1977 | circuit->passwd.passwd, circuit->snd_stream)) |
| 1978 | return ISIS_WARNING; |
| 1979 | /* Area Addresses TLV */ |
| 1980 | assert (circuit->area); |
| 1981 | if (circuit->area->area_addrs && circuit->area->area_addrs->count > 0) |
| 1982 | if (tlv_add_area_addrs (circuit->area->area_addrs, circuit->snd_stream)) |
| 1983 | return ISIS_WARNING; |
| 1984 | |
| 1985 | /* LAN Neighbors TLV */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1986 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 1987 | { |
| 1988 | if (level == 1 && circuit->u.bc.lan_neighs[0]->count > 0) |
| 1989 | if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[0], |
| 1990 | circuit->snd_stream)) |
| 1991 | return ISIS_WARNING; |
| 1992 | if (level == 2 && circuit->u.bc.lan_neighs[1]->count > 0) |
| 1993 | if (tlv_add_lan_neighs (circuit->u.bc.lan_neighs[1], |
| 1994 | circuit->snd_stream)) |
| 1995 | return ISIS_WARNING; |
| 1996 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1997 | |
| 1998 | /* Protocols Supported TLV */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1999 | if (circuit->nlpids.count > 0) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2000 | if (tlv_add_nlpid (&circuit->nlpids, circuit->snd_stream)) |
| 2001 | return ISIS_WARNING; |
| 2002 | /* IP interface Address TLV */ |
| 2003 | if (circuit->ip_router && circuit->ip_addrs && circuit->ip_addrs->count > 0) |
| 2004 | if (tlv_add_ip_addrs (circuit->ip_addrs, circuit->snd_stream)) |
| 2005 | return ISIS_WARNING; |
| 2006 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2007 | #ifdef HAVE_IPV6 |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2008 | /* IPv6 Interface Address TLV */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2009 | if (circuit->ipv6_router && circuit->ipv6_link && |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2010 | circuit->ipv6_link->count > 0) |
| 2011 | if (tlv_add_ipv6_addrs (circuit->ipv6_link, circuit->snd_stream)) |
| 2012 | return ISIS_WARNING; |
| 2013 | #endif /* HAVE_IPV6 */ |
| 2014 | |
| 2015 | if (circuit->u.bc.pad_hellos) |
| 2016 | if (tlv_add_padding (circuit->snd_stream)) |
| 2017 | return ISIS_WARNING; |
| 2018 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2019 | length = stream_get_endp (circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2020 | /* Update PDU length */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2021 | stream_putw_at (circuit->snd_stream, len_pointer, (u_int16_t) length); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2022 | |
| 2023 | retval = circuit->tx (circuit, level); |
| 2024 | if (retval) |
| 2025 | zlog_warn ("sending of LAN Level %d Hello failed", level); |
| 2026 | |
| 2027 | /* DEBUG_ADJ_PACKETS */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2028 | if (isis->debugs & DEBUG_ADJ_PACKETS) |
| 2029 | { |
| 2030 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 2031 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 2032 | zlog_debug ("ISIS-Adj (%s): Sent L%d LAN IIH on %s, length %ld", |
| 2033 | circuit->area->area_tag, level, circuit->interface->name, |
| 2034 | STREAM_SIZE (circuit->snd_stream)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2035 | } |
| 2036 | else |
| 2037 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 2038 | zlog_debug ("ISIS-Adj (%s): Sent P2P IIH on %s, length %ld", |
| 2039 | circuit->area->area_tag, circuit->interface->name, |
| 2040 | STREAM_SIZE (circuit->snd_stream)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2041 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2042 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2043 | |
| 2044 | return retval; |
| 2045 | } |
| 2046 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 2047 | static int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2048 | send_lan_hello (struct isis_circuit *circuit, int level) |
| 2049 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2050 | return send_hello (circuit, level); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2051 | } |
| 2052 | |
| 2053 | int |
| 2054 | send_lan_l1_hello (struct thread *thread) |
| 2055 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2056 | struct isis_circuit *circuit; |
| 2057 | int retval; |
| 2058 | |
| 2059 | circuit = THREAD_ARG (thread); |
| 2060 | assert (circuit); |
| 2061 | circuit->u.bc.t_send_lan_hello[0] = NULL; |
| 2062 | |
| 2063 | if (circuit->u.bc.run_dr_elect[0]) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2064 | retval = isis_dr_elect (circuit, 1); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2065 | |
| 2066 | retval = send_lan_hello (circuit, 1); |
| 2067 | |
| 2068 | /* set next timer thread */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2069 | THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[0], |
| 2070 | send_lan_l1_hello, circuit, |
| 2071 | isis_jitter (circuit->hello_interval[0], IIH_JITTER)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2072 | |
| 2073 | return retval; |
| 2074 | } |
| 2075 | |
| 2076 | int |
| 2077 | send_lan_l2_hello (struct thread *thread) |
| 2078 | { |
| 2079 | struct isis_circuit *circuit; |
| 2080 | int retval; |
| 2081 | |
| 2082 | circuit = THREAD_ARG (thread); |
| 2083 | assert (circuit); |
| 2084 | circuit->u.bc.t_send_lan_hello[1] = NULL; |
| 2085 | |
| 2086 | if (circuit->u.bc.run_dr_elect[1]) |
| 2087 | retval = isis_dr_elect (circuit, 2); |
| 2088 | |
| 2089 | retval = send_lan_hello (circuit, 2); |
| 2090 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2091 | /* set next timer thread */ |
| 2092 | THREAD_TIMER_ON (master, circuit->u.bc.t_send_lan_hello[1], |
| 2093 | send_lan_l2_hello, circuit, |
| 2094 | isis_jitter (circuit->hello_interval[1], IIH_JITTER)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2095 | |
| 2096 | return retval; |
| 2097 | } |
| 2098 | |
| 2099 | int |
| 2100 | send_p2p_hello (struct thread *thread) |
| 2101 | { |
| 2102 | struct isis_circuit *circuit; |
| 2103 | |
| 2104 | circuit = THREAD_ARG (thread); |
| 2105 | assert (circuit); |
| 2106 | circuit->u.p2p.t_send_p2p_hello = NULL; |
| 2107 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2108 | send_hello (circuit, 1); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2109 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2110 | /* set next timer thread */ |
| 2111 | THREAD_TIMER_ON (master, circuit->u.p2p.t_send_p2p_hello, send_p2p_hello, |
| 2112 | circuit, isis_jitter (circuit->hello_interval[1], |
| 2113 | IIH_JITTER)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2114 | |
| 2115 | return ISIS_OK; |
| 2116 | } |
| 2117 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 2118 | static int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2119 | build_csnp (int level, u_char * start, u_char * stop, struct list *lsps, |
| 2120 | struct isis_circuit *circuit) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2121 | { |
| 2122 | struct isis_fixed_hdr fixed_hdr; |
| 2123 | struct isis_passwd *passwd; |
| 2124 | int retval = ISIS_OK; |
| 2125 | unsigned long lenp; |
| 2126 | u_int16_t length; |
| 2127 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2128 | if (level == 1) |
| 2129 | fill_fixed_hdr_andstream (&fixed_hdr, L1_COMPLETE_SEQ_NUM, |
| 2130 | circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2131 | else |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2132 | fill_fixed_hdr_andstream (&fixed_hdr, L2_COMPLETE_SEQ_NUM, |
| 2133 | circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2134 | |
| 2135 | /* |
| 2136 | * Fill Level 1 or 2 Complete Sequence Numbers header |
| 2137 | */ |
| 2138 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2139 | lenp = stream_get_endp (circuit->snd_stream); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2140 | stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2141 | /* no need to send the source here, it is always us if we csnp */ |
| 2142 | stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN); |
| 2143 | /* with zero circuit id - ref 9.10, 9.11 */ |
| 2144 | stream_putc (circuit->snd_stream, 0x00); |
| 2145 | |
| 2146 | stream_put (circuit->snd_stream, start, ISIS_SYS_ID_LEN + 2); |
| 2147 | stream_put (circuit->snd_stream, stop, ISIS_SYS_ID_LEN + 2); |
| 2148 | |
| 2149 | /* |
| 2150 | * And TLVs |
| 2151 | */ |
| 2152 | if (level == 1) |
| 2153 | passwd = &circuit->area->area_passwd; |
| 2154 | else |
| 2155 | passwd = &circuit->area->domain_passwd; |
| 2156 | |
hasso | 1cbc562 | 2005-01-01 10:29:51 +0000 | [diff] [blame] | 2157 | if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND)) |
| 2158 | if (passwd->type) |
| 2159 | retval = tlv_add_authinfo (passwd->type, passwd->len, |
| 2160 | passwd->passwd, circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2161 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2162 | if (!retval && lsps) |
| 2163 | { |
| 2164 | retval = tlv_add_lsp_entries (lsps, circuit->snd_stream); |
| 2165 | } |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2166 | length = (u_int16_t) stream_get_endp (circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2167 | assert (length >= ISIS_CSNP_HDRLEN); |
| 2168 | /* Update PU length */ |
| 2169 | stream_putw_at (circuit->snd_stream, lenp, length); |
| 2170 | |
| 2171 | return retval; |
| 2172 | } |
| 2173 | |
| 2174 | /* |
| 2175 | * FIXME: support multiple CSNPs |
| 2176 | */ |
| 2177 | |
| 2178 | int |
| 2179 | send_csnp (struct isis_circuit *circuit, int level) |
| 2180 | { |
| 2181 | int retval = ISIS_OK; |
| 2182 | u_char start[ISIS_SYS_ID_LEN + 2]; |
| 2183 | u_char stop[ISIS_SYS_ID_LEN + 2]; |
| 2184 | struct list *list = NULL; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2185 | struct listnode *node, *nnode; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2186 | struct isis_lsp *lsp; |
| 2187 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2188 | memset (start, 0x00, ISIS_SYS_ID_LEN + 2); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2189 | memset (stop, 0xff, ISIS_SYS_ID_LEN + 2); |
| 2190 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2191 | if (circuit->area->lspdb[level - 1] && |
| 2192 | dict_count (circuit->area->lspdb[level - 1]) > 0) |
| 2193 | { |
| 2194 | list = list_new (); |
| 2195 | lsp_build_list (start, stop, list, circuit->area->lspdb[level - 1]); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2196 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2197 | if (circuit->snd_stream == NULL) |
| 2198 | circuit->snd_stream = stream_new (ISO_MTU (circuit)); |
| 2199 | else |
| 2200 | stream_reset (circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2201 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2202 | retval = build_csnp (level, start, stop, list, circuit); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2203 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2204 | if (isis->debugs & DEBUG_SNP_PACKETS) |
| 2205 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 2206 | zlog_debug ("ISIS-Snp (%s): Sent L%d CSNP on %s, length %ld", |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2207 | circuit->area->area_tag, level, circuit->interface->name, |
| 2208 | STREAM_SIZE (circuit->snd_stream)); |
| 2209 | for (ALL_LIST_ELEMENTS (list, node, nnode, lsp)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2210 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 2211 | zlog_debug ("ISIS-Snp (%s): CSNP entry %s, seq 0x%08x," |
| 2212 | " cksum 0x%04x, lifetime %us", |
| 2213 | circuit->area->area_tag, |
| 2214 | rawlspid_print (lsp->lsp_header->lsp_id), |
| 2215 | ntohl (lsp->lsp_header->seq_num), |
| 2216 | ntohs (lsp->lsp_header->checksum), |
| 2217 | ntohs (lsp->lsp_header->rem_lifetime)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2218 | } |
| 2219 | } |
| 2220 | |
| 2221 | list_delete (list); |
| 2222 | |
| 2223 | if (retval == ISIS_OK) |
| 2224 | retval = circuit->tx (circuit, level); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2225 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2226 | return retval; |
| 2227 | } |
| 2228 | |
| 2229 | int |
| 2230 | send_l1_csnp (struct thread *thread) |
| 2231 | { |
| 2232 | struct isis_circuit *circuit; |
| 2233 | int retval = ISIS_OK; |
| 2234 | |
| 2235 | circuit = THREAD_ARG (thread); |
| 2236 | assert (circuit); |
| 2237 | |
| 2238 | circuit->t_send_csnp[0] = NULL; |
| 2239 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2240 | if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[0]) |
| 2241 | { |
| 2242 | send_csnp (circuit, 1); |
| 2243 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2244 | /* set next timer thread */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2245 | THREAD_TIMER_ON (master, circuit->t_send_csnp[0], send_l1_csnp, circuit, |
| 2246 | isis_jitter (circuit->csnp_interval[0], CSNP_JITTER)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2247 | |
| 2248 | return retval; |
| 2249 | } |
| 2250 | |
| 2251 | int |
| 2252 | send_l2_csnp (struct thread *thread) |
| 2253 | { |
| 2254 | struct isis_circuit *circuit; |
| 2255 | int retval = ISIS_OK; |
| 2256 | |
| 2257 | circuit = THREAD_ARG (thread); |
| 2258 | assert (circuit); |
| 2259 | |
| 2260 | circuit->t_send_csnp[1] = NULL; |
| 2261 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2262 | if (circuit->circ_type == CIRCUIT_T_BROADCAST && circuit->u.bc.is_dr[1]) |
| 2263 | { |
| 2264 | send_csnp (circuit, 2); |
| 2265 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2266 | /* set next timer thread */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2267 | THREAD_TIMER_ON (master, circuit->t_send_csnp[1], send_l2_csnp, circuit, |
| 2268 | isis_jitter (circuit->csnp_interval[1], CSNP_JITTER)); |
hasso | d70f99e | 2004-02-11 20:26:31 +0000 | [diff] [blame] | 2269 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2270 | return retval; |
| 2271 | } |
| 2272 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 2273 | static int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2274 | build_psnp (int level, struct isis_circuit *circuit, struct list *lsps) |
| 2275 | { |
| 2276 | struct isis_fixed_hdr fixed_hdr; |
| 2277 | unsigned long lenp; |
| 2278 | u_int16_t length; |
| 2279 | int retval = 0; |
| 2280 | struct isis_lsp *lsp; |
| 2281 | struct isis_passwd *passwd; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2282 | struct listnode *node, *nnode; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2283 | |
| 2284 | if (level == 1) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2285 | fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM, |
| 2286 | circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2287 | else |
| 2288 | fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2289 | circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2290 | |
| 2291 | /* |
| 2292 | * Fill Level 1 or 2 Partial Sequence Numbers header |
| 2293 | */ |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2294 | lenp = stream_get_endp (circuit->snd_stream); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2295 | stream_putw (circuit->snd_stream, 0); /* PDU length - when we know it */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2296 | stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN); |
| 2297 | stream_putc (circuit->snd_stream, circuit->idx); |
| 2298 | |
| 2299 | /* |
| 2300 | * And TLVs |
| 2301 | */ |
| 2302 | |
| 2303 | if (level == 1) |
| 2304 | passwd = &circuit->area->area_passwd; |
| 2305 | else |
| 2306 | passwd = &circuit->area->domain_passwd; |
| 2307 | |
hasso | 1cbc562 | 2005-01-01 10:29:51 +0000 | [diff] [blame] | 2308 | if (CHECK_FLAG(passwd->snp_auth, SNP_AUTH_SEND)) |
| 2309 | if (passwd->type) |
| 2310 | retval = tlv_add_authinfo (passwd->type, passwd->len, |
| 2311 | passwd->passwd, circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2312 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2313 | if (!retval && lsps) |
| 2314 | { |
| 2315 | retval = tlv_add_lsp_entries (lsps, circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2316 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2317 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2318 | if (isis->debugs & DEBUG_SNP_PACKETS) |
| 2319 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2320 | for (ALL_LIST_ELEMENTS (lsps, node, nnode, lsp)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2321 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 2322 | zlog_debug ("ISIS-Snp (%s): PSNP entry %s, seq 0x%08x," |
| 2323 | " cksum 0x%04x, lifetime %us", |
| 2324 | circuit->area->area_tag, |
| 2325 | rawlspid_print (lsp->lsp_header->lsp_id), |
| 2326 | ntohl (lsp->lsp_header->seq_num), |
| 2327 | ntohs (lsp->lsp_header->checksum), |
| 2328 | ntohs (lsp->lsp_header->rem_lifetime)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2329 | } |
| 2330 | } |
| 2331 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2332 | length = (u_int16_t) stream_get_endp (circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2333 | assert (length >= ISIS_PSNP_HDRLEN); |
| 2334 | /* Update PDU length */ |
| 2335 | stream_putw_at (circuit->snd_stream, lenp, length); |
| 2336 | |
| 2337 | return ISIS_OK; |
| 2338 | } |
| 2339 | |
| 2340 | /* |
| 2341 | * 7.3.15.4 action on expiration of partial SNP interval |
| 2342 | * level 1 |
| 2343 | */ |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 2344 | static int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2345 | send_psnp (int level, struct isis_circuit *circuit) |
| 2346 | { |
| 2347 | int retval = ISIS_OK; |
| 2348 | struct isis_lsp *lsp; |
| 2349 | struct list *list = NULL; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2350 | struct listnode *node, *nnode; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2351 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2352 | if ((circuit->circ_type == CIRCUIT_T_BROADCAST && |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2353 | !circuit->u.bc.is_dr[level - 1]) || |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2354 | circuit->circ_type != CIRCUIT_T_BROADCAST) |
| 2355 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2356 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2357 | if (circuit->area->lspdb[level - 1] && |
| 2358 | dict_count (circuit->area->lspdb[level - 1]) > 0) |
| 2359 | { |
| 2360 | list = list_new (); |
| 2361 | lsp_build_list_ssn (circuit, list, circuit->area->lspdb[level - 1]); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2362 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2363 | if (listcount (list) > 0) |
| 2364 | { |
| 2365 | if (circuit->snd_stream == NULL) |
| 2366 | circuit->snd_stream = stream_new (ISO_MTU (circuit)); |
| 2367 | else |
| 2368 | stream_reset (circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2369 | |
| 2370 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2371 | if (isis->debugs & DEBUG_SNP_PACKETS) |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 2372 | zlog_debug ("ISIS-Snp (%s): Sent L%d PSNP on %s, length %ld", |
| 2373 | circuit->area->area_tag, level, |
| 2374 | circuit->interface->name, |
| 2375 | STREAM_SIZE (circuit->snd_stream)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2376 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2377 | retval = build_psnp (level, circuit, list); |
| 2378 | if (retval == ISIS_OK) |
| 2379 | retval = circuit->tx (circuit, level); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2380 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2381 | if (retval == ISIS_OK) |
| 2382 | { |
| 2383 | /* |
| 2384 | * sending succeeded, we can clear SSN flags of this circuit |
| 2385 | * for the LSPs in list |
| 2386 | */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2387 | for (ALL_LIST_ELEMENTS (list, node, nnode, lsp)) |
| 2388 | ISIS_CLEAR_FLAG (lsp->SSNflags, circuit); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2389 | } |
| 2390 | } |
| 2391 | list_delete (list); |
| 2392 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2393 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2394 | |
| 2395 | return retval; |
| 2396 | } |
| 2397 | |
| 2398 | int |
| 2399 | send_l1_psnp (struct thread *thread) |
| 2400 | { |
| 2401 | |
| 2402 | struct isis_circuit *circuit; |
| 2403 | int retval = ISIS_OK; |
| 2404 | |
| 2405 | circuit = THREAD_ARG (thread); |
| 2406 | assert (circuit); |
| 2407 | |
| 2408 | circuit->t_send_psnp[0] = NULL; |
| 2409 | |
| 2410 | send_psnp (1, circuit); |
| 2411 | /* set next timer thread */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2412 | THREAD_TIMER_ON (master, circuit->t_send_psnp[0], send_l1_psnp, circuit, |
| 2413 | isis_jitter (circuit->psnp_interval[0], PSNP_JITTER)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2414 | |
| 2415 | return retval; |
| 2416 | } |
| 2417 | |
| 2418 | /* |
| 2419 | * 7.3.15.4 action on expiration of partial SNP interval |
| 2420 | * level 2 |
| 2421 | */ |
| 2422 | int |
| 2423 | send_l2_psnp (struct thread *thread) |
| 2424 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2425 | struct isis_circuit *circuit; |
| 2426 | int retval = ISIS_OK; |
| 2427 | |
| 2428 | circuit = THREAD_ARG (thread); |
| 2429 | assert (circuit); |
| 2430 | |
| 2431 | circuit->t_send_psnp[1] = NULL; |
| 2432 | |
| 2433 | send_psnp (2, circuit); |
| 2434 | |
| 2435 | /* set next timer thread */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2436 | THREAD_TIMER_ON (master, circuit->t_send_psnp[1], send_l2_psnp, circuit, |
| 2437 | isis_jitter (circuit->psnp_interval[1], PSNP_JITTER)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2438 | |
| 2439 | return retval; |
| 2440 | } |
| 2441 | |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 2442 | /* FIXME: Not used any more? */ |
| 2443 | /* static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2444 | build_link_state (struct isis_lsp *lsp, struct isis_circuit *circuit, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2445 | struct stream *stream) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2446 | { |
| 2447 | unsigned long length; |
| 2448 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2449 | stream_put (stream, lsp->pdu, ntohs (lsp->lsp_header->pdu_len)); |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2450 | length = stream_get_endp (stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2451 | |
| 2452 | return; |
hasso | 9236588 | 2005-01-18 13:53:33 +0000 | [diff] [blame] | 2453 | } */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2454 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2455 | /* |
| 2456 | * ISO 10589 - 7.3.14.3 |
| 2457 | */ |
| 2458 | int |
| 2459 | send_lsp (struct thread *thread) |
| 2460 | { |
| 2461 | struct isis_circuit *circuit; |
| 2462 | struct isis_lsp *lsp; |
| 2463 | struct listnode *node; |
| 2464 | int retval = 0; |
| 2465 | |
| 2466 | circuit = THREAD_ARG (thread); |
| 2467 | assert (circuit); |
| 2468 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2469 | if (circuit->state == C_STATE_UP) |
| 2470 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2471 | lsp = listgetdata ((node = listhead (circuit->lsp_queue))); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2472 | |
| 2473 | /* |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2474 | * Do not send if levels do not match |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2475 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2476 | if (!(lsp->level & circuit->circuit_is_type)) |
| 2477 | goto dontsend; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2478 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2479 | /* |
| 2480 | * Do not send if we do not have adjacencies in state up on the circuit |
| 2481 | */ |
| 2482 | if (circuit->upadjcount[lsp->level - 1] == 0) |
| 2483 | goto dontsend; |
| 2484 | /* only send if it needs sending */ |
| 2485 | if ((time (NULL) - lsp->last_sent) >= |
| 2486 | circuit->area->lsp_gen_interval[lsp->level - 1]) |
| 2487 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2488 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2489 | if (isis->debugs & DEBUG_UPDATE_PACKETS) |
| 2490 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 2491 | zlog_debug |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2492 | ("ISIS-Upd (%s): Sent L%d LSP %s, seq 0x%08x, cksum 0x%04x," |
| 2493 | " lifetime %us on %s", circuit->area->area_tag, lsp->level, |
| 2494 | rawlspid_print (lsp->lsp_header->lsp_id), |
| 2495 | ntohl (lsp->lsp_header->seq_num), |
| 2496 | ntohs (lsp->lsp_header->checksum), |
| 2497 | ntohs (lsp->lsp_header->rem_lifetime), |
| 2498 | circuit->interface->name); |
| 2499 | } |
| 2500 | /* copy our lsp to the send buffer */ |
paul | 15935e9 | 2005-05-03 09:27:23 +0000 | [diff] [blame] | 2501 | stream_copy (circuit->snd_stream, lsp->pdu); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2502 | |
| 2503 | retval = circuit->tx (circuit, lsp->level); |
| 2504 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2505 | /* |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2506 | * If the sending succeeded, we can del the lsp from circuits |
| 2507 | * lsp_queue |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2508 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2509 | if (retval == ISIS_OK) |
| 2510 | { |
| 2511 | list_delete_node (circuit->lsp_queue, node); |
| 2512 | |
| 2513 | /* |
| 2514 | * On broadcast circuits also the SRMflag can be cleared |
| 2515 | */ |
| 2516 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 2517 | ISIS_CLEAR_FLAG (lsp->SRMflags, circuit); |
| 2518 | |
| 2519 | if (flags_any_set (lsp->SRMflags) == 0) |
| 2520 | { |
| 2521 | /* |
| 2522 | * need to remember when we were last sent |
| 2523 | */ |
| 2524 | lsp->last_sent = time (NULL); |
| 2525 | } |
| 2526 | } |
| 2527 | else |
| 2528 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 2529 | zlog_debug ("sending of level %d link state failed", lsp->level); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2530 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2531 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2532 | else |
| 2533 | { |
| 2534 | /* my belief is that if it wasn't his time, the lsp can be removed |
| 2535 | * from the queue |
| 2536 | */ |
| 2537 | dontsend: |
| 2538 | list_delete_node (circuit->lsp_queue, node); |
| 2539 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2540 | #if 0 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2541 | /* |
| 2542 | * If there are still LSPs send next one after lsp-interval (33 msecs) |
| 2543 | */ |
| 2544 | if (listcount (circuit->lsp_queue) > 0) |
| 2545 | thread_add_timer (master, send_lsp, circuit, 1); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2546 | #endif |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2547 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2548 | |
| 2549 | return retval; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2550 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2551 | |
| 2552 | int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2553 | ack_lsp (struct isis_link_state_hdr *hdr, struct isis_circuit *circuit, |
| 2554 | int level) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2555 | { |
| 2556 | unsigned long lenp; |
| 2557 | int retval; |
| 2558 | u_int16_t length; |
| 2559 | struct isis_fixed_hdr fixed_hdr; |
| 2560 | |
| 2561 | if (!circuit->snd_stream) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2562 | circuit->snd_stream = stream_new (ISO_MTU (circuit)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2563 | else |
| 2564 | stream_reset (circuit->snd_stream); |
| 2565 | |
| 2566 | // fill_llc_hdr (stream); |
| 2567 | if (level == 1) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2568 | fill_fixed_hdr_andstream (&fixed_hdr, L1_PARTIAL_SEQ_NUM, |
| 2569 | circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2570 | else |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2571 | fill_fixed_hdr_andstream (&fixed_hdr, L2_PARTIAL_SEQ_NUM, |
| 2572 | circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2573 | |
| 2574 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2575 | lenp = stream_get_endp (circuit->snd_stream); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2576 | stream_putw (circuit->snd_stream, 0); /* PDU length */ |
| 2577 | stream_put (circuit->snd_stream, isis->sysid, ISIS_SYS_ID_LEN); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2578 | stream_putc (circuit->snd_stream, circuit->idx); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2579 | stream_putc (circuit->snd_stream, 9); /* code */ |
| 2580 | stream_putc (circuit->snd_stream, 16); /* len */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2581 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2582 | stream_putw (circuit->snd_stream, ntohs (hdr->rem_lifetime)); |
| 2583 | stream_put (circuit->snd_stream, hdr->lsp_id, ISIS_SYS_ID_LEN + 2); |
| 2584 | stream_putl (circuit->snd_stream, ntohl (hdr->seq_num)); |
| 2585 | stream_putw (circuit->snd_stream, ntohs (hdr->checksum)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2586 | |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 2587 | length = (u_int16_t) stream_get_endp (circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2588 | /* Update PDU length */ |
| 2589 | stream_putw_at (circuit->snd_stream, lenp, length); |
| 2590 | |
| 2591 | retval = circuit->tx (circuit, level); |
| 2592 | |
| 2593 | return retval; |
| 2594 | } |
| 2595 | |
| 2596 | #if 0 |
| 2597 | /* |
| 2598 | * ISH PDU Processing |
| 2599 | */ |
| 2600 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2601 | /* |
| 2602 | * Let's first check if the local and remote system have any common area |
| 2603 | * addresses |
| 2604 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2605 | if (area_match (tlvs.area_addrs, isis->man_area_addrs) == 0) |
| 2606 | { |
| 2607 | if (circuit->circuit_t == IS_LEVEL_2) |
| 2608 | { |
| 2609 | /* do as in table 8 (p. 40) */ |
| 2610 | switch (circuit_type) |
| 2611 | { |
| 2612 | case IS_LEVEL_1: |
| 2613 | if (adj->adj_state != ISIS_ADJ_UP) |
| 2614 | { |
| 2615 | /* Reject */ |
| 2616 | zlog_warn ("areaMismatch"); |
| 2617 | retval = ISIS_WARNING; |
| 2618 | } |
| 2619 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1) |
| 2620 | { |
| 2621 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch", |
| 2622 | circuit->adjdb); |
| 2623 | } |
| 2624 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2 || |
| 2625 | adj->adj_usage == ISIS_ADJ_LEVEL2) |
| 2626 | { |
| 2627 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System", |
| 2628 | circuit->adjdb); |
| 2629 | } |
| 2630 | break; |
| 2631 | case IS_LEVEL_2: |
| 2632 | if (adj->adj_state != ISIS_ADJ_UP) |
| 2633 | { |
| 2634 | isis_adj_state_change (adj, ISIS_ADJ_UP, NULL, |
| 2635 | circuit->adjdb); |
| 2636 | adj->adj_usage = ISIS_ADJ_LEVEL2; |
| 2637 | } |
| 2638 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1 || |
| 2639 | adj->adj_usage == ISIS_ADJ_LEVEL1AND2) |
| 2640 | { |
| 2641 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System", |
| 2642 | circuit->adjdb); |
| 2643 | } |
| 2644 | else if (adj->adj_usage == ISIS_ADJ_LEVEL2) |
| 2645 | { |
| 2646 | ; /* Accept */ |
| 2647 | } |
| 2648 | break; |
| 2649 | case IS_LEVEL_1_AND_2: |
| 2650 | if (adj->adj_state != ISIS_ADJ_UP) |
| 2651 | { |
| 2652 | isis_adj_state_change (adj, ISIS_ADJ_UP, NULL, |
| 2653 | circuit->adjdb); |
| 2654 | adj->adj_usage = ISIS_ADJ_LEVEL2; |
| 2655 | } |
| 2656 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1) |
| 2657 | { |
| 2658 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Wrong System", |
| 2659 | circuit->adjdb); |
| 2660 | } |
| 2661 | else if (adj->adj_usage == ISIS_ADJ_LEVEL1AND2) |
| 2662 | { |
| 2663 | isis_adj_state_change (adj, ISIS_ADJ_DOWN, "Area Mismatch", |
| 2664 | circuit->adjdb); |
| 2665 | } |
| 2666 | else if (adj->adj_usage == ISIS_ADJ_LEVEL2) |
| 2667 | { |
| 2668 | ; /* Accept */ |
| 2669 | } |
| 2670 | break; |
| 2671 | } |
| 2672 | goto mismatch; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2673 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 2674 | else |
| 2675 | { |
| 2676 | isis_delete_adj (adj, circuit->adjdb); |
| 2677 | zlog_warn ("areaMismatch"); |
| 2678 | return ISIS_WARNING; |
| 2679 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2680 | } |
| 2681 | |
| 2682 | mismatch: |
| 2683 | #endif |