paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2 | * Copyright (C) 2003 Yasuhiro Ohara |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3 | * |
| 4 | * This file is part of GNU Zebra. |
| 5 | * |
| 6 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2, or (at your option) any |
| 9 | * later version. |
| 10 | * |
| 11 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with GNU Zebra; see the file COPYING. If not, write to the |
| 18 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 19 | * Boston, MA 02111-1307, USA. |
| 20 | */ |
| 21 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 22 | #include <zebra.h> |
| 23 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 24 | #include "memory.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 25 | #include "log.h" |
| 26 | #include "vty.h" |
| 27 | #include "command.h" |
| 28 | #include "thread.h" |
| 29 | #include "linklist.h" |
| 30 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 31 | #include "ospf6_proto.h" |
| 32 | #include "ospf6_lsa.h" |
| 33 | #include "ospf6_lsdb.h" |
| 34 | #include "ospf6_network.h" |
| 35 | #include "ospf6_message.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 36 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 37 | #include "ospf6_top.h" |
| 38 | #include "ospf6_area.h" |
| 39 | #include "ospf6_neighbor.h" |
| 40 | #include "ospf6_interface.h" |
| 41 | |
| 42 | #include "ospf6_flood.h" |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 43 | #include "ospf6d.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 44 | |
| 45 | unsigned char conf_debug_ospf6_message[6] = {0x03, 0, 0, 0, 0, 0}; |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 46 | const char *ospf6_message_type_str[] = |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 47 | { "Unknown", "Hello", "DbDesc", "LSReq", "LSUpdate", "LSAck" }; |
| 48 | |
| 49 | /* print functions */ |
| 50 | |
| 51 | static void |
| 52 | ospf6_header_print (struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 53 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 54 | char router_id[16], area_id[16]; |
| 55 | inet_ntop (AF_INET, &oh->router_id, router_id, sizeof (router_id)); |
| 56 | inet_ntop (AF_INET, &oh->area_id, area_id, sizeof (area_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 57 | |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 58 | zlog_debug (" OSPFv%d Type:%d Len:%hu Router-ID:%s", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 59 | oh->version, oh->type, ntohs (oh->length), router_id); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 60 | zlog_debug (" Area-ID:%s Cksum:%hx Instance-ID:%d", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 61 | area_id, ntohs (oh->checksum), oh->instance_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 62 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 63 | |
| 64 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 65 | ospf6_hello_print (struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 66 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 67 | struct ospf6_hello *hello; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 68 | char options[16]; |
| 69 | char drouter[16], bdrouter[16], neighbor[16]; |
| 70 | char *p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 71 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 72 | ospf6_header_print (oh); |
| 73 | assert (oh->type == OSPF6_MESSAGE_TYPE_HELLO); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 74 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 75 | hello = (struct ospf6_hello *) |
| 76 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 77 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 78 | inet_ntop (AF_INET, &hello->drouter, drouter, sizeof (drouter)); |
| 79 | inet_ntop (AF_INET, &hello->bdrouter, bdrouter, sizeof (bdrouter)); |
| 80 | ospf6_options_printbuf (hello->options, options, sizeof (options)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 81 | |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 82 | zlog_debug (" I/F-Id:%ld Priority:%d Option:%s", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 83 | (u_long) ntohl (hello->interface_id), hello->priority, options); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 84 | zlog_debug (" HelloInterval:%hu DeadInterval:%hu", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 85 | ntohs (hello->hello_interval), ntohs (hello->dead_interval)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 86 | zlog_debug (" DR:%s BDR:%s", drouter, bdrouter); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 87 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 88 | for (p = (char *) ((caddr_t) hello + sizeof (struct ospf6_hello)); |
| 89 | p + sizeof (u_int32_t) <= OSPF6_MESSAGE_END (oh); |
| 90 | p += sizeof (u_int32_t)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 91 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 92 | inet_ntop (AF_INET, (void *) p, neighbor, sizeof (neighbor)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 93 | zlog_debug (" Neighbor: %s", neighbor); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 94 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 95 | |
| 96 | if (p != OSPF6_MESSAGE_END (oh)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 97 | zlog_debug ("Trailing garbage exists"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 98 | } |
| 99 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 100 | void |
| 101 | ospf6_dbdesc_print (struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 102 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 103 | struct ospf6_dbdesc *dbdesc; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 104 | char options[16]; |
| 105 | char *p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 106 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 107 | ospf6_header_print (oh); |
| 108 | assert (oh->type == OSPF6_MESSAGE_TYPE_DBDESC); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 109 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 110 | dbdesc = (struct ospf6_dbdesc *) |
| 111 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 112 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 113 | ospf6_options_printbuf (dbdesc->options, options, sizeof (options)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 114 | |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 115 | zlog_debug (" MBZ: %#x Option: %s IfMTU: %hu", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 116 | dbdesc->reserved1, options, ntohs (dbdesc->ifmtu)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 117 | zlog_debug (" MBZ: %#x Bits: %s%s%s SeqNum: %#lx", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 118 | dbdesc->reserved2, |
| 119 | (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT) ? "I" : "-"), |
| 120 | (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MBIT) ? "M" : "-"), |
| 121 | (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT) ? "m" : "s"), |
| 122 | (u_long) ntohl (dbdesc->seqnum)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 123 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 124 | for (p = (char *) ((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc)); |
| 125 | p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh); |
| 126 | p += sizeof (struct ospf6_lsa_header)) |
| 127 | ospf6_lsa_header_print_raw ((struct ospf6_lsa_header *) p); |
| 128 | |
| 129 | if (p != OSPF6_MESSAGE_END (oh)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 130 | zlog_debug ("Trailing garbage exists"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 131 | } |
| 132 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 133 | void |
| 134 | ospf6_lsreq_print (struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 135 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 136 | char id[16], adv_router[16]; |
| 137 | char *p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 138 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 139 | ospf6_header_print (oh); |
| 140 | assert (oh->type == OSPF6_MESSAGE_TYPE_LSREQ); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 141 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 142 | for (p = (char *) ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 143 | p + sizeof (struct ospf6_lsreq_entry) <= OSPF6_MESSAGE_END (oh); |
| 144 | p += sizeof (struct ospf6_lsreq_entry)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 145 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 146 | struct ospf6_lsreq_entry *e = (struct ospf6_lsreq_entry *) p; |
| 147 | inet_ntop (AF_INET, &e->adv_router, adv_router, sizeof (adv_router)); |
| 148 | inet_ntop (AF_INET, &e->id, id, sizeof (id)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 149 | zlog_debug (" [%s Id:%s Adv:%s]", |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 150 | ospf6_lstype_name (e->type), id, adv_router); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 151 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 152 | |
| 153 | if (p != OSPF6_MESSAGE_END (oh)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 154 | zlog_debug ("Trailing garbage exists"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 155 | } |
| 156 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 157 | void |
| 158 | ospf6_lsupdate_print (struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 159 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 160 | struct ospf6_lsupdate *lsupdate; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 161 | u_long num; |
| 162 | char *p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 163 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 164 | ospf6_header_print (oh); |
| 165 | assert (oh->type == OSPF6_MESSAGE_TYPE_LSUPDATE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 166 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 167 | lsupdate = (struct ospf6_lsupdate *) |
| 168 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 169 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 170 | num = ntohl (lsupdate->lsa_number); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 171 | zlog_debug (" Number of LSA: %ld", num); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 172 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 173 | for (p = (char *) ((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate)); |
| 174 | p < OSPF6_MESSAGE_END (oh) && |
| 175 | p + OSPF6_LSA_SIZE (p) <= OSPF6_MESSAGE_END (oh); |
| 176 | p += OSPF6_LSA_SIZE (p)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 177 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 178 | ospf6_lsa_header_print_raw ((struct ospf6_lsa_header *) p); |
| 179 | if (OSPF6_LSA_SIZE (p) < sizeof (struct ospf6_lsa_header)) |
| 180 | { |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 181 | zlog_debug (" Malformed LSA length, quit printing"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 182 | break; |
| 183 | } |
| 184 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 185 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 186 | if (p != OSPF6_MESSAGE_END (oh)) |
| 187 | { |
| 188 | char buf[32]; |
| 189 | |
| 190 | int num = 0; |
| 191 | memset (buf, 0, sizeof (buf)); |
| 192 | |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 193 | zlog_debug (" Trailing garbage exists"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 194 | while (p < OSPF6_MESSAGE_END (oh)) |
| 195 | { |
| 196 | snprintf (buf, sizeof (buf), "%s %2x", buf, *p++); |
| 197 | num++; |
| 198 | if (num == 8) |
| 199 | { |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 200 | zlog_debug (" %s", buf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 201 | memset (buf, 0, sizeof (buf)); |
| 202 | num = 0; |
| 203 | } |
| 204 | } |
| 205 | if (num) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 206 | zlog_debug (" %s", buf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 207 | } |
| 208 | } |
| 209 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 210 | void |
| 211 | ospf6_lsack_print (struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 212 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 213 | char *p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 214 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 215 | ospf6_header_print (oh); |
| 216 | assert (oh->type == OSPF6_MESSAGE_TYPE_LSACK); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 217 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 218 | for (p = (char *) ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 219 | p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh); |
| 220 | p += sizeof (struct ospf6_lsa_header)) |
| 221 | ospf6_lsa_header_print_raw ((struct ospf6_lsa_header *) p); |
| 222 | |
| 223 | if (p != OSPF6_MESSAGE_END (oh)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 224 | zlog_debug ("Trailing garbage exists"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 225 | } |
| 226 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 227 | /* Receive function */ |
| 228 | #define MSG_OK 0 |
| 229 | #define MSG_NG 1 |
| 230 | static int |
| 231 | ospf6_header_examin (struct in6_addr *src, struct in6_addr *dst, |
| 232 | struct ospf6_interface *oi, struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 233 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 234 | u_char type; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 235 | type = OSPF6_MESSAGE_TYPE_CANONICAL (oh->type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 236 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 237 | /* version check */ |
| 238 | if (oh->version != OSPFV3_VERSION) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 239 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 240 | if (IS_OSPF6_DEBUG_MESSAGE (type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 241 | zlog_debug ("Message with unknown version"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 242 | return MSG_NG; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 243 | } |
| 244 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 245 | /* Area-ID check */ |
| 246 | if (oh->area_id != oi->area->area_id) |
| 247 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 248 | if (oh->area_id == BACKBONE_AREA_ID) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 249 | { |
| 250 | if (IS_OSPF6_DEBUG_MESSAGE (type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 251 | zlog_debug ("Message may be via Virtual Link: not supported"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 252 | return MSG_NG; |
| 253 | } |
| 254 | |
| 255 | if (IS_OSPF6_DEBUG_MESSAGE (type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 256 | zlog_debug ("Area-ID mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 257 | return MSG_NG; |
| 258 | } |
| 259 | |
| 260 | /* Instance-ID check */ |
| 261 | if (oh->instance_id != oi->instance_id) |
| 262 | { |
| 263 | if (IS_OSPF6_DEBUG_MESSAGE (type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 264 | zlog_debug ("Instance-ID mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 265 | return MSG_NG; |
| 266 | } |
| 267 | |
| 268 | /* Router-ID check */ |
| 269 | if (oh->router_id == oi->area->ospf6->router_id) |
| 270 | zlog_warn ("Detect duplicate Router-ID"); |
| 271 | |
| 272 | return MSG_OK; |
| 273 | } |
| 274 | |
| 275 | void |
| 276 | ospf6_hello_recv (struct in6_addr *src, struct in6_addr *dst, |
| 277 | struct ospf6_interface *oi, struct ospf6_header *oh) |
| 278 | { |
| 279 | struct ospf6_hello *hello; |
| 280 | struct ospf6_neighbor *on; |
| 281 | char *p; |
| 282 | int twoway = 0; |
| 283 | int neighborchange = 0; |
| 284 | int backupseen = 0; |
| 285 | |
| 286 | if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK) |
| 287 | return; |
| 288 | |
| 289 | hello = (struct ospf6_hello *) |
| 290 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 291 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 292 | /* HelloInterval check */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 293 | if (ntohs (hello->hello_interval) != oi->hello_interval) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 294 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 295 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 296 | zlog_debug ("HelloInterval mismatch"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 297 | return; |
| 298 | } |
| 299 | |
| 300 | /* RouterDeadInterval check */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 301 | if (ntohs (hello->dead_interval) != oi->dead_interval) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 302 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 303 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 304 | zlog_debug ("RouterDeadInterval mismatch"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 305 | return; |
| 306 | } |
| 307 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 308 | /* E-bit check */ |
| 309 | if (OSPF6_OPT_ISSET (hello->options, OSPF6_OPT_E) != |
| 310 | OSPF6_OPT_ISSET (oi->area->options, OSPF6_OPT_E)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 311 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 312 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 313 | zlog_debug ("E-bit mismatch"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 314 | return; |
| 315 | } |
| 316 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 317 | /* Find neighbor, create if not exist */ |
| 318 | on = ospf6_neighbor_lookup (oh->router_id, oi); |
| 319 | if (on == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 320 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 321 | on = ospf6_neighbor_create (oh->router_id, oi); |
| 322 | on->prev_drouter = on->drouter = hello->drouter; |
| 323 | on->prev_bdrouter = on->bdrouter = hello->bdrouter; |
| 324 | on->priority = hello->priority; |
| 325 | on->ifindex = ntohl (hello->interface_id); |
| 326 | memcpy (&on->linklocal_addr, src, sizeof (struct in6_addr)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | /* TwoWay check */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 330 | for (p = (char *) ((caddr_t) hello + sizeof (struct ospf6_hello)); |
| 331 | p + sizeof (u_int32_t) <= OSPF6_MESSAGE_END (oh); |
| 332 | p += sizeof (u_int32_t)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 333 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 334 | u_int32_t *router_id = (u_int32_t *) p; |
| 335 | |
| 336 | if (*router_id == oi->area->ospf6->router_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 337 | twoway++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 338 | } |
| 339 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 340 | if (p != OSPF6_MESSAGE_END (oh)) |
| 341 | { |
| 342 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 343 | zlog_debug ("Trailing garbage ignored"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | /* RouterPriority check */ |
| 347 | if (on->priority != hello->priority) |
| 348 | { |
| 349 | on->priority = hello->priority; |
| 350 | neighborchange++; |
| 351 | } |
| 352 | |
| 353 | /* DR check */ |
| 354 | if (on->drouter != hello->drouter) |
| 355 | { |
| 356 | on->prev_drouter = on->drouter; |
| 357 | on->drouter = hello->drouter; |
| 358 | if (on->prev_drouter == on->router_id || on->drouter == on->router_id) |
| 359 | neighborchange++; |
| 360 | } |
| 361 | |
| 362 | /* BDR check */ |
| 363 | if (on->bdrouter != hello->bdrouter) |
| 364 | { |
| 365 | on->prev_bdrouter = on->bdrouter; |
| 366 | on->bdrouter = hello->bdrouter; |
| 367 | if (on->prev_bdrouter == on->router_id || on->bdrouter == on->router_id) |
| 368 | neighborchange++; |
| 369 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 370 | |
| 371 | /* BackupSeen check */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 372 | if (oi->state == OSPF6_INTERFACE_WAITING) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 373 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 374 | if (hello->bdrouter == on->router_id) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 375 | backupseen++; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 376 | else if (hello->drouter == on->router_id && hello->bdrouter == htonl (0)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 377 | backupseen++; |
| 378 | } |
| 379 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 380 | /* Execute neighbor events */ |
| 381 | thread_execute (master, hello_received, on, 0); |
| 382 | if (twoway) |
| 383 | thread_execute (master, twoway_received, on, 0); |
| 384 | else |
| 385 | thread_execute (master, oneway_received, on, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 386 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 387 | /* Schedule interface events */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 388 | if (backupseen) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 389 | thread_add_event (master, backup_seen, oi, 0); |
| 390 | if (neighborchange) |
| 391 | thread_add_event (master, neighbor_change, oi, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 392 | } |
| 393 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 394 | static void |
| 395 | ospf6_dbdesc_recv_master (struct ospf6_header *oh, |
| 396 | struct ospf6_neighbor *on) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 397 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 398 | struct ospf6_dbdesc *dbdesc; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 399 | char *p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 400 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 401 | dbdesc = (struct ospf6_dbdesc *) |
| 402 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 403 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 404 | if (on->state < OSPF6_NEIGHBOR_INIT) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 405 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 406 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 407 | zlog_debug ("Neighbor state less than Init, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 408 | return; |
| 409 | } |
| 410 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 411 | switch (on->state) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 412 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 413 | case OSPF6_NEIGHBOR_TWOWAY: |
| 414 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 415 | zlog_debug ("Neighbor state is 2-Way, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 416 | return; |
| 417 | |
| 418 | case OSPF6_NEIGHBOR_INIT: |
| 419 | thread_execute (master, twoway_received, on, 0); |
| 420 | if (on->state != OSPF6_NEIGHBOR_EXSTART) |
| 421 | { |
| 422 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 423 | zlog_debug ("Neighbor state is not ExStart, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 424 | return; |
| 425 | } |
| 426 | /* else fall through to ExStart */ |
| 427 | |
| 428 | case OSPF6_NEIGHBOR_EXSTART: |
| 429 | /* if neighbor obeys us as our slave, schedule negotiation_done |
| 430 | and process LSA Headers. Otherwise, ignore this message */ |
| 431 | if (! CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT) && |
| 432 | ! CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT) && |
| 433 | ntohl (dbdesc->seqnum) == on->dbdesc_seqnum) |
| 434 | { |
| 435 | /* execute NegotiationDone */ |
| 436 | thread_execute (master, negotiation_done, on, 0); |
| 437 | |
| 438 | /* Record neighbor options */ |
| 439 | memcpy (on->options, dbdesc->options, sizeof (on->options)); |
| 440 | } |
| 441 | else |
| 442 | { |
| 443 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 444 | zlog_debug ("Negotiation failed"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 445 | return; |
| 446 | } |
| 447 | /* fall through to exchange */ |
| 448 | |
| 449 | case OSPF6_NEIGHBOR_EXCHANGE: |
| 450 | if (! memcmp (dbdesc, &on->dbdesc_last, sizeof (struct ospf6_dbdesc))) |
| 451 | { |
| 452 | /* Duplicated DatabaseDescription is dropped by master */ |
| 453 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 454 | zlog_debug ("Duplicated dbdesc discarded by Master, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 455 | return; |
| 456 | } |
| 457 | |
| 458 | if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT)) |
| 459 | { |
| 460 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 461 | zlog_debug ("Master/Slave bit mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 462 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 463 | return; |
| 464 | } |
| 465 | |
| 466 | if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT)) |
| 467 | { |
| 468 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 469 | zlog_debug ("Initialize bit mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 470 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 471 | return; |
| 472 | } |
| 473 | |
| 474 | if (memcmp (on->options, dbdesc->options, sizeof (on->options))) |
| 475 | { |
| 476 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 477 | zlog_debug ("Option field mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 478 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 479 | return; |
| 480 | } |
| 481 | |
| 482 | if (ntohl (dbdesc->seqnum) != on->dbdesc_seqnum) |
| 483 | { |
| 484 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 485 | zlog_debug ("Sequence number mismatch (%#lx expected)", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 486 | (u_long) on->dbdesc_seqnum); |
| 487 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 488 | return; |
| 489 | } |
| 490 | break; |
| 491 | |
| 492 | case OSPF6_NEIGHBOR_LOADING: |
| 493 | case OSPF6_NEIGHBOR_FULL: |
| 494 | if (! memcmp (dbdesc, &on->dbdesc_last, sizeof (struct ospf6_dbdesc))) |
| 495 | { |
| 496 | /* Duplicated DatabaseDescription is dropped by master */ |
| 497 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 498 | zlog_debug ("Duplicated dbdesc discarded by Master, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 499 | return; |
| 500 | } |
| 501 | |
| 502 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 503 | zlog_debug ("Not duplicate dbdesc in state %s", |
| 504 | ospf6_neighbor_state_str[on->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 505 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 506 | return; |
| 507 | |
| 508 | default: |
| 509 | assert (0); |
| 510 | break; |
| 511 | } |
| 512 | |
| 513 | /* Process LSA headers */ |
| 514 | for (p = (char *) ((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc)); |
| 515 | p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh); |
| 516 | p += sizeof (struct ospf6_lsa_header)) |
| 517 | { |
| 518 | struct ospf6_lsa *his, *mine; |
| 519 | struct ospf6_lsdb *lsdb = NULL; |
| 520 | |
| 521 | his = ospf6_lsa_create_headeronly ((struct ospf6_lsa_header *) p); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 522 | |
| 523 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 524 | zlog_debug ("%s", his->name); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 525 | |
| 526 | switch (OSPF6_LSA_SCOPE (his->header->type)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 527 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 528 | case OSPF6_SCOPE_LINKLOCAL: |
| 529 | lsdb = on->ospf6_if->lsdb; |
| 530 | break; |
| 531 | case OSPF6_SCOPE_AREA: |
| 532 | lsdb = on->ospf6_if->area->lsdb; |
| 533 | break; |
| 534 | case OSPF6_SCOPE_AS: |
| 535 | lsdb = on->ospf6_if->area->ospf6->lsdb; |
| 536 | break; |
| 537 | case OSPF6_SCOPE_RESERVED: |
| 538 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 539 | zlog_debug ("Ignoring LSA of reserved scope"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 540 | ospf6_lsa_delete (his); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 541 | continue; |
| 542 | break; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | if (ntohs (his->header->type) == OSPF6_LSTYPE_AS_EXTERNAL && |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 546 | IS_AREA_STUB (on->ospf6_if->area)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 547 | { |
| 548 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 549 | zlog_debug ("SeqNumMismatch (E-bit mismatch), discard"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 550 | ospf6_lsa_delete (his); |
| 551 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 552 | return; |
| 553 | } |
| 554 | |
| 555 | mine = ospf6_lsdb_lookup (his->header->type, his->header->id, |
| 556 | his->header->adv_router, lsdb); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 557 | if (mine == NULL) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 558 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 559 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 560 | zlog_debug ("Add request (No database copy)"); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 561 | ospf6_lsdb_add (his, on->request_list); |
| 562 | } |
| 563 | else if (ospf6_lsa_compare (his, mine) < 0) |
| 564 | { |
| 565 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 566 | zlog_debug ("Add request (Received MoreRecent)"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 567 | ospf6_lsdb_add (his, on->request_list); |
| 568 | } |
| 569 | else |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 570 | { |
| 571 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 572 | zlog_debug ("Discard (Existing MoreRecent)"); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 573 | ospf6_lsa_delete (his); |
| 574 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | if (p != OSPF6_MESSAGE_END (oh)) |
| 578 | { |
| 579 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 580 | zlog_debug ("Trailing garbage ignored"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | /* Increment sequence number */ |
| 584 | on->dbdesc_seqnum ++; |
| 585 | |
| 586 | /* schedule send lsreq */ |
| 587 | if (on->thread_send_lsreq == NULL) |
| 588 | on->thread_send_lsreq = |
| 589 | thread_add_event (master, ospf6_lsreq_send, on, 0); |
| 590 | |
| 591 | THREAD_OFF (on->thread_send_dbdesc); |
| 592 | |
| 593 | /* More bit check */ |
| 594 | if (! CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MBIT) && |
| 595 | ! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MBIT)) |
| 596 | thread_add_event (master, exchange_done, on, 0); |
| 597 | else |
| 598 | on->thread_send_dbdesc = |
| 599 | thread_add_event (master, ospf6_dbdesc_send_newone, on, 0); |
| 600 | |
| 601 | /* save last received dbdesc */ |
| 602 | memcpy (&on->dbdesc_last, dbdesc, sizeof (struct ospf6_dbdesc)); |
| 603 | } |
| 604 | |
| 605 | static void |
| 606 | ospf6_dbdesc_recv_slave (struct ospf6_header *oh, |
| 607 | struct ospf6_neighbor *on) |
| 608 | { |
| 609 | struct ospf6_dbdesc *dbdesc; |
| 610 | char *p; |
| 611 | |
| 612 | dbdesc = (struct ospf6_dbdesc *) |
| 613 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 614 | |
| 615 | if (on->state < OSPF6_NEIGHBOR_INIT) |
| 616 | { |
| 617 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 618 | zlog_debug ("Neighbor state less than Init, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 619 | return; |
| 620 | } |
| 621 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 622 | switch (on->state) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 623 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 624 | case OSPF6_NEIGHBOR_TWOWAY: |
| 625 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 626 | zlog_debug ("Neighbor state is 2-Way, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 627 | return; |
| 628 | |
| 629 | case OSPF6_NEIGHBOR_INIT: |
| 630 | thread_execute (master, twoway_received, on, 0); |
| 631 | if (on->state != OSPF6_NEIGHBOR_EXSTART) |
| 632 | { |
| 633 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 634 | zlog_debug ("Neighbor state is not ExStart, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 635 | return; |
| 636 | } |
| 637 | /* else fall through to ExStart */ |
| 638 | |
| 639 | case OSPF6_NEIGHBOR_EXSTART: |
| 640 | /* If the neighbor is Master, act as Slave. Schedule negotiation_done |
| 641 | and process LSA Headers. Otherwise, ignore this message */ |
| 642 | if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT) && |
| 643 | CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MBIT) && |
| 644 | CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT) && |
| 645 | ntohs (oh->length) == sizeof (struct ospf6_header) + |
| 646 | sizeof (struct ospf6_dbdesc)) |
| 647 | { |
| 648 | /* set the master/slave bit to slave */ |
| 649 | UNSET_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MSBIT); |
| 650 | |
| 651 | /* set the DD sequence number to one specified by master */ |
| 652 | on->dbdesc_seqnum = ntohl (dbdesc->seqnum); |
| 653 | |
| 654 | /* schedule NegotiationDone */ |
| 655 | thread_execute (master, negotiation_done, on, 0); |
| 656 | |
| 657 | /* Record neighbor options */ |
| 658 | memcpy (on->options, dbdesc->options, sizeof (on->options)); |
| 659 | } |
| 660 | else |
| 661 | { |
| 662 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 663 | zlog_debug ("Negotiation failed"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 664 | return; |
| 665 | } |
| 666 | break; |
| 667 | |
| 668 | case OSPF6_NEIGHBOR_EXCHANGE: |
| 669 | if (! memcmp (dbdesc, &on->dbdesc_last, sizeof (struct ospf6_dbdesc))) |
| 670 | { |
| 671 | /* Duplicated DatabaseDescription causes slave to retransmit */ |
| 672 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 673 | zlog_debug ("Duplicated dbdesc causes retransmit"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 674 | THREAD_OFF (on->thread_send_dbdesc); |
| 675 | on->thread_send_dbdesc = |
| 676 | thread_add_event (master, ospf6_dbdesc_send, on, 0); |
| 677 | return; |
| 678 | } |
| 679 | |
| 680 | if (! CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT)) |
| 681 | { |
| 682 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 683 | zlog_debug ("Master/Slave bit mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 684 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 685 | return; |
| 686 | } |
| 687 | |
| 688 | if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT)) |
| 689 | { |
| 690 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 691 | zlog_debug ("Initialize bit mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 692 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 693 | return; |
| 694 | } |
| 695 | |
| 696 | if (memcmp (on->options, dbdesc->options, sizeof (on->options))) |
| 697 | { |
| 698 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 699 | zlog_debug ("Option field mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 700 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 701 | return; |
| 702 | } |
| 703 | |
| 704 | if (ntohl (dbdesc->seqnum) != on->dbdesc_seqnum + 1) |
| 705 | { |
| 706 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 707 | zlog_debug ("Sequence number mismatch (%#lx expected)", |
| 708 | (u_long) on->dbdesc_seqnum + 1); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 709 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 710 | return; |
| 711 | } |
| 712 | break; |
| 713 | |
| 714 | case OSPF6_NEIGHBOR_LOADING: |
| 715 | case OSPF6_NEIGHBOR_FULL: |
| 716 | if (! memcmp (dbdesc, &on->dbdesc_last, sizeof (struct ospf6_dbdesc))) |
| 717 | { |
| 718 | /* Duplicated DatabaseDescription causes slave to retransmit */ |
| 719 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 720 | zlog_debug ("Duplicated dbdesc causes retransmit"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 721 | THREAD_OFF (on->thread_send_dbdesc); |
| 722 | on->thread_send_dbdesc = |
| 723 | thread_add_event (master, ospf6_dbdesc_send, on, 0); |
| 724 | return; |
| 725 | } |
| 726 | |
| 727 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 728 | zlog_debug ("Not duplicate dbdesc in state %s", |
| 729 | ospf6_neighbor_state_str[on->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 730 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 731 | return; |
| 732 | |
| 733 | default: |
| 734 | assert (0); |
| 735 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 736 | } |
| 737 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 738 | /* Process LSA headers */ |
| 739 | for (p = (char *) ((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc)); |
| 740 | p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh); |
| 741 | p += sizeof (struct ospf6_lsa_header)) |
| 742 | { |
| 743 | struct ospf6_lsa *his, *mine; |
| 744 | struct ospf6_lsdb *lsdb = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 745 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 746 | his = ospf6_lsa_create_headeronly ((struct ospf6_lsa_header *) p); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 747 | |
| 748 | switch (OSPF6_LSA_SCOPE (his->header->type)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 749 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 750 | case OSPF6_SCOPE_LINKLOCAL: |
| 751 | lsdb = on->ospf6_if->lsdb; |
| 752 | break; |
| 753 | case OSPF6_SCOPE_AREA: |
| 754 | lsdb = on->ospf6_if->area->lsdb; |
| 755 | break; |
| 756 | case OSPF6_SCOPE_AS: |
| 757 | lsdb = on->ospf6_if->area->ospf6->lsdb; |
| 758 | break; |
| 759 | case OSPF6_SCOPE_RESERVED: |
| 760 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 761 | zlog_debug ("Ignoring LSA of reserved scope"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 762 | ospf6_lsa_delete (his); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 763 | continue; |
| 764 | break; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 765 | } |
| 766 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 767 | if (OSPF6_LSA_SCOPE (his->header->type) == OSPF6_SCOPE_AS && |
| 768 | IS_AREA_STUB (on->ospf6_if->area)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 769 | { |
| 770 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 771 | zlog_debug ("E-bit mismatch with LSA Headers"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 772 | ospf6_lsa_delete (his); |
| 773 | thread_add_event (master, seqnumber_mismatch, on, 0); |
| 774 | return; |
| 775 | } |
| 776 | |
| 777 | mine = ospf6_lsdb_lookup (his->header->type, his->header->id, |
| 778 | his->header->adv_router, lsdb); |
| 779 | if (mine == NULL || ospf6_lsa_compare (his, mine) < 0) |
| 780 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 781 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 782 | zlog_debug ("Add request-list: %s", his->name); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 783 | ospf6_lsdb_add (his, on->request_list); |
| 784 | } |
| 785 | else |
| 786 | ospf6_lsa_delete (his); |
| 787 | } |
| 788 | |
| 789 | if (p != OSPF6_MESSAGE_END (oh)) |
| 790 | { |
| 791 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 792 | zlog_debug ("Trailing garbage ignored"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | /* Set sequence number to Master's */ |
| 796 | on->dbdesc_seqnum = ntohl (dbdesc->seqnum); |
| 797 | |
| 798 | /* schedule send lsreq */ |
| 799 | if (on->thread_send_lsreq == NULL) |
| 800 | on->thread_send_lsreq = |
| 801 | thread_add_event (master, ospf6_lsreq_send, on, 0); |
| 802 | |
| 803 | THREAD_OFF (on->thread_send_dbdesc); |
| 804 | on->thread_send_dbdesc = |
| 805 | thread_add_event (master, ospf6_dbdesc_send_newone, on, 0); |
| 806 | |
| 807 | /* save last received dbdesc */ |
| 808 | memcpy (&on->dbdesc_last, dbdesc, sizeof (struct ospf6_dbdesc)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 812 | ospf6_dbdesc_recv (struct in6_addr *src, struct in6_addr *dst, |
| 813 | struct ospf6_interface *oi, struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 814 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 815 | struct ospf6_neighbor *on; |
| 816 | struct ospf6_dbdesc *dbdesc; |
| 817 | |
| 818 | if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK) |
| 819 | return; |
| 820 | |
| 821 | on = ospf6_neighbor_lookup (oh->router_id, oi); |
| 822 | if (on == NULL) |
| 823 | { |
| 824 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 825 | zlog_debug ("Neighbor not found, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 826 | return; |
| 827 | } |
| 828 | |
| 829 | if (memcmp (src, &on->linklocal_addr, sizeof (struct in6_addr))) |
| 830 | { |
| 831 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 832 | zlog_debug ("Seems to be from Secondary I/F of the neighbor, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 833 | return; |
| 834 | } |
| 835 | |
| 836 | dbdesc = (struct ospf6_dbdesc *) |
| 837 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 838 | |
| 839 | /* Interface MTU check */ |
| 840 | if (ntohs (dbdesc->ifmtu) != oi->ifmtu) |
| 841 | { |
| 842 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 843 | zlog_debug ("I/F MTU mismatch"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 844 | return; |
| 845 | } |
| 846 | |
| 847 | if (dbdesc->reserved1 || dbdesc->reserved2) |
| 848 | { |
| 849 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 850 | zlog_debug ("Non-0 reserved field in %s's DbDesc, correct", |
| 851 | on->name); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 852 | dbdesc->reserved1 = 0; |
| 853 | dbdesc->reserved2 = 0; |
| 854 | } |
| 855 | |
| 856 | if (ntohl (oh->router_id) < ntohl (ospf6->router_id)) |
| 857 | ospf6_dbdesc_recv_master (oh, on); |
| 858 | else if (ntohl (ospf6->router_id) < ntohl (oh->router_id)) |
| 859 | ospf6_dbdesc_recv_slave (oh, on); |
| 860 | else |
| 861 | { |
| 862 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 863 | zlog_debug ("Can't decide which is master, ignore"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 864 | } |
| 865 | } |
| 866 | |
| 867 | void |
| 868 | ospf6_lsreq_recv (struct in6_addr *src, struct in6_addr *dst, |
| 869 | struct ospf6_interface *oi, struct ospf6_header *oh) |
| 870 | { |
| 871 | struct ospf6_neighbor *on; |
| 872 | char *p; |
| 873 | struct ospf6_lsreq_entry *e; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 874 | struct ospf6_lsdb *lsdb = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 875 | struct ospf6_lsa *lsa; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 876 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 877 | if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK) |
| 878 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 879 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 880 | on = ospf6_neighbor_lookup (oh->router_id, oi); |
| 881 | if (on == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 882 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 883 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 884 | zlog_debug ("Neighbor not found, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 885 | return; |
| 886 | } |
| 887 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 888 | if (memcmp (src, &on->linklocal_addr, sizeof (struct in6_addr))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 889 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 890 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 891 | zlog_debug ("Seems to be from Secondary I/F of the neighbor, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 892 | return; |
| 893 | } |
| 894 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 895 | if (on->state != OSPF6_NEIGHBOR_EXCHANGE && |
| 896 | on->state != OSPF6_NEIGHBOR_LOADING && |
| 897 | on->state != OSPF6_NEIGHBOR_FULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 898 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 899 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 900 | zlog_debug ("Neighbor state less than Exchange, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 901 | return; |
| 902 | } |
| 903 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 904 | /* Process each request */ |
| 905 | for (p = (char *) ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 906 | p + sizeof (struct ospf6_lsreq_entry) <= OSPF6_MESSAGE_END (oh); |
| 907 | p += sizeof (struct ospf6_lsreq_entry)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 908 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 909 | e = (struct ospf6_lsreq_entry *) p; |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 910 | |
| 911 | switch (OSPF6_LSA_SCOPE (e->type)) |
| 912 | { |
| 913 | case OSPF6_SCOPE_LINKLOCAL: |
| 914 | lsdb = on->ospf6_if->lsdb; |
| 915 | break; |
| 916 | case OSPF6_SCOPE_AREA: |
| 917 | lsdb = on->ospf6_if->area->lsdb; |
| 918 | break; |
| 919 | case OSPF6_SCOPE_AS: |
| 920 | lsdb = on->ospf6_if->area->ospf6->lsdb; |
| 921 | break; |
| 922 | default: |
| 923 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 924 | zlog_debug ("Ignoring LSA of reserved scope"); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 925 | continue; |
| 926 | break; |
| 927 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 928 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 929 | /* Find database copy */ |
| 930 | lsa = ospf6_lsdb_lookup (e->type, e->id, e->adv_router, lsdb); |
| 931 | if (lsa == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 932 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 933 | char id[16], adv_router[16]; |
| 934 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
| 935 | { |
| 936 | inet_ntop (AF_INET, &e->id, id, sizeof (id)); |
| 937 | inet_ntop (AF_INET, &e->adv_router, adv_router, |
| 938 | sizeof (adv_router)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 939 | zlog_debug ("Can't find requested [%s Id:%s Adv:%s]", |
| 940 | ospf6_lstype_name (e->type), id, adv_router); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 941 | } |
| 942 | thread_add_event (master, bad_lsreq, on, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 943 | return; |
| 944 | } |
| 945 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 946 | ospf6_lsdb_add (ospf6_lsa_copy (lsa), on->lsupdate_list); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 947 | } |
| 948 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 949 | if (p != OSPF6_MESSAGE_END (oh)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 950 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 951 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 952 | zlog_debug ("Trailing garbage ignored"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 953 | } |
| 954 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 955 | /* schedule send lsupdate */ |
| 956 | THREAD_OFF (on->thread_send_lsupdate); |
| 957 | on->thread_send_lsupdate = |
| 958 | thread_add_event (master, ospf6_lsupdate_send_neighbor, on, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 962 | ospf6_lsupdate_recv (struct in6_addr *src, struct in6_addr *dst, |
| 963 | struct ospf6_interface *oi, struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 964 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 965 | struct ospf6_neighbor *on; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 966 | struct ospf6_lsupdate *lsupdate; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 967 | unsigned long num; |
| 968 | char *p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 969 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 970 | if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK) |
| 971 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 972 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 973 | on = ospf6_neighbor_lookup (oh->router_id, oi); |
| 974 | if (on == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 975 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 976 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 977 | zlog_debug ("Neighbor not found, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 978 | return; |
| 979 | } |
| 980 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 981 | if (memcmp (src, &on->linklocal_addr, sizeof (struct in6_addr))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 982 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 983 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 984 | zlog_debug ("Seems to be from Secondary I/F of the neighbor, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 985 | return; |
| 986 | } |
| 987 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 988 | if (on->state != OSPF6_NEIGHBOR_EXCHANGE && |
| 989 | on->state != OSPF6_NEIGHBOR_LOADING && |
| 990 | on->state != OSPF6_NEIGHBOR_FULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 991 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 992 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 993 | zlog_debug ("Neighbor state less than Exchange, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 994 | return; |
| 995 | } |
| 996 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 997 | lsupdate = (struct ospf6_lsupdate *) |
| 998 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 999 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1000 | num = ntohl (lsupdate->lsa_number); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1001 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1002 | /* Process LSAs */ |
| 1003 | for (p = (char *) ((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate)); |
| 1004 | p < OSPF6_MESSAGE_END (oh) && |
| 1005 | p + OSPF6_LSA_SIZE (p) <= OSPF6_MESSAGE_END (oh); |
| 1006 | p += OSPF6_LSA_SIZE (p)) |
| 1007 | { |
| 1008 | if (num == 0) |
| 1009 | break; |
| 1010 | if (OSPF6_LSA_SIZE (p) < sizeof (struct ospf6_lsa_header)) |
| 1011 | { |
| 1012 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1013 | zlog_debug ("Malformed LSA length, quit processing"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1014 | break; |
| 1015 | } |
| 1016 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1017 | ospf6_receive_lsa (on, (struct ospf6_lsa_header *) p); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1018 | num--; |
| 1019 | } |
| 1020 | |
| 1021 | if (num != 0) |
| 1022 | { |
| 1023 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1024 | zlog_debug ("Malformed LSA number or LSA length"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1025 | } |
| 1026 | if (p != OSPF6_MESSAGE_END (oh)) |
| 1027 | { |
| 1028 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1029 | zlog_debug ("Trailing garbage ignored"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1030 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1031 | |
| 1032 | /* RFC2328 Section 10.9: When the neighbor responds to these requests |
| 1033 | with the proper Link State Update packet(s), the Link state request |
| 1034 | list is truncated and a new Link State Request packet is sent. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1035 | /* send new Link State Request packet if this LS Update packet |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1036 | can be recognized as a response to our previous LS Request */ |
| 1037 | if (! IN6_IS_ADDR_MULTICAST (dst) && |
| 1038 | (on->state == OSPF6_NEIGHBOR_EXCHANGE || |
| 1039 | on->state == OSPF6_NEIGHBOR_LOADING)) |
| 1040 | { |
| 1041 | THREAD_OFF (on->thread_send_lsreq); |
| 1042 | on->thread_send_lsreq = |
| 1043 | thread_add_event (master, ospf6_lsreq_send, on, 0); |
| 1044 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1045 | } |
| 1046 | |
| 1047 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1048 | ospf6_lsack_recv (struct in6_addr *src, struct in6_addr *dst, |
| 1049 | struct ospf6_interface *oi, struct ospf6_header *oh) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1050 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1051 | struct ospf6_neighbor *on; |
| 1052 | char *p; |
| 1053 | struct ospf6_lsa *his, *mine; |
| 1054 | struct ospf6_lsdb *lsdb = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1055 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1056 | assert (oh->type == OSPF6_MESSAGE_TYPE_LSACK); |
| 1057 | if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK) |
| 1058 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1059 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1060 | on = ospf6_neighbor_lookup (oh->router_id, oi); |
| 1061 | if (on == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1062 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1063 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1064 | zlog_debug ("Neighbor not found, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1065 | return; |
| 1066 | } |
| 1067 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1068 | if (memcmp (src, &on->linklocal_addr, sizeof (struct in6_addr))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1069 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1070 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1071 | zlog_debug ("Seems to be from Secondary I/F of the neighbor, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1072 | return; |
| 1073 | } |
| 1074 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1075 | if (on->state != OSPF6_NEIGHBOR_EXCHANGE && |
| 1076 | on->state != OSPF6_NEIGHBOR_LOADING && |
| 1077 | on->state != OSPF6_NEIGHBOR_FULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1078 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1079 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1080 | zlog_debug ("Neighbor state less than Exchange, ignore"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1081 | return; |
| 1082 | } |
| 1083 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1084 | for (p = (char *) ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1085 | p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh); |
| 1086 | p += sizeof (struct ospf6_lsa_header)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1087 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1088 | his = ospf6_lsa_create_headeronly ((struct ospf6_lsa_header *) p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1089 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1090 | switch (OSPF6_LSA_SCOPE (his->header->type)) |
| 1091 | { |
| 1092 | case OSPF6_SCOPE_LINKLOCAL: |
| 1093 | lsdb = on->ospf6_if->lsdb; |
| 1094 | break; |
| 1095 | case OSPF6_SCOPE_AREA: |
| 1096 | lsdb = on->ospf6_if->area->lsdb; |
| 1097 | break; |
| 1098 | case OSPF6_SCOPE_AS: |
| 1099 | lsdb = on->ospf6_if->area->ospf6->lsdb; |
| 1100 | break; |
| 1101 | case OSPF6_SCOPE_RESERVED: |
| 1102 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1103 | zlog_debug ("Ignoring LSA of reserved scope"); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1104 | ospf6_lsa_delete (his); |
| 1105 | continue; |
| 1106 | break; |
| 1107 | } |
| 1108 | |
| 1109 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1110 | zlog_debug ("%s acknowledged by %s", his->name, on->name); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1111 | |
| 1112 | /* Find database copy */ |
| 1113 | mine = ospf6_lsdb_lookup (his->header->type, his->header->id, |
| 1114 | his->header->adv_router, lsdb); |
| 1115 | if (mine == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1116 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1117 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1118 | zlog_debug ("No database copy"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1119 | ospf6_lsa_delete (his); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1120 | continue; |
| 1121 | } |
| 1122 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1123 | /* Check if the LSA is on his retrans-list */ |
| 1124 | mine = ospf6_lsdb_lookup (his->header->type, his->header->id, |
| 1125 | his->header->adv_router, on->retrans_list); |
| 1126 | if (mine == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1127 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1128 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1129 | zlog_debug ("Not on %s's retrans-list", on->name); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1130 | ospf6_lsa_delete (his); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1131 | continue; |
| 1132 | } |
| 1133 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1134 | if (ospf6_lsa_compare (his, mine) != 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1135 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1136 | /* Log this questionable acknowledgement, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1137 | and examine the next one. */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1138 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1139 | zlog_debug ("Questionable acknowledgement"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1140 | ospf6_lsa_delete (his); |
| 1141 | continue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1142 | } |
| 1143 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1144 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1145 | zlog_debug ("Acknowledged, remove from %s's retrans-list", |
| 1146 | on->name); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1147 | |
| 1148 | if (OSPF6_LSA_IS_MAXAGE (mine)) |
| 1149 | ospf6_maxage_remove (on->ospf6_if->area->ospf6); |
| 1150 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1151 | ospf6_decrement_retrans_count (mine); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1152 | ospf6_lsdb_remove (mine, on->retrans_list); |
| 1153 | ospf6_lsa_delete (his); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1156 | if (p != OSPF6_MESSAGE_END (oh)) |
| 1157 | { |
| 1158 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1159 | zlog_debug ("Trailing garbage ignored"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1160 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1161 | } |
| 1162 | |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1163 | u_char *recvbuf = NULL; |
| 1164 | u_char *sendbuf = NULL; |
| 1165 | unsigned int iobuflen = 0; |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1166 | |
| 1167 | int |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1168 | ospf6_iobuf_size (unsigned int size) |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1169 | { |
| 1170 | char *recvnew, *sendnew; |
| 1171 | |
| 1172 | if (size <= iobuflen) |
| 1173 | return iobuflen; |
| 1174 | |
| 1175 | recvnew = XMALLOC (MTYPE_OSPF6_MESSAGE, size); |
| 1176 | sendnew = XMALLOC (MTYPE_OSPF6_MESSAGE, size); |
| 1177 | if (recvnew == NULL || sendnew == NULL) |
| 1178 | { |
hasso | b596c71 | 2004-07-09 18:33:43 +0000 | [diff] [blame] | 1179 | if (recvnew) |
| 1180 | XFREE (MTYPE_OSPF6_MESSAGE, recvnew); |
| 1181 | if (sendnew) |
| 1182 | XFREE (MTYPE_OSPF6_MESSAGE, sendnew); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1183 | zlog_debug ("Could not allocate I/O buffer of size %d.", size); |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1184 | return iobuflen; |
| 1185 | } |
| 1186 | |
| 1187 | if (recvbuf) |
| 1188 | XFREE (MTYPE_OSPF6_MESSAGE, recvbuf); |
| 1189 | if (sendbuf) |
| 1190 | XFREE (MTYPE_OSPF6_MESSAGE, sendbuf); |
| 1191 | recvbuf = recvnew; |
| 1192 | sendbuf = sendnew; |
| 1193 | iobuflen = size; |
| 1194 | |
| 1195 | return iobuflen; |
| 1196 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1197 | |
| 1198 | int |
| 1199 | ospf6_receive (struct thread *thread) |
| 1200 | { |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1201 | int sockfd; |
| 1202 | unsigned int len; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1203 | char srcname[64], dstname[64]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1204 | struct in6_addr src, dst; |
| 1205 | unsigned int ifindex; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1206 | struct iovec iovector[2]; |
| 1207 | struct ospf6_interface *oi; |
| 1208 | struct ospf6_header *oh; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1209 | |
| 1210 | /* add next read thread */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1211 | sockfd = THREAD_FD (thread); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1212 | thread_add_read (master, ospf6_receive, NULL, sockfd); |
| 1213 | |
| 1214 | /* initialize */ |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1215 | memset (recvbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1216 | iovector[0].iov_base = recvbuf; |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1217 | iovector[0].iov_len = iobuflen; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1218 | iovector[1].iov_base = NULL; |
| 1219 | iovector[1].iov_len = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1220 | |
| 1221 | /* receive message */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1222 | len = ospf6_recvmsg (&src, &dst, &ifindex, iovector); |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1223 | if (len > iobuflen) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1224 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1225 | zlog_err ("Excess message read"); |
| 1226 | return 0; |
| 1227 | } |
| 1228 | else if (len < sizeof (struct ospf6_header)) |
| 1229 | { |
| 1230 | zlog_err ("Deficient message read"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1231 | return 0; |
| 1232 | } |
| 1233 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1234 | oi = ospf6_interface_lookup_by_ifindex (ifindex); |
| 1235 | if (oi == NULL || oi->area == NULL) |
| 1236 | { |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1237 | zlog_debug ("Message received on disabled interface"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1238 | return 0; |
| 1239 | } |
| 1240 | |
| 1241 | oh = (struct ospf6_header *) recvbuf; |
| 1242 | |
| 1243 | /* Log */ |
| 1244 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
| 1245 | { |
| 1246 | inet_ntop (AF_INET6, &src, srcname, sizeof (srcname)); |
| 1247 | inet_ntop (AF_INET6, &dst, dstname, sizeof (dstname)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1248 | zlog_debug ("%s received on %s", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1249 | OSPF6_MESSAGE_TYPE_NAME (oh->type), oi->interface->name); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1250 | zlog_debug (" src: %s", srcname); |
| 1251 | zlog_debug (" dst: %s", dstname); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1252 | if (len != ntohs (oh->length)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1253 | zlog_debug ("Message length does not match actually received: %d", len); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1254 | |
| 1255 | switch (oh->type) |
| 1256 | { |
| 1257 | case OSPF6_MESSAGE_TYPE_HELLO: |
| 1258 | ospf6_hello_print (oh); |
| 1259 | break; |
| 1260 | case OSPF6_MESSAGE_TYPE_DBDESC: |
| 1261 | ospf6_dbdesc_print (oh); |
| 1262 | break; |
| 1263 | case OSPF6_MESSAGE_TYPE_LSREQ: |
| 1264 | ospf6_lsreq_print (oh); |
| 1265 | break; |
| 1266 | case OSPF6_MESSAGE_TYPE_LSUPDATE: |
| 1267 | ospf6_lsupdate_print (oh); |
| 1268 | break; |
| 1269 | case OSPF6_MESSAGE_TYPE_LSACK: |
| 1270 | ospf6_lsack_print (oh); |
| 1271 | break; |
| 1272 | default: |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1273 | zlog_debug ("Unknown message"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1274 | break; |
| 1275 | } |
| 1276 | } |
| 1277 | |
| 1278 | if (CHECK_FLAG (oi->flag, OSPF6_INTERFACE_PASSIVE)) |
| 1279 | { |
| 1280 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1281 | zlog_debug ("Ignore message on passive interface %s", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1282 | oi->interface->name); |
| 1283 | return 0; |
| 1284 | } |
| 1285 | |
| 1286 | switch (oh->type) |
| 1287 | { |
| 1288 | case OSPF6_MESSAGE_TYPE_HELLO: |
| 1289 | ospf6_hello_recv (&src, &dst, oi, oh); |
| 1290 | break; |
| 1291 | |
| 1292 | case OSPF6_MESSAGE_TYPE_DBDESC: |
| 1293 | ospf6_dbdesc_recv (&src, &dst, oi, oh); |
| 1294 | break; |
| 1295 | |
| 1296 | case OSPF6_MESSAGE_TYPE_LSREQ: |
| 1297 | ospf6_lsreq_recv (&src, &dst, oi, oh); |
| 1298 | break; |
| 1299 | |
| 1300 | case OSPF6_MESSAGE_TYPE_LSUPDATE: |
| 1301 | ospf6_lsupdate_recv (&src, &dst, oi, oh); |
| 1302 | break; |
| 1303 | |
| 1304 | case OSPF6_MESSAGE_TYPE_LSACK: |
| 1305 | ospf6_lsack_recv (&src, &dst, oi, oh); |
| 1306 | break; |
| 1307 | |
| 1308 | default: |
| 1309 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, RECV)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1310 | zlog_debug ("Unknown message"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1311 | break; |
| 1312 | } |
| 1313 | |
| 1314 | return 0; |
| 1315 | } |
| 1316 | |
| 1317 | void |
| 1318 | ospf6_send (struct in6_addr *src, struct in6_addr *dst, |
| 1319 | struct ospf6_interface *oi, struct ospf6_header *oh) |
| 1320 | { |
| 1321 | int len; |
| 1322 | char srcname[64], dstname[64]; |
| 1323 | struct iovec iovector[2]; |
| 1324 | |
| 1325 | /* initialize */ |
| 1326 | iovector[0].iov_base = (caddr_t) oh; |
| 1327 | iovector[0].iov_len = ntohs (oh->length); |
| 1328 | iovector[1].iov_base = NULL; |
| 1329 | iovector[1].iov_len = 0; |
| 1330 | |
| 1331 | /* fill OSPF header */ |
| 1332 | oh->version = OSPFV3_VERSION; |
| 1333 | /* message type must be set before */ |
| 1334 | /* message length must be set before */ |
| 1335 | oh->router_id = oi->area->ospf6->router_id; |
| 1336 | oh->area_id = oi->area->area_id; |
| 1337 | /* checksum is calculated by kernel */ |
| 1338 | oh->instance_id = oi->instance_id; |
| 1339 | oh->reserved = 0; |
| 1340 | |
| 1341 | /* Log */ |
| 1342 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, SEND)) |
| 1343 | { |
| 1344 | inet_ntop (AF_INET6, dst, dstname, sizeof (dstname)); |
| 1345 | if (src) |
| 1346 | inet_ntop (AF_INET6, src, srcname, sizeof (srcname)); |
| 1347 | else |
| 1348 | memset (srcname, 0, sizeof (srcname)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1349 | zlog_debug ("%s send on %s", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1350 | OSPF6_MESSAGE_TYPE_NAME (oh->type), oi->interface->name); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1351 | zlog_debug (" src: %s", srcname); |
| 1352 | zlog_debug (" dst: %s", dstname); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1353 | |
| 1354 | switch (oh->type) |
| 1355 | { |
| 1356 | case OSPF6_MESSAGE_TYPE_HELLO: |
| 1357 | ospf6_hello_print (oh); |
| 1358 | break; |
| 1359 | case OSPF6_MESSAGE_TYPE_DBDESC: |
| 1360 | ospf6_dbdesc_print (oh); |
| 1361 | break; |
| 1362 | case OSPF6_MESSAGE_TYPE_LSREQ: |
| 1363 | ospf6_lsreq_print (oh); |
| 1364 | break; |
| 1365 | case OSPF6_MESSAGE_TYPE_LSUPDATE: |
| 1366 | ospf6_lsupdate_print (oh); |
| 1367 | break; |
| 1368 | case OSPF6_MESSAGE_TYPE_LSACK: |
| 1369 | ospf6_lsack_print (oh); |
| 1370 | break; |
| 1371 | default: |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1372 | zlog_debug ("Unknown message"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1373 | assert (0); |
| 1374 | break; |
| 1375 | } |
| 1376 | } |
| 1377 | |
| 1378 | /* send message */ |
| 1379 | len = ospf6_sendmsg (src, dst, &oi->interface->ifindex, iovector); |
| 1380 | if (len != ntohs (oh->length)) |
| 1381 | zlog_err ("Could not send entire message"); |
| 1382 | } |
| 1383 | |
| 1384 | int |
| 1385 | ospf6_hello_send (struct thread *thread) |
| 1386 | { |
| 1387 | struct ospf6_interface *oi; |
| 1388 | struct ospf6_header *oh; |
| 1389 | struct ospf6_hello *hello; |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1390 | u_char *p; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 1391 | struct listnode *node; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1392 | struct ospf6_neighbor *on; |
| 1393 | |
| 1394 | oi = (struct ospf6_interface *) THREAD_ARG (thread); |
| 1395 | oi->thread_send_hello = (struct thread *) NULL; |
| 1396 | |
| 1397 | if (oi->state <= OSPF6_INTERFACE_DOWN) |
| 1398 | { |
| 1399 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_HELLO, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1400 | zlog_debug ("Unable to send Hello on down interface %s", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1401 | oi->interface->name); |
| 1402 | return 0; |
| 1403 | } |
| 1404 | |
| 1405 | /* set next thread */ |
| 1406 | oi->thread_send_hello = thread_add_timer (master, ospf6_hello_send, |
| 1407 | oi, oi->hello_interval); |
| 1408 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1409 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1410 | oh = (struct ospf6_header *) sendbuf; |
| 1411 | hello = (struct ospf6_hello *)((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1412 | |
| 1413 | hello->interface_id = htonl (oi->interface->ifindex); |
| 1414 | hello->priority = oi->priority; |
| 1415 | hello->options[0] = oi->area->options[0]; |
| 1416 | hello->options[1] = oi->area->options[1]; |
| 1417 | hello->options[2] = oi->area->options[2]; |
| 1418 | hello->hello_interval = htons (oi->hello_interval); |
| 1419 | hello->dead_interval = htons (oi->dead_interval); |
| 1420 | hello->drouter = oi->drouter; |
| 1421 | hello->bdrouter = oi->bdrouter; |
| 1422 | |
| 1423 | p = (char *)((caddr_t) hello + sizeof (struct ospf6_hello)); |
| 1424 | |
| 1425 | for (node = listhead (oi->neighbor_list); node; nextnode (node)) |
| 1426 | { |
| 1427 | on = (struct ospf6_neighbor *) getdata (node); |
| 1428 | |
| 1429 | if (on->state < OSPF6_NEIGHBOR_INIT) |
| 1430 | continue; |
| 1431 | |
| 1432 | if (p - sendbuf + sizeof (u_int32_t) > oi->ifmtu) |
| 1433 | { |
| 1434 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_HELLO, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1435 | zlog_debug ("sending Hello message: exceeds I/F MTU"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1436 | break; |
| 1437 | } |
| 1438 | |
| 1439 | memcpy (p, &on->router_id, sizeof (u_int32_t)); |
| 1440 | p += sizeof (u_int32_t); |
| 1441 | } |
| 1442 | |
| 1443 | oh->type = OSPF6_MESSAGE_TYPE_HELLO; |
| 1444 | oh->length = htons (p - sendbuf); |
| 1445 | |
| 1446 | ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh); |
| 1447 | return 0; |
| 1448 | } |
| 1449 | |
| 1450 | int |
| 1451 | ospf6_dbdesc_send (struct thread *thread) |
| 1452 | { |
| 1453 | struct ospf6_neighbor *on; |
| 1454 | struct ospf6_header *oh; |
| 1455 | struct ospf6_dbdesc *dbdesc; |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1456 | u_char *p; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1457 | struct ospf6_lsa *lsa; |
| 1458 | |
| 1459 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
| 1460 | on->thread_send_dbdesc = (struct thread *) NULL; |
| 1461 | |
| 1462 | if (on->state < OSPF6_NEIGHBOR_EXSTART) |
| 1463 | { |
| 1464 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_DBDESC, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1465 | zlog_debug ("Quit to send DbDesc to neighbor %s state %s", |
| 1466 | on->name, ospf6_neighbor_state_str[on->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1467 | return 0; |
| 1468 | } |
| 1469 | |
| 1470 | /* set next thread if master */ |
| 1471 | if (CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MSBIT)) |
| 1472 | on->thread_send_dbdesc = |
| 1473 | thread_add_timer (master, ospf6_dbdesc_send, on, |
| 1474 | on->ospf6_if->rxmt_interval); |
| 1475 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1476 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1477 | oh = (struct ospf6_header *) sendbuf; |
| 1478 | dbdesc = (struct ospf6_dbdesc *)((caddr_t) oh + |
| 1479 | sizeof (struct ospf6_header)); |
| 1480 | |
| 1481 | /* if this is initial one, initialize sequence number for DbDesc */ |
| 1482 | if (CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_IBIT)) |
| 1483 | { |
| 1484 | struct timeval tv; |
| 1485 | if (gettimeofday (&tv, (struct timezone *) NULL) < 0) |
| 1486 | tv.tv_sec = 1; |
| 1487 | on->dbdesc_seqnum = tv.tv_sec; |
| 1488 | } |
| 1489 | |
| 1490 | dbdesc->options[0] = on->ospf6_if->area->options[0]; |
| 1491 | dbdesc->options[1] = on->ospf6_if->area->options[1]; |
| 1492 | dbdesc->options[2] = on->ospf6_if->area->options[2]; |
| 1493 | dbdesc->ifmtu = htons (on->ospf6_if->ifmtu); |
| 1494 | dbdesc->bits = on->dbdesc_bits; |
| 1495 | dbdesc->seqnum = htonl (on->dbdesc_seqnum); |
| 1496 | |
| 1497 | /* if this is not initial one, set LSA headers in dbdesc */ |
| 1498 | p = (char *)((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc)); |
| 1499 | if (! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_IBIT)) |
| 1500 | { |
| 1501 | for (lsa = ospf6_lsdb_head (on->dbdesc_list); lsa; |
| 1502 | lsa = ospf6_lsdb_next (lsa)) |
| 1503 | { |
| 1504 | ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay); |
| 1505 | |
| 1506 | /* MTU check */ |
| 1507 | if (p - sendbuf + sizeof (struct ospf6_lsa_header) > |
| 1508 | on->ospf6_if->ifmtu) |
| 1509 | { |
| 1510 | ospf6_lsa_unlock (lsa); |
| 1511 | break; |
| 1512 | } |
| 1513 | memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header)); |
| 1514 | p += sizeof (struct ospf6_lsa_header); |
| 1515 | } |
| 1516 | } |
| 1517 | |
| 1518 | oh->type = OSPF6_MESSAGE_TYPE_DBDESC; |
| 1519 | oh->length = htons (p - sendbuf); |
| 1520 | |
| 1521 | ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr, |
| 1522 | on->ospf6_if, oh); |
| 1523 | return 0; |
| 1524 | } |
| 1525 | |
| 1526 | int |
| 1527 | ospf6_dbdesc_send_newone (struct thread *thread) |
| 1528 | { |
| 1529 | struct ospf6_neighbor *on; |
| 1530 | struct ospf6_lsa *lsa; |
| 1531 | unsigned int size = 0; |
| 1532 | |
| 1533 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1534 | ospf6_lsdb_remove_all (on->dbdesc_list); |
| 1535 | |
| 1536 | /* move LSAs from summary_list to dbdesc_list (within neighbor structure) |
| 1537 | so that ospf6_send_dbdesc () can send those LSAs */ |
| 1538 | size = sizeof (struct ospf6_lsa_header) + sizeof (struct ospf6_dbdesc); |
| 1539 | for (lsa = ospf6_lsdb_head (on->summary_list); lsa; |
| 1540 | lsa = ospf6_lsdb_next (lsa)) |
| 1541 | { |
| 1542 | if (size + sizeof (struct ospf6_lsa_header) > on->ospf6_if->ifmtu) |
| 1543 | { |
| 1544 | ospf6_lsa_unlock (lsa); |
| 1545 | break; |
| 1546 | } |
| 1547 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1548 | ospf6_lsdb_add (ospf6_lsa_copy (lsa), on->dbdesc_list); |
| 1549 | ospf6_lsdb_remove (lsa, on->summary_list); |
| 1550 | size += sizeof (struct ospf6_lsa_header); |
| 1551 | } |
| 1552 | |
| 1553 | if (on->summary_list->count == 0) |
| 1554 | UNSET_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MBIT); |
| 1555 | |
| 1556 | /* If slave, More bit check must be done here */ |
| 1557 | if (! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MSBIT) && /* Slave */ |
| 1558 | ! CHECK_FLAG (on->dbdesc_last.bits, OSPF6_DBDESC_MBIT) && |
| 1559 | ! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MBIT)) |
| 1560 | thread_add_event (master, exchange_done, on, 0); |
| 1561 | |
| 1562 | thread_execute (master, ospf6_dbdesc_send, on, 0); |
| 1563 | return 0; |
| 1564 | } |
| 1565 | |
| 1566 | int |
| 1567 | ospf6_lsreq_send (struct thread *thread) |
| 1568 | { |
| 1569 | struct ospf6_neighbor *on; |
| 1570 | struct ospf6_header *oh; |
| 1571 | struct ospf6_lsreq_entry *e; |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1572 | u_char *p; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1573 | struct ospf6_lsa *lsa; |
| 1574 | |
| 1575 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
| 1576 | on->thread_send_lsreq = (struct thread *) NULL; |
| 1577 | |
| 1578 | /* LSReq will be sent only in ExStart or Loading */ |
| 1579 | if (on->state != OSPF6_NEIGHBOR_EXCHANGE && |
| 1580 | on->state != OSPF6_NEIGHBOR_LOADING) |
| 1581 | { |
| 1582 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSREQ, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1583 | zlog_debug ("Quit to send LSReq to neighbor %s state %s", |
| 1584 | on->name, ospf6_neighbor_state_str[on->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1585 | return 0; |
| 1586 | } |
| 1587 | |
| 1588 | /* schedule loading_done if request list is empty */ |
| 1589 | if (on->request_list->count == 0) |
| 1590 | { |
| 1591 | thread_add_event (master, loading_done, on, 0); |
| 1592 | return 0; |
| 1593 | } |
| 1594 | |
| 1595 | /* set next thread */ |
| 1596 | on->thread_send_lsreq = |
| 1597 | thread_add_timer (master, ospf6_lsreq_send, on, |
| 1598 | on->ospf6_if->rxmt_interval); |
| 1599 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1600 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1601 | oh = (struct ospf6_header *) sendbuf; |
| 1602 | |
| 1603 | /* set Request entries in lsreq */ |
| 1604 | p = (char *)((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1605 | for (lsa = ospf6_lsdb_head (on->request_list); lsa; |
| 1606 | lsa = ospf6_lsdb_next (lsa)) |
| 1607 | { |
| 1608 | /* MTU check */ |
| 1609 | if (p - sendbuf + sizeof (struct ospf6_lsreq_entry) > on->ospf6_if->ifmtu) |
| 1610 | { |
| 1611 | ospf6_lsa_unlock (lsa); |
| 1612 | break; |
| 1613 | } |
| 1614 | |
| 1615 | e = (struct ospf6_lsreq_entry *) p; |
| 1616 | e->type = lsa->header->type; |
| 1617 | e->id = lsa->header->id; |
| 1618 | e->adv_router = lsa->header->adv_router; |
| 1619 | p += sizeof (struct ospf6_lsreq_entry); |
| 1620 | } |
| 1621 | |
| 1622 | oh->type = OSPF6_MESSAGE_TYPE_LSREQ; |
| 1623 | oh->length = htons (p - sendbuf); |
| 1624 | |
| 1625 | ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr, |
| 1626 | on->ospf6_if, oh); |
| 1627 | return 0; |
| 1628 | } |
| 1629 | |
| 1630 | int |
| 1631 | ospf6_lsupdate_send_neighbor (struct thread *thread) |
| 1632 | { |
| 1633 | struct ospf6_neighbor *on; |
| 1634 | struct ospf6_header *oh; |
| 1635 | struct ospf6_lsupdate *lsupdate; |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1636 | u_char *p; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1637 | int num; |
| 1638 | struct ospf6_lsa *lsa; |
| 1639 | |
| 1640 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
| 1641 | on->thread_send_lsupdate = (struct thread *) NULL; |
| 1642 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1643 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1644 | zlog_debug ("LSUpdate to neighbor %s", on->name); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1645 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1646 | if (on->state < OSPF6_NEIGHBOR_EXCHANGE) |
| 1647 | { |
| 1648 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1649 | zlog_debug ("Quit to send (neighbor state %s)", |
| 1650 | ospf6_neighbor_state_str[on->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1651 | return 0; |
| 1652 | } |
| 1653 | |
| 1654 | /* if we have nothing to send, return */ |
| 1655 | if (on->lsupdate_list->count == 0 && |
| 1656 | on->retrans_list->count == 0) |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1657 | { |
| 1658 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1659 | zlog_debug ("Quit to send (nothing to send)"); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1660 | return 0; |
| 1661 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1662 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1663 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1664 | oh = (struct ospf6_header *) sendbuf; |
| 1665 | lsupdate = (struct ospf6_lsupdate *) |
| 1666 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1667 | |
| 1668 | p = (char *)((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate)); |
| 1669 | num = 0; |
| 1670 | |
| 1671 | /* lsupdate_list lists those LSA which doesn't need to be |
| 1672 | retransmitted. remove those from the list */ |
| 1673 | for (lsa = ospf6_lsdb_head (on->lsupdate_list); lsa; |
| 1674 | lsa = ospf6_lsdb_next (lsa)) |
| 1675 | { |
| 1676 | /* MTU check */ |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1677 | if ( (p - sendbuf + (unsigned int)OSPF6_LSA_SIZE (lsa->header)) |
| 1678 | > on->ospf6_if->ifmtu) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1679 | { |
| 1680 | ospf6_lsa_unlock (lsa); |
| 1681 | break; |
| 1682 | } |
| 1683 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1684 | ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay); |
| 1685 | memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header)); |
| 1686 | p += OSPF6_LSA_SIZE (lsa->header); |
| 1687 | num++; |
| 1688 | |
| 1689 | assert (lsa->lock == 2); |
| 1690 | ospf6_lsdb_remove (lsa, on->lsupdate_list); |
| 1691 | } |
| 1692 | |
| 1693 | for (lsa = ospf6_lsdb_head (on->retrans_list); lsa; |
| 1694 | lsa = ospf6_lsdb_next (lsa)) |
| 1695 | { |
| 1696 | /* MTU check */ |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1697 | if ( (p - sendbuf + (unsigned int)OSPF6_LSA_SIZE (lsa->header)) |
| 1698 | > on->ospf6_if->ifmtu) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1699 | { |
| 1700 | ospf6_lsa_unlock (lsa); |
| 1701 | break; |
| 1702 | } |
| 1703 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1704 | ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay); |
| 1705 | memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header)); |
| 1706 | p += OSPF6_LSA_SIZE (lsa->header); |
| 1707 | num++; |
| 1708 | } |
| 1709 | |
| 1710 | lsupdate->lsa_number = htonl (num); |
| 1711 | |
| 1712 | oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE; |
| 1713 | oh->length = htons (p - sendbuf); |
| 1714 | |
| 1715 | ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr, |
| 1716 | on->ospf6_if, oh); |
| 1717 | |
| 1718 | if (on->lsupdate_list->count != 0 || |
| 1719 | on->retrans_list->count != 0) |
| 1720 | { |
| 1721 | if (on->lsupdate_list->count != 0) |
| 1722 | on->thread_send_lsupdate = |
| 1723 | thread_add_event (master, ospf6_lsupdate_send_neighbor, on, 0); |
| 1724 | else |
| 1725 | on->thread_send_lsupdate = |
| 1726 | thread_add_timer (master, ospf6_lsupdate_send_neighbor, on, |
| 1727 | on->ospf6_if->rxmt_interval); |
| 1728 | } |
| 1729 | |
| 1730 | return 0; |
| 1731 | } |
| 1732 | |
| 1733 | int |
| 1734 | ospf6_lsupdate_send_interface (struct thread *thread) |
| 1735 | { |
| 1736 | struct ospf6_interface *oi; |
| 1737 | struct ospf6_header *oh; |
| 1738 | struct ospf6_lsupdate *lsupdate; |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1739 | u_char *p; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1740 | int num; |
| 1741 | struct ospf6_lsa *lsa; |
| 1742 | |
| 1743 | oi = (struct ospf6_interface *) THREAD_ARG (thread); |
| 1744 | oi->thread_send_lsupdate = (struct thread *) NULL; |
| 1745 | |
| 1746 | if (oi->state <= OSPF6_INTERFACE_WAITING) |
| 1747 | { |
| 1748 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1749 | zlog_debug ("Quit to send LSUpdate to interface %s state %s", |
| 1750 | oi->interface->name, ospf6_interface_state_str[oi->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1751 | return 0; |
| 1752 | } |
| 1753 | |
| 1754 | /* if we have nothing to send, return */ |
| 1755 | if (oi->lsupdate_list->count == 0) |
| 1756 | return 0; |
| 1757 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1758 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1759 | oh = (struct ospf6_header *) sendbuf; |
| 1760 | lsupdate = (struct ospf6_lsupdate *)((caddr_t) oh + |
| 1761 | sizeof (struct ospf6_header)); |
| 1762 | |
| 1763 | p = (char *)((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate)); |
| 1764 | num = 0; |
| 1765 | |
| 1766 | for (lsa = ospf6_lsdb_head (oi->lsupdate_list); lsa; |
| 1767 | lsa = ospf6_lsdb_next (lsa)) |
| 1768 | { |
| 1769 | /* MTU check */ |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1770 | if ( (p - sendbuf + ((unsigned int)OSPF6_LSA_SIZE (lsa->header))) |
| 1771 | > oi->ifmtu) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1772 | { |
| 1773 | ospf6_lsa_unlock (lsa); |
| 1774 | break; |
| 1775 | } |
| 1776 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1777 | ospf6_lsa_age_update_to_send (lsa, oi->transdelay); |
| 1778 | memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header)); |
| 1779 | p += OSPF6_LSA_SIZE (lsa->header); |
| 1780 | num++; |
| 1781 | |
| 1782 | assert (lsa->lock == 2); |
| 1783 | ospf6_lsdb_remove (lsa, oi->lsupdate_list); |
| 1784 | } |
| 1785 | |
| 1786 | lsupdate->lsa_number = htonl (num); |
| 1787 | |
| 1788 | oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE; |
| 1789 | oh->length = htons (p - sendbuf); |
| 1790 | |
| 1791 | if (oi->state == OSPF6_INTERFACE_DR || |
| 1792 | oi->state == OSPF6_INTERFACE_BDR) |
| 1793 | ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh); |
| 1794 | else |
| 1795 | ospf6_send (oi->linklocal_addr, &alldrouters6, oi, oh); |
| 1796 | |
| 1797 | if (oi->lsupdate_list->count > 0) |
| 1798 | { |
| 1799 | oi->thread_send_lsupdate = |
| 1800 | thread_add_event (master, ospf6_lsupdate_send_interface, oi, 0); |
| 1801 | } |
| 1802 | |
| 1803 | return 0; |
| 1804 | } |
| 1805 | |
| 1806 | int |
| 1807 | ospf6_lsack_send_neighbor (struct thread *thread) |
| 1808 | { |
| 1809 | struct ospf6_neighbor *on; |
| 1810 | struct ospf6_header *oh; |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1811 | u_char *p; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1812 | struct ospf6_lsa *lsa; |
| 1813 | |
| 1814 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
| 1815 | on->thread_send_lsack = (struct thread *) NULL; |
| 1816 | |
| 1817 | if (on->state < OSPF6_NEIGHBOR_EXCHANGE) |
| 1818 | { |
| 1819 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSACK, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1820 | zlog_debug ("Quit to send LSAck to neighbor %s state %s", |
| 1821 | on->name, ospf6_neighbor_state_str[on->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1822 | return 0; |
| 1823 | } |
| 1824 | |
| 1825 | /* if we have nothing to send, return */ |
| 1826 | if (on->lsack_list->count == 0) |
| 1827 | return 0; |
| 1828 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1829 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1830 | oh = (struct ospf6_header *) sendbuf; |
| 1831 | |
| 1832 | p = (char *)((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1833 | |
| 1834 | for (lsa = ospf6_lsdb_head (on->lsack_list); lsa; |
| 1835 | lsa = ospf6_lsdb_next (lsa)) |
| 1836 | { |
| 1837 | /* MTU check */ |
| 1838 | if (p - sendbuf + sizeof (struct ospf6_lsa_header) > on->ospf6_if->ifmtu) |
| 1839 | { |
| 1840 | /* if we run out of packet size/space here, |
| 1841 | better to try again soon. */ |
| 1842 | THREAD_OFF (on->thread_send_lsack); |
| 1843 | on->thread_send_lsack = |
| 1844 | thread_add_event (master, ospf6_lsack_send_neighbor, on, 0); |
| 1845 | |
| 1846 | ospf6_lsa_unlock (lsa); |
| 1847 | break; |
| 1848 | } |
| 1849 | |
| 1850 | ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay); |
| 1851 | memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header)); |
| 1852 | p += sizeof (struct ospf6_lsa_header); |
| 1853 | |
| 1854 | assert (lsa->lock == 2); |
| 1855 | ospf6_lsdb_remove (lsa, on->lsack_list); |
| 1856 | } |
| 1857 | |
| 1858 | oh->type = OSPF6_MESSAGE_TYPE_LSACK; |
| 1859 | oh->length = htons (p - sendbuf); |
| 1860 | |
| 1861 | ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr, |
| 1862 | on->ospf6_if, oh); |
| 1863 | return 0; |
| 1864 | } |
| 1865 | |
| 1866 | int |
| 1867 | ospf6_lsack_send_interface (struct thread *thread) |
| 1868 | { |
| 1869 | struct ospf6_interface *oi; |
| 1870 | struct ospf6_header *oh; |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 1871 | u_char *p; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1872 | struct ospf6_lsa *lsa; |
| 1873 | |
| 1874 | oi = (struct ospf6_interface *) THREAD_ARG (thread); |
| 1875 | oi->thread_send_lsack = (struct thread *) NULL; |
| 1876 | |
| 1877 | if (oi->state <= OSPF6_INTERFACE_WAITING) |
| 1878 | { |
| 1879 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSACK, SEND)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 1880 | zlog_debug ("Quit to send LSAck to interface %s state %s", |
| 1881 | oi->interface->name, ospf6_interface_state_str[oi->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1882 | return 0; |
| 1883 | } |
| 1884 | |
| 1885 | /* if we have nothing to send, return */ |
| 1886 | if (oi->lsack_list->count == 0) |
| 1887 | return 0; |
| 1888 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1889 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1890 | oh = (struct ospf6_header *) sendbuf; |
| 1891 | |
| 1892 | p = (char *)((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1893 | |
| 1894 | for (lsa = ospf6_lsdb_head (oi->lsack_list); lsa; |
| 1895 | lsa = ospf6_lsdb_next (lsa)) |
| 1896 | { |
| 1897 | /* MTU check */ |
| 1898 | if (p - sendbuf + sizeof (struct ospf6_lsa_header) > oi->ifmtu) |
| 1899 | { |
| 1900 | /* if we run out of packet size/space here, |
| 1901 | better to try again soon. */ |
| 1902 | THREAD_OFF (oi->thread_send_lsack); |
| 1903 | oi->thread_send_lsack = |
| 1904 | thread_add_event (master, ospf6_lsack_send_interface, oi, 0); |
| 1905 | |
| 1906 | ospf6_lsa_unlock (lsa); |
| 1907 | break; |
| 1908 | } |
| 1909 | |
| 1910 | ospf6_lsa_age_update_to_send (lsa, oi->transdelay); |
| 1911 | memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header)); |
| 1912 | p += sizeof (struct ospf6_lsa_header); |
| 1913 | |
| 1914 | assert (lsa->lock == 2); |
| 1915 | ospf6_lsdb_remove (lsa, oi->lsack_list); |
| 1916 | } |
| 1917 | |
| 1918 | oh->type = OSPF6_MESSAGE_TYPE_LSACK; |
| 1919 | oh->length = htons (p - sendbuf); |
| 1920 | |
| 1921 | if (oi->state == OSPF6_INTERFACE_DR || |
| 1922 | oi->state == OSPF6_INTERFACE_BDR) |
| 1923 | ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh); |
| 1924 | else |
| 1925 | ospf6_send (oi->linklocal_addr, &alldrouters6, oi, oh); |
| 1926 | |
| 1927 | if (oi->thread_send_lsack == NULL && oi->lsack_list->count > 0) |
| 1928 | { |
| 1929 | oi->thread_send_lsack = |
| 1930 | thread_add_event (master, ospf6_lsack_send_interface, oi, 0); |
| 1931 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1932 | |
| 1933 | return 0; |
| 1934 | } |
| 1935 | |
| 1936 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1937 | /* Commands */ |
| 1938 | DEFUN (debug_ospf6_message, |
| 1939 | debug_ospf6_message_cmd, |
| 1940 | "debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all)", |
| 1941 | DEBUG_STR |
| 1942 | OSPF6_STR |
| 1943 | "Debug OSPFv3 message\n" |
| 1944 | "Debug Unknown message\n" |
| 1945 | "Debug Hello message\n" |
| 1946 | "Debug Database Description message\n" |
| 1947 | "Debug Link State Request message\n" |
| 1948 | "Debug Link State Update message\n" |
| 1949 | "Debug Link State Acknowledgement message\n" |
| 1950 | "Debug All message\n" |
| 1951 | ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1952 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1953 | unsigned char level = 0; |
| 1954 | int type = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1955 | int i; |
| 1956 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1957 | assert (argc > 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1958 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1959 | /* check type */ |
| 1960 | if (! strncmp (argv[0], "u", 1)) |
| 1961 | type = OSPF6_MESSAGE_TYPE_UNKNOWN; |
| 1962 | else if (! strncmp (argv[0], "h", 1)) |
| 1963 | type = OSPF6_MESSAGE_TYPE_HELLO; |
| 1964 | else if (! strncmp (argv[0], "d", 1)) |
| 1965 | type = OSPF6_MESSAGE_TYPE_DBDESC; |
| 1966 | else if (! strncmp (argv[0], "lsr", 3)) |
| 1967 | type = OSPF6_MESSAGE_TYPE_LSREQ; |
| 1968 | else if (! strncmp (argv[0], "lsu", 3)) |
| 1969 | type = OSPF6_MESSAGE_TYPE_LSUPDATE; |
| 1970 | else if (! strncmp (argv[0], "lsa", 3)) |
| 1971 | type = OSPF6_MESSAGE_TYPE_LSACK; |
| 1972 | else if (! strncmp (argv[0], "a", 1)) |
| 1973 | type = OSPF6_MESSAGE_TYPE_ALL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1974 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1975 | if (argc == 1) |
| 1976 | level = OSPF6_DEBUG_MESSAGE_SEND | OSPF6_DEBUG_MESSAGE_RECV; |
| 1977 | else if (! strncmp (argv[1], "s", 1)) |
| 1978 | level = OSPF6_DEBUG_MESSAGE_SEND; |
| 1979 | else if (! strncmp (argv[1], "r", 1)) |
| 1980 | level = OSPF6_DEBUG_MESSAGE_RECV; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1981 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1982 | if (type == OSPF6_MESSAGE_TYPE_ALL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1983 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1984 | for (i = 0; i < 6; i++) |
| 1985 | OSPF6_DEBUG_MESSAGE_ON (i, level); |
| 1986 | } |
| 1987 | else |
| 1988 | OSPF6_DEBUG_MESSAGE_ON (type, level); |
| 1989 | |
| 1990 | return CMD_SUCCESS; |
| 1991 | } |
| 1992 | |
| 1993 | ALIAS (debug_ospf6_message, |
| 1994 | debug_ospf6_message_sendrecv_cmd, |
| 1995 | "debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all) (send|recv)", |
| 1996 | DEBUG_STR |
| 1997 | OSPF6_STR |
| 1998 | "Debug OSPFv3 message\n" |
| 1999 | "Debug Unknown message\n" |
| 2000 | "Debug Hello message\n" |
| 2001 | "Debug Database Description message\n" |
| 2002 | "Debug Link State Request message\n" |
| 2003 | "Debug Link State Update message\n" |
| 2004 | "Debug Link State Acknowledgement message\n" |
| 2005 | "Debug All message\n" |
| 2006 | "Debug only sending message\n" |
| 2007 | "Debug only receiving message\n" |
| 2008 | ); |
| 2009 | |
| 2010 | |
| 2011 | DEFUN (no_debug_ospf6_message, |
| 2012 | no_debug_ospf6_message_cmd, |
| 2013 | "no debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all)", |
| 2014 | NO_STR |
| 2015 | DEBUG_STR |
| 2016 | OSPF6_STR |
| 2017 | "Debug OSPFv3 message\n" |
| 2018 | "Debug Unknown message\n" |
| 2019 | "Debug Hello message\n" |
| 2020 | "Debug Database Description message\n" |
| 2021 | "Debug Link State Request message\n" |
| 2022 | "Debug Link State Update message\n" |
| 2023 | "Debug Link State Acknowledgement message\n" |
| 2024 | "Debug All message\n" |
| 2025 | ) |
| 2026 | { |
| 2027 | unsigned char level = 0; |
| 2028 | int type = 0; |
| 2029 | int i; |
| 2030 | |
| 2031 | assert (argc > 0); |
| 2032 | |
| 2033 | /* check type */ |
| 2034 | if (! strncmp (argv[0], "u", 1)) |
| 2035 | type = OSPF6_MESSAGE_TYPE_UNKNOWN; |
| 2036 | else if (! strncmp (argv[0], "h", 1)) |
| 2037 | type = OSPF6_MESSAGE_TYPE_HELLO; |
| 2038 | else if (! strncmp (argv[0], "d", 1)) |
| 2039 | type = OSPF6_MESSAGE_TYPE_DBDESC; |
| 2040 | else if (! strncmp (argv[0], "lsr", 3)) |
| 2041 | type = OSPF6_MESSAGE_TYPE_LSREQ; |
| 2042 | else if (! strncmp (argv[0], "lsu", 3)) |
| 2043 | type = OSPF6_MESSAGE_TYPE_LSUPDATE; |
| 2044 | else if (! strncmp (argv[0], "lsa", 3)) |
| 2045 | type = OSPF6_MESSAGE_TYPE_LSACK; |
| 2046 | else if (! strncmp (argv[0], "a", 1)) |
| 2047 | type = OSPF6_MESSAGE_TYPE_ALL; |
| 2048 | |
| 2049 | if (argc == 1) |
| 2050 | level = OSPF6_DEBUG_MESSAGE_SEND | OSPF6_DEBUG_MESSAGE_RECV; |
| 2051 | else if (! strncmp (argv[1], "s", 1)) |
| 2052 | level = OSPF6_DEBUG_MESSAGE_SEND; |
| 2053 | else if (! strncmp (argv[1], "r", 1)) |
| 2054 | level = OSPF6_DEBUG_MESSAGE_RECV; |
| 2055 | |
| 2056 | if (type == OSPF6_MESSAGE_TYPE_ALL) |
| 2057 | { |
| 2058 | for (i = 0; i < 6; i++) |
| 2059 | OSPF6_DEBUG_MESSAGE_OFF (i, level); |
| 2060 | } |
| 2061 | else |
| 2062 | OSPF6_DEBUG_MESSAGE_OFF (type, level); |
| 2063 | |
| 2064 | return CMD_SUCCESS; |
| 2065 | } |
| 2066 | |
| 2067 | ALIAS (no_debug_ospf6_message, |
| 2068 | no_debug_ospf6_message_sendrecv_cmd, |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2069 | "no debug ospf6 message " |
| 2070 | "(unknown|hello|dbdesc|lsreq|lsupdate|lsack|all) (send|recv)", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2071 | NO_STR |
| 2072 | DEBUG_STR |
| 2073 | OSPF6_STR |
| 2074 | "Debug OSPFv3 message\n" |
| 2075 | "Debug Unknown message\n" |
| 2076 | "Debug Hello message\n" |
| 2077 | "Debug Database Description message\n" |
| 2078 | "Debug Link State Request message\n" |
| 2079 | "Debug Link State Update message\n" |
| 2080 | "Debug Link State Acknowledgement message\n" |
| 2081 | "Debug All message\n" |
| 2082 | "Debug only sending message\n" |
| 2083 | "Debug only receiving message\n" |
| 2084 | ); |
| 2085 | |
| 2086 | int |
| 2087 | config_write_ospf6_debug_message (struct vty *vty) |
| 2088 | { |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 2089 | const char *type_str[] = {"unknown", "hello", "dbdesc", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2090 | "lsreq", "lsupdate", "lsack"}; |
| 2091 | unsigned char s = 0, r = 0; |
| 2092 | int i; |
| 2093 | |
| 2094 | for (i = 0; i < 6; i++) |
| 2095 | { |
| 2096 | if (IS_OSPF6_DEBUG_MESSAGE (i, SEND)) |
| 2097 | s |= 1 << i; |
| 2098 | if (IS_OSPF6_DEBUG_MESSAGE (i, RECV)) |
| 2099 | r |= 1 << i; |
| 2100 | } |
| 2101 | |
| 2102 | if (s == 0x3f && r == 0x3f) |
| 2103 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2104 | vty_out (vty, "debug ospf6 message all%s", VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2105 | return 0; |
| 2106 | } |
| 2107 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2108 | if (s == 0x3f && r == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2109 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2110 | vty_out (vty, "debug ospf6 message all send%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2111 | return 0; |
| 2112 | } |
| 2113 | else if (s == 0 && r == 0x3f) |
| 2114 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2115 | vty_out (vty, "debug ospf6 message all recv%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2116 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2117 | } |
| 2118 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2119 | /* Unknown message is logged by default */ |
| 2120 | if (! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, SEND) && |
| 2121 | ! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, RECV)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2122 | vty_out (vty, "no debug ospf6 message unknown%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2123 | else if (! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, SEND)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2124 | vty_out (vty, "no debug ospf6 message unknown send%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2125 | else if (! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, RECV)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2126 | vty_out (vty, "no debug ospf6 message unknown recv%s", VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2127 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2128 | for (i = 1; i < 6; i++) |
| 2129 | { |
| 2130 | if (IS_OSPF6_DEBUG_MESSAGE (i, SEND) && |
| 2131 | IS_OSPF6_DEBUG_MESSAGE (i, RECV)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2132 | vty_out (vty, "debug ospf6 message %s%s", type_str[i], VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2133 | else if (IS_OSPF6_DEBUG_MESSAGE (i, SEND)) |
| 2134 | vty_out (vty, "debug ospf6 message %s send%s", type_str[i], |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2135 | VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2136 | else if (IS_OSPF6_DEBUG_MESSAGE (i, RECV)) |
| 2137 | vty_out (vty, "debug ospf6 message %s recv%s", type_str[i], |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2138 | VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2139 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2140 | |
| 2141 | return 0; |
| 2142 | } |
| 2143 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2144 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2145 | install_element_ospf6_debug_message () |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2146 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2147 | install_element (ENABLE_NODE, &debug_ospf6_message_cmd); |
| 2148 | install_element (ENABLE_NODE, &no_debug_ospf6_message_cmd); |
| 2149 | install_element (ENABLE_NODE, &debug_ospf6_message_sendrecv_cmd); |
| 2150 | install_element (ENABLE_NODE, &no_debug_ospf6_message_sendrecv_cmd); |
| 2151 | install_element (CONFIG_NODE, &debug_ospf6_message_cmd); |
| 2152 | install_element (CONFIG_NODE, &no_debug_ospf6_message_cmd); |
| 2153 | install_element (CONFIG_NODE, &debug_ospf6_message_sendrecv_cmd); |
| 2154 | install_element (CONFIG_NODE, &no_debug_ospf6_message_sendrecv_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2155 | } |
| 2156 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2157 | |