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}; |
| 46 | char *ospf6_message_type_str[] = |
| 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 | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 58 | zlog_info (" OSPFv%d Type:%d Len:%hu Router-ID:%s", |
| 59 | oh->version, oh->type, ntohs (oh->length), router_id); |
| 60 | zlog_info (" Area-ID:%s Cksum:%hx Instance-ID:%d", |
| 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 | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 82 | zlog_info (" I/F-Id:%ld Priority:%d Option:%s", |
| 83 | (u_long) ntohl (hello->interface_id), hello->priority, options); |
| 84 | zlog_info (" HelloInterval:%hu DeadInterval:%hu", |
| 85 | ntohs (hello->hello_interval), ntohs (hello->dead_interval)); |
| 86 | zlog_info (" 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)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 93 | zlog_info (" Neighbor: %s", neighbor); |
| 94 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 95 | |
| 96 | if (p != OSPF6_MESSAGE_END (oh)) |
| 97 | zlog_info ("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 | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 115 | zlog_info (" MBZ: %#x Option: %s IfMTU: %hu", |
| 116 | dbdesc->reserved1, options, ntohs (dbdesc->ifmtu)); |
| 117 | zlog_info (" MBZ: %#x Bits: %s%s%s SeqNum: %#lx", |
| 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)) |
| 130 | zlog_info ("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)); |
| 149 | zlog_info (" [%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)) |
| 154 | zlog_info ("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); |
| 171 | zlog_info (" 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 | { |
| 181 | zlog_info (" Malformed LSA length, quit printing"); |
| 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 | |
| 193 | zlog_info (" Trailing garbage exists"); |
| 194 | while (p < OSPF6_MESSAGE_END (oh)) |
| 195 | { |
| 196 | snprintf (buf, sizeof (buf), "%s %2x", buf, *p++); |
| 197 | num++; |
| 198 | if (num == 8) |
| 199 | { |
| 200 | zlog_info (" %s", buf); |
| 201 | memset (buf, 0, sizeof (buf)); |
| 202 | num = 0; |
| 203 | } |
| 204 | } |
| 205 | if (num) |
| 206 | zlog_info (" %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)) |
| 224 | zlog_info ("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)) |
| 241 | zlog_info ("Message with unknown version"); |
| 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)) |
| 251 | zlog_info ("Message may be via Virtual Link: not supported"); |
| 252 | return MSG_NG; |
| 253 | } |
| 254 | |
| 255 | if (IS_OSPF6_DEBUG_MESSAGE (type, RECV)) |
| 256 | zlog_info ("Area-ID mismatch"); |
| 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)) |
| 264 | zlog_info ("Instance-ID mismatch"); |
| 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)) |
| 296 | zlog_info ("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)) |
| 304 | zlog_info ("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)) |
| 313 | zlog_info ("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)) |
| 343 | zlog_info ("Trailing garbage ignored"); |
| 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)) |
| 407 | zlog_info ("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)) |
| 415 | zlog_info ("Neighbor state is 2-Way, ignore"); |
| 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)) |
| 423 | zlog_info ("Neighbor state is not ExStart, ignore"); |
| 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)) |
| 444 | zlog_info ("Negotiation failed"); |
| 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)) |
| 454 | zlog_info ("Duplicated dbdesc discarded by Master, ignore"); |
| 455 | return; |
| 456 | } |
| 457 | |
| 458 | if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT)) |
| 459 | { |
| 460 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
| 461 | zlog_info ("Master/Slave bit mismatch"); |
| 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)) |
| 469 | zlog_info ("Initialize bit mismatch"); |
| 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)) |
| 477 | zlog_info ("Option field mismatch"); |
| 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)) |
| 485 | zlog_info ("Sequence number mismatch (%#lx expected)", |
| 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)) |
| 498 | zlog_info ("Duplicated dbdesc discarded by Master, ignore"); |
| 499 | return; |
| 500 | } |
| 501 | |
| 502 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
| 503 | zlog_info ("Not duplicate dbdesc in state %s", |
| 504 | ospf6_neighbor_state_str[on->state]); |
| 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)) |
| 524 | zlog_info ("%s", his->name); |
| 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)) |
| 539 | zlog_info ("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 | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 549 | zlog_info ("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 | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 560 | zlog_info ("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 | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 566 | zlog_info ("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 | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 572 | zlog_info ("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)) |
| 580 | zlog_info ("Trailing garbage ignored"); |
| 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)) |
| 618 | zlog_info ("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)) |
| 626 | zlog_info ("Neighbor state is 2-Way, ignore"); |
| 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)) |
| 634 | zlog_info ("Neighbor state is not ExStart, ignore"); |
| 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)) |
| 663 | zlog_info ("Negotiation failed"); |
| 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)) |
| 673 | zlog_info ("Duplicated dbdesc causes retransmit"); |
| 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)) |
| 683 | zlog_info ("Master/Slave bit mismatch"); |
| 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)) |
| 691 | zlog_info ("Initialize bit mismatch"); |
| 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)) |
| 699 | zlog_info ("Option field mismatch"); |
| 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)) |
| 707 | zlog_info ("Sequence number mismatch (%#lx expected)", |
| 708 | (u_long) on->dbdesc_seqnum + 1); |
| 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)) |
| 720 | zlog_info ("Duplicated dbdesc causes retransmit"); |
| 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)) |
| 728 | zlog_info ("Not duplicate dbdesc in state %s", |
| 729 | ospf6_neighbor_state_str[on->state]); |
| 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)) |
| 761 | zlog_info ("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)) |
| 771 | zlog_info ("E-bit mismatch with LSA Headers"); |
| 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)) |
| 782 | zlog_info ("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)) |
| 792 | zlog_info ("Trailing garbage ignored"); |
| 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)) |
| 825 | zlog_info ("Neighbor not found, ignore"); |
| 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)) |
| 832 | zlog_info ("Seems to be from Secondary I/F of the neighbor, ignore"); |
| 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)) |
| 843 | zlog_info ("I/F MTU mismatch"); |
| 844 | return; |
| 845 | } |
| 846 | |
| 847 | if (dbdesc->reserved1 || dbdesc->reserved2) |
| 848 | { |
| 849 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
| 850 | zlog_info ("Non-0 reserved field in %s's DbDesc, correct", |
| 851 | on->name); |
| 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)) |
| 863 | zlog_info ("Can't decide which is master, ignore"); |
| 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)) |
| 884 | zlog_info ("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)) |
| 891 | zlog_info ("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)) |
| 900 | zlog_info ("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)) |
| 924 | zlog_info ("Ignoring LSA of reserved scope"); |
| 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)); |
| 939 | zlog_info ("Can't find requested [%s Id:%s Adv:%s]", |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 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)) |
| 952 | zlog_info ("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)) |
| 977 | zlog_info ("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)) |
| 984 | zlog_info ("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)) |
| 993 | zlog_info ("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)) |
| 1013 | zlog_info ("Malformed LSA length, quit processing"); |
| 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)) |
| 1024 | zlog_info ("Malformed LSA number or LSA length"); |
| 1025 | } |
| 1026 | if (p != OSPF6_MESSAGE_END (oh)) |
| 1027 | { |
| 1028 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
| 1029 | zlog_info ("Trailing garbage ignored"); |
| 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)) |
| 1064 | zlog_info ("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)) |
| 1071 | zlog_info ("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)) |
| 1080 | zlog_info ("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)) |
| 1103 | zlog_info ("Ignoring LSA of reserved scope"); |
| 1104 | ospf6_lsa_delete (his); |
| 1105 | continue; |
| 1106 | break; |
| 1107 | } |
| 1108 | |
| 1109 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1110 | zlog_info ("%s acknowledged by %s", his->name, on->name); |
| 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)) |
| 1118 | zlog_info ("No database copy"); |
| 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)) |
| 1129 | zlog_info ("Not on %s's retrans-list", on->name); |
| 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)) |
| 1139 | zlog_info ("Questionable acknowledgement"); |
| 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 | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1145 | zlog_info ("Acknowledged, remove from %s's retrans-list", |
| 1146 | on->name); |
| 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)) |
| 1159 | zlog_info ("Trailing garbage ignored"); |
| 1160 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1161 | } |
| 1162 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1163 | char *recvbuf = NULL; |
| 1164 | char *sendbuf = NULL; |
| 1165 | int iobuflen = 0; |
| 1166 | |
| 1167 | int |
| 1168 | ospf6_iobuf_size (int size) |
| 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 | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1183 | zlog_info ("Could not allocate I/O buffer of size %d.", size); |
| 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 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1201 | int sockfd, len; |
| 1202 | char srcname[64], dstname[64]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1203 | struct in6_addr src, dst; |
| 1204 | unsigned int ifindex; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1205 | struct iovec iovector[2]; |
| 1206 | struct ospf6_interface *oi; |
| 1207 | struct ospf6_header *oh; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1208 | |
| 1209 | /* add next read thread */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1210 | sockfd = THREAD_FD (thread); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1211 | thread_add_read (master, ospf6_receive, NULL, sockfd); |
| 1212 | |
| 1213 | /* initialize */ |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1214 | memset (recvbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1215 | iovector[0].iov_base = recvbuf; |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1216 | iovector[0].iov_len = iobuflen; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1217 | iovector[1].iov_base = NULL; |
| 1218 | iovector[1].iov_len = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1219 | |
| 1220 | /* receive message */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1221 | len = ospf6_recvmsg (&src, &dst, &ifindex, iovector); |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1222 | if (len > iobuflen) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1223 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1224 | zlog_err ("Excess message read"); |
| 1225 | return 0; |
| 1226 | } |
| 1227 | else if (len < sizeof (struct ospf6_header)) |
| 1228 | { |
| 1229 | zlog_err ("Deficient message read"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1230 | return 0; |
| 1231 | } |
| 1232 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1233 | oi = ospf6_interface_lookup_by_ifindex (ifindex); |
| 1234 | if (oi == NULL || oi->area == NULL) |
| 1235 | { |
| 1236 | zlog_info ("Message received on disabled interface"); |
| 1237 | return 0; |
| 1238 | } |
| 1239 | |
| 1240 | oh = (struct ospf6_header *) recvbuf; |
| 1241 | |
| 1242 | /* Log */ |
| 1243 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
| 1244 | { |
| 1245 | inet_ntop (AF_INET6, &src, srcname, sizeof (srcname)); |
| 1246 | inet_ntop (AF_INET6, &dst, dstname, sizeof (dstname)); |
| 1247 | zlog_info ("%s received on %s", |
| 1248 | OSPF6_MESSAGE_TYPE_NAME (oh->type), oi->interface->name); |
| 1249 | zlog_info (" src: %s", srcname); |
| 1250 | zlog_info (" dst: %s", dstname); |
| 1251 | if (len != ntohs (oh->length)) |
| 1252 | zlog_info ("Message length does not match actually received: %d", len); |
| 1253 | |
| 1254 | switch (oh->type) |
| 1255 | { |
| 1256 | case OSPF6_MESSAGE_TYPE_HELLO: |
| 1257 | ospf6_hello_print (oh); |
| 1258 | break; |
| 1259 | case OSPF6_MESSAGE_TYPE_DBDESC: |
| 1260 | ospf6_dbdesc_print (oh); |
| 1261 | break; |
| 1262 | case OSPF6_MESSAGE_TYPE_LSREQ: |
| 1263 | ospf6_lsreq_print (oh); |
| 1264 | break; |
| 1265 | case OSPF6_MESSAGE_TYPE_LSUPDATE: |
| 1266 | ospf6_lsupdate_print (oh); |
| 1267 | break; |
| 1268 | case OSPF6_MESSAGE_TYPE_LSACK: |
| 1269 | ospf6_lsack_print (oh); |
| 1270 | break; |
| 1271 | default: |
| 1272 | zlog_info ("Unknown message"); |
| 1273 | break; |
| 1274 | } |
| 1275 | } |
| 1276 | |
| 1277 | if (CHECK_FLAG (oi->flag, OSPF6_INTERFACE_PASSIVE)) |
| 1278 | { |
| 1279 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV)) |
| 1280 | zlog_info ("Ignore message on passive interface %s", |
| 1281 | oi->interface->name); |
| 1282 | return 0; |
| 1283 | } |
| 1284 | |
| 1285 | switch (oh->type) |
| 1286 | { |
| 1287 | case OSPF6_MESSAGE_TYPE_HELLO: |
| 1288 | ospf6_hello_recv (&src, &dst, oi, oh); |
| 1289 | break; |
| 1290 | |
| 1291 | case OSPF6_MESSAGE_TYPE_DBDESC: |
| 1292 | ospf6_dbdesc_recv (&src, &dst, oi, oh); |
| 1293 | break; |
| 1294 | |
| 1295 | case OSPF6_MESSAGE_TYPE_LSREQ: |
| 1296 | ospf6_lsreq_recv (&src, &dst, oi, oh); |
| 1297 | break; |
| 1298 | |
| 1299 | case OSPF6_MESSAGE_TYPE_LSUPDATE: |
| 1300 | ospf6_lsupdate_recv (&src, &dst, oi, oh); |
| 1301 | break; |
| 1302 | |
| 1303 | case OSPF6_MESSAGE_TYPE_LSACK: |
| 1304 | ospf6_lsack_recv (&src, &dst, oi, oh); |
| 1305 | break; |
| 1306 | |
| 1307 | default: |
| 1308 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, RECV)) |
| 1309 | zlog_info ("Unknown message"); |
| 1310 | break; |
| 1311 | } |
| 1312 | |
| 1313 | return 0; |
| 1314 | } |
| 1315 | |
| 1316 | void |
| 1317 | ospf6_send (struct in6_addr *src, struct in6_addr *dst, |
| 1318 | struct ospf6_interface *oi, struct ospf6_header *oh) |
| 1319 | { |
| 1320 | int len; |
| 1321 | char srcname[64], dstname[64]; |
| 1322 | struct iovec iovector[2]; |
| 1323 | |
| 1324 | /* initialize */ |
| 1325 | iovector[0].iov_base = (caddr_t) oh; |
| 1326 | iovector[0].iov_len = ntohs (oh->length); |
| 1327 | iovector[1].iov_base = NULL; |
| 1328 | iovector[1].iov_len = 0; |
| 1329 | |
| 1330 | /* fill OSPF header */ |
| 1331 | oh->version = OSPFV3_VERSION; |
| 1332 | /* message type must be set before */ |
| 1333 | /* message length must be set before */ |
| 1334 | oh->router_id = oi->area->ospf6->router_id; |
| 1335 | oh->area_id = oi->area->area_id; |
| 1336 | /* checksum is calculated by kernel */ |
| 1337 | oh->instance_id = oi->instance_id; |
| 1338 | oh->reserved = 0; |
| 1339 | |
| 1340 | /* Log */ |
| 1341 | if (IS_OSPF6_DEBUG_MESSAGE (oh->type, SEND)) |
| 1342 | { |
| 1343 | inet_ntop (AF_INET6, dst, dstname, sizeof (dstname)); |
| 1344 | if (src) |
| 1345 | inet_ntop (AF_INET6, src, srcname, sizeof (srcname)); |
| 1346 | else |
| 1347 | memset (srcname, 0, sizeof (srcname)); |
| 1348 | zlog_info ("%s send on %s", |
| 1349 | OSPF6_MESSAGE_TYPE_NAME (oh->type), oi->interface->name); |
| 1350 | zlog_info (" src: %s", srcname); |
| 1351 | zlog_info (" dst: %s", dstname); |
| 1352 | |
| 1353 | switch (oh->type) |
| 1354 | { |
| 1355 | case OSPF6_MESSAGE_TYPE_HELLO: |
| 1356 | ospf6_hello_print (oh); |
| 1357 | break; |
| 1358 | case OSPF6_MESSAGE_TYPE_DBDESC: |
| 1359 | ospf6_dbdesc_print (oh); |
| 1360 | break; |
| 1361 | case OSPF6_MESSAGE_TYPE_LSREQ: |
| 1362 | ospf6_lsreq_print (oh); |
| 1363 | break; |
| 1364 | case OSPF6_MESSAGE_TYPE_LSUPDATE: |
| 1365 | ospf6_lsupdate_print (oh); |
| 1366 | break; |
| 1367 | case OSPF6_MESSAGE_TYPE_LSACK: |
| 1368 | ospf6_lsack_print (oh); |
| 1369 | break; |
| 1370 | default: |
| 1371 | zlog_info ("Unknown message"); |
| 1372 | assert (0); |
| 1373 | break; |
| 1374 | } |
| 1375 | } |
| 1376 | |
| 1377 | /* send message */ |
| 1378 | len = ospf6_sendmsg (src, dst, &oi->interface->ifindex, iovector); |
| 1379 | if (len != ntohs (oh->length)) |
| 1380 | zlog_err ("Could not send entire message"); |
| 1381 | } |
| 1382 | |
| 1383 | int |
| 1384 | ospf6_hello_send (struct thread *thread) |
| 1385 | { |
| 1386 | struct ospf6_interface *oi; |
| 1387 | struct ospf6_header *oh; |
| 1388 | struct ospf6_hello *hello; |
| 1389 | char *p; |
| 1390 | listnode node; |
| 1391 | struct ospf6_neighbor *on; |
| 1392 | |
| 1393 | oi = (struct ospf6_interface *) THREAD_ARG (thread); |
| 1394 | oi->thread_send_hello = (struct thread *) NULL; |
| 1395 | |
| 1396 | if (oi->state <= OSPF6_INTERFACE_DOWN) |
| 1397 | { |
| 1398 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_HELLO, SEND)) |
| 1399 | zlog_info ("Unable to send Hello on down interface %s", |
| 1400 | oi->interface->name); |
| 1401 | return 0; |
| 1402 | } |
| 1403 | |
| 1404 | /* set next thread */ |
| 1405 | oi->thread_send_hello = thread_add_timer (master, ospf6_hello_send, |
| 1406 | oi, oi->hello_interval); |
| 1407 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1408 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1409 | oh = (struct ospf6_header *) sendbuf; |
| 1410 | hello = (struct ospf6_hello *)((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1411 | |
| 1412 | hello->interface_id = htonl (oi->interface->ifindex); |
| 1413 | hello->priority = oi->priority; |
| 1414 | hello->options[0] = oi->area->options[0]; |
| 1415 | hello->options[1] = oi->area->options[1]; |
| 1416 | hello->options[2] = oi->area->options[2]; |
| 1417 | hello->hello_interval = htons (oi->hello_interval); |
| 1418 | hello->dead_interval = htons (oi->dead_interval); |
| 1419 | hello->drouter = oi->drouter; |
| 1420 | hello->bdrouter = oi->bdrouter; |
| 1421 | |
| 1422 | p = (char *)((caddr_t) hello + sizeof (struct ospf6_hello)); |
| 1423 | |
| 1424 | for (node = listhead (oi->neighbor_list); node; nextnode (node)) |
| 1425 | { |
| 1426 | on = (struct ospf6_neighbor *) getdata (node); |
| 1427 | |
| 1428 | if (on->state < OSPF6_NEIGHBOR_INIT) |
| 1429 | continue; |
| 1430 | |
| 1431 | if (p - sendbuf + sizeof (u_int32_t) > oi->ifmtu) |
| 1432 | { |
| 1433 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_HELLO, SEND)) |
| 1434 | zlog_info ("sending Hello message: exceeds I/F MTU"); |
| 1435 | break; |
| 1436 | } |
| 1437 | |
| 1438 | memcpy (p, &on->router_id, sizeof (u_int32_t)); |
| 1439 | p += sizeof (u_int32_t); |
| 1440 | } |
| 1441 | |
| 1442 | oh->type = OSPF6_MESSAGE_TYPE_HELLO; |
| 1443 | oh->length = htons (p - sendbuf); |
| 1444 | |
| 1445 | ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh); |
| 1446 | return 0; |
| 1447 | } |
| 1448 | |
| 1449 | int |
| 1450 | ospf6_dbdesc_send (struct thread *thread) |
| 1451 | { |
| 1452 | struct ospf6_neighbor *on; |
| 1453 | struct ospf6_header *oh; |
| 1454 | struct ospf6_dbdesc *dbdesc; |
| 1455 | char *p; |
| 1456 | struct ospf6_lsa *lsa; |
| 1457 | |
| 1458 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
| 1459 | on->thread_send_dbdesc = (struct thread *) NULL; |
| 1460 | |
| 1461 | if (on->state < OSPF6_NEIGHBOR_EXSTART) |
| 1462 | { |
| 1463 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_DBDESC, SEND)) |
| 1464 | zlog_info ("Quit to send DbDesc to neighbor %s state %s", |
| 1465 | on->name, ospf6_neighbor_state_str[on->state]); |
| 1466 | return 0; |
| 1467 | } |
| 1468 | |
| 1469 | /* set next thread if master */ |
| 1470 | if (CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MSBIT)) |
| 1471 | on->thread_send_dbdesc = |
| 1472 | thread_add_timer (master, ospf6_dbdesc_send, on, |
| 1473 | on->ospf6_if->rxmt_interval); |
| 1474 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1475 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1476 | oh = (struct ospf6_header *) sendbuf; |
| 1477 | dbdesc = (struct ospf6_dbdesc *)((caddr_t) oh + |
| 1478 | sizeof (struct ospf6_header)); |
| 1479 | |
| 1480 | /* if this is initial one, initialize sequence number for DbDesc */ |
| 1481 | if (CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_IBIT)) |
| 1482 | { |
| 1483 | struct timeval tv; |
| 1484 | if (gettimeofday (&tv, (struct timezone *) NULL) < 0) |
| 1485 | tv.tv_sec = 1; |
| 1486 | on->dbdesc_seqnum = tv.tv_sec; |
| 1487 | } |
| 1488 | |
| 1489 | dbdesc->options[0] = on->ospf6_if->area->options[0]; |
| 1490 | dbdesc->options[1] = on->ospf6_if->area->options[1]; |
| 1491 | dbdesc->options[2] = on->ospf6_if->area->options[2]; |
| 1492 | dbdesc->ifmtu = htons (on->ospf6_if->ifmtu); |
| 1493 | dbdesc->bits = on->dbdesc_bits; |
| 1494 | dbdesc->seqnum = htonl (on->dbdesc_seqnum); |
| 1495 | |
| 1496 | /* if this is not initial one, set LSA headers in dbdesc */ |
| 1497 | p = (char *)((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc)); |
| 1498 | if (! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_IBIT)) |
| 1499 | { |
| 1500 | for (lsa = ospf6_lsdb_head (on->dbdesc_list); lsa; |
| 1501 | lsa = ospf6_lsdb_next (lsa)) |
| 1502 | { |
| 1503 | ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay); |
| 1504 | |
| 1505 | /* MTU check */ |
| 1506 | if (p - sendbuf + sizeof (struct ospf6_lsa_header) > |
| 1507 | on->ospf6_if->ifmtu) |
| 1508 | { |
| 1509 | ospf6_lsa_unlock (lsa); |
| 1510 | break; |
| 1511 | } |
| 1512 | memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header)); |
| 1513 | p += sizeof (struct ospf6_lsa_header); |
| 1514 | } |
| 1515 | } |
| 1516 | |
| 1517 | oh->type = OSPF6_MESSAGE_TYPE_DBDESC; |
| 1518 | oh->length = htons (p - sendbuf); |
| 1519 | |
| 1520 | ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr, |
| 1521 | on->ospf6_if, oh); |
| 1522 | return 0; |
| 1523 | } |
| 1524 | |
| 1525 | int |
| 1526 | ospf6_dbdesc_send_newone (struct thread *thread) |
| 1527 | { |
| 1528 | struct ospf6_neighbor *on; |
| 1529 | struct ospf6_lsa *lsa; |
| 1530 | unsigned int size = 0; |
| 1531 | |
| 1532 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1533 | ospf6_lsdb_remove_all (on->dbdesc_list); |
| 1534 | |
| 1535 | /* move LSAs from summary_list to dbdesc_list (within neighbor structure) |
| 1536 | so that ospf6_send_dbdesc () can send those LSAs */ |
| 1537 | size = sizeof (struct ospf6_lsa_header) + sizeof (struct ospf6_dbdesc); |
| 1538 | for (lsa = ospf6_lsdb_head (on->summary_list); lsa; |
| 1539 | lsa = ospf6_lsdb_next (lsa)) |
| 1540 | { |
| 1541 | if (size + sizeof (struct ospf6_lsa_header) > on->ospf6_if->ifmtu) |
| 1542 | { |
| 1543 | ospf6_lsa_unlock (lsa); |
| 1544 | break; |
| 1545 | } |
| 1546 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1547 | ospf6_lsdb_add (ospf6_lsa_copy (lsa), on->dbdesc_list); |
| 1548 | ospf6_lsdb_remove (lsa, on->summary_list); |
| 1549 | size += sizeof (struct ospf6_lsa_header); |
| 1550 | } |
| 1551 | |
| 1552 | if (on->summary_list->count == 0) |
| 1553 | UNSET_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MBIT); |
| 1554 | |
| 1555 | /* If slave, More bit check must be done here */ |
| 1556 | if (! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MSBIT) && /* Slave */ |
| 1557 | ! CHECK_FLAG (on->dbdesc_last.bits, OSPF6_DBDESC_MBIT) && |
| 1558 | ! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MBIT)) |
| 1559 | thread_add_event (master, exchange_done, on, 0); |
| 1560 | |
| 1561 | thread_execute (master, ospf6_dbdesc_send, on, 0); |
| 1562 | return 0; |
| 1563 | } |
| 1564 | |
| 1565 | int |
| 1566 | ospf6_lsreq_send (struct thread *thread) |
| 1567 | { |
| 1568 | struct ospf6_neighbor *on; |
| 1569 | struct ospf6_header *oh; |
| 1570 | struct ospf6_lsreq_entry *e; |
| 1571 | char *p; |
| 1572 | struct ospf6_lsa *lsa; |
| 1573 | |
| 1574 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
| 1575 | on->thread_send_lsreq = (struct thread *) NULL; |
| 1576 | |
| 1577 | /* LSReq will be sent only in ExStart or Loading */ |
| 1578 | if (on->state != OSPF6_NEIGHBOR_EXCHANGE && |
| 1579 | on->state != OSPF6_NEIGHBOR_LOADING) |
| 1580 | { |
| 1581 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSREQ, SEND)) |
| 1582 | zlog_info ("Quit to send LSReq to neighbor %s state %s", |
| 1583 | on->name, ospf6_neighbor_state_str[on->state]); |
| 1584 | return 0; |
| 1585 | } |
| 1586 | |
| 1587 | /* schedule loading_done if request list is empty */ |
| 1588 | if (on->request_list->count == 0) |
| 1589 | { |
| 1590 | thread_add_event (master, loading_done, on, 0); |
| 1591 | return 0; |
| 1592 | } |
| 1593 | |
| 1594 | /* set next thread */ |
| 1595 | on->thread_send_lsreq = |
| 1596 | thread_add_timer (master, ospf6_lsreq_send, on, |
| 1597 | on->ospf6_if->rxmt_interval); |
| 1598 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1599 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1600 | oh = (struct ospf6_header *) sendbuf; |
| 1601 | |
| 1602 | /* set Request entries in lsreq */ |
| 1603 | p = (char *)((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1604 | for (lsa = ospf6_lsdb_head (on->request_list); lsa; |
| 1605 | lsa = ospf6_lsdb_next (lsa)) |
| 1606 | { |
| 1607 | /* MTU check */ |
| 1608 | if (p - sendbuf + sizeof (struct ospf6_lsreq_entry) > on->ospf6_if->ifmtu) |
| 1609 | { |
| 1610 | ospf6_lsa_unlock (lsa); |
| 1611 | break; |
| 1612 | } |
| 1613 | |
| 1614 | e = (struct ospf6_lsreq_entry *) p; |
| 1615 | e->type = lsa->header->type; |
| 1616 | e->id = lsa->header->id; |
| 1617 | e->adv_router = lsa->header->adv_router; |
| 1618 | p += sizeof (struct ospf6_lsreq_entry); |
| 1619 | } |
| 1620 | |
| 1621 | oh->type = OSPF6_MESSAGE_TYPE_LSREQ; |
| 1622 | oh->length = htons (p - sendbuf); |
| 1623 | |
| 1624 | ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr, |
| 1625 | on->ospf6_if, oh); |
| 1626 | return 0; |
| 1627 | } |
| 1628 | |
| 1629 | int |
| 1630 | ospf6_lsupdate_send_neighbor (struct thread *thread) |
| 1631 | { |
| 1632 | struct ospf6_neighbor *on; |
| 1633 | struct ospf6_header *oh; |
| 1634 | struct ospf6_lsupdate *lsupdate; |
| 1635 | char *p; |
| 1636 | int num; |
| 1637 | struct ospf6_lsa *lsa; |
| 1638 | |
| 1639 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
| 1640 | on->thread_send_lsupdate = (struct thread *) NULL; |
| 1641 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1642 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND)) |
| 1643 | zlog_info ("LSUpdate to neighbor %s", on->name); |
| 1644 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1645 | if (on->state < OSPF6_NEIGHBOR_EXCHANGE) |
| 1646 | { |
| 1647 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND)) |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1648 | zlog_info ("Quit to send (neighbor state %s)", |
| 1649 | ospf6_neighbor_state_str[on->state]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1650 | return 0; |
| 1651 | } |
| 1652 | |
| 1653 | /* if we have nothing to send, return */ |
| 1654 | if (on->lsupdate_list->count == 0 && |
| 1655 | on->retrans_list->count == 0) |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1656 | { |
| 1657 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND)) |
| 1658 | zlog_info ("Quit to send (nothing to send)"); |
| 1659 | return 0; |
| 1660 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1661 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1662 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1663 | oh = (struct ospf6_header *) sendbuf; |
| 1664 | lsupdate = (struct ospf6_lsupdate *) |
| 1665 | ((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1666 | |
| 1667 | p = (char *)((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate)); |
| 1668 | num = 0; |
| 1669 | |
| 1670 | /* lsupdate_list lists those LSA which doesn't need to be |
| 1671 | retransmitted. remove those from the list */ |
| 1672 | for (lsa = ospf6_lsdb_head (on->lsupdate_list); lsa; |
| 1673 | lsa = ospf6_lsdb_next (lsa)) |
| 1674 | { |
| 1675 | /* MTU check */ |
| 1676 | if (p - sendbuf + OSPF6_LSA_SIZE (lsa->header) > on->ospf6_if->ifmtu) |
| 1677 | { |
| 1678 | ospf6_lsa_unlock (lsa); |
| 1679 | break; |
| 1680 | } |
| 1681 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1682 | ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay); |
| 1683 | memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header)); |
| 1684 | p += OSPF6_LSA_SIZE (lsa->header); |
| 1685 | num++; |
| 1686 | |
| 1687 | assert (lsa->lock == 2); |
| 1688 | ospf6_lsdb_remove (lsa, on->lsupdate_list); |
| 1689 | } |
| 1690 | |
| 1691 | for (lsa = ospf6_lsdb_head (on->retrans_list); lsa; |
| 1692 | lsa = ospf6_lsdb_next (lsa)) |
| 1693 | { |
| 1694 | /* MTU check */ |
| 1695 | if (p - sendbuf + OSPF6_LSA_SIZE (lsa->header) > on->ospf6_if->ifmtu) |
| 1696 | { |
| 1697 | ospf6_lsa_unlock (lsa); |
| 1698 | break; |
| 1699 | } |
| 1700 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1701 | ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay); |
| 1702 | memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header)); |
| 1703 | p += OSPF6_LSA_SIZE (lsa->header); |
| 1704 | num++; |
| 1705 | } |
| 1706 | |
| 1707 | lsupdate->lsa_number = htonl (num); |
| 1708 | |
| 1709 | oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE; |
| 1710 | oh->length = htons (p - sendbuf); |
| 1711 | |
| 1712 | ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr, |
| 1713 | on->ospf6_if, oh); |
| 1714 | |
| 1715 | if (on->lsupdate_list->count != 0 || |
| 1716 | on->retrans_list->count != 0) |
| 1717 | { |
| 1718 | if (on->lsupdate_list->count != 0) |
| 1719 | on->thread_send_lsupdate = |
| 1720 | thread_add_event (master, ospf6_lsupdate_send_neighbor, on, 0); |
| 1721 | else |
| 1722 | on->thread_send_lsupdate = |
| 1723 | thread_add_timer (master, ospf6_lsupdate_send_neighbor, on, |
| 1724 | on->ospf6_if->rxmt_interval); |
| 1725 | } |
| 1726 | |
| 1727 | return 0; |
| 1728 | } |
| 1729 | |
| 1730 | int |
| 1731 | ospf6_lsupdate_send_interface (struct thread *thread) |
| 1732 | { |
| 1733 | struct ospf6_interface *oi; |
| 1734 | struct ospf6_header *oh; |
| 1735 | struct ospf6_lsupdate *lsupdate; |
| 1736 | char *p; |
| 1737 | int num; |
| 1738 | struct ospf6_lsa *lsa; |
| 1739 | |
| 1740 | oi = (struct ospf6_interface *) THREAD_ARG (thread); |
| 1741 | oi->thread_send_lsupdate = (struct thread *) NULL; |
| 1742 | |
| 1743 | if (oi->state <= OSPF6_INTERFACE_WAITING) |
| 1744 | { |
| 1745 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND)) |
| 1746 | zlog_info ("Quit to send LSUpdate to interface %s state %s", |
| 1747 | oi->interface->name, ospf6_interface_state_str[oi->state]); |
| 1748 | return 0; |
| 1749 | } |
| 1750 | |
| 1751 | /* if we have nothing to send, return */ |
| 1752 | if (oi->lsupdate_list->count == 0) |
| 1753 | return 0; |
| 1754 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1755 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1756 | oh = (struct ospf6_header *) sendbuf; |
| 1757 | lsupdate = (struct ospf6_lsupdate *)((caddr_t) oh + |
| 1758 | sizeof (struct ospf6_header)); |
| 1759 | |
| 1760 | p = (char *)((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate)); |
| 1761 | num = 0; |
| 1762 | |
| 1763 | for (lsa = ospf6_lsdb_head (oi->lsupdate_list); lsa; |
| 1764 | lsa = ospf6_lsdb_next (lsa)) |
| 1765 | { |
| 1766 | /* MTU check */ |
| 1767 | if (p - sendbuf + OSPF6_LSA_SIZE (lsa->header) > oi->ifmtu) |
| 1768 | { |
| 1769 | ospf6_lsa_unlock (lsa); |
| 1770 | break; |
| 1771 | } |
| 1772 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1773 | ospf6_lsa_age_update_to_send (lsa, oi->transdelay); |
| 1774 | memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header)); |
| 1775 | p += OSPF6_LSA_SIZE (lsa->header); |
| 1776 | num++; |
| 1777 | |
| 1778 | assert (lsa->lock == 2); |
| 1779 | ospf6_lsdb_remove (lsa, oi->lsupdate_list); |
| 1780 | } |
| 1781 | |
| 1782 | lsupdate->lsa_number = htonl (num); |
| 1783 | |
| 1784 | oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE; |
| 1785 | oh->length = htons (p - sendbuf); |
| 1786 | |
| 1787 | if (oi->state == OSPF6_INTERFACE_DR || |
| 1788 | oi->state == OSPF6_INTERFACE_BDR) |
| 1789 | ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh); |
| 1790 | else |
| 1791 | ospf6_send (oi->linklocal_addr, &alldrouters6, oi, oh); |
| 1792 | |
| 1793 | if (oi->lsupdate_list->count > 0) |
| 1794 | { |
| 1795 | oi->thread_send_lsupdate = |
| 1796 | thread_add_event (master, ospf6_lsupdate_send_interface, oi, 0); |
| 1797 | } |
| 1798 | |
| 1799 | return 0; |
| 1800 | } |
| 1801 | |
| 1802 | int |
| 1803 | ospf6_lsack_send_neighbor (struct thread *thread) |
| 1804 | { |
| 1805 | struct ospf6_neighbor *on; |
| 1806 | struct ospf6_header *oh; |
| 1807 | char *p; |
| 1808 | struct ospf6_lsa *lsa; |
| 1809 | |
| 1810 | on = (struct ospf6_neighbor *) THREAD_ARG (thread); |
| 1811 | on->thread_send_lsack = (struct thread *) NULL; |
| 1812 | |
| 1813 | if (on->state < OSPF6_NEIGHBOR_EXCHANGE) |
| 1814 | { |
| 1815 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSACK, SEND)) |
| 1816 | zlog_info ("Quit to send LSAck to neighbor %s state %s", |
| 1817 | on->name, ospf6_neighbor_state_str[on->state]); |
| 1818 | return 0; |
| 1819 | } |
| 1820 | |
| 1821 | /* if we have nothing to send, return */ |
| 1822 | if (on->lsack_list->count == 0) |
| 1823 | return 0; |
| 1824 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1825 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1826 | oh = (struct ospf6_header *) sendbuf; |
| 1827 | |
| 1828 | p = (char *)((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1829 | |
| 1830 | for (lsa = ospf6_lsdb_head (on->lsack_list); lsa; |
| 1831 | lsa = ospf6_lsdb_next (lsa)) |
| 1832 | { |
| 1833 | /* MTU check */ |
| 1834 | if (p - sendbuf + sizeof (struct ospf6_lsa_header) > on->ospf6_if->ifmtu) |
| 1835 | { |
| 1836 | /* if we run out of packet size/space here, |
| 1837 | better to try again soon. */ |
| 1838 | THREAD_OFF (on->thread_send_lsack); |
| 1839 | on->thread_send_lsack = |
| 1840 | thread_add_event (master, ospf6_lsack_send_neighbor, on, 0); |
| 1841 | |
| 1842 | ospf6_lsa_unlock (lsa); |
| 1843 | break; |
| 1844 | } |
| 1845 | |
| 1846 | ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay); |
| 1847 | memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header)); |
| 1848 | p += sizeof (struct ospf6_lsa_header); |
| 1849 | |
| 1850 | assert (lsa->lock == 2); |
| 1851 | ospf6_lsdb_remove (lsa, on->lsack_list); |
| 1852 | } |
| 1853 | |
| 1854 | oh->type = OSPF6_MESSAGE_TYPE_LSACK; |
| 1855 | oh->length = htons (p - sendbuf); |
| 1856 | |
| 1857 | ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr, |
| 1858 | on->ospf6_if, oh); |
| 1859 | return 0; |
| 1860 | } |
| 1861 | |
| 1862 | int |
| 1863 | ospf6_lsack_send_interface (struct thread *thread) |
| 1864 | { |
| 1865 | struct ospf6_interface *oi; |
| 1866 | struct ospf6_header *oh; |
| 1867 | char *p; |
| 1868 | struct ospf6_lsa *lsa; |
| 1869 | |
| 1870 | oi = (struct ospf6_interface *) THREAD_ARG (thread); |
| 1871 | oi->thread_send_lsack = (struct thread *) NULL; |
| 1872 | |
| 1873 | if (oi->state <= OSPF6_INTERFACE_WAITING) |
| 1874 | { |
| 1875 | if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSACK, SEND)) |
| 1876 | zlog_info ("Quit to send LSAck to interface %s state %s", |
| 1877 | oi->interface->name, ospf6_interface_state_str[oi->state]); |
| 1878 | return 0; |
| 1879 | } |
| 1880 | |
| 1881 | /* if we have nothing to send, return */ |
| 1882 | if (oi->lsack_list->count == 0) |
| 1883 | return 0; |
| 1884 | |
hasso | 3b4cd3a | 2004-05-18 19:28:32 +0000 | [diff] [blame] | 1885 | memset (sendbuf, 0, iobuflen); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1886 | oh = (struct ospf6_header *) sendbuf; |
| 1887 | |
| 1888 | p = (char *)((caddr_t) oh + sizeof (struct ospf6_header)); |
| 1889 | |
| 1890 | for (lsa = ospf6_lsdb_head (oi->lsack_list); lsa; |
| 1891 | lsa = ospf6_lsdb_next (lsa)) |
| 1892 | { |
| 1893 | /* MTU check */ |
| 1894 | if (p - sendbuf + sizeof (struct ospf6_lsa_header) > oi->ifmtu) |
| 1895 | { |
| 1896 | /* if we run out of packet size/space here, |
| 1897 | better to try again soon. */ |
| 1898 | THREAD_OFF (oi->thread_send_lsack); |
| 1899 | oi->thread_send_lsack = |
| 1900 | thread_add_event (master, ospf6_lsack_send_interface, oi, 0); |
| 1901 | |
| 1902 | ospf6_lsa_unlock (lsa); |
| 1903 | break; |
| 1904 | } |
| 1905 | |
| 1906 | ospf6_lsa_age_update_to_send (lsa, oi->transdelay); |
| 1907 | memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header)); |
| 1908 | p += sizeof (struct ospf6_lsa_header); |
| 1909 | |
| 1910 | assert (lsa->lock == 2); |
| 1911 | ospf6_lsdb_remove (lsa, oi->lsack_list); |
| 1912 | } |
| 1913 | |
| 1914 | oh->type = OSPF6_MESSAGE_TYPE_LSACK; |
| 1915 | oh->length = htons (p - sendbuf); |
| 1916 | |
| 1917 | if (oi->state == OSPF6_INTERFACE_DR || |
| 1918 | oi->state == OSPF6_INTERFACE_BDR) |
| 1919 | ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh); |
| 1920 | else |
| 1921 | ospf6_send (oi->linklocal_addr, &alldrouters6, oi, oh); |
| 1922 | |
| 1923 | if (oi->thread_send_lsack == NULL && oi->lsack_list->count > 0) |
| 1924 | { |
| 1925 | oi->thread_send_lsack = |
| 1926 | thread_add_event (master, ospf6_lsack_send_interface, oi, 0); |
| 1927 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1928 | |
| 1929 | return 0; |
| 1930 | } |
| 1931 | |
| 1932 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1933 | /* Commands */ |
| 1934 | DEFUN (debug_ospf6_message, |
| 1935 | debug_ospf6_message_cmd, |
| 1936 | "debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all)", |
| 1937 | DEBUG_STR |
| 1938 | OSPF6_STR |
| 1939 | "Debug OSPFv3 message\n" |
| 1940 | "Debug Unknown message\n" |
| 1941 | "Debug Hello message\n" |
| 1942 | "Debug Database Description message\n" |
| 1943 | "Debug Link State Request message\n" |
| 1944 | "Debug Link State Update message\n" |
| 1945 | "Debug Link State Acknowledgement message\n" |
| 1946 | "Debug All message\n" |
| 1947 | ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1948 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1949 | unsigned char level = 0; |
| 1950 | int type = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1951 | int i; |
| 1952 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1953 | assert (argc > 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1954 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1955 | /* check type */ |
| 1956 | if (! strncmp (argv[0], "u", 1)) |
| 1957 | type = OSPF6_MESSAGE_TYPE_UNKNOWN; |
| 1958 | else if (! strncmp (argv[0], "h", 1)) |
| 1959 | type = OSPF6_MESSAGE_TYPE_HELLO; |
| 1960 | else if (! strncmp (argv[0], "d", 1)) |
| 1961 | type = OSPF6_MESSAGE_TYPE_DBDESC; |
| 1962 | else if (! strncmp (argv[0], "lsr", 3)) |
| 1963 | type = OSPF6_MESSAGE_TYPE_LSREQ; |
| 1964 | else if (! strncmp (argv[0], "lsu", 3)) |
| 1965 | type = OSPF6_MESSAGE_TYPE_LSUPDATE; |
| 1966 | else if (! strncmp (argv[0], "lsa", 3)) |
| 1967 | type = OSPF6_MESSAGE_TYPE_LSACK; |
| 1968 | else if (! strncmp (argv[0], "a", 1)) |
| 1969 | type = OSPF6_MESSAGE_TYPE_ALL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1970 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1971 | if (argc == 1) |
| 1972 | level = OSPF6_DEBUG_MESSAGE_SEND | OSPF6_DEBUG_MESSAGE_RECV; |
| 1973 | else if (! strncmp (argv[1], "s", 1)) |
| 1974 | level = OSPF6_DEBUG_MESSAGE_SEND; |
| 1975 | else if (! strncmp (argv[1], "r", 1)) |
| 1976 | level = OSPF6_DEBUG_MESSAGE_RECV; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1977 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1978 | if (type == OSPF6_MESSAGE_TYPE_ALL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1979 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1980 | for (i = 0; i < 6; i++) |
| 1981 | OSPF6_DEBUG_MESSAGE_ON (i, level); |
| 1982 | } |
| 1983 | else |
| 1984 | OSPF6_DEBUG_MESSAGE_ON (type, level); |
| 1985 | |
| 1986 | return CMD_SUCCESS; |
| 1987 | } |
| 1988 | |
| 1989 | ALIAS (debug_ospf6_message, |
| 1990 | debug_ospf6_message_sendrecv_cmd, |
| 1991 | "debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all) (send|recv)", |
| 1992 | DEBUG_STR |
| 1993 | OSPF6_STR |
| 1994 | "Debug OSPFv3 message\n" |
| 1995 | "Debug Unknown message\n" |
| 1996 | "Debug Hello message\n" |
| 1997 | "Debug Database Description message\n" |
| 1998 | "Debug Link State Request message\n" |
| 1999 | "Debug Link State Update message\n" |
| 2000 | "Debug Link State Acknowledgement message\n" |
| 2001 | "Debug All message\n" |
| 2002 | "Debug only sending message\n" |
| 2003 | "Debug only receiving message\n" |
| 2004 | ); |
| 2005 | |
| 2006 | |
| 2007 | DEFUN (no_debug_ospf6_message, |
| 2008 | no_debug_ospf6_message_cmd, |
| 2009 | "no debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all)", |
| 2010 | NO_STR |
| 2011 | DEBUG_STR |
| 2012 | OSPF6_STR |
| 2013 | "Debug OSPFv3 message\n" |
| 2014 | "Debug Unknown message\n" |
| 2015 | "Debug Hello message\n" |
| 2016 | "Debug Database Description message\n" |
| 2017 | "Debug Link State Request message\n" |
| 2018 | "Debug Link State Update message\n" |
| 2019 | "Debug Link State Acknowledgement message\n" |
| 2020 | "Debug All message\n" |
| 2021 | ) |
| 2022 | { |
| 2023 | unsigned char level = 0; |
| 2024 | int type = 0; |
| 2025 | int i; |
| 2026 | |
| 2027 | assert (argc > 0); |
| 2028 | |
| 2029 | /* check type */ |
| 2030 | if (! strncmp (argv[0], "u", 1)) |
| 2031 | type = OSPF6_MESSAGE_TYPE_UNKNOWN; |
| 2032 | else if (! strncmp (argv[0], "h", 1)) |
| 2033 | type = OSPF6_MESSAGE_TYPE_HELLO; |
| 2034 | else if (! strncmp (argv[0], "d", 1)) |
| 2035 | type = OSPF6_MESSAGE_TYPE_DBDESC; |
| 2036 | else if (! strncmp (argv[0], "lsr", 3)) |
| 2037 | type = OSPF6_MESSAGE_TYPE_LSREQ; |
| 2038 | else if (! strncmp (argv[0], "lsu", 3)) |
| 2039 | type = OSPF6_MESSAGE_TYPE_LSUPDATE; |
| 2040 | else if (! strncmp (argv[0], "lsa", 3)) |
| 2041 | type = OSPF6_MESSAGE_TYPE_LSACK; |
| 2042 | else if (! strncmp (argv[0], "a", 1)) |
| 2043 | type = OSPF6_MESSAGE_TYPE_ALL; |
| 2044 | |
| 2045 | if (argc == 1) |
| 2046 | level = OSPF6_DEBUG_MESSAGE_SEND | OSPF6_DEBUG_MESSAGE_RECV; |
| 2047 | else if (! strncmp (argv[1], "s", 1)) |
| 2048 | level = OSPF6_DEBUG_MESSAGE_SEND; |
| 2049 | else if (! strncmp (argv[1], "r", 1)) |
| 2050 | level = OSPF6_DEBUG_MESSAGE_RECV; |
| 2051 | |
| 2052 | if (type == OSPF6_MESSAGE_TYPE_ALL) |
| 2053 | { |
| 2054 | for (i = 0; i < 6; i++) |
| 2055 | OSPF6_DEBUG_MESSAGE_OFF (i, level); |
| 2056 | } |
| 2057 | else |
| 2058 | OSPF6_DEBUG_MESSAGE_OFF (type, level); |
| 2059 | |
| 2060 | return CMD_SUCCESS; |
| 2061 | } |
| 2062 | |
| 2063 | ALIAS (no_debug_ospf6_message, |
| 2064 | no_debug_ospf6_message_sendrecv_cmd, |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2065 | "no debug ospf6 message " |
| 2066 | "(unknown|hello|dbdesc|lsreq|lsupdate|lsack|all) (send|recv)", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2067 | NO_STR |
| 2068 | DEBUG_STR |
| 2069 | OSPF6_STR |
| 2070 | "Debug OSPFv3 message\n" |
| 2071 | "Debug Unknown message\n" |
| 2072 | "Debug Hello message\n" |
| 2073 | "Debug Database Description message\n" |
| 2074 | "Debug Link State Request message\n" |
| 2075 | "Debug Link State Update message\n" |
| 2076 | "Debug Link State Acknowledgement message\n" |
| 2077 | "Debug All message\n" |
| 2078 | "Debug only sending message\n" |
| 2079 | "Debug only receiving message\n" |
| 2080 | ); |
| 2081 | |
| 2082 | int |
| 2083 | config_write_ospf6_debug_message (struct vty *vty) |
| 2084 | { |
| 2085 | char *type_str[] = {"unknown", "hello", "dbdesc", |
| 2086 | "lsreq", "lsupdate", "lsack"}; |
| 2087 | unsigned char s = 0, r = 0; |
| 2088 | int i; |
| 2089 | |
| 2090 | for (i = 0; i < 6; i++) |
| 2091 | { |
| 2092 | if (IS_OSPF6_DEBUG_MESSAGE (i, SEND)) |
| 2093 | s |= 1 << i; |
| 2094 | if (IS_OSPF6_DEBUG_MESSAGE (i, RECV)) |
| 2095 | r |= 1 << i; |
| 2096 | } |
| 2097 | |
| 2098 | if (s == 0x3f && r == 0x3f) |
| 2099 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2100 | vty_out (vty, "debug ospf6 message all%s", VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2101 | return 0; |
| 2102 | } |
| 2103 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2104 | if (s == 0x3f && r == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2105 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2106 | vty_out (vty, "debug ospf6 message all send%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2107 | return 0; |
| 2108 | } |
| 2109 | else if (s == 0 && r == 0x3f) |
| 2110 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2111 | vty_out (vty, "debug ospf6 message all recv%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2112 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2113 | } |
| 2114 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2115 | /* Unknown message is logged by default */ |
| 2116 | if (! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, SEND) && |
| 2117 | ! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, RECV)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2118 | vty_out (vty, "no debug ospf6 message unknown%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2119 | else if (! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, SEND)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2120 | vty_out (vty, "no debug ospf6 message unknown send%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2121 | else if (! 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 recv%s", VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2123 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2124 | for (i = 1; i < 6; i++) |
| 2125 | { |
| 2126 | if (IS_OSPF6_DEBUG_MESSAGE (i, SEND) && |
| 2127 | IS_OSPF6_DEBUG_MESSAGE (i, RECV)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2128 | vty_out (vty, "debug ospf6 message %s%s", type_str[i], VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2129 | else if (IS_OSPF6_DEBUG_MESSAGE (i, SEND)) |
| 2130 | vty_out (vty, "debug ospf6 message %s send%s", type_str[i], |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2131 | VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2132 | else if (IS_OSPF6_DEBUG_MESSAGE (i, RECV)) |
| 2133 | vty_out (vty, "debug ospf6 message %s recv%s", type_str[i], |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 2134 | VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2135 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2136 | |
| 2137 | return 0; |
| 2138 | } |
| 2139 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2140 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2141 | install_element_ospf6_debug_message () |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2142 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2143 | install_element (ENABLE_NODE, &debug_ospf6_message_cmd); |
| 2144 | install_element (ENABLE_NODE, &no_debug_ospf6_message_cmd); |
| 2145 | install_element (ENABLE_NODE, &debug_ospf6_message_sendrecv_cmd); |
| 2146 | install_element (ENABLE_NODE, &no_debug_ospf6_message_sendrecv_cmd); |
| 2147 | install_element (CONFIG_NODE, &debug_ospf6_message_cmd); |
| 2148 | install_element (CONFIG_NODE, &no_debug_ospf6_message_cmd); |
| 2149 | install_element (CONFIG_NODE, &debug_ospf6_message_sendrecv_cmd); |
| 2150 | install_element (CONFIG_NODE, &no_debug_ospf6_message_sendrecv_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2151 | } |
| 2152 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2153 | |