]> git.proxmox.com Git - mirror_frr.git/blob - ospf6d/ospf6_message.c
sharpd, staticd: Add access_list_init
[mirror_frr.git] / ospf6d / ospf6_message.c
1 /*
2 * Copyright (C) 2003 Yasuhiro Ohara
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 along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <zebra.h>
22
23 #include "memory.h"
24 #include "log.h"
25 #include "vty.h"
26 #include "command.h"
27 #include "thread.h"
28 #include "linklist.h"
29
30 #include "ospf6_proto.h"
31 #include "ospf6_lsa.h"
32 #include "ospf6_lsdb.h"
33 #include "ospf6_network.h"
34 #include "ospf6_message.h"
35
36 #include "ospf6_top.h"
37 #include "ospf6_area.h"
38 #include "ospf6_neighbor.h"
39 #include "ospf6_interface.h"
40
41 /* for structures and macros ospf6_lsa_examin() needs */
42 #include "ospf6_abr.h"
43 #include "ospf6_asbr.h"
44 #include "ospf6_intra.h"
45
46 #include "ospf6_flood.h"
47 #include "ospf6d.h"
48
49 #include <netinet/ip6.h>
50
51 unsigned char conf_debug_ospf6_message[6] = {0x03, 0, 0, 0, 0, 0};
52 static const struct message ospf6_message_type_str[] = {
53 {OSPF6_MESSAGE_TYPE_HELLO, "Hello"},
54 {OSPF6_MESSAGE_TYPE_DBDESC, "DbDesc"},
55 {OSPF6_MESSAGE_TYPE_LSREQ, "LSReq"},
56 {OSPF6_MESSAGE_TYPE_LSUPDATE, "LSUpdate"},
57 {OSPF6_MESSAGE_TYPE_LSACK, "LSAck"},
58 {0}};
59
60 /* Minimum (besides the standard OSPF packet header) lengths for OSPF
61 packets of particular types, offset is the "type" field. */
62 const uint16_t ospf6_packet_minlen[OSPF6_MESSAGE_TYPE_ALL] = {
63 0,
64 OSPF6_HELLO_MIN_SIZE,
65 OSPF6_DB_DESC_MIN_SIZE,
66 OSPF6_LS_REQ_MIN_SIZE,
67 OSPF6_LS_UPD_MIN_SIZE,
68 OSPF6_LS_ACK_MIN_SIZE};
69
70 /* Minimum (besides the standard LSA header) lengths for LSAs of particular
71 types, offset is the "LSA function code" portion of "LSA type" field. */
72 const uint16_t ospf6_lsa_minlen[OSPF6_LSTYPE_SIZE] = {
73 0,
74 /* 0x2001 */ OSPF6_ROUTER_LSA_MIN_SIZE,
75 /* 0x2002 */ OSPF6_NETWORK_LSA_MIN_SIZE,
76 /* 0x2003 */ OSPF6_INTER_PREFIX_LSA_MIN_SIZE,
77 /* 0x2004 */ OSPF6_INTER_ROUTER_LSA_FIX_SIZE,
78 /* 0x4005 */ OSPF6_AS_EXTERNAL_LSA_MIN_SIZE,
79 /* 0x2006 */ 0,
80 /* 0x2007 */ OSPF6_AS_EXTERNAL_LSA_MIN_SIZE,
81 /* 0x0008 */ OSPF6_LINK_LSA_MIN_SIZE,
82 /* 0x2009 */ OSPF6_INTRA_PREFIX_LSA_MIN_SIZE};
83
84 /* print functions */
85
86 static void ospf6_header_print(struct ospf6_header *oh)
87 {
88 char router_id[16], area_id[16];
89 inet_ntop(AF_INET, &oh->router_id, router_id, sizeof(router_id));
90 inet_ntop(AF_INET, &oh->area_id, area_id, sizeof(area_id));
91
92 zlog_debug(" OSPFv%d Type:%d Len:%hu Router-ID:%s", oh->version,
93 oh->type, ntohs(oh->length), router_id);
94 zlog_debug(" Area-ID:%s Cksum:%hx Instance-ID:%d", area_id,
95 ntohs(oh->checksum), oh->instance_id);
96 }
97
98 void ospf6_hello_print(struct ospf6_header *oh)
99 {
100 struct ospf6_hello *hello;
101 char options[16];
102 char drouter[16], bdrouter[16], neighbor[16];
103 char *p;
104
105 ospf6_header_print(oh);
106 assert(oh->type == OSPF6_MESSAGE_TYPE_HELLO);
107
108 hello = (struct ospf6_hello *)((caddr_t)oh
109 + sizeof(struct ospf6_header));
110
111 inet_ntop(AF_INET, &hello->drouter, drouter, sizeof(drouter));
112 inet_ntop(AF_INET, &hello->bdrouter, bdrouter, sizeof(bdrouter));
113 ospf6_options_printbuf(hello->options, options, sizeof(options));
114
115 zlog_debug(" I/F-Id:%ld Priority:%d Option:%s",
116 (unsigned long)ntohl(hello->interface_id), hello->priority,
117 options);
118 zlog_debug(" HelloInterval:%hu DeadInterval:%hu",
119 ntohs(hello->hello_interval), ntohs(hello->dead_interval));
120 zlog_debug(" DR:%s BDR:%s", drouter, bdrouter);
121
122 for (p = (char *)((caddr_t)hello + sizeof(struct ospf6_hello));
123 p + sizeof(uint32_t) <= OSPF6_MESSAGE_END(oh);
124 p += sizeof(uint32_t)) {
125 inet_ntop(AF_INET, (void *)p, neighbor, sizeof(neighbor));
126 zlog_debug(" Neighbor: %s", neighbor);
127 }
128
129 assert(p == OSPF6_MESSAGE_END(oh));
130 }
131
132 void ospf6_dbdesc_print(struct ospf6_header *oh)
133 {
134 struct ospf6_dbdesc *dbdesc;
135 char options[16];
136 char *p;
137
138 ospf6_header_print(oh);
139 assert(oh->type == OSPF6_MESSAGE_TYPE_DBDESC);
140
141 dbdesc = (struct ospf6_dbdesc *)((caddr_t)oh
142 + sizeof(struct ospf6_header));
143
144 ospf6_options_printbuf(dbdesc->options, options, sizeof(options));
145
146 zlog_debug(" MBZ: %#x Option: %s IfMTU: %hu", dbdesc->reserved1,
147 options, ntohs(dbdesc->ifmtu));
148 zlog_debug(" MBZ: %#x Bits: %s%s%s SeqNum: %#lx", dbdesc->reserved2,
149 (CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_IBIT) ? "I" : "-"),
150 (CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_MBIT) ? "M" : "-"),
151 (CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_MSBIT) ? "m" : "s"),
152 (unsigned long)ntohl(dbdesc->seqnum));
153
154 for (p = (char *)((caddr_t)dbdesc + sizeof(struct ospf6_dbdesc));
155 p + sizeof(struct ospf6_lsa_header) <= OSPF6_MESSAGE_END(oh);
156 p += sizeof(struct ospf6_lsa_header))
157 ospf6_lsa_header_print_raw((struct ospf6_lsa_header *)p);
158
159 assert(p == OSPF6_MESSAGE_END(oh));
160 }
161
162 void ospf6_lsreq_print(struct ospf6_header *oh)
163 {
164 char id[16], adv_router[16];
165 char *p;
166
167 ospf6_header_print(oh);
168 assert(oh->type == OSPF6_MESSAGE_TYPE_LSREQ);
169
170 for (p = (char *)((caddr_t)oh + sizeof(struct ospf6_header));
171 p + sizeof(struct ospf6_lsreq_entry) <= OSPF6_MESSAGE_END(oh);
172 p += sizeof(struct ospf6_lsreq_entry)) {
173 struct ospf6_lsreq_entry *e = (struct ospf6_lsreq_entry *)p;
174 inet_ntop(AF_INET, &e->adv_router, adv_router,
175 sizeof(adv_router));
176 inet_ntop(AF_INET, &e->id, id, sizeof(id));
177 zlog_debug(" [%s Id:%s Adv:%s]", ospf6_lstype_name(e->type),
178 id, adv_router);
179 }
180
181 assert(p == OSPF6_MESSAGE_END(oh));
182 }
183
184 void ospf6_lsupdate_print(struct ospf6_header *oh)
185 {
186 struct ospf6_lsupdate *lsupdate;
187 unsigned long num;
188 char *p;
189
190 ospf6_header_print(oh);
191 assert(oh->type == OSPF6_MESSAGE_TYPE_LSUPDATE);
192
193 lsupdate = (struct ospf6_lsupdate *)((caddr_t)oh
194 + sizeof(struct ospf6_header));
195
196 num = ntohl(lsupdate->lsa_number);
197 zlog_debug(" Number of LSA: %ld", num);
198
199 for (p = (char *)((caddr_t)lsupdate + sizeof(struct ospf6_lsupdate));
200 p < OSPF6_MESSAGE_END(oh)
201 && p + OSPF6_LSA_SIZE(p) <= OSPF6_MESSAGE_END(oh);
202 p += OSPF6_LSA_SIZE(p)) {
203 ospf6_lsa_header_print_raw((struct ospf6_lsa_header *)p);
204 }
205
206 assert(p == OSPF6_MESSAGE_END(oh));
207 }
208
209 void ospf6_lsack_print(struct ospf6_header *oh)
210 {
211 char *p;
212
213 ospf6_header_print(oh);
214 assert(oh->type == OSPF6_MESSAGE_TYPE_LSACK);
215
216 for (p = (char *)((caddr_t)oh + sizeof(struct ospf6_header));
217 p + sizeof(struct ospf6_lsa_header) <= OSPF6_MESSAGE_END(oh);
218 p += sizeof(struct ospf6_lsa_header))
219 ospf6_lsa_header_print_raw((struct ospf6_lsa_header *)p);
220
221 assert(p == OSPF6_MESSAGE_END(oh));
222 }
223
224 static void ospf6_hello_recv(struct in6_addr *src, struct in6_addr *dst,
225 struct ospf6_interface *oi,
226 struct ospf6_header *oh)
227 {
228 struct ospf6_hello *hello;
229 struct ospf6_neighbor *on;
230 char *p;
231 int twoway = 0;
232 int neighborchange = 0;
233 int neighbor_ifindex_change = 0;
234 int backupseen = 0;
235
236 hello = (struct ospf6_hello *)((caddr_t)oh
237 + sizeof(struct ospf6_header));
238
239 /* HelloInterval check */
240 if (ntohs(hello->hello_interval) != oi->hello_interval) {
241 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
242 zlog_debug("HelloInterval mismatch");
243 return;
244 }
245
246 /* RouterDeadInterval check */
247 if (ntohs(hello->dead_interval) != oi->dead_interval) {
248 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
249 zlog_debug("RouterDeadInterval mismatch");
250 return;
251 }
252
253 /* E-bit check */
254 if (OSPF6_OPT_ISSET(hello->options, OSPF6_OPT_E)
255 != OSPF6_OPT_ISSET(oi->area->options, OSPF6_OPT_E)) {
256 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
257 zlog_debug("E-bit mismatch");
258 return;
259 }
260
261 /* Find neighbor, create if not exist */
262 on = ospf6_neighbor_lookup(oh->router_id, oi);
263 if (on == NULL) {
264 on = ospf6_neighbor_create(oh->router_id, oi);
265 on->prev_drouter = on->drouter = hello->drouter;
266 on->prev_bdrouter = on->bdrouter = hello->bdrouter;
267 on->priority = hello->priority;
268 }
269
270 /* Always override neighbor's source address */
271 memcpy(&on->linklocal_addr, src, sizeof(struct in6_addr));
272
273 /* Neighbor ifindex check */
274 if (on->ifindex != (ifindex_t)ntohl(hello->interface_id)) {
275 on->ifindex = ntohl(hello->interface_id);
276 neighbor_ifindex_change++;
277 }
278
279 /* TwoWay check */
280 for (p = (char *)((caddr_t)hello + sizeof(struct ospf6_hello));
281 p + sizeof(uint32_t) <= OSPF6_MESSAGE_END(oh);
282 p += sizeof(uint32_t)) {
283 uint32_t *router_id = (uint32_t *)p;
284
285 if (*router_id == oi->area->ospf6->router_id)
286 twoway++;
287 }
288
289 assert(p == OSPF6_MESSAGE_END(oh));
290
291 /* RouterPriority check */
292 if (on->priority != hello->priority) {
293 on->priority = hello->priority;
294 neighborchange++;
295 }
296
297 /* DR check */
298 if (on->drouter != hello->drouter) {
299 on->prev_drouter = on->drouter;
300 on->drouter = hello->drouter;
301 if (on->prev_drouter == on->router_id
302 || on->drouter == on->router_id)
303 neighborchange++;
304 }
305
306 /* BDR check */
307 if (on->bdrouter != hello->bdrouter) {
308 on->prev_bdrouter = on->bdrouter;
309 on->bdrouter = hello->bdrouter;
310 if (on->prev_bdrouter == on->router_id
311 || on->bdrouter == on->router_id)
312 neighborchange++;
313 }
314
315 /* BackupSeen check */
316 if (oi->state == OSPF6_INTERFACE_WAITING) {
317 if (hello->bdrouter == on->router_id)
318 backupseen++;
319 else if (hello->drouter == on->router_id
320 && hello->bdrouter == htonl(0))
321 backupseen++;
322 }
323
324 oi->hello_in++;
325
326 /* Execute neighbor events */
327 thread_execute(master, hello_received, on, 0);
328 if (twoway)
329 thread_execute(master, twoway_received, on, 0);
330 else
331 thread_execute(master, oneway_received, on, 0);
332
333 /* Schedule interface events */
334 if (backupseen)
335 thread_add_event(master, backup_seen, oi, 0, NULL);
336 if (neighborchange)
337 thread_add_event(master, neighbor_change, oi, 0, NULL);
338
339 if (neighbor_ifindex_change && on->state == OSPF6_NEIGHBOR_FULL)
340 OSPF6_ROUTER_LSA_SCHEDULE(oi->area);
341 }
342
343 static void ospf6_dbdesc_recv_master(struct ospf6_header *oh,
344 struct ospf6_neighbor *on)
345 {
346 struct ospf6_dbdesc *dbdesc;
347 char *p;
348
349 dbdesc = (struct ospf6_dbdesc *)((caddr_t)oh
350 + sizeof(struct ospf6_header));
351
352 if (on->state < OSPF6_NEIGHBOR_INIT) {
353 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
354 zlog_debug("Neighbor state less than Init, ignore");
355 return;
356 }
357
358 switch (on->state) {
359 case OSPF6_NEIGHBOR_TWOWAY:
360 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
361 zlog_debug("Neighbor state is 2-Way, ignore");
362 return;
363
364 case OSPF6_NEIGHBOR_INIT:
365 thread_execute(master, twoway_received, on, 0);
366 if (on->state != OSPF6_NEIGHBOR_EXSTART) {
367 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
368 zlog_debug(
369 "Neighbor state is not ExStart, ignore");
370 return;
371 }
372 /* else fall through to ExStart */
373 /* fallthru */
374 case OSPF6_NEIGHBOR_EXSTART:
375 /* if neighbor obeys us as our slave, schedule negotiation_done
376 and process LSA Headers. Otherwise, ignore this message */
377 if (!CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_MSBIT)
378 && !CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_IBIT)
379 && ntohl(dbdesc->seqnum) == on->dbdesc_seqnum) {
380 /* execute NegotiationDone */
381 thread_execute(master, negotiation_done, on, 0);
382
383 /* Record neighbor options */
384 memcpy(on->options, dbdesc->options,
385 sizeof(on->options));
386 } else {
387 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
388 zlog_debug("Negotiation failed");
389 return;
390 }
391 /* fall through to exchange */
392
393 case OSPF6_NEIGHBOR_EXCHANGE:
394 if (!memcmp(dbdesc, &on->dbdesc_last,
395 sizeof(struct ospf6_dbdesc))) {
396 /* Duplicated DatabaseDescription is dropped by master
397 */
398 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
399 zlog_debug(
400 "Duplicated dbdesc discarded by Master, ignore");
401 return;
402 }
403
404 if (CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_MSBIT)) {
405 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
406 zlog_debug("Master/Slave bit mismatch");
407 thread_add_event(master, seqnumber_mismatch, on, 0,
408 NULL);
409 return;
410 }
411
412 if (CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_IBIT)) {
413 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
414 zlog_debug("Initialize bit mismatch");
415 thread_add_event(master, seqnumber_mismatch, on, 0,
416 NULL);
417 return;
418 }
419
420 if (memcmp(on->options, dbdesc->options, sizeof(on->options))) {
421 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
422 zlog_debug("Option field mismatch");
423 thread_add_event(master, seqnumber_mismatch, on, 0,
424 NULL);
425 return;
426 }
427
428 if (ntohl(dbdesc->seqnum) != on->dbdesc_seqnum) {
429 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
430 zlog_debug(
431 "Sequence number mismatch (%#lx expected)",
432 (unsigned long)on->dbdesc_seqnum);
433 thread_add_event(master, seqnumber_mismatch, on, 0,
434 NULL);
435 return;
436 }
437 break;
438
439 case OSPF6_NEIGHBOR_LOADING:
440 case OSPF6_NEIGHBOR_FULL:
441 if (!memcmp(dbdesc, &on->dbdesc_last,
442 sizeof(struct ospf6_dbdesc))) {
443 /* Duplicated DatabaseDescription is dropped by master
444 */
445 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
446 zlog_debug(
447 "Duplicated dbdesc discarded by Master, ignore");
448 return;
449 }
450
451 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
452 zlog_debug("Not duplicate dbdesc in state %s",
453 ospf6_neighbor_state_str[on->state]);
454 thread_add_event(master, seqnumber_mismatch, on, 0, NULL);
455 return;
456
457 default:
458 assert(0);
459 break;
460 }
461
462 /* Process LSA headers */
463 for (p = (char *)((caddr_t)dbdesc + sizeof(struct ospf6_dbdesc));
464 p + sizeof(struct ospf6_lsa_header) <= OSPF6_MESSAGE_END(oh);
465 p += sizeof(struct ospf6_lsa_header)) {
466 struct ospf6_lsa *his, *mine;
467 struct ospf6_lsdb *lsdb = NULL;
468
469 his = ospf6_lsa_create_headeronly((struct ospf6_lsa_header *)p);
470
471 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
472 zlog_debug("%s", his->name);
473
474 switch (OSPF6_LSA_SCOPE(his->header->type)) {
475 case OSPF6_SCOPE_LINKLOCAL:
476 lsdb = on->ospf6_if->lsdb;
477 break;
478 case OSPF6_SCOPE_AREA:
479 lsdb = on->ospf6_if->area->lsdb;
480 break;
481 case OSPF6_SCOPE_AS:
482 lsdb = on->ospf6_if->area->ospf6->lsdb;
483 break;
484 case OSPF6_SCOPE_RESERVED:
485 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
486 zlog_debug("Ignoring LSA of reserved scope");
487 ospf6_lsa_delete(his);
488 continue;
489 break;
490 }
491
492 if (ntohs(his->header->type) == OSPF6_LSTYPE_AS_EXTERNAL
493 && IS_AREA_STUB(on->ospf6_if->area)) {
494 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
495 zlog_debug(
496 "SeqNumMismatch (E-bit mismatch), discard");
497 ospf6_lsa_delete(his);
498 thread_add_event(master, seqnumber_mismatch, on, 0,
499 NULL);
500 return;
501 }
502
503 mine = ospf6_lsdb_lookup(his->header->type, his->header->id,
504 his->header->adv_router, lsdb);
505 if (mine == NULL) {
506 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
507 zlog_debug("Add request (No database copy)");
508 ospf6_lsdb_add(ospf6_lsa_copy(his), on->request_list);
509 } else if (ospf6_lsa_compare(his, mine) < 0) {
510 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
511 zlog_debug("Add request (Received MoreRecent)");
512 ospf6_lsdb_add(ospf6_lsa_copy(his), on->request_list);
513 } else {
514 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
515 zlog_debug("Discard (Existing MoreRecent)");
516 }
517 ospf6_lsa_delete(his);
518 }
519
520 assert(p == OSPF6_MESSAGE_END(oh));
521
522 /* Increment sequence number */
523 on->dbdesc_seqnum++;
524
525 /* schedule send lsreq */
526 if (on->request_list->count)
527 thread_add_event(master, ospf6_lsreq_send, on, 0,
528 &on->thread_send_lsreq);
529
530 THREAD_OFF(on->thread_send_dbdesc);
531
532 /* More bit check */
533 if (!CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_MBIT)
534 && !CHECK_FLAG(on->dbdesc_bits, OSPF6_DBDESC_MBIT))
535 thread_add_event(master, exchange_done, on, 0, NULL);
536 else {
537 on->thread_send_dbdesc = NULL;
538 thread_add_event(master, ospf6_dbdesc_send_newone, on, 0,
539 &on->thread_send_dbdesc);
540 }
541
542 /* save last received dbdesc */
543 memcpy(&on->dbdesc_last, dbdesc, sizeof(struct ospf6_dbdesc));
544 }
545
546 static void ospf6_dbdesc_recv_slave(struct ospf6_header *oh,
547 struct ospf6_neighbor *on)
548 {
549 struct ospf6_dbdesc *dbdesc;
550 char *p;
551
552 dbdesc = (struct ospf6_dbdesc *)((caddr_t)oh
553 + sizeof(struct ospf6_header));
554
555 if (on->state < OSPF6_NEIGHBOR_INIT) {
556 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
557 zlog_debug("Neighbor state less than Init, ignore");
558 return;
559 }
560
561 switch (on->state) {
562 case OSPF6_NEIGHBOR_TWOWAY:
563 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
564 zlog_debug("Neighbor state is 2-Way, ignore");
565 return;
566
567 case OSPF6_NEIGHBOR_INIT:
568 thread_execute(master, twoway_received, on, 0);
569 if (on->state != OSPF6_NEIGHBOR_EXSTART) {
570 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
571 zlog_debug(
572 "Neighbor state is not ExStart, ignore");
573 return;
574 }
575 /* else fall through to ExStart */
576 /* fallthru */
577 case OSPF6_NEIGHBOR_EXSTART:
578 /* If the neighbor is Master, act as Slave. Schedule
579 negotiation_done
580 and process LSA Headers. Otherwise, ignore this message */
581 if (CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_IBIT)
582 && CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_MBIT)
583 && CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_MSBIT)
584 && ntohs(oh->length)
585 == sizeof(struct ospf6_header)
586 + sizeof(struct ospf6_dbdesc)) {
587 /* set the master/slave bit to slave */
588 UNSET_FLAG(on->dbdesc_bits, OSPF6_DBDESC_MSBIT);
589
590 /* set the DD sequence number to one specified by master
591 */
592 on->dbdesc_seqnum = ntohl(dbdesc->seqnum);
593
594 /* schedule NegotiationDone */
595 thread_execute(master, negotiation_done, on, 0);
596
597 /* Record neighbor options */
598 memcpy(on->options, dbdesc->options,
599 sizeof(on->options));
600 } else {
601 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
602 zlog_debug("Negotiation failed");
603 return;
604 }
605 break;
606
607 case OSPF6_NEIGHBOR_EXCHANGE:
608 if (!memcmp(dbdesc, &on->dbdesc_last,
609 sizeof(struct ospf6_dbdesc))) {
610 /* Duplicated DatabaseDescription causes slave to
611 * retransmit */
612 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
613 zlog_debug(
614 "Duplicated dbdesc causes retransmit");
615 THREAD_OFF(on->thread_send_dbdesc);
616 on->thread_send_dbdesc = NULL;
617 thread_add_event(master, ospf6_dbdesc_send, on, 0,
618 &on->thread_send_dbdesc);
619 return;
620 }
621
622 if (!CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_MSBIT)) {
623 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
624 zlog_debug("Master/Slave bit mismatch");
625 thread_add_event(master, seqnumber_mismatch, on, 0,
626 NULL);
627 return;
628 }
629
630 if (CHECK_FLAG(dbdesc->bits, OSPF6_DBDESC_IBIT)) {
631 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
632 zlog_debug("Initialize bit mismatch");
633 thread_add_event(master, seqnumber_mismatch, on, 0,
634 NULL);
635 return;
636 }
637
638 if (memcmp(on->options, dbdesc->options, sizeof(on->options))) {
639 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
640 zlog_debug("Option field mismatch");
641 thread_add_event(master, seqnumber_mismatch, on, 0,
642 NULL);
643 return;
644 }
645
646 if (ntohl(dbdesc->seqnum) != on->dbdesc_seqnum + 1) {
647 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
648 zlog_debug(
649 "Sequence number mismatch (%#lx expected)",
650 (unsigned long)on->dbdesc_seqnum + 1);
651 thread_add_event(master, seqnumber_mismatch, on, 0,
652 NULL);
653 return;
654 }
655 break;
656
657 case OSPF6_NEIGHBOR_LOADING:
658 case OSPF6_NEIGHBOR_FULL:
659 if (!memcmp(dbdesc, &on->dbdesc_last,
660 sizeof(struct ospf6_dbdesc))) {
661 /* Duplicated DatabaseDescription causes slave to
662 * retransmit */
663 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
664 zlog_debug(
665 "Duplicated dbdesc causes retransmit");
666 THREAD_OFF(on->thread_send_dbdesc);
667 thread_add_event(master, ospf6_dbdesc_send, on, 0,
668 &on->thread_send_dbdesc);
669 return;
670 }
671
672 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
673 zlog_debug("Not duplicate dbdesc in state %s",
674 ospf6_neighbor_state_str[on->state]);
675 thread_add_event(master, seqnumber_mismatch, on, 0, NULL);
676 return;
677
678 default:
679 assert(0);
680 break;
681 }
682
683 /* Process LSA headers */
684 for (p = (char *)((caddr_t)dbdesc + sizeof(struct ospf6_dbdesc));
685 p + sizeof(struct ospf6_lsa_header) <= OSPF6_MESSAGE_END(oh);
686 p += sizeof(struct ospf6_lsa_header)) {
687 struct ospf6_lsa *his, *mine;
688 struct ospf6_lsdb *lsdb = NULL;
689
690 his = ospf6_lsa_create_headeronly((struct ospf6_lsa_header *)p);
691
692 switch (OSPF6_LSA_SCOPE(his->header->type)) {
693 case OSPF6_SCOPE_LINKLOCAL:
694 lsdb = on->ospf6_if->lsdb;
695 break;
696 case OSPF6_SCOPE_AREA:
697 lsdb = on->ospf6_if->area->lsdb;
698 break;
699 case OSPF6_SCOPE_AS:
700 lsdb = on->ospf6_if->area->ospf6->lsdb;
701 break;
702 case OSPF6_SCOPE_RESERVED:
703 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
704 zlog_debug("Ignoring LSA of reserved scope");
705 ospf6_lsa_delete(his);
706 continue;
707 break;
708 }
709
710 if (OSPF6_LSA_SCOPE(his->header->type) == OSPF6_SCOPE_AS
711 && IS_AREA_STUB(on->ospf6_if->area)) {
712 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
713 zlog_debug("E-bit mismatch with LSA Headers");
714 ospf6_lsa_delete(his);
715 thread_add_event(master, seqnumber_mismatch, on, 0,
716 NULL);
717 return;
718 }
719
720 mine = ospf6_lsdb_lookup(his->header->type, his->header->id,
721 his->header->adv_router, lsdb);
722 if (mine == NULL || ospf6_lsa_compare(his, mine) < 0) {
723 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
724 zlog_debug("Add request-list: %s", his->name);
725 ospf6_lsdb_add(ospf6_lsa_copy(his), on->request_list);
726 }
727 ospf6_lsa_delete(his);
728 }
729
730 assert(p == OSPF6_MESSAGE_END(oh));
731
732 /* Set sequence number to Master's */
733 on->dbdesc_seqnum = ntohl(dbdesc->seqnum);
734
735 /* schedule send lsreq */
736 if (on->request_list->count)
737 thread_add_event(master, ospf6_lsreq_send, on, 0,
738 &on->thread_send_lsreq);
739
740 THREAD_OFF(on->thread_send_dbdesc);
741 thread_add_event(master, ospf6_dbdesc_send_newone, on, 0,
742 &on->thread_send_dbdesc);
743
744 /* save last received dbdesc */
745 memcpy(&on->dbdesc_last, dbdesc, sizeof(struct ospf6_dbdesc));
746 }
747
748 static void ospf6_dbdesc_recv(struct in6_addr *src, struct in6_addr *dst,
749 struct ospf6_interface *oi,
750 struct ospf6_header *oh)
751 {
752 struct ospf6_neighbor *on;
753 struct ospf6_dbdesc *dbdesc;
754
755 on = ospf6_neighbor_lookup(oh->router_id, oi);
756 if (on == NULL) {
757 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
758 zlog_debug("Neighbor not found, ignore");
759 return;
760 }
761
762 dbdesc = (struct ospf6_dbdesc *)((caddr_t)oh
763 + sizeof(struct ospf6_header));
764
765 /* Interface MTU check */
766 if (!oi->mtu_ignore && ntohs(dbdesc->ifmtu) != oi->ifmtu) {
767 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
768 zlog_debug("I/F MTU mismatch");
769 return;
770 }
771
772 if (dbdesc->reserved1 || dbdesc->reserved2) {
773 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
774 zlog_debug(
775 "Non-0 reserved field in %s's DbDesc, correct",
776 on->name);
777 dbdesc->reserved1 = 0;
778 dbdesc->reserved2 = 0;
779 }
780
781 oi->db_desc_in++;
782
783 if (ntohl(oh->router_id) < ntohl(ospf6->router_id))
784 ospf6_dbdesc_recv_master(oh, on);
785 else if (ntohl(ospf6->router_id) < ntohl(oh->router_id))
786 ospf6_dbdesc_recv_slave(oh, on);
787 else {
788 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
789 zlog_debug("Can't decide which is master, ignore");
790 }
791 }
792
793 static void ospf6_lsreq_recv(struct in6_addr *src, struct in6_addr *dst,
794 struct ospf6_interface *oi,
795 struct ospf6_header *oh)
796 {
797 struct ospf6_neighbor *on;
798 char *p;
799 struct ospf6_lsreq_entry *e;
800 struct ospf6_lsdb *lsdb = NULL;
801 struct ospf6_lsa *lsa;
802
803 on = ospf6_neighbor_lookup(oh->router_id, oi);
804 if (on == NULL) {
805 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
806 zlog_debug("Neighbor not found, ignore");
807 return;
808 }
809
810 if (on->state != OSPF6_NEIGHBOR_EXCHANGE
811 && on->state != OSPF6_NEIGHBOR_LOADING
812 && on->state != OSPF6_NEIGHBOR_FULL) {
813 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
814 zlog_debug("Neighbor state less than Exchange, ignore");
815 return;
816 }
817
818 oi->ls_req_in++;
819
820 /* Process each request */
821 for (p = (char *)((caddr_t)oh + sizeof(struct ospf6_header));
822 p + sizeof(struct ospf6_lsreq_entry) <= OSPF6_MESSAGE_END(oh);
823 p += sizeof(struct ospf6_lsreq_entry)) {
824 e = (struct ospf6_lsreq_entry *)p;
825
826 switch (OSPF6_LSA_SCOPE(e->type)) {
827 case OSPF6_SCOPE_LINKLOCAL:
828 lsdb = on->ospf6_if->lsdb;
829 break;
830 case OSPF6_SCOPE_AREA:
831 lsdb = on->ospf6_if->area->lsdb;
832 break;
833 case OSPF6_SCOPE_AS:
834 lsdb = on->ospf6_if->area->ospf6->lsdb;
835 break;
836 default:
837 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
838 zlog_debug("Ignoring LSA of reserved scope");
839 continue;
840 break;
841 }
842
843 /* Find database copy */
844 lsa = ospf6_lsdb_lookup(e->type, e->id, e->adv_router, lsdb);
845 if (lsa == NULL) {
846 char id[16], adv_router[16];
847 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV)) {
848 inet_ntop(AF_INET, &e->id, id, sizeof(id));
849 inet_ntop(AF_INET, &e->adv_router, adv_router,
850 sizeof(adv_router));
851 zlog_debug(
852 "Can't find requested [%s Id:%s Adv:%s]",
853 ospf6_lstype_name(e->type), id,
854 adv_router);
855 }
856 thread_add_event(master, bad_lsreq, on, 0, NULL);
857 return;
858 }
859
860 ospf6_lsdb_add(ospf6_lsa_copy(lsa), on->lsupdate_list);
861 }
862
863 assert(p == OSPF6_MESSAGE_END(oh));
864
865 /* schedule send lsupdate */
866 THREAD_OFF(on->thread_send_lsupdate);
867 thread_add_event(master, ospf6_lsupdate_send_neighbor, on, 0,
868 &on->thread_send_lsupdate);
869 }
870
871 /* Verify, that the specified memory area contains exactly N valid IPv6
872 prefixes as specified by RFC5340, A.4.1. */
873 static unsigned ospf6_prefixes_examin(
874 struct ospf6_prefix *current, /* start of buffer */
875 unsigned length,
876 const uint32_t req_num_pfxs /* always compared with the actual number
877 of prefixes */
878 )
879 {
880 uint8_t requested_pfx_bytes;
881 uint32_t real_num_pfxs = 0;
882
883 while (length) {
884 if (length < OSPF6_PREFIX_MIN_SIZE) {
885 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
886 RECV))
887 zlog_debug("%s: undersized IPv6 prefix header",
888 __func__);
889 return MSG_NG;
890 }
891 /* safe to look deeper */
892 if (current->prefix_length > IPV6_MAX_BITLEN) {
893 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
894 RECV))
895 zlog_debug("%s: invalid PrefixLength (%u bits)",
896 __func__, current->prefix_length);
897 return MSG_NG;
898 }
899 /* covers both fixed- and variable-sized fields */
900 requested_pfx_bytes =
901 OSPF6_PREFIX_MIN_SIZE
902 + OSPF6_PREFIX_SPACE(current->prefix_length);
903 if (requested_pfx_bytes > length) {
904 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
905 RECV))
906 zlog_debug("%s: undersized IPv6 prefix",
907 __func__);
908 return MSG_NG;
909 }
910 /* next prefix */
911 length -= requested_pfx_bytes;
912 current = (struct ospf6_prefix *)((caddr_t)current
913 + requested_pfx_bytes);
914 real_num_pfxs++;
915 }
916 if (real_num_pfxs != req_num_pfxs) {
917 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
918 zlog_debug(
919 "%s: IPv6 prefix number mismatch (%u required, %u real)",
920 __func__, req_num_pfxs, real_num_pfxs);
921 return MSG_NG;
922 }
923 return MSG_OK;
924 }
925
926 /* Verify an LSA to have a valid length and dispatch further (where
927 appropriate) to check if the contents, including nested IPv6 prefixes,
928 is properly sized/aligned within the LSA. Note that this function gets
929 LSA type in network byte order, uses in host byte order and passes to
930 ospf6_lstype_name() in network byte order again. */
931 static unsigned ospf6_lsa_examin(struct ospf6_lsa_header *lsah,
932 const uint16_t lsalen,
933 const uint8_t headeronly)
934 {
935 struct ospf6_intra_prefix_lsa *intra_prefix_lsa;
936 struct ospf6_as_external_lsa *as_external_lsa;
937 struct ospf6_link_lsa *link_lsa;
938 unsigned exp_length;
939 uint8_t ltindex;
940 uint16_t lsatype;
941
942 /* In case an additional minimum length constraint is defined for
943 current
944 LSA type, make sure that this constraint is met. */
945 lsatype = ntohs(lsah->type);
946 ltindex = lsatype & OSPF6_LSTYPE_FCODE_MASK;
947 if (ltindex < OSPF6_LSTYPE_SIZE && ospf6_lsa_minlen[ltindex]
948 && lsalen < ospf6_lsa_minlen[ltindex] + OSPF6_LSA_HEADER_SIZE) {
949 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
950 zlog_debug("%s: undersized (%u B) LSA", __func__,
951 lsalen);
952 return MSG_NG;
953 }
954 switch (lsatype) {
955 case OSPF6_LSTYPE_ROUTER:
956 /* RFC5340 A.4.3, LSA header + OSPF6_ROUTER_LSA_MIN_SIZE bytes
957 followed
958 by N>=0 interface descriptions. */
959 if ((lsalen - OSPF6_LSA_HEADER_SIZE - OSPF6_ROUTER_LSA_MIN_SIZE)
960 % OSPF6_ROUTER_LSDESC_FIX_SIZE) {
961 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
962 RECV))
963 zlog_debug(
964 "%s: interface description alignment error",
965 __func__);
966 return MSG_NG;
967 }
968 break;
969 case OSPF6_LSTYPE_NETWORK:
970 /* RFC5340 A.4.4, LSA header + OSPF6_NETWORK_LSA_MIN_SIZE bytes
971 followed by N>=0 attached router descriptions. */
972 if ((lsalen - OSPF6_LSA_HEADER_SIZE
973 - OSPF6_NETWORK_LSA_MIN_SIZE)
974 % OSPF6_NETWORK_LSDESC_FIX_SIZE) {
975 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
976 RECV))
977 zlog_debug(
978 "%s: router description alignment error",
979 __func__);
980 return MSG_NG;
981 }
982 break;
983 case OSPF6_LSTYPE_INTER_PREFIX:
984 /* RFC5340 A.4.5, LSA header + OSPF6_INTER_PREFIX_LSA_MIN_SIZE
985 bytes
986 followed by 3-4 fields of a single IPv6 prefix. */
987 if (headeronly)
988 break;
989 return ospf6_prefixes_examin(
990 (struct ospf6_prefix
991 *)((caddr_t)lsah + OSPF6_LSA_HEADER_SIZE
992 + OSPF6_INTER_PREFIX_LSA_MIN_SIZE),
993 lsalen - OSPF6_LSA_HEADER_SIZE
994 - OSPF6_INTER_PREFIX_LSA_MIN_SIZE,
995 1);
996 case OSPF6_LSTYPE_INTER_ROUTER:
997 /* RFC5340 A.4.6, fixed-size LSA. */
998 if (lsalen
999 > OSPF6_LSA_HEADER_SIZE + OSPF6_INTER_ROUTER_LSA_FIX_SIZE) {
1000 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
1001 RECV))
1002 zlog_debug("%s: oversized (%u B) LSA", __func__,
1003 lsalen);
1004 return MSG_NG;
1005 }
1006 break;
1007 case OSPF6_LSTYPE_AS_EXTERNAL: /* RFC5340 A.4.7, same as A.4.8. */
1008 case OSPF6_LSTYPE_TYPE_7:
1009 /* RFC5340 A.4.8, LSA header + OSPF6_AS_EXTERNAL_LSA_MIN_SIZE
1010 bytes
1011 followed by 3-4 fields of IPv6 prefix and 3 conditional LSA
1012 fields:
1013 16 bytes of forwarding address, 4 bytes of external route
1014 tag,
1015 4 bytes of referenced link state ID. */
1016 if (headeronly)
1017 break;
1018 as_external_lsa =
1019 (struct ospf6_as_external_lsa
1020 *)((caddr_t)lsah + OSPF6_LSA_HEADER_SIZE);
1021 exp_length =
1022 OSPF6_LSA_HEADER_SIZE + OSPF6_AS_EXTERNAL_LSA_MIN_SIZE;
1023 /* To find out if the last optional field (Referenced Link State
1024 ID) is
1025 assumed in this LSA, we need to access fixed fields of the
1026 IPv6
1027 prefix before ospf6_prefix_examin() confirms its sizing. */
1028 if (exp_length + OSPF6_PREFIX_MIN_SIZE > lsalen) {
1029 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
1030 RECV))
1031 zlog_debug("%s: undersized (%u B) LSA header",
1032 __func__, lsalen);
1033 return MSG_NG;
1034 }
1035 /* forwarding address */
1036 if (CHECK_FLAG(as_external_lsa->bits_metric, OSPF6_ASBR_BIT_F))
1037 exp_length += 16;
1038 /* external route tag */
1039 if (CHECK_FLAG(as_external_lsa->bits_metric, OSPF6_ASBR_BIT_T))
1040 exp_length += 4;
1041 /* referenced link state ID */
1042 if (as_external_lsa->prefix.u._prefix_referenced_lstype)
1043 exp_length += 4;
1044 /* All the fixed-size fields (mandatory and optional) must fit.
1045 I.e.,
1046 this check does not include any IPv6 prefix fields. */
1047 if (exp_length > lsalen) {
1048 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
1049 RECV))
1050 zlog_debug("%s: undersized (%u B) LSA header",
1051 __func__, lsalen);
1052 return MSG_NG;
1053 }
1054 /* The last call completely covers the remainder (IPv6 prefix).
1055 */
1056 return ospf6_prefixes_examin(
1057 (struct ospf6_prefix
1058 *)((caddr_t)as_external_lsa
1059 + OSPF6_AS_EXTERNAL_LSA_MIN_SIZE),
1060 lsalen - exp_length, 1);
1061 case OSPF6_LSTYPE_LINK:
1062 /* RFC5340 A.4.9, LSA header + OSPF6_LINK_LSA_MIN_SIZE bytes
1063 followed
1064 by N>=0 IPv6 prefix blocks (with N declared beforehand). */
1065 if (headeronly)
1066 break;
1067 link_lsa = (struct ospf6_link_lsa *)((caddr_t)lsah
1068 + OSPF6_LSA_HEADER_SIZE);
1069 return ospf6_prefixes_examin(
1070 (struct ospf6_prefix *)((caddr_t)link_lsa
1071 + OSPF6_LINK_LSA_MIN_SIZE),
1072 lsalen - OSPF6_LSA_HEADER_SIZE
1073 - OSPF6_LINK_LSA_MIN_SIZE,
1074 ntohl(link_lsa->prefix_num) /* 32 bits */
1075 );
1076 case OSPF6_LSTYPE_INTRA_PREFIX:
1077 /* RFC5340 A.4.10, LSA header + OSPF6_INTRA_PREFIX_LSA_MIN_SIZE
1078 bytes
1079 followed by N>=0 IPv6 prefixes (with N declared beforehand).
1080 */
1081 if (headeronly)
1082 break;
1083 intra_prefix_lsa =
1084 (struct ospf6_intra_prefix_lsa
1085 *)((caddr_t)lsah + OSPF6_LSA_HEADER_SIZE);
1086 return ospf6_prefixes_examin(
1087 (struct ospf6_prefix
1088 *)((caddr_t)intra_prefix_lsa
1089 + OSPF6_INTRA_PREFIX_LSA_MIN_SIZE),
1090 lsalen - OSPF6_LSA_HEADER_SIZE
1091 - OSPF6_INTRA_PREFIX_LSA_MIN_SIZE,
1092 ntohs(intra_prefix_lsa->prefix_num) /* 16 bits */
1093 );
1094 }
1095 /* No additional validation is possible for unknown LSA types, which are
1096 themselves valid in OPSFv3, hence the default decision is to accept.
1097 */
1098 return MSG_OK;
1099 }
1100
1101 /* Verify if the provided input buffer is a valid sequence of LSAs. This
1102 includes verification of LSA blocks length/alignment and dispatching
1103 of deeper-level checks. */
1104 static unsigned
1105 ospf6_lsaseq_examin(struct ospf6_lsa_header *lsah, /* start of buffered data */
1106 size_t length, const uint8_t headeronly,
1107 /* When declared_num_lsas is not 0, compare it to the real
1108 number of LSAs
1109 and treat the difference as an error. */
1110 const uint32_t declared_num_lsas)
1111 {
1112 uint32_t counted_lsas = 0;
1113
1114 while (length) {
1115 uint16_t lsalen;
1116 if (length < OSPF6_LSA_HEADER_SIZE) {
1117 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
1118 RECV))
1119 zlog_debug(
1120 "%s: undersized (%zu B) trailing (#%u) LSA header",
1121 __func__, length, counted_lsas);
1122 return MSG_NG;
1123 }
1124 /* save on ntohs() calls here and in the LSA validator */
1125 lsalen = OSPF6_LSA_SIZE(lsah);
1126 if (lsalen < OSPF6_LSA_HEADER_SIZE) {
1127 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN,
1128 RECV))
1129 zlog_debug(
1130 "%s: malformed LSA header #%u, declared length is %u B",
1131 __func__, counted_lsas, lsalen);
1132 return MSG_NG;
1133 }
1134 if (headeronly) {
1135 /* less checks here and in ospf6_lsa_examin() */
1136 if (MSG_OK != ospf6_lsa_examin(lsah, lsalen, 1)) {
1137 if (IS_OSPF6_DEBUG_MESSAGE(
1138 OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1139 zlog_debug(
1140 "%s: anomaly in header-only %s LSA #%u",
1141 __func__,
1142 ospf6_lstype_name(lsah->type),
1143 counted_lsas);
1144 return MSG_NG;
1145 }
1146 lsah = (struct ospf6_lsa_header
1147 *)((caddr_t)lsah
1148 + OSPF6_LSA_HEADER_SIZE);
1149 length -= OSPF6_LSA_HEADER_SIZE;
1150 } else {
1151 /* make sure the input buffer is deep enough before
1152 * further checks */
1153 if (lsalen > length) {
1154 if (IS_OSPF6_DEBUG_MESSAGE(
1155 OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1156 zlog_debug(
1157 "%s: anomaly in %s LSA #%u: declared length is %u B, buffered length is %zu B",
1158 __func__,
1159 ospf6_lstype_name(lsah->type),
1160 counted_lsas, lsalen, length);
1161 return MSG_NG;
1162 }
1163 if (MSG_OK != ospf6_lsa_examin(lsah, lsalen, 0)) {
1164 if (IS_OSPF6_DEBUG_MESSAGE(
1165 OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1166 zlog_debug(
1167 "%s: anomaly in %s LSA #%u",
1168 __func__,
1169 ospf6_lstype_name(lsah->type),
1170 counted_lsas);
1171 return MSG_NG;
1172 }
1173 lsah = (struct ospf6_lsa_header *)((caddr_t)lsah
1174 + lsalen);
1175 length -= lsalen;
1176 }
1177 counted_lsas++;
1178 }
1179
1180 if (declared_num_lsas && counted_lsas != declared_num_lsas) {
1181 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1182 zlog_debug(
1183 "%s: #LSAs declared (%u) does not match actual (%u)",
1184 __func__, declared_num_lsas, counted_lsas);
1185 return MSG_NG;
1186 }
1187 return MSG_OK;
1188 }
1189
1190 /* Verify a complete OSPF packet for proper sizing/alignment. */
1191 static unsigned ospf6_packet_examin(struct ospf6_header *oh,
1192 const unsigned bytesonwire)
1193 {
1194 struct ospf6_lsupdate *lsupd;
1195 unsigned test;
1196
1197 /* length, 1st approximation */
1198 if (bytesonwire < OSPF6_HEADER_SIZE) {
1199 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1200 zlog_debug("%s: undersized (%u B) packet", __func__,
1201 bytesonwire);
1202 return MSG_NG;
1203 }
1204 /* Now it is safe to access header fields. */
1205 if (bytesonwire != ntohs(oh->length)) {
1206 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1207 zlog_debug(
1208 "%s: %s packet length error (%u real, %u declared)",
1209 __func__, lookup_msg(ospf6_message_type_str,
1210 oh->type, NULL),
1211 bytesonwire, ntohs(oh->length));
1212 return MSG_NG;
1213 }
1214 /* version check */
1215 if (oh->version != OSPFV3_VERSION) {
1216 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1217 zlog_debug("%s: invalid (%u) protocol version",
1218 __func__, oh->version);
1219 return MSG_NG;
1220 }
1221 /* length, 2nd approximation */
1222 if (oh->type < OSPF6_MESSAGE_TYPE_ALL && ospf6_packet_minlen[oh->type]
1223 && bytesonwire
1224 < OSPF6_HEADER_SIZE + ospf6_packet_minlen[oh->type]) {
1225 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1226 zlog_debug("%s: undersized (%u B) %s packet", __func__,
1227 bytesonwire,
1228 lookup_msg(ospf6_message_type_str, oh->type,
1229 NULL));
1230 return MSG_NG;
1231 }
1232 /* type-specific deeper validation */
1233 switch (oh->type) {
1234 case OSPF6_MESSAGE_TYPE_HELLO:
1235 /* RFC5340 A.3.2, packet header + OSPF6_HELLO_MIN_SIZE bytes
1236 followed
1237 by N>=0 router-IDs. */
1238 if (0
1239 == (bytesonwire - OSPF6_HEADER_SIZE - OSPF6_HELLO_MIN_SIZE)
1240 % 4)
1241 return MSG_OK;
1242 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1243 zlog_debug("%s: alignment error in %s packet", __func__,
1244 lookup_msg(ospf6_message_type_str, oh->type,
1245 NULL));
1246 return MSG_NG;
1247 case OSPF6_MESSAGE_TYPE_DBDESC:
1248 /* RFC5340 A.3.3, packet header + OSPF6_DB_DESC_MIN_SIZE bytes
1249 followed
1250 by N>=0 header-only LSAs. */
1251 test = ospf6_lsaseq_examin(
1252 (struct ospf6_lsa_header *)((caddr_t)oh
1253 + OSPF6_HEADER_SIZE
1254 + OSPF6_DB_DESC_MIN_SIZE),
1255 bytesonwire - OSPF6_HEADER_SIZE
1256 - OSPF6_DB_DESC_MIN_SIZE,
1257 1, 0);
1258 break;
1259 case OSPF6_MESSAGE_TYPE_LSREQ:
1260 /* RFC5340 A.3.4, packet header + N>=0 LS description blocks. */
1261 if (0
1262 == (bytesonwire - OSPF6_HEADER_SIZE - OSPF6_LS_REQ_MIN_SIZE)
1263 % OSPF6_LSREQ_LSDESC_FIX_SIZE)
1264 return MSG_OK;
1265 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1266 zlog_debug("%s: alignment error in %s packet", __func__,
1267 lookup_msg(ospf6_message_type_str, oh->type,
1268 NULL));
1269 return MSG_NG;
1270 case OSPF6_MESSAGE_TYPE_LSUPDATE:
1271 /* RFC5340 A.3.5, packet header + OSPF6_LS_UPD_MIN_SIZE bytes
1272 followed
1273 by N>=0 full LSAs (with N declared beforehand). */
1274 lsupd = (struct ospf6_lsupdate *)((caddr_t)oh
1275 + OSPF6_HEADER_SIZE);
1276 test = ospf6_lsaseq_examin(
1277 (struct ospf6_lsa_header *)((caddr_t)lsupd
1278 + OSPF6_LS_UPD_MIN_SIZE),
1279 bytesonwire - OSPF6_HEADER_SIZE - OSPF6_LS_UPD_MIN_SIZE,
1280 0, ntohl(lsupd->lsa_number) /* 32 bits */
1281 );
1282 break;
1283 case OSPF6_MESSAGE_TYPE_LSACK:
1284 /* RFC5340 A.3.6, packet header + N>=0 header-only LSAs. */
1285 test = ospf6_lsaseq_examin(
1286 (struct ospf6_lsa_header *)((caddr_t)oh
1287 + OSPF6_HEADER_SIZE
1288 + OSPF6_LS_ACK_MIN_SIZE),
1289 bytesonwire - OSPF6_HEADER_SIZE - OSPF6_LS_ACK_MIN_SIZE,
1290 1, 0);
1291 break;
1292 default:
1293 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1294 zlog_debug("%s: invalid (%u) message type", __func__,
1295 oh->type);
1296 return MSG_NG;
1297 }
1298 if (test != MSG_OK
1299 && IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1300 zlog_debug("%s: anomaly in %s packet", __func__,
1301 lookup_msg(ospf6_message_type_str, oh->type, NULL));
1302 return test;
1303 }
1304
1305 /* Verify particular fields of otherwise correct received OSPF packet to
1306 meet the requirements of RFC. */
1307 static int ospf6_rxpacket_examin(struct ospf6_interface *oi,
1308 struct ospf6_header *oh,
1309 const unsigned bytesonwire)
1310 {
1311 char buf[2][INET_ADDRSTRLEN];
1312
1313 if (MSG_OK != ospf6_packet_examin(oh, bytesonwire))
1314 return MSG_NG;
1315
1316 /* Area-ID check */
1317 if (oh->area_id != oi->area->area_id) {
1318 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV)) {
1319 if (oh->area_id == OSPF_AREA_BACKBONE)
1320 zlog_debug(
1321 "%s: Message may be via Virtual Link: not supported",
1322 __func__);
1323 else
1324 zlog_debug(
1325 "%s: Area-ID mismatch (my %s, rcvd %s)",
1326 __func__,
1327 inet_ntop(AF_INET, &oi->area->area_id,
1328 buf[0], INET_ADDRSTRLEN),
1329 inet_ntop(AF_INET, &oh->area_id, buf[1],
1330 INET_ADDRSTRLEN));
1331 }
1332 return MSG_NG;
1333 }
1334
1335 /* Instance-ID check */
1336 if (oh->instance_id != oi->instance_id) {
1337 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1338 zlog_debug("%s: Instance-ID mismatch (my %u, rcvd %u)",
1339 __func__, oi->instance_id, oh->instance_id);
1340 return MSG_NG;
1341 }
1342
1343 /* Router-ID check */
1344 if (oh->router_id == oi->area->ospf6->router_id) {
1345 zlog_warn("%s: Duplicate Router-ID (%s)", __func__,
1346 inet_ntop(AF_INET, &oh->router_id, buf[0],
1347 INET_ADDRSTRLEN));
1348 return MSG_NG;
1349 }
1350 return MSG_OK;
1351 }
1352
1353 static void ospf6_lsupdate_recv(struct in6_addr *src, struct in6_addr *dst,
1354 struct ospf6_interface *oi,
1355 struct ospf6_header *oh)
1356 {
1357 struct ospf6_neighbor *on;
1358 struct ospf6_lsupdate *lsupdate;
1359 char *p;
1360
1361 on = ospf6_neighbor_lookup(oh->router_id, oi);
1362 if (on == NULL) {
1363 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1364 zlog_debug("Neighbor not found, ignore");
1365 return;
1366 }
1367
1368 if (on->state != OSPF6_NEIGHBOR_EXCHANGE
1369 && on->state != OSPF6_NEIGHBOR_LOADING
1370 && on->state != OSPF6_NEIGHBOR_FULL) {
1371 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1372 zlog_debug("Neighbor state less than Exchange, ignore");
1373 return;
1374 }
1375
1376 lsupdate = (struct ospf6_lsupdate *)((caddr_t)oh
1377 + sizeof(struct ospf6_header));
1378
1379 oi->ls_upd_in++;
1380
1381 /* Process LSAs */
1382 for (p = (char *)((caddr_t)lsupdate + sizeof(struct ospf6_lsupdate));
1383 p < OSPF6_MESSAGE_END(oh)
1384 && p + OSPF6_LSA_SIZE(p) <= OSPF6_MESSAGE_END(oh);
1385 p += OSPF6_LSA_SIZE(p)) {
1386 ospf6_receive_lsa(on, (struct ospf6_lsa_header *)p);
1387 }
1388
1389 assert(p == OSPF6_MESSAGE_END(oh));
1390 }
1391
1392 static void ospf6_lsack_recv(struct in6_addr *src, struct in6_addr *dst,
1393 struct ospf6_interface *oi,
1394 struct ospf6_header *oh)
1395 {
1396 struct ospf6_neighbor *on;
1397 char *p;
1398 struct ospf6_lsa *his, *mine;
1399 struct ospf6_lsdb *lsdb = NULL;
1400
1401 assert(oh->type == OSPF6_MESSAGE_TYPE_LSACK);
1402
1403 on = ospf6_neighbor_lookup(oh->router_id, oi);
1404 if (on == NULL) {
1405 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1406 zlog_debug("Neighbor not found, ignore");
1407 return;
1408 }
1409
1410 if (on->state != OSPF6_NEIGHBOR_EXCHANGE
1411 && on->state != OSPF6_NEIGHBOR_LOADING
1412 && on->state != OSPF6_NEIGHBOR_FULL) {
1413 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1414 zlog_debug("Neighbor state less than Exchange, ignore");
1415 return;
1416 }
1417
1418 oi->ls_ack_in++;
1419
1420 for (p = (char *)((caddr_t)oh + sizeof(struct ospf6_header));
1421 p + sizeof(struct ospf6_lsa_header) <= OSPF6_MESSAGE_END(oh);
1422 p += sizeof(struct ospf6_lsa_header)) {
1423 his = ospf6_lsa_create_headeronly((struct ospf6_lsa_header *)p);
1424
1425 switch (OSPF6_LSA_SCOPE(his->header->type)) {
1426 case OSPF6_SCOPE_LINKLOCAL:
1427 lsdb = on->ospf6_if->lsdb;
1428 break;
1429 case OSPF6_SCOPE_AREA:
1430 lsdb = on->ospf6_if->area->lsdb;
1431 break;
1432 case OSPF6_SCOPE_AS:
1433 lsdb = on->ospf6_if->area->ospf6->lsdb;
1434 break;
1435 case OSPF6_SCOPE_RESERVED:
1436 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1437 zlog_debug("Ignoring LSA of reserved scope");
1438 ospf6_lsa_delete(his);
1439 continue;
1440 break;
1441 }
1442
1443 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1444 zlog_debug("%s acknowledged by %s", his->name,
1445 on->name);
1446
1447 /* Find database copy */
1448 mine = ospf6_lsdb_lookup(his->header->type, his->header->id,
1449 his->header->adv_router, lsdb);
1450 if (mine == NULL) {
1451 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1452 zlog_debug("No database copy");
1453 ospf6_lsa_delete(his);
1454 continue;
1455 }
1456
1457 /* Check if the LSA is on his retrans-list */
1458 mine = ospf6_lsdb_lookup(his->header->type, his->header->id,
1459 his->header->adv_router,
1460 on->retrans_list);
1461 if (mine == NULL) {
1462 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1463 zlog_debug("Not on %s's retrans-list",
1464 on->name);
1465 ospf6_lsa_delete(his);
1466 continue;
1467 }
1468
1469 if (ospf6_lsa_compare(his, mine) != 0) {
1470 /* Log this questionable acknowledgement,
1471 and examine the next one. */
1472 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1473 zlog_debug("Questionable acknowledgement");
1474 ospf6_lsa_delete(his);
1475 continue;
1476 }
1477
1478 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV))
1479 zlog_debug(
1480 "Acknowledged, remove from %s's retrans-list",
1481 on->name);
1482
1483 ospf6_decrement_retrans_count(mine);
1484 if (OSPF6_LSA_IS_MAXAGE(mine))
1485 ospf6_maxage_remove(on->ospf6_if->area->ospf6);
1486 ospf6_lsdb_remove(mine, on->retrans_list);
1487 ospf6_lsa_delete(his);
1488 }
1489
1490 assert(p == OSPF6_MESSAGE_END(oh));
1491 }
1492
1493 static uint8_t *recvbuf = NULL;
1494 static uint8_t *sendbuf = NULL;
1495 static unsigned int iobuflen = 0;
1496
1497 int ospf6_iobuf_size(unsigned int size)
1498 {
1499 uint8_t *recvnew, *sendnew;
1500
1501 if (size <= iobuflen)
1502 return iobuflen;
1503
1504 recvnew = XMALLOC(MTYPE_OSPF6_MESSAGE, size);
1505 sendnew = XMALLOC(MTYPE_OSPF6_MESSAGE, size);
1506
1507 if (recvbuf)
1508 XFREE(MTYPE_OSPF6_MESSAGE, recvbuf);
1509 if (sendbuf)
1510 XFREE(MTYPE_OSPF6_MESSAGE, sendbuf);
1511 recvbuf = recvnew;
1512 sendbuf = sendnew;
1513 iobuflen = size;
1514
1515 return iobuflen;
1516 }
1517
1518 void ospf6_message_terminate(void)
1519 {
1520 if (recvbuf) {
1521 XFREE(MTYPE_OSPF6_MESSAGE, recvbuf);
1522 recvbuf = NULL;
1523 }
1524
1525 if (sendbuf) {
1526 XFREE(MTYPE_OSPF6_MESSAGE, sendbuf);
1527 sendbuf = NULL;
1528 }
1529
1530 iobuflen = 0;
1531 }
1532
1533 int ospf6_receive(struct thread *thread)
1534 {
1535 int sockfd;
1536 unsigned int len;
1537 char srcname[64], dstname[64];
1538 struct in6_addr src, dst;
1539 ifindex_t ifindex;
1540 struct iovec iovector[2];
1541 struct ospf6_interface *oi;
1542 struct ospf6_header *oh;
1543
1544 /* add next read thread */
1545 sockfd = THREAD_FD(thread);
1546 thread_add_read(master, ospf6_receive, NULL, sockfd, NULL);
1547
1548 /* initialize */
1549 memset(&src, 0, sizeof(src));
1550 memset(&dst, 0, sizeof(dst));
1551 ifindex = 0;
1552 memset(recvbuf, 0, iobuflen);
1553 iovector[0].iov_base = recvbuf;
1554 iovector[0].iov_len = iobuflen;
1555 iovector[1].iov_base = NULL;
1556 iovector[1].iov_len = 0;
1557
1558 /* receive message */
1559 len = ospf6_recvmsg(&src, &dst, &ifindex, iovector);
1560 if (len > iobuflen) {
1561 zlog_err("Excess message read");
1562 return 0;
1563 }
1564
1565 oi = ospf6_interface_lookup_by_ifindex(ifindex);
1566 if (oi == NULL || oi->area == NULL
1567 || CHECK_FLAG(oi->flag, OSPF6_INTERFACE_DISABLE)) {
1568 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1569 zlog_debug("Message received on disabled interface");
1570 return 0;
1571 }
1572 if (CHECK_FLAG(oi->flag, OSPF6_INTERFACE_PASSIVE)) {
1573 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
1574 zlog_debug("%s: Ignore message on passive interface %s",
1575 __func__, oi->interface->name);
1576 return 0;
1577 }
1578
1579 oh = (struct ospf6_header *)recvbuf;
1580 if (ospf6_rxpacket_examin(oi, oh, len) != MSG_OK)
1581 return 0;
1582
1583 /* Being here means, that no sizing/alignment issues were detected in
1584 the input packet. This renders the additional checks performed below
1585 and also in the type-specific dispatching functions a dead code,
1586 which can be dismissed in a cleanup-focused review round later. */
1587
1588 /* Log */
1589 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, RECV)) {
1590 inet_ntop(AF_INET6, &src, srcname, sizeof(srcname));
1591 inet_ntop(AF_INET6, &dst, dstname, sizeof(dstname));
1592 zlog_debug("%s received on %s",
1593 lookup_msg(ospf6_message_type_str, oh->type, NULL),
1594 oi->interface->name);
1595 zlog_debug(" src: %s", srcname);
1596 zlog_debug(" dst: %s", dstname);
1597
1598 switch (oh->type) {
1599 case OSPF6_MESSAGE_TYPE_HELLO:
1600 ospf6_hello_print(oh);
1601 break;
1602 case OSPF6_MESSAGE_TYPE_DBDESC:
1603 ospf6_dbdesc_print(oh);
1604 break;
1605 case OSPF6_MESSAGE_TYPE_LSREQ:
1606 ospf6_lsreq_print(oh);
1607 break;
1608 case OSPF6_MESSAGE_TYPE_LSUPDATE:
1609 ospf6_lsupdate_print(oh);
1610 break;
1611 case OSPF6_MESSAGE_TYPE_LSACK:
1612 ospf6_lsack_print(oh);
1613 break;
1614 default:
1615 assert(0);
1616 }
1617 }
1618
1619 switch (oh->type) {
1620 case OSPF6_MESSAGE_TYPE_HELLO:
1621 ospf6_hello_recv(&src, &dst, oi, oh);
1622 break;
1623
1624 case OSPF6_MESSAGE_TYPE_DBDESC:
1625 ospf6_dbdesc_recv(&src, &dst, oi, oh);
1626 break;
1627
1628 case OSPF6_MESSAGE_TYPE_LSREQ:
1629 ospf6_lsreq_recv(&src, &dst, oi, oh);
1630 break;
1631
1632 case OSPF6_MESSAGE_TYPE_LSUPDATE:
1633 ospf6_lsupdate_recv(&src, &dst, oi, oh);
1634 break;
1635
1636 case OSPF6_MESSAGE_TYPE_LSACK:
1637 ospf6_lsack_recv(&src, &dst, oi, oh);
1638 break;
1639
1640 default:
1641 assert(0);
1642 }
1643
1644 return 0;
1645 }
1646
1647 static void ospf6_send(struct in6_addr *src, struct in6_addr *dst,
1648 struct ospf6_interface *oi, struct ospf6_header *oh)
1649 {
1650 unsigned int len;
1651 char srcname[64], dstname[64];
1652 struct iovec iovector[2];
1653
1654 /* initialize */
1655 iovector[0].iov_base = (caddr_t)oh;
1656 iovector[0].iov_len = ntohs(oh->length);
1657 iovector[1].iov_base = NULL;
1658 iovector[1].iov_len = 0;
1659
1660 /* fill OSPF header */
1661 oh->version = OSPFV3_VERSION;
1662 /* message type must be set before */
1663 /* message length must be set before */
1664 oh->router_id = oi->area->ospf6->router_id;
1665 oh->area_id = oi->area->area_id;
1666 /* checksum is calculated by kernel */
1667 oh->instance_id = oi->instance_id;
1668 oh->reserved = 0;
1669
1670 /* Log */
1671 if (IS_OSPF6_DEBUG_MESSAGE(oh->type, SEND)) {
1672 inet_ntop(AF_INET6, dst, dstname, sizeof(dstname));
1673 if (src)
1674 inet_ntop(AF_INET6, src, srcname, sizeof(srcname));
1675 else
1676 memset(srcname, 0, sizeof(srcname));
1677 zlog_debug("%s send on %s",
1678 lookup_msg(ospf6_message_type_str, oh->type, NULL),
1679 oi->interface->name);
1680 zlog_debug(" src: %s", srcname);
1681 zlog_debug(" dst: %s", dstname);
1682
1683 switch (oh->type) {
1684 case OSPF6_MESSAGE_TYPE_HELLO:
1685 ospf6_hello_print(oh);
1686 break;
1687 case OSPF6_MESSAGE_TYPE_DBDESC:
1688 ospf6_dbdesc_print(oh);
1689 break;
1690 case OSPF6_MESSAGE_TYPE_LSREQ:
1691 ospf6_lsreq_print(oh);
1692 break;
1693 case OSPF6_MESSAGE_TYPE_LSUPDATE:
1694 ospf6_lsupdate_print(oh);
1695 break;
1696 case OSPF6_MESSAGE_TYPE_LSACK:
1697 ospf6_lsack_print(oh);
1698 break;
1699 default:
1700 zlog_debug("Unknown message");
1701 assert(0);
1702 break;
1703 }
1704 }
1705
1706 /* send message */
1707 len = ospf6_sendmsg(src, dst, &oi->interface->ifindex, iovector);
1708 if (len != ntohs(oh->length))
1709 zlog_err("Could not send entire message");
1710 }
1711
1712 static uint32_t ospf6_packet_max(struct ospf6_interface *oi)
1713 {
1714 assert(oi->ifmtu > sizeof(struct ip6_hdr));
1715 return oi->ifmtu - (sizeof(struct ip6_hdr));
1716 }
1717
1718 int ospf6_hello_send(struct thread *thread)
1719 {
1720 struct ospf6_interface *oi;
1721 struct ospf6_header *oh;
1722 struct ospf6_hello *hello;
1723 uint8_t *p;
1724 struct listnode *node, *nnode;
1725 struct ospf6_neighbor *on;
1726
1727 oi = (struct ospf6_interface *)THREAD_ARG(thread);
1728 oi->thread_send_hello = (struct thread *)NULL;
1729
1730 if (oi->state <= OSPF6_INTERFACE_DOWN) {
1731 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_HELLO, SEND))
1732 zlog_debug("Unable to send Hello on down interface %s",
1733 oi->interface->name);
1734 return 0;
1735 }
1736
1737 if (iobuflen == 0) {
1738 zlog_debug("Unable to send Hello on interface %s iobuflen is 0",
1739 oi->interface->name);
1740 return 0;
1741 }
1742
1743 /* set next thread */
1744 thread_add_timer(master, ospf6_hello_send, oi, oi->hello_interval,
1745 &oi->thread_send_hello);
1746
1747 memset(sendbuf, 0, iobuflen);
1748 oh = (struct ospf6_header *)sendbuf;
1749 hello = (struct ospf6_hello *)((caddr_t)oh
1750 + sizeof(struct ospf6_header));
1751
1752 hello->interface_id = htonl(oi->interface->ifindex);
1753 hello->priority = oi->priority;
1754 hello->options[0] = oi->area->options[0];
1755 hello->options[1] = oi->area->options[1];
1756 hello->options[2] = oi->area->options[2];
1757 hello->hello_interval = htons(oi->hello_interval);
1758 hello->dead_interval = htons(oi->dead_interval);
1759 hello->drouter = oi->drouter;
1760 hello->bdrouter = oi->bdrouter;
1761
1762 p = (uint8_t *)((caddr_t)hello + sizeof(struct ospf6_hello));
1763
1764 for (ALL_LIST_ELEMENTS(oi->neighbor_list, node, nnode, on)) {
1765 if (on->state < OSPF6_NEIGHBOR_INIT)
1766 continue;
1767
1768 if (p - sendbuf + sizeof(uint32_t) > ospf6_packet_max(oi)) {
1769 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_HELLO,
1770 SEND))
1771 zlog_debug(
1772 "sending Hello message: exceeds I/F MTU");
1773 break;
1774 }
1775
1776 memcpy(p, &on->router_id, sizeof(uint32_t));
1777 p += sizeof(uint32_t);
1778 }
1779
1780 oh->type = OSPF6_MESSAGE_TYPE_HELLO;
1781 oh->length = htons(p - sendbuf);
1782
1783 oi->hello_out++;
1784
1785 ospf6_send(oi->linklocal_addr, &allspfrouters6, oi, oh);
1786 return 0;
1787 }
1788
1789 int ospf6_dbdesc_send(struct thread *thread)
1790 {
1791 struct ospf6_neighbor *on;
1792 struct ospf6_header *oh;
1793 struct ospf6_dbdesc *dbdesc;
1794 uint8_t *p;
1795 struct ospf6_lsa *lsa;
1796 struct in6_addr *dst;
1797
1798 on = (struct ospf6_neighbor *)THREAD_ARG(thread);
1799 on->thread_send_dbdesc = (struct thread *)NULL;
1800
1801 if (on->state < OSPF6_NEIGHBOR_EXSTART) {
1802 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_DBDESC, SEND))
1803 zlog_debug(
1804 "Quit to send DbDesc to neighbor %s state %s",
1805 on->name, ospf6_neighbor_state_str[on->state]);
1806 return 0;
1807 }
1808
1809 /* set next thread if master */
1810 if (CHECK_FLAG(on->dbdesc_bits, OSPF6_DBDESC_MSBIT))
1811 thread_add_timer(master, ospf6_dbdesc_send, on,
1812 on->ospf6_if->rxmt_interval,
1813 &on->thread_send_dbdesc);
1814
1815 memset(sendbuf, 0, iobuflen);
1816 oh = (struct ospf6_header *)sendbuf;
1817 dbdesc = (struct ospf6_dbdesc *)((caddr_t)oh
1818 + sizeof(struct ospf6_header));
1819
1820 /* if this is initial one, initialize sequence number for DbDesc */
1821 if (CHECK_FLAG(on->dbdesc_bits, OSPF6_DBDESC_IBIT)
1822 && (on->dbdesc_seqnum == 0)) {
1823 on->dbdesc_seqnum = monotime(NULL);
1824 }
1825
1826 dbdesc->options[0] = on->ospf6_if->area->options[0];
1827 dbdesc->options[1] = on->ospf6_if->area->options[1];
1828 dbdesc->options[2] = on->ospf6_if->area->options[2];
1829 dbdesc->ifmtu = htons(on->ospf6_if->ifmtu);
1830 dbdesc->bits = on->dbdesc_bits;
1831 dbdesc->seqnum = htonl(on->dbdesc_seqnum);
1832
1833 /* if this is not initial one, set LSA headers in dbdesc */
1834 p = (uint8_t *)((caddr_t)dbdesc + sizeof(struct ospf6_dbdesc));
1835 if (!CHECK_FLAG(on->dbdesc_bits, OSPF6_DBDESC_IBIT)) {
1836 for (ALL_LSDB(on->dbdesc_list, lsa)) {
1837 ospf6_lsa_age_update_to_send(lsa,
1838 on->ospf6_if->transdelay);
1839
1840 /* MTU check */
1841 if (p - sendbuf + sizeof(struct ospf6_lsa_header)
1842 > ospf6_packet_max(on->ospf6_if)) {
1843 ospf6_lsdb_lsa_unlock(lsa);
1844 break;
1845 }
1846 memcpy(p, lsa->header, sizeof(struct ospf6_lsa_header));
1847 p += sizeof(struct ospf6_lsa_header);
1848 }
1849 }
1850
1851 oh->type = OSPF6_MESSAGE_TYPE_DBDESC;
1852 oh->length = htons(p - sendbuf);
1853
1854
1855 if (on->ospf6_if->state == OSPF6_INTERFACE_POINTTOPOINT)
1856 dst = &allspfrouters6;
1857 else
1858 dst = &on->linklocal_addr;
1859
1860 on->ospf6_if->db_desc_out++;
1861
1862 ospf6_send(on->ospf6_if->linklocal_addr, dst, on->ospf6_if, oh);
1863
1864 return 0;
1865 }
1866
1867 int ospf6_dbdesc_send_newone(struct thread *thread)
1868 {
1869 struct ospf6_neighbor *on;
1870 struct ospf6_lsa *lsa;
1871 unsigned int size = 0;
1872
1873 on = (struct ospf6_neighbor *)THREAD_ARG(thread);
1874 ospf6_lsdb_remove_all(on->dbdesc_list);
1875
1876 /* move LSAs from summary_list to dbdesc_list (within neighbor
1877 structure)
1878 so that ospf6_send_dbdesc () can send those LSAs */
1879 size = sizeof(struct ospf6_lsa_header) + sizeof(struct ospf6_dbdesc);
1880 for (ALL_LSDB(on->summary_list, lsa)) {
1881 if (size + sizeof(struct ospf6_lsa_header)
1882 > ospf6_packet_max(on->ospf6_if)) {
1883 ospf6_lsdb_lsa_unlock(lsa);
1884 break;
1885 }
1886
1887 ospf6_lsdb_add(ospf6_lsa_copy(lsa), on->dbdesc_list);
1888 ospf6_lsdb_remove(lsa, on->summary_list);
1889 size += sizeof(struct ospf6_lsa_header);
1890 }
1891
1892 if (on->summary_list->count == 0)
1893 UNSET_FLAG(on->dbdesc_bits, OSPF6_DBDESC_MBIT);
1894
1895 /* If slave, More bit check must be done here */
1896 if (!CHECK_FLAG(on->dbdesc_bits, OSPF6_DBDESC_MSBIT) && /* Slave */
1897 !CHECK_FLAG(on->dbdesc_last.bits, OSPF6_DBDESC_MBIT)
1898 && !CHECK_FLAG(on->dbdesc_bits, OSPF6_DBDESC_MBIT))
1899 thread_add_event(master, exchange_done, on, 0, NULL);
1900
1901 thread_execute(master, ospf6_dbdesc_send, on, 0);
1902 return 0;
1903 }
1904
1905 int ospf6_lsreq_send(struct thread *thread)
1906 {
1907 struct ospf6_neighbor *on;
1908 struct ospf6_header *oh;
1909 struct ospf6_lsreq_entry *e;
1910 uint8_t *p;
1911 struct ospf6_lsa *lsa, *last_req;
1912
1913 on = (struct ospf6_neighbor *)THREAD_ARG(thread);
1914 on->thread_send_lsreq = (struct thread *)NULL;
1915
1916 /* LSReq will be sent only in ExStart or Loading */
1917 if (on->state != OSPF6_NEIGHBOR_EXCHANGE
1918 && on->state != OSPF6_NEIGHBOR_LOADING) {
1919 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_LSREQ, SEND))
1920 zlog_debug("Quit to send LSReq to neighbor %s state %s",
1921 on->name,
1922 ospf6_neighbor_state_str[on->state]);
1923 return 0;
1924 }
1925
1926 /* schedule loading_done if request list is empty */
1927 if (on->request_list->count == 0) {
1928 thread_add_event(master, loading_done, on, 0, NULL);
1929 return 0;
1930 }
1931
1932 memset(sendbuf, 0, iobuflen);
1933 oh = (struct ospf6_header *)sendbuf;
1934 last_req = NULL;
1935
1936 /* set Request entries in lsreq */
1937 p = (uint8_t *)((caddr_t)oh + sizeof(struct ospf6_header));
1938 for (ALL_LSDB(on->request_list, lsa)) {
1939 /* MTU check */
1940 if (p - sendbuf + sizeof(struct ospf6_lsreq_entry)
1941 > ospf6_packet_max(on->ospf6_if)) {
1942 ospf6_lsdb_lsa_unlock(lsa);
1943 break;
1944 }
1945
1946 e = (struct ospf6_lsreq_entry *)p;
1947 e->type = lsa->header->type;
1948 e->id = lsa->header->id;
1949 e->adv_router = lsa->header->adv_router;
1950 p += sizeof(struct ospf6_lsreq_entry);
1951 last_req = lsa;
1952 }
1953
1954 if (last_req != NULL) {
1955 if (on->last_ls_req != NULL) {
1956 ospf6_lsa_unlock(on->last_ls_req);
1957 }
1958 ospf6_lsa_lock(last_req);
1959 on->last_ls_req = last_req;
1960 }
1961
1962 oh->type = OSPF6_MESSAGE_TYPE_LSREQ;
1963 oh->length = htons(p - sendbuf);
1964
1965 on->ospf6_if->ls_req_out++;
1966
1967 if (on->ospf6_if->state == OSPF6_INTERFACE_POINTTOPOINT)
1968 ospf6_send(on->ospf6_if->linklocal_addr, &allspfrouters6,
1969 on->ospf6_if, oh);
1970 else
1971 ospf6_send(on->ospf6_if->linklocal_addr, &on->linklocal_addr,
1972 on->ospf6_if, oh);
1973
1974 /* set next thread */
1975 if (on->request_list->count != 0) {
1976 on->thread_send_lsreq = NULL;
1977 thread_add_timer(master, ospf6_lsreq_send, on,
1978 on->ospf6_if->rxmt_interval,
1979 &on->thread_send_lsreq);
1980 }
1981
1982 return 0;
1983 }
1984
1985 static void ospf6_send_lsupdate(struct ospf6_neighbor *on,
1986 struct ospf6_interface *oi,
1987 struct ospf6_header *oh)
1988 {
1989
1990 if (on) {
1991 on->ospf6_if->ls_upd_out++;
1992
1993 if ((on->ospf6_if->state == OSPF6_INTERFACE_POINTTOPOINT)
1994 || (on->ospf6_if->state == OSPF6_INTERFACE_DR)
1995 || (on->ospf6_if->state == OSPF6_INTERFACE_BDR)) {
1996 ospf6_send(on->ospf6_if->linklocal_addr,
1997 &allspfrouters6, on->ospf6_if, oh);
1998 } else {
1999 ospf6_send(on->ospf6_if->linklocal_addr,
2000 &on->linklocal_addr, on->ospf6_if, oh);
2001 }
2002 } else if (oi) {
2003
2004 oi->ls_upd_out++;
2005
2006 if ((oi->state == OSPF6_INTERFACE_POINTTOPOINT)
2007 || (oi->state == OSPF6_INTERFACE_DR)
2008 || (oi->state == OSPF6_INTERFACE_BDR)) {
2009 ospf6_send(oi->linklocal_addr, &allspfrouters6, oi, oh);
2010 } else {
2011 ospf6_send(oi->linklocal_addr, &alldrouters6, oi, oh);
2012 }
2013 }
2014 }
2015
2016 int ospf6_lsupdate_send_neighbor(struct thread *thread)
2017 {
2018 struct ospf6_neighbor *on;
2019 struct ospf6_header *oh;
2020 struct ospf6_lsupdate *lsupdate;
2021 uint8_t *p;
2022 int lsa_cnt;
2023 struct ospf6_lsa *lsa;
2024
2025 on = (struct ospf6_neighbor *)THREAD_ARG(thread);
2026 on->thread_send_lsupdate = (struct thread *)NULL;
2027
2028 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
2029 zlog_debug("LSUpdate to neighbor %s", on->name);
2030
2031 if (on->state < OSPF6_NEIGHBOR_EXCHANGE) {
2032 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
2033 zlog_debug("Quit to send (neighbor state %s)",
2034 ospf6_neighbor_state_str[on->state]);
2035 return 0;
2036 }
2037
2038 memset(sendbuf, 0, iobuflen);
2039 oh = (struct ospf6_header *)sendbuf;
2040 lsupdate = (struct ospf6_lsupdate *)((caddr_t)oh
2041 + sizeof(struct ospf6_header));
2042
2043 p = (uint8_t *)((caddr_t)lsupdate + sizeof(struct ospf6_lsupdate));
2044 lsa_cnt = 0;
2045
2046 /* lsupdate_list lists those LSA which doesn't need to be
2047 retransmitted. remove those from the list */
2048 for (ALL_LSDB(on->lsupdate_list, lsa)) {
2049 /* MTU check */
2050 if ((p - sendbuf + (unsigned int)OSPF6_LSA_SIZE(lsa->header))
2051 > ospf6_packet_max(on->ospf6_if)) {
2052 if (lsa_cnt) {
2053 oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2054 oh->length = htons(p - sendbuf);
2055 lsupdate->lsa_number = htonl(lsa_cnt);
2056
2057 ospf6_send_lsupdate(on, NULL, oh);
2058
2059 memset(sendbuf, 0, iobuflen);
2060 oh = (struct ospf6_header *)sendbuf;
2061 lsupdate = (struct ospf6_lsupdate
2062 *)((caddr_t)oh
2063 + sizeof(struct
2064 ospf6_header));
2065
2066 p = (uint8_t *)((caddr_t)lsupdate
2067 + sizeof(struct
2068 ospf6_lsupdate));
2069 lsa_cnt = 0;
2070 }
2071 }
2072
2073 ospf6_lsa_age_update_to_send(lsa, on->ospf6_if->transdelay);
2074 memcpy(p, lsa->header, OSPF6_LSA_SIZE(lsa->header));
2075 p += OSPF6_LSA_SIZE(lsa->header);
2076 lsa_cnt++;
2077
2078 assert(lsa->lock == 2);
2079 ospf6_lsdb_remove(lsa, on->lsupdate_list);
2080 }
2081
2082 if (lsa_cnt) {
2083 oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2084 oh->length = htons(p - sendbuf);
2085 lsupdate->lsa_number = htonl(lsa_cnt);
2086 ospf6_send_lsupdate(on, NULL, oh);
2087 }
2088
2089 /* The addresses used for retransmissions are different from those sent
2090 the
2091 first time and so we need to separate them here.
2092 */
2093 memset(sendbuf, 0, iobuflen);
2094 oh = (struct ospf6_header *)sendbuf;
2095 lsupdate = (struct ospf6_lsupdate *)((caddr_t)oh
2096 + sizeof(struct ospf6_header));
2097 p = (uint8_t *)((caddr_t)lsupdate + sizeof(struct ospf6_lsupdate));
2098 lsa_cnt = 0;
2099
2100 for (ALL_LSDB(on->retrans_list, lsa)) {
2101 /* MTU check */
2102 if ((p - sendbuf + (unsigned int)OSPF6_LSA_SIZE(lsa->header))
2103 > ospf6_packet_max(on->ospf6_if)) {
2104 if (lsa_cnt) {
2105 oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2106 oh->length = htons(p - sendbuf);
2107 lsupdate->lsa_number = htonl(lsa_cnt);
2108
2109 if (on->ospf6_if->state
2110 == OSPF6_INTERFACE_POINTTOPOINT) {
2111 ospf6_send(on->ospf6_if->linklocal_addr,
2112 &allspfrouters6,
2113 on->ospf6_if, oh);
2114 } else {
2115 ospf6_send(on->ospf6_if->linklocal_addr,
2116 &on->linklocal_addr,
2117 on->ospf6_if, oh);
2118 }
2119
2120 memset(sendbuf, 0, iobuflen);
2121 oh = (struct ospf6_header *)sendbuf;
2122 lsupdate = (struct ospf6_lsupdate
2123 *)((caddr_t)oh
2124 + sizeof(struct
2125 ospf6_header));
2126 p = (uint8_t *)((caddr_t)lsupdate
2127 + sizeof(struct
2128 ospf6_lsupdate));
2129 lsa_cnt = 0;
2130 }
2131 }
2132
2133 ospf6_lsa_age_update_to_send(lsa, on->ospf6_if->transdelay);
2134 memcpy(p, lsa->header, OSPF6_LSA_SIZE(lsa->header));
2135 p += OSPF6_LSA_SIZE(lsa->header);
2136 lsa_cnt++;
2137 }
2138
2139 if (lsa_cnt) {
2140 oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2141 oh->length = htons(p - sendbuf);
2142 lsupdate->lsa_number = htonl(lsa_cnt);
2143
2144 if (on->ospf6_if->state == OSPF6_INTERFACE_POINTTOPOINT)
2145 ospf6_send(on->ospf6_if->linklocal_addr,
2146 &allspfrouters6, on->ospf6_if, oh);
2147 else
2148 ospf6_send(on->ospf6_if->linklocal_addr,
2149 &on->linklocal_addr, on->ospf6_if, oh);
2150 }
2151
2152 if (on->lsupdate_list->count != 0) {
2153 on->thread_send_lsupdate = NULL;
2154 thread_add_event(master, ospf6_lsupdate_send_neighbor, on, 0,
2155 &on->thread_send_lsupdate);
2156 } else if (on->retrans_list->count != 0) {
2157 on->thread_send_lsupdate = NULL;
2158 thread_add_timer(master, ospf6_lsupdate_send_neighbor, on,
2159 on->ospf6_if->rxmt_interval,
2160 &on->thread_send_lsupdate);
2161 }
2162 return 0;
2163 }
2164
2165 int ospf6_lsupdate_send_neighbor_now(struct ospf6_neighbor *on,
2166 struct ospf6_lsa *lsa)
2167 {
2168 struct ospf6_header *oh;
2169 struct ospf6_lsupdate *lsupdate;
2170 uint8_t *p;
2171 int lsa_cnt = 0;
2172
2173 memset(sendbuf, 0, iobuflen);
2174 oh = (struct ospf6_header *)sendbuf;
2175 lsupdate = (struct ospf6_lsupdate *)((caddr_t)oh
2176 + sizeof(struct ospf6_header));
2177
2178 p = (uint8_t *)((caddr_t)lsupdate + sizeof(struct ospf6_lsupdate));
2179 ospf6_lsa_age_update_to_send(lsa, on->ospf6_if->transdelay);
2180 memcpy(p, lsa->header, OSPF6_LSA_SIZE(lsa->header));
2181 p += OSPF6_LSA_SIZE(lsa->header);
2182 lsa_cnt++;
2183
2184 oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2185 oh->length = htons(p - sendbuf);
2186 lsupdate->lsa_number = htonl(lsa_cnt);
2187
2188 if (IS_OSPF6_DEBUG_FLOODING
2189 || IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
2190 zlog_debug("%s: Send lsupdate with lsa %s (age %u)",
2191 __PRETTY_FUNCTION__, lsa->name,
2192 ntohs(lsa->header->age));
2193
2194 ospf6_send_lsupdate(on, NULL, oh);
2195
2196 return 0;
2197 }
2198
2199 int ospf6_lsupdate_send_interface(struct thread *thread)
2200 {
2201 struct ospf6_interface *oi;
2202 struct ospf6_header *oh;
2203 struct ospf6_lsupdate *lsupdate;
2204 uint8_t *p;
2205 int lsa_cnt;
2206 struct ospf6_lsa *lsa;
2207
2208 oi = (struct ospf6_interface *)THREAD_ARG(thread);
2209 oi->thread_send_lsupdate = (struct thread *)NULL;
2210
2211 if (oi->state <= OSPF6_INTERFACE_WAITING) {
2212 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
2213 zlog_debug(
2214 "Quit to send LSUpdate to interface %s state %s",
2215 oi->interface->name,
2216 ospf6_interface_state_str[oi->state]);
2217 return 0;
2218 }
2219
2220 /* if we have nothing to send, return */
2221 if (oi->lsupdate_list->count == 0)
2222 return 0;
2223
2224 memset(sendbuf, 0, iobuflen);
2225 oh = (struct ospf6_header *)sendbuf;
2226 lsupdate = (struct ospf6_lsupdate *)((caddr_t)oh
2227 + sizeof(struct ospf6_header));
2228
2229 p = (uint8_t *)((caddr_t)lsupdate + sizeof(struct ospf6_lsupdate));
2230 lsa_cnt = 0;
2231
2232 for (ALL_LSDB(oi->lsupdate_list, lsa)) {
2233 /* MTU check */
2234 if ((p - sendbuf + ((unsigned int)OSPF6_LSA_SIZE(lsa->header)))
2235 > ospf6_packet_max(oi)) {
2236 if (lsa_cnt) {
2237 oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2238 oh->length = htons(p - sendbuf);
2239 lsupdate->lsa_number = htonl(lsa_cnt);
2240
2241 ospf6_send_lsupdate(NULL, oi, oh);
2242 if (IS_OSPF6_DEBUG_MESSAGE(
2243 OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
2244 zlog_debug("%s: LSUpdate length %d",
2245 __PRETTY_FUNCTION__,
2246 ntohs(oh->length));
2247
2248 memset(sendbuf, 0, iobuflen);
2249 oh = (struct ospf6_header *)sendbuf;
2250 lsupdate = (struct ospf6_lsupdate
2251 *)((caddr_t)oh
2252 + sizeof(struct
2253 ospf6_header));
2254
2255 p = (uint8_t *)((caddr_t)lsupdate
2256 + sizeof(struct
2257 ospf6_lsupdate));
2258 lsa_cnt = 0;
2259 }
2260 }
2261
2262 ospf6_lsa_age_update_to_send(lsa, oi->transdelay);
2263 memcpy(p, lsa->header, OSPF6_LSA_SIZE(lsa->header));
2264 p += OSPF6_LSA_SIZE(lsa->header);
2265 lsa_cnt++;
2266
2267 assert(lsa->lock == 2);
2268 ospf6_lsdb_remove(lsa, oi->lsupdate_list);
2269 }
2270
2271 if (lsa_cnt) {
2272 oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2273 oh->length = htons(p - sendbuf);
2274 lsupdate->lsa_number = htonl(lsa_cnt);
2275
2276 ospf6_send_lsupdate(NULL, oi, oh);
2277 }
2278
2279 if (oi->lsupdate_list->count > 0) {
2280 oi->thread_send_lsupdate = NULL;
2281 thread_add_event(master, ospf6_lsupdate_send_interface, oi, 0,
2282 &oi->thread_send_lsupdate);
2283 }
2284
2285 return 0;
2286 }
2287
2288 int ospf6_lsack_send_neighbor(struct thread *thread)
2289 {
2290 struct ospf6_neighbor *on;
2291 struct ospf6_header *oh;
2292 uint8_t *p;
2293 struct ospf6_lsa *lsa;
2294 int lsa_cnt = 0;
2295
2296 on = (struct ospf6_neighbor *)THREAD_ARG(thread);
2297 on->thread_send_lsack = (struct thread *)NULL;
2298
2299 if (on->state < OSPF6_NEIGHBOR_EXCHANGE) {
2300 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_LSACK, SEND))
2301 zlog_debug("Quit to send LSAck to neighbor %s state %s",
2302 on->name,
2303 ospf6_neighbor_state_str[on->state]);
2304 return 0;
2305 }
2306
2307 /* if we have nothing to send, return */
2308 if (on->lsack_list->count == 0)
2309 return 0;
2310
2311 memset(sendbuf, 0, iobuflen);
2312 oh = (struct ospf6_header *)sendbuf;
2313
2314 p = (uint8_t *)((caddr_t)oh + sizeof(struct ospf6_header));
2315
2316 for (ALL_LSDB(on->lsack_list, lsa)) {
2317 /* MTU check */
2318 if (p - sendbuf + sizeof(struct ospf6_lsa_header)
2319 > ospf6_packet_max(on->ospf6_if)) {
2320 /* if we run out of packet size/space here,
2321 better to try again soon. */
2322 if (lsa_cnt) {
2323 oh->type = OSPF6_MESSAGE_TYPE_LSACK;
2324 oh->length = htons(p - sendbuf);
2325
2326 on->ospf6_if->ls_ack_out++;
2327
2328 ospf6_send(on->ospf6_if->linklocal_addr,
2329 &on->linklocal_addr, on->ospf6_if,
2330 oh);
2331
2332 memset(sendbuf, 0, iobuflen);
2333 oh = (struct ospf6_header *)sendbuf;
2334 p = (uint8_t *)((caddr_t)oh
2335 + sizeof(struct ospf6_header));
2336 lsa_cnt = 0;
2337 }
2338 }
2339
2340 ospf6_lsa_age_update_to_send(lsa, on->ospf6_if->transdelay);
2341 memcpy(p, lsa->header, sizeof(struct ospf6_lsa_header));
2342 p += sizeof(struct ospf6_lsa_header);
2343
2344 assert(lsa->lock == 2);
2345 ospf6_lsdb_remove(lsa, on->lsack_list);
2346 lsa_cnt++;
2347 }
2348
2349 if (lsa_cnt) {
2350 oh->type = OSPF6_MESSAGE_TYPE_LSACK;
2351 oh->length = htons(p - sendbuf);
2352
2353 on->ospf6_if->ls_ack_out++;
2354
2355 ospf6_send(on->ospf6_if->linklocal_addr, &on->linklocal_addr,
2356 on->ospf6_if, oh);
2357 }
2358
2359 if (on->lsack_list->count > 0)
2360 thread_add_event(master, ospf6_lsack_send_neighbor, on, 0,
2361 &on->thread_send_lsack);
2362
2363 return 0;
2364 }
2365
2366 int ospf6_lsack_send_interface(struct thread *thread)
2367 {
2368 struct ospf6_interface *oi;
2369 struct ospf6_header *oh;
2370 uint8_t *p;
2371 struct ospf6_lsa *lsa;
2372 int lsa_cnt = 0;
2373
2374 oi = (struct ospf6_interface *)THREAD_ARG(thread);
2375 oi->thread_send_lsack = (struct thread *)NULL;
2376
2377 if (oi->state <= OSPF6_INTERFACE_WAITING) {
2378 if (IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_LSACK, SEND))
2379 zlog_debug(
2380 "Quit to send LSAck to interface %s state %s",
2381 oi->interface->name,
2382 ospf6_interface_state_str[oi->state]);
2383 return 0;
2384 }
2385
2386 /* if we have nothing to send, return */
2387 if (oi->lsack_list->count == 0)
2388 return 0;
2389
2390 memset(sendbuf, 0, iobuflen);
2391 oh = (struct ospf6_header *)sendbuf;
2392
2393 p = (uint8_t *)((caddr_t)oh + sizeof(struct ospf6_header));
2394
2395 for (ALL_LSDB(oi->lsack_list, lsa)) {
2396 /* MTU check */
2397 if (p - sendbuf + sizeof(struct ospf6_lsa_header)
2398 > ospf6_packet_max(oi)) {
2399 /* if we run out of packet size/space here,
2400 better to try again soon. */
2401 THREAD_OFF(oi->thread_send_lsack);
2402 thread_add_event(master, ospf6_lsack_send_interface, oi,
2403 0, &oi->thread_send_lsack);
2404
2405 ospf6_lsdb_lsa_unlock(lsa);
2406 break;
2407 }
2408
2409 ospf6_lsa_age_update_to_send(lsa, oi->transdelay);
2410 memcpy(p, lsa->header, sizeof(struct ospf6_lsa_header));
2411 p += sizeof(struct ospf6_lsa_header);
2412
2413 assert(lsa->lock == 2);
2414 ospf6_lsdb_remove(lsa, oi->lsack_list);
2415 lsa_cnt++;
2416 }
2417
2418 if (lsa_cnt) {
2419 oh->type = OSPF6_MESSAGE_TYPE_LSACK;
2420 oh->length = htons(p - sendbuf);
2421
2422 if ((oi->state == OSPF6_INTERFACE_POINTTOPOINT)
2423 || (oi->state == OSPF6_INTERFACE_DR)
2424 || (oi->state == OSPF6_INTERFACE_BDR))
2425 ospf6_send(oi->linklocal_addr, &allspfrouters6, oi, oh);
2426 else
2427 ospf6_send(oi->linklocal_addr, &alldrouters6, oi, oh);
2428 }
2429
2430 if (oi->lsack_list->count > 0)
2431 thread_add_event(master, ospf6_lsack_send_interface, oi, 0,
2432 &oi->thread_send_lsack);
2433
2434 return 0;
2435 }
2436
2437
2438 /* Commands */
2439 DEFUN (debug_ospf6_message,
2440 debug_ospf6_message_cmd,
2441 "debug ospf6 message <unknown|hello|dbdesc|lsreq|lsupdate|lsack|all> [<send|recv>]",
2442 DEBUG_STR
2443 OSPF6_STR
2444 "Debug OSPFv3 message\n"
2445 "Debug Unknown message\n"
2446 "Debug Hello message\n"
2447 "Debug Database Description message\n"
2448 "Debug Link State Request message\n"
2449 "Debug Link State Update message\n"
2450 "Debug Link State Acknowledgement message\n"
2451 "Debug All message\n"
2452 "Debug only sending message\n"
2453 "Debug only receiving message\n")
2454 {
2455 int idx_packet = 3;
2456 int idx_send_recv = 4;
2457 unsigned char level = 0;
2458 int type = 0;
2459 int i;
2460
2461 /* check type */
2462 if (!strncmp(argv[idx_packet]->arg, "u", 1))
2463 type = OSPF6_MESSAGE_TYPE_UNKNOWN;
2464 else if (!strncmp(argv[idx_packet]->arg, "h", 1))
2465 type = OSPF6_MESSAGE_TYPE_HELLO;
2466 else if (!strncmp(argv[idx_packet]->arg, "d", 1))
2467 type = OSPF6_MESSAGE_TYPE_DBDESC;
2468 else if (!strncmp(argv[idx_packet]->arg, "lsr", 3))
2469 type = OSPF6_MESSAGE_TYPE_LSREQ;
2470 else if (!strncmp(argv[idx_packet]->arg, "lsu", 3))
2471 type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2472 else if (!strncmp(argv[idx_packet]->arg, "lsa", 3))
2473 type = OSPF6_MESSAGE_TYPE_LSACK;
2474 else if (!strncmp(argv[idx_packet]->arg, "a", 1))
2475 type = OSPF6_MESSAGE_TYPE_ALL;
2476
2477 if (argc == 4)
2478 level = OSPF6_DEBUG_MESSAGE_SEND | OSPF6_DEBUG_MESSAGE_RECV;
2479 else if (!strncmp(argv[idx_send_recv]->arg, "s", 1))
2480 level = OSPF6_DEBUG_MESSAGE_SEND;
2481 else if (!strncmp(argv[idx_send_recv]->arg, "r", 1))
2482 level = OSPF6_DEBUG_MESSAGE_RECV;
2483
2484 if (type == OSPF6_MESSAGE_TYPE_ALL) {
2485 for (i = 0; i < 6; i++)
2486 OSPF6_DEBUG_MESSAGE_ON(i, level);
2487 } else
2488 OSPF6_DEBUG_MESSAGE_ON(type, level);
2489
2490 return CMD_SUCCESS;
2491 }
2492
2493 DEFUN (no_debug_ospf6_message,
2494 no_debug_ospf6_message_cmd,
2495 "no debug ospf6 message <unknown|hello|dbdesc|lsreq|lsupdate|lsack|all> [<send|recv>]",
2496 NO_STR
2497 DEBUG_STR
2498 OSPF6_STR
2499 "Debug OSPFv3 message\n"
2500 "Debug Unknown message\n"
2501 "Debug Hello message\n"
2502 "Debug Database Description message\n"
2503 "Debug Link State Request message\n"
2504 "Debug Link State Update message\n"
2505 "Debug Link State Acknowledgement message\n"
2506 "Debug All message\n"
2507 "Debug only sending message\n"
2508 "Debug only receiving message\n")
2509 {
2510 int idx_packet = 4;
2511 int idx_send_recv = 5;
2512 unsigned char level = 0;
2513 int type = 0;
2514 int i;
2515
2516 /* check type */
2517 if (!strncmp(argv[idx_packet]->arg, "u", 1))
2518 type = OSPF6_MESSAGE_TYPE_UNKNOWN;
2519 else if (!strncmp(argv[idx_packet]->arg, "h", 1))
2520 type = OSPF6_MESSAGE_TYPE_HELLO;
2521 else if (!strncmp(argv[idx_packet]->arg, "d", 1))
2522 type = OSPF6_MESSAGE_TYPE_DBDESC;
2523 else if (!strncmp(argv[idx_packet]->arg, "lsr", 3))
2524 type = OSPF6_MESSAGE_TYPE_LSREQ;
2525 else if (!strncmp(argv[idx_packet]->arg, "lsu", 3))
2526 type = OSPF6_MESSAGE_TYPE_LSUPDATE;
2527 else if (!strncmp(argv[idx_packet]->arg, "lsa", 3))
2528 type = OSPF6_MESSAGE_TYPE_LSACK;
2529 else if (!strncmp(argv[idx_packet]->arg, "a", 1))
2530 type = OSPF6_MESSAGE_TYPE_ALL;
2531
2532 if (argc == 5)
2533 level = OSPF6_DEBUG_MESSAGE_SEND | OSPF6_DEBUG_MESSAGE_RECV;
2534 else if (!strncmp(argv[idx_send_recv]->arg, "s", 1))
2535 level = OSPF6_DEBUG_MESSAGE_SEND;
2536 else if (!strncmp(argv[idx_send_recv]->arg, "r", 1))
2537 level = OSPF6_DEBUG_MESSAGE_RECV;
2538
2539 if (type == OSPF6_MESSAGE_TYPE_ALL) {
2540 for (i = 0; i < 6; i++)
2541 OSPF6_DEBUG_MESSAGE_OFF(i, level);
2542 } else
2543 OSPF6_DEBUG_MESSAGE_OFF(type, level);
2544
2545 return CMD_SUCCESS;
2546 }
2547
2548
2549 int config_write_ospf6_debug_message(struct vty *vty)
2550 {
2551 const char *type_str[] = {"unknown", "hello", "dbdesc",
2552 "lsreq", "lsupdate", "lsack"};
2553 unsigned char s = 0, r = 0;
2554 int i;
2555
2556 for (i = 0; i < 6; i++) {
2557 if (IS_OSPF6_DEBUG_MESSAGE(i, SEND))
2558 s |= 1 << i;
2559 if (IS_OSPF6_DEBUG_MESSAGE(i, RECV))
2560 r |= 1 << i;
2561 }
2562
2563 if (s == 0x3f && r == 0x3f) {
2564 vty_out(vty, "debug ospf6 message all\n");
2565 return 0;
2566 }
2567
2568 if (s == 0x3f && r == 0) {
2569 vty_out(vty, "debug ospf6 message all send\n");
2570 return 0;
2571 } else if (s == 0 && r == 0x3f) {
2572 vty_out(vty, "debug ospf6 message all recv\n");
2573 return 0;
2574 }
2575
2576 /* Unknown message is logged by default */
2577 if (!IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, SEND)
2578 && !IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
2579 vty_out(vty, "no debug ospf6 message unknown\n");
2580 else if (!IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, SEND))
2581 vty_out(vty, "no debug ospf6 message unknown send\n");
2582 else if (!IS_OSPF6_DEBUG_MESSAGE(OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
2583 vty_out(vty, "no debug ospf6 message unknown recv\n");
2584
2585 for (i = 1; i < 6; i++) {
2586 if (IS_OSPF6_DEBUG_MESSAGE(i, SEND)
2587 && IS_OSPF6_DEBUG_MESSAGE(i, RECV))
2588 vty_out(vty, "debug ospf6 message %s\n", type_str[i]);
2589 else if (IS_OSPF6_DEBUG_MESSAGE(i, SEND))
2590 vty_out(vty, "debug ospf6 message %s send\n",
2591 type_str[i]);
2592 else if (IS_OSPF6_DEBUG_MESSAGE(i, RECV))
2593 vty_out(vty, "debug ospf6 message %s recv\n",
2594 type_str[i]);
2595 }
2596
2597 return 0;
2598 }
2599
2600 void install_element_ospf6_debug_message(void)
2601 {
2602 install_element(ENABLE_NODE, &debug_ospf6_message_cmd);
2603 install_element(ENABLE_NODE, &no_debug_ospf6_message_cmd);
2604 install_element(CONFIG_NODE, &debug_ospf6_message_cmd);
2605 install_element(CONFIG_NODE, &no_debug_ospf6_message_cmd);
2606 }