]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_packet.c
2003-03-25 Paul Jakma <paul@dishone.st>
[mirror_frr.git] / ospfd / ospf_packet.c
1 /*
2 * OSPF Sending and Receiving OSPF Packets.
3 * Copyright (C) 1999, 2000 Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23 #include <zebra.h>
24
25 #include "thread.h"
26 #include "memory.h"
27 #include "linklist.h"
28 #include "prefix.h"
29 #include "if.h"
30 #include "table.h"
31 #include "sockunion.h"
32 #include "stream.h"
33 #include "log.h"
34 #include "md5-gnu.h"
35
36 #include "ospfd/ospfd.h"
37 #include "ospfd/ospf_network.h"
38 #include "ospfd/ospf_interface.h"
39 #include "ospfd/ospf_ism.h"
40 #include "ospfd/ospf_asbr.h"
41 #include "ospfd/ospf_lsa.h"
42 #include "ospfd/ospf_lsdb.h"
43 #include "ospfd/ospf_neighbor.h"
44 #include "ospfd/ospf_nsm.h"
45 #include "ospfd/ospf_packet.h"
46 #include "ospfd/ospf_spf.h"
47 #include "ospfd/ospf_flood.h"
48 #include "ospfd/ospf_dump.h"
49
50 static void ospf_ls_ack_send_list (struct ospf_interface *, list,
51 struct in_addr);
52
53 /* Packet Type String. */
54 char *ospf_packet_type_str[] =
55 {
56 "unknown",
57 "Hello",
58 "Database Description",
59 "Link State Request",
60 "Link State Update",
61 "Link State Acknowledgment",
62 };
63
64 extern int in_cksum (void *ptr, int nbytes);
65
66 /* OSPF authentication checking function */
67 int
68 ospf_auth_type (struct ospf_interface *oi)
69 {
70 int auth_type;
71
72 if (OSPF_IF_PARAM (oi, auth_type) == OSPF_AUTH_NOTSET)
73 auth_type = oi->area->auth_type;
74 else
75 auth_type = OSPF_IF_PARAM (oi, auth_type);
76
77 /* Handle case where MD5 key list is not configured aka Cisco */
78 if (auth_type == OSPF_AUTH_CRYPTOGRAPHIC &&
79 list_isempty (OSPF_IF_PARAM (oi, auth_crypt)))
80 return OSPF_AUTH_NULL;
81
82 return auth_type;
83
84 }
85
86 /* forward output pointer. */
87 void
88 ospf_output_forward (struct stream *s, int size)
89 {
90 s->putp += size;
91 }
92
93 struct ospf_packet *
94 ospf_packet_new (size_t size)
95 {
96 struct ospf_packet *new;
97
98 new = XCALLOC (MTYPE_OSPF_PACKET, sizeof (struct ospf_packet));
99 new->s = stream_new (size);
100
101 return new;
102 }
103
104 void
105 ospf_packet_free (struct ospf_packet *op)
106 {
107 if (op->s)
108 stream_free (op->s);
109
110 XFREE (MTYPE_OSPF_PACKET, op);
111
112 op = NULL;
113 }
114
115 struct ospf_fifo *
116 ospf_fifo_new ()
117 {
118 struct ospf_fifo *new;
119
120 new = XCALLOC (MTYPE_OSPF_FIFO, sizeof (struct ospf_fifo));
121 return new;
122 }
123
124 /* Add new packet to fifo. */
125 void
126 ospf_fifo_push (struct ospf_fifo *fifo, struct ospf_packet *op)
127 {
128 if (fifo->tail)
129 fifo->tail->next = op;
130 else
131 fifo->head = op;
132
133 fifo->tail = op;
134
135 fifo->count++;
136 }
137
138 /* Delete first packet from fifo. */
139 struct ospf_packet *
140 ospf_fifo_pop (struct ospf_fifo *fifo)
141 {
142 struct ospf_packet *op;
143
144 op = fifo->head;
145
146 if (op)
147 {
148 fifo->head = op->next;
149
150 if (fifo->head == NULL)
151 fifo->tail = NULL;
152
153 fifo->count--;
154 }
155
156 return op;
157 }
158
159 /* Return first fifo entry. */
160 struct ospf_packet *
161 ospf_fifo_head (struct ospf_fifo *fifo)
162 {
163 return fifo->head;
164 }
165
166 /* Flush ospf packet fifo. */
167 void
168 ospf_fifo_flush (struct ospf_fifo *fifo)
169 {
170 struct ospf_packet *op;
171 struct ospf_packet *next;
172
173 for (op = fifo->head; op; op = next)
174 {
175 next = op->next;
176 ospf_packet_free (op);
177 }
178 fifo->head = fifo->tail = NULL;
179 fifo->count = 0;
180 }
181
182 /* Free ospf packet fifo. */
183 void
184 ospf_fifo_free (struct ospf_fifo *fifo)
185 {
186 ospf_fifo_flush (fifo);
187
188 XFREE (MTYPE_OSPF_FIFO, fifo);
189 }
190
191 void
192 ospf_packet_add (struct ospf_interface *oi, struct ospf_packet *op)
193 {
194 /* Add packet to end of queue. */
195 ospf_fifo_push (oi->obuf, op);
196
197 /* Debug of packet fifo*/
198 /* ospf_fifo_debug (oi->obuf); */
199 }
200
201 void
202 ospf_packet_delete (struct ospf_interface *oi)
203 {
204 struct ospf_packet *op;
205
206 op = ospf_fifo_pop (oi->obuf);
207
208 if (op)
209 ospf_packet_free (op);
210 }
211
212 struct stream *
213 ospf_stream_copy (struct stream *new, struct stream *s)
214 {
215 new->endp = s->endp;
216 new->putp = s->putp;
217 new->getp = s->getp;
218
219 memcpy (new->data, s->data, stream_get_endp (s));
220
221 return new;
222 }
223
224 struct ospf_packet *
225 ospf_packet_dup (struct ospf_packet *op)
226 {
227 struct ospf_packet *new;
228
229 if (stream_get_endp(op->s) != op->length)
230 zlog_warn ("ospf_packet_dup stream %ld ospf_packet %d size mismatch",
231 STREAM_SIZE(op->s), op->length);
232
233 /* Reserve space for MD5 authentication that may be added later. */
234 new = ospf_packet_new (stream_get_endp(op->s) + OSPF_AUTH_MD5_SIZE);
235 ospf_stream_copy (new->s, op->s);
236
237 new->dst = op->dst;
238 new->length = op->length;
239
240 return new;
241 }
242
243 int
244 ospf_packet_max (struct ospf_interface *oi)
245 {
246 int max;
247
248 if ( ospf_auth_type (oi) == OSPF_AUTH_CRYPTOGRAPHIC)
249 max = oi->ifp->mtu - OSPF_AUTH_MD5_SIZE - 88;
250 else
251 max = oi->ifp->mtu - 88;
252
253 return max;
254 }
255
256 \f
257 int
258 ospf_check_md5_digest (struct ospf_interface *oi, struct stream *s,
259 u_int16_t length)
260 {
261 void *ibuf;
262 struct md5_ctx ctx;
263 unsigned char digest[OSPF_AUTH_MD5_SIZE];
264 unsigned char *pdigest;
265 struct crypt_key *ck;
266 struct ospf_header *ospfh;
267 struct ospf_neighbor *nbr;
268
269
270 ibuf = STREAM_PNT (s);
271 ospfh = (struct ospf_header *) ibuf;
272
273 /* Get pointer to the end of the packet. */
274 pdigest = ibuf + length;
275
276 /* Get secret key. */
277 ck = ospf_crypt_key_lookup (OSPF_IF_PARAM (oi, auth_crypt),
278 ospfh->u.crypt.key_id);
279 if (ck == NULL)
280 {
281 zlog_warn ("interface %s: ospf_check_md5 no key %d",
282 IF_NAME (oi), ospfh->u.crypt.key_id);
283 return 0;
284 }
285
286 /* check crypto seqnum. */
287 nbr = ospf_nbr_lookup_by_routerid (oi->nbrs, &ospfh->router_id);
288
289 if (nbr && ntohl(nbr->crypt_seqnum) > ntohl(ospfh->u.crypt.crypt_seqnum))
290 {
291 zlog_warn ("interface %s: ospf_check_md5 bad sequence %d (expect %d)",
292 IF_NAME (oi),
293 ntohl(ospfh->u.crypt.crypt_seqnum),
294 ntohl(nbr->crypt_seqnum));
295 return 0;
296 }
297
298 /* Generate a digest for the ospf packet - their digest + our digest. */
299 md5_init_ctx (&ctx);
300 md5_process_bytes (ibuf, length, &ctx);
301 md5_process_bytes (ck->auth_key, OSPF_AUTH_MD5_SIZE, &ctx);
302 md5_finish_ctx (&ctx, digest);
303
304 /* compare the two */
305 if (memcmp (pdigest, digest, OSPF_AUTH_MD5_SIZE))
306 {
307 zlog_warn ("interface %s: ospf_check_md5 checksum mismatch",
308 IF_NAME (oi));
309 return 0;
310 }
311
312 /* save neighbor's crypt_seqnum */
313 if (nbr)
314 nbr->crypt_seqnum = ospfh->u.crypt.crypt_seqnum;
315 return 1;
316 }
317
318 /* This function is called from ospf_write(), it will detect the
319 authentication scheme and if it is MD5, it will change the sequence
320 and update the MD5 digest. */
321 int
322 ospf_make_md5_digest (struct ospf_interface *oi, struct ospf_packet *op)
323 {
324 struct ospf_header *ospfh;
325 unsigned char digest[OSPF_AUTH_MD5_SIZE];
326 struct md5_ctx ctx;
327 void *ibuf;
328 unsigned long oldputp;
329 u_int32_t t;
330 struct crypt_key *ck;
331 char *auth_key;
332
333 ibuf = STREAM_DATA (op->s);
334 ospfh = (struct ospf_header *) ibuf;
335
336 if (ntohs (ospfh->auth_type) != OSPF_AUTH_CRYPTOGRAPHIC)
337 return 0;
338
339 /* We do this here so when we dup a packet, we don't have to
340 waste CPU rewriting other headers. */
341 t = (time(NULL) & 0xFFFFFFFF);
342 oi->crypt_seqnum = ( t > oi->crypt_seqnum ? t : oi->crypt_seqnum++);
343 ospfh->u.crypt.crypt_seqnum = htonl (oi->crypt_seqnum);
344
345 /* Get MD5 Authentication key from auth_key list. */
346 if (list_isempty (OSPF_IF_PARAM (oi, auth_crypt)))
347 auth_key = "";
348 else
349 {
350 ck = getdata (OSPF_IF_PARAM (oi, auth_crypt)->tail);
351 auth_key = ck->auth_key;
352 }
353
354 /* Generate a digest for the entire packet + our secret key. */
355 md5_init_ctx (&ctx);
356 md5_process_bytes (ibuf, ntohs (ospfh->length), &ctx);
357 md5_process_bytes (auth_key, OSPF_AUTH_MD5_SIZE, &ctx);
358 md5_finish_ctx (&ctx, digest);
359
360 /* Append md5 digest to the end of the stream. */
361 oldputp = stream_get_putp (op->s);
362 stream_set_putp (op->s, ntohs (ospfh->length));
363 stream_put (op->s, digest, OSPF_AUTH_MD5_SIZE);
364 stream_set_putp (op->s, oldputp);
365
366 /* We do *NOT* increment the OSPF header length. */
367 op->length = ntohs (ospfh->length) + OSPF_AUTH_MD5_SIZE;
368
369 if (stream_get_endp(op->s) != op->length)
370 zlog_warn("ospf_make_md5_digest: length mismatch stream %ld ospf_packet %d", stream_get_endp(op->s), op->length);
371
372 return OSPF_AUTH_MD5_SIZE;
373 }
374
375 \f
376 int
377 ospf_ls_req_timer (struct thread *thread)
378 {
379 struct ospf_neighbor *nbr;
380
381 nbr = THREAD_ARG (thread);
382 nbr->t_ls_req = NULL;
383
384 /* Send Link State Request. */
385 if (ospf_ls_request_count (nbr))
386 ospf_ls_req_send (nbr);
387
388 /* Set Link State Request retransmission timer. */
389 OSPF_NSM_TIMER_ON (nbr->t_ls_req, ospf_ls_req_timer, nbr->v_ls_req);
390
391 return 0;
392 }
393
394 void
395 ospf_ls_req_event (struct ospf_neighbor *nbr)
396 {
397 if (nbr->t_ls_req)
398 {
399 thread_cancel (nbr->t_ls_req);
400 nbr->t_ls_req = NULL;
401 }
402 nbr->t_ls_req = thread_add_event (master, ospf_ls_req_timer, nbr, 0);
403 }
404
405 /* Cyclic timer function. Fist registered in ospf_nbr_new () in
406 ospf_neighbor.c */
407 int
408 ospf_ls_upd_timer (struct thread *thread)
409 {
410 struct ospf_neighbor *nbr;
411
412 nbr = THREAD_ARG (thread);
413 nbr->t_ls_upd = NULL;
414
415 /* Send Link State Update. */
416 if (ospf_ls_retransmit_count (nbr) > 0)
417 {
418 list update;
419 struct ospf_lsdb *lsdb;
420 int i;
421 struct timeval now;
422 int retransmit_interval;
423
424 gettimeofday (&now, NULL);
425 retransmit_interval = OSPF_IF_PARAM (nbr->oi, retransmit_interval);
426
427 lsdb = &nbr->ls_rxmt;
428 update = list_new ();
429
430 for (i = OSPF_MIN_LSA; i < OSPF_MAX_LSA; i++)
431 {
432 struct route_table *table = lsdb->type[i].db;
433 struct route_node *rn;
434
435 for (rn = route_top (table); rn; rn = route_next (rn))
436 {
437 struct ospf_lsa *lsa;
438
439 if ((lsa = rn->info) != NULL)
440 /* Don't retransmit an LSA if we received it within
441 the last RxmtInterval seconds - this is to allow the
442 neighbour a chance to acknowledge the LSA as it may
443 have ben just received before the retransmit timer
444 fired. This is a small tweak to what is in the RFC,
445 but it will cut out out a lot of retransmit traffic
446 - MAG */
447 if (tv_cmp (tv_sub (now, lsa->tv_recv),
448 int2tv (retransmit_interval)) >= 0)
449 listnode_add (update, rn->info);
450 }
451 }
452
453 if (listcount (update) > 0)
454 ospf_ls_upd_send (nbr, update, OSPF_SEND_PACKET_DIRECT);
455 list_delete (update);
456 }
457
458 /* Set LS Update retransmission timer. */
459 OSPF_NSM_TIMER_ON (nbr->t_ls_upd, ospf_ls_upd_timer, nbr->v_ls_upd);
460
461 return 0;
462 }
463
464 int
465 ospf_ls_ack_timer (struct thread *thread)
466 {
467 struct ospf_interface *oi;
468
469 oi = THREAD_ARG (thread);
470 oi->t_ls_ack = NULL;
471
472 /* Send Link State Acknowledgment. */
473 if (listcount (oi->ls_ack) > 0)
474 ospf_ls_ack_send_delayed (oi);
475
476 /* Set LS Ack timer. */
477 OSPF_ISM_TIMER_ON (oi->t_ls_ack, ospf_ls_ack_timer, oi->v_ls_ack);
478
479 return 0;
480 }
481
482 int
483 ospf_write (struct thread *thread)
484 {
485 struct ospf *ospf = THREAD_ARG (thread);
486 struct ospf_interface *oi;
487 struct ospf_packet *op;
488 struct sockaddr_in sa_dst;
489 struct ip iph;
490 struct msghdr msg;
491 struct iovec iov[2];
492 u_char type;
493 int ret;
494 int flags = 0;
495 listnode node;
496
497 ospf->t_write = NULL;
498
499 node = listhead (ospf->oi_write_q);
500 assert (node);
501 oi = getdata (node);
502 assert (oi);
503
504 /* Get one packet from queue. */
505 op = ospf_fifo_head (oi->obuf);
506 assert (op);
507 assert (op->length >= OSPF_HEADER_SIZE);
508
509 if (op->dst.s_addr == htonl (OSPF_ALLSPFROUTERS)
510 || op->dst.s_addr == htonl (OSPF_ALLDROUTERS))
511 ospf_if_ipmulticast (ospf, oi->address, oi->ifp->ifindex);
512
513 /* Rewrite the md5 signature & update the seq */
514 ospf_make_md5_digest (oi, op);
515
516 memset (&sa_dst, 0, sizeof (sa_dst));
517 sa_dst.sin_family = AF_INET;
518 #ifdef HAVE_SIN_LEN
519 sa_dst.sin_len = sizeof(sa_dst);
520 #endif /* HAVE_SIN_LEN */
521 sa_dst.sin_addr = op->dst;
522 sa_dst.sin_port = htons (0);
523
524 /* Set DONTROUTE flag if dst is unicast. */
525 if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
526 if (!IN_MULTICAST (htonl (op->dst.s_addr)))
527 flags = MSG_DONTROUTE;
528
529 iph.ip_hl = sizeof (struct ip) >> 2;
530 iph.ip_v = IPVERSION;
531 iph.ip_tos = IPTOS_PREC_INTERNETCONTROL;
532 #if defined(__NetBSD__) || defined(__FreeBSD__)
533 iph.ip_len = iph.ip_hl*4 + op->length;
534 #else
535 iph.ip_len = htons (iph.ip_hl*4 + op->length);
536 #endif
537 iph.ip_id = 0;
538 iph.ip_off = 0;
539 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
540 iph.ip_ttl = OSPF_VL_IP_TTL;
541 else
542 iph.ip_ttl = OSPF_IP_TTL;
543 iph.ip_p = IPPROTO_OSPFIGP;
544 iph.ip_sum = 0;
545 iph.ip_src.s_addr = oi->address->u.prefix4.s_addr;
546 iph.ip_dst.s_addr = op->dst.s_addr;
547
548 memset (&msg, 0, sizeof (msg));
549 msg.msg_name = &sa_dst;
550 msg.msg_namelen = sizeof (sa_dst);
551 msg.msg_iov = iov;
552 msg.msg_iovlen = 2;
553 iov[0].iov_base = (char*)&iph;
554 iov[0].iov_len = iph.ip_hl*4;
555 iov[1].iov_base = STREAM_DATA (op->s);
556 iov[1].iov_len = op->length;
557
558 ret = sendmsg (ospf->fd, &msg, flags);
559
560 if (ret < 0)
561 zlog_warn ("*** sendmsg in ospf_write failed with %s", strerror (errno));
562
563 /* Retrieve OSPF packet type. */
564 stream_set_getp (op->s, 1);
565 type = stream_getc (op->s);
566
567 /* Show debug sending packet. */
568 if (IS_DEBUG_OSPF_PACKET (type - 1, SEND))
569 {
570 if (IS_DEBUG_OSPF_PACKET (type - 1, DETAIL))
571 {
572 zlog_info ("-----------------------------------------------------");
573 stream_set_getp (op->s, 0);
574 ospf_packet_dump (op->s);
575 }
576
577 zlog_info ("%s sent to [%s] via [%s].",
578 ospf_packet_type_str[type], inet_ntoa (op->dst),
579 IF_NAME (oi));
580
581 if (IS_DEBUG_OSPF_PACKET (type - 1, DETAIL))
582 zlog_info ("-----------------------------------------------------");
583 }
584
585 /* Now delete packet from queue. */
586 ospf_packet_delete (oi);
587
588 if (ospf_fifo_head (oi->obuf) == NULL)
589 {
590 oi->on_write_q = 0;
591 list_delete_node (ospf->oi_write_q, node);
592 }
593
594 /* If packets still remain in queue, call write thread. */
595 if (!list_isempty (ospf->oi_write_q))
596 ospf->t_write =
597 thread_add_write (master, ospf_write, ospf, ospf->fd);
598
599 return 0;
600 }
601
602 /* OSPF Hello message read -- RFC2328 Section 10.5. */
603 void
604 ospf_hello (struct ip *iph, struct ospf_header *ospfh,
605 struct stream * s, struct ospf_interface *oi, int size)
606 {
607 struct ospf_hello *hello;
608 struct ospf_neighbor *nbr;
609 struct route_node *rn;
610 struct prefix p, key;
611 int old_state;
612
613 /* increment statistics. */
614 oi->hello_in++;
615
616 hello = (struct ospf_hello *) STREAM_PNT (s);
617
618 /* If Hello is myself, silently discard. */
619 if (IPV4_ADDR_SAME (&ospfh->router_id, &oi->ospf->router_id))
620 return;
621
622 /* If incoming interface is passive one, ignore Hello. */
623 if (OSPF_IF_PARAM (oi, passive_interface) == OSPF_IF_PASSIVE) {
624 zlog_info ("Packet %s [HELLO:RECV]: oi is passive");
625 return;
626 }
627
628 /* get neighbor prefix. */
629 p.family = AF_INET;
630 p.prefixlen = ip_masklen (hello->network_mask);
631 p.u.prefix4 = iph->ip_src;
632
633 /* Compare network mask. */
634 /* Checking is ignored for Point-to-Point and Virtual link. */
635 if (oi->type != OSPF_IFTYPE_POINTOPOINT
636 && oi->type != OSPF_IFTYPE_VIRTUALLINK)
637 if (oi->address->prefixlen != p.prefixlen)
638 {
639 zlog_warn ("Packet %s [Hello:RECV]: NetworkMask mismatch.",
640 inet_ntoa (ospfh->router_id));
641 return;
642 }
643
644 /* Compare Hello Interval. */
645 if (OSPF_IF_PARAM (oi, v_hello) != ntohs (hello->hello_interval))
646 {
647 zlog_warn ("Packet %s [Hello:RECV]: HelloInterval mismatch.",
648 inet_ntoa (ospfh->router_id));
649 return;
650 }
651
652 /* Compare Router Dead Interval. */
653 if (OSPF_IF_PARAM (oi, v_wait) != ntohl (hello->dead_interval))
654 {
655 zlog_warn ("Packet %s [Hello:RECV]: RouterDeadInterval mismatch.",
656 inet_ntoa (ospfh->router_id));
657 return;
658 }
659
660 if (IS_DEBUG_OSPF_EVENT)
661 zlog_info ("Packet %s [Hello:RECV]: Options %s",
662 inet_ntoa (ospfh->router_id),
663 ospf_options_dump (hello->options));
664
665 /* Compare options. */
666 #define REJECT_IF_TBIT_ON 1 /* XXX */
667 #ifdef REJECT_IF_TBIT_ON
668 if (CHECK_FLAG (hello->options, OSPF_OPTION_T))
669 {
670 /*
671 * This router does not support non-zero TOS.
672 * Drop this Hello packet not to establish neighbor relationship.
673 */
674 zlog_warn ("Packet %s [Hello:RECV]: T-bit on, drop it.",
675 inet_ntoa (ospfh->router_id));
676 return;
677 }
678 #endif /* REJECT_IF_TBIT_ON */
679
680 #ifdef HAVE_OPAQUE_LSA
681 if (CHECK_FLAG (oi->ospf->config, OSPF_OPAQUE_CAPABLE)
682 && CHECK_FLAG (hello->options, OSPF_OPTION_O))
683 {
684 /*
685 * This router does know the correct usage of O-bit
686 * the bit should be set in DD packet only.
687 */
688 zlog_warn ("Packet %s [Hello:RECV]: O-bit abuse?",
689 inet_ntoa (ospfh->router_id));
690 #ifdef STRICT_OBIT_USAGE_CHECK
691 return; /* Reject this packet. */
692 #else /* STRICT_OBIT_USAGE_CHECK */
693 UNSET_FLAG (hello->options, OSPF_OPTION_O); /* Ignore O-bit. */
694 #endif /* STRICT_OBIT_USAGE_CHECK */
695 }
696 #endif /* HAVE_OPAQUE_LSA */
697
698 /* new for NSSA is to ensure that NP is on and E is off */
699
700 #ifdef HAVE_NSSA
701 if (oi->area->external_routing == OSPF_AREA_NSSA)
702 {
703 if (! (CHECK_FLAG (OPTIONS (oi), OSPF_OPTION_NP)
704 && CHECK_FLAG (hello->options, OSPF_OPTION_NP)
705 && ! CHECK_FLAG (OPTIONS (oi), OSPF_OPTION_E)
706 && ! CHECK_FLAG (hello->options, OSPF_OPTION_E)))
707 {
708 zlog_warn ("NSSA-Packet-%s[Hello:RECV]: my options: %x, his options %x", inet_ntoa (ospfh->router_id), OPTIONS (oi), hello->options);
709 return;
710 }
711 if (IS_DEBUG_OSPF_NSSA)
712 zlog_info ("NSSA-Hello:RECV:Packet from %s:", inet_ntoa(ospfh->router_id));
713 }
714 else
715 #endif /* HAVE_NSSA */
716 /* The setting of the E-bit found in the Hello Packet's Options
717 field must match this area's ExternalRoutingCapability A
718 mismatch causes processing to stop and the packet to be
719 dropped. The setting of the rest of the bits in the Hello
720 Packet's Options field should be ignored. */
721 if (CHECK_FLAG (OPTIONS (oi), OSPF_OPTION_E) !=
722 CHECK_FLAG (hello->options, OSPF_OPTION_E))
723 {
724 zlog_warn ("Packet[Hello:RECV]: my options: %x, his options %x",
725 OPTIONS (oi), hello->options);
726 return;
727 }
728
729
730 /* Get neighbor information from table. */
731 key.family = AF_INET;
732 key.prefixlen = IPV4_MAX_BITLEN;
733 key.u.prefix4 = iph->ip_src;
734
735 rn = route_node_get (oi->nbrs, &key);
736 if (rn->info)
737 {
738 route_unlock_node (rn);
739 nbr = rn->info;
740
741 if (oi->type == OSPF_IFTYPE_NBMA && nbr->state == NSM_Attempt)
742 {
743 nbr->src = iph->ip_src;
744 nbr->address = p;
745 }
746 }
747 else
748 {
749 /* Create new OSPF Neighbor structure. */
750 nbr = ospf_nbr_new (oi);
751 nbr->state = NSM_Down;
752 nbr->src = iph->ip_src;
753 nbr->address = p;
754
755 rn->info = nbr;
756
757 nbr->nbr_nbma = NULL;
758
759 if (oi->type == OSPF_IFTYPE_NBMA)
760 {
761 struct ospf_nbr_nbma *nbr_nbma;
762 listnode node;
763
764 for (node = listhead (oi->nbr_nbma); node; nextnode (node))
765 {
766 nbr_nbma = getdata (node);
767 assert (nbr_nbma);
768
769 if (IPV4_ADDR_SAME(&nbr_nbma->addr, &iph->ip_src))
770 {
771 nbr_nbma->nbr = nbr;
772 nbr->nbr_nbma = nbr_nbma;
773
774 if (nbr_nbma->t_poll)
775 OSPF_POLL_TIMER_OFF (nbr_nbma->t_poll);
776
777 nbr->state_change = nbr_nbma->state_change + 1;
778 }
779 }
780 }
781
782 /* New nbr, save the crypto sequence number if necessary */
783 if (ntohs (ospfh->auth_type) == OSPF_AUTH_CRYPTOGRAPHIC)
784 nbr->crypt_seqnum = ospfh->u.crypt.crypt_seqnum;
785
786 if (IS_DEBUG_OSPF_EVENT)
787 zlog_info ("NSM[%s:%s]: start", IF_NAME (nbr->oi),
788 inet_ntoa (nbr->router_id));
789 }
790
791 nbr->router_id = ospfh->router_id;
792
793 old_state = nbr->state;
794
795 /* Add event to thread. */
796 OSPF_NSM_EVENT_EXECUTE (nbr, NSM_HelloReceived);
797
798 /* RFC2328 Section 9.5.1
799 If the router is not eligible to become Designated Router,
800 (snip) It must also send an Hello Packet in reply to an
801 Hello Packet received from any eligible neighbor (other than
802 the current Designated Router and Backup Designated Router). */
803 if (oi->type == OSPF_IFTYPE_NBMA)
804 if (PRIORITY(oi) == 0 && hello->priority > 0
805 && IPV4_ADDR_CMP(&DR(oi), &iph->ip_src)
806 && IPV4_ADDR_CMP(&BDR(oi), &iph->ip_src))
807 OSPF_NSM_TIMER_ON (nbr->t_hello_reply, ospf_hello_reply_timer,
808 OSPF_HELLO_REPLY_DELAY);
809
810 /* on NBMA network type, it happens to receive bidirectional Hello packet
811 without advance 1-Way Received event.
812 To avoid incorrect DR-seletion, raise 1-Way Received event.*/
813 if (oi->type == OSPF_IFTYPE_NBMA &&
814 (old_state == NSM_Down || old_state == NSM_Attempt))
815 {
816 OSPF_NSM_EVENT_EXECUTE (nbr, NSM_OneWayReceived);
817 nbr->priority = hello->priority;
818 nbr->d_router = hello->d_router;
819 nbr->bd_router = hello->bd_router;
820 return;
821 }
822
823 if (ospf_nbr_bidirectional (&oi->ospf->router_id, hello->neighbors,
824 size - OSPF_HELLO_MIN_SIZE))
825 {
826 OSPF_NSM_EVENT_EXECUTE (nbr, NSM_TwoWayReceived);
827 nbr->options |= hello->options;
828 }
829 else
830 {
831 OSPF_NSM_EVENT_EXECUTE (nbr, NSM_OneWayReceived);
832 /* Set neighbor information. */
833 nbr->priority = hello->priority;
834 nbr->d_router = hello->d_router;
835 nbr->bd_router = hello->bd_router;
836 return;
837 }
838
839 /* If neighbor itself declares DR and no BDR exists,
840 cause event BackupSeen */
841 if (IPV4_ADDR_SAME (&nbr->address.u.prefix4, &hello->d_router))
842 if (hello->bd_router.s_addr == 0 && oi->state == ISM_Waiting)
843 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_BackupSeen);
844
845 /* neighbor itself declares BDR. */
846 if (oi->state == ISM_Waiting &&
847 IPV4_ADDR_SAME (&nbr->address.u.prefix4, &hello->bd_router))
848 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_BackupSeen);
849
850 /* had not previously. */
851 if ((IPV4_ADDR_SAME (&nbr->address.u.prefix4, &hello->d_router) &&
852 IPV4_ADDR_CMP (&nbr->address.u.prefix4, &nbr->d_router)) ||
853 (IPV4_ADDR_CMP (&nbr->address.u.prefix4, &hello->d_router) &&
854 IPV4_ADDR_SAME (&nbr->address.u.prefix4, &nbr->d_router)))
855 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_NeighborChange);
856
857 /* had not previously. */
858 if ((IPV4_ADDR_SAME (&nbr->address.u.prefix4, &hello->bd_router) &&
859 IPV4_ADDR_CMP (&nbr->address.u.prefix4, &nbr->bd_router)) ||
860 (IPV4_ADDR_CMP (&nbr->address.u.prefix4, &hello->bd_router) &&
861 IPV4_ADDR_SAME (&nbr->address.u.prefix4, &nbr->bd_router)))
862 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_NeighborChange);
863
864 /* Neighbor priority check. */
865 if (nbr->priority >= 0 && nbr->priority != hello->priority)
866 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_NeighborChange);
867
868 /* Set neighbor information. */
869 nbr->priority = hello->priority;
870 nbr->d_router = hello->d_router;
871 nbr->bd_router = hello->bd_router;
872 }
873
874 /* Save DD flags/options/Seqnum received. */
875 void
876 ospf_db_desc_save_current (struct ospf_neighbor *nbr,
877 struct ospf_db_desc *dd)
878 {
879 nbr->last_recv.flags = dd->flags;
880 nbr->last_recv.options = dd->options;
881 nbr->last_recv.dd_seqnum = ntohl (dd->dd_seqnum);
882 }
883
884 /* Process rest of DD packet. */
885 static void
886 ospf_db_desc_proc (struct stream *s, struct ospf_interface *oi,
887 struct ospf_neighbor *nbr, struct ospf_db_desc *dd,
888 u_int16_t size)
889 {
890 struct ospf_lsa *new, *find;
891 struct lsa_header *lsah;
892
893 stream_forward (s, OSPF_DB_DESC_MIN_SIZE);
894 for (size -= OSPF_DB_DESC_MIN_SIZE;
895 size >= OSPF_LSA_HEADER_SIZE; size -= OSPF_LSA_HEADER_SIZE)
896 {
897 lsah = (struct lsa_header *) STREAM_PNT (s);
898 stream_forward (s, OSPF_LSA_HEADER_SIZE);
899
900 /* Unknown LS type. */
901 if (lsah->type < OSPF_MIN_LSA || lsah->type >= OSPF_MAX_LSA)
902 {
903 zlog_warn ("Pakcet [DD:RECV]: Unknown LS type %d.", lsah->type);
904 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_SeqNumberMismatch);
905 return;
906 }
907
908 #ifdef HAVE_OPAQUE_LSA
909 if (IS_OPAQUE_LSA (lsah->type)
910 && ! CHECK_FLAG (nbr->options, OSPF_OPTION_O))
911 {
912 zlog_warn ("LSA[Type%d:%s]: Opaque capability mismatch?", lsah->type, inet_ntoa (lsah->id));
913 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_SeqNumberMismatch);
914 return;
915 }
916 #endif /* HAVE_OPAQUE_LSA */
917
918 switch (lsah->type)
919 {
920 case OSPF_AS_EXTERNAL_LSA:
921 #ifdef HAVE_OPAQUE_LSA
922 case OSPF_OPAQUE_AS_LSA:
923 #endif /* HAVE_OPAQUE_LSA */
924 #ifdef HAVE_NSSA
925 /* Check for stub area. Reject if AS-External from stub but
926 allow if from NSSA. */
927 if (oi->area->external_routing == OSPF_AREA_STUB)
928 #else /* ! HAVE_NSSA */
929 if (oi->area->external_routing != OSPF_AREA_DEFAULT)
930 #endif /* HAVE_NSSA */
931 {
932 zlog_warn ("Packet [DD:RECV]: LSA[Type%d:%s] from %s area.",
933 lsah->type, inet_ntoa (lsah->id),
934 (oi->area->external_routing == OSPF_AREA_STUB) ?\
935 "STUB" : "NSSA");
936 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_SeqNumberMismatch);
937 return;
938 }
939 break;
940 default:
941 break;
942 }
943
944 /* Create LS-request object. */
945 new = ospf_ls_request_new (lsah);
946
947 /* Lookup received LSA, then add LS request list. */
948 find = ospf_lsa_lookup_by_header (oi->area, lsah);
949 if (!find || ospf_lsa_more_recent (find, new) < 0)
950 {
951 ospf_ls_request_add (nbr, new);
952 ospf_lsa_discard (new);
953 }
954 else
955 {
956 /* Received LSA is not recent. */
957 if (IS_DEBUG_OSPF_EVENT)
958 zlog_info ("Packet [DD:RECV]: LSA received Type %d, "
959 "ID %s is not recent.", lsah->type, inet_ntoa (lsah->id));
960 ospf_lsa_discard (new);
961 continue;
962 }
963 }
964
965 /* Master */
966 if (IS_SET_DD_MS (nbr->dd_flags))
967 {
968 nbr->dd_seqnum++;
969 /* Entire DD packet sent. */
970 if (!IS_SET_DD_M (dd->flags) && !IS_SET_DD_M (nbr->dd_flags))
971 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_ExchangeDone);
972 else
973 /* Send new DD packet. */
974 ospf_db_desc_send (nbr);
975 }
976 /* Slave */
977 else
978 {
979 nbr->dd_seqnum = ntohl (dd->dd_seqnum);
980
981 /* When master's more flags is not set. */
982 if (!IS_SET_DD_M (dd->flags) && ospf_db_summary_isempty (nbr))
983 {
984 nbr->dd_flags &= ~(OSPF_DD_FLAG_M);
985 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_ExchangeDone);
986 }
987
988 /* Send DD pakcet in reply. */
989 ospf_db_desc_send (nbr);
990 }
991
992 /* Save received neighbor values from DD. */
993 ospf_db_desc_save_current (nbr, dd);
994 }
995
996 int
997 ospf_db_desc_is_dup (struct ospf_db_desc *dd, struct ospf_neighbor *nbr)
998 {
999 /* Is DD duplicated? */
1000 if (dd->options == nbr->last_recv.options &&
1001 dd->flags == nbr->last_recv.flags &&
1002 dd->dd_seqnum == htonl (nbr->last_recv.dd_seqnum))
1003 return 1;
1004
1005 return 0;
1006 }
1007
1008 /* OSPF Database Description message read -- RFC2328 Section 10.6. */
1009 void
1010 ospf_db_desc (struct ip *iph, struct ospf_header *ospfh,
1011 struct stream *s, struct ospf_interface *oi, u_int16_t size)
1012 {
1013 struct ospf_db_desc *dd;
1014 struct ospf_neighbor *nbr;
1015
1016 /* Increment statistics. */
1017 oi->db_desc_in++;
1018
1019 dd = (struct ospf_db_desc *) STREAM_PNT (s);
1020
1021 nbr = ospf_nbr_lookup_by_addr (oi->nbrs, &iph->ip_src);
1022 if (nbr == NULL)
1023 {
1024 zlog_warn ("Packet[DD]: Unknown Neighbor %s",
1025 inet_ntoa (ospfh->router_id));
1026 return;
1027 }
1028
1029 /* Check MTU. */
1030 if (ntohs (dd->mtu) > oi->ifp->mtu)
1031 {
1032 zlog_warn ("Packet[DD]: MTU is larger than [%s]'s MTU", IF_NAME (oi));
1033 return;
1034 }
1035
1036 #ifdef REJECT_IF_TBIT_ON
1037 if (CHECK_FLAG (dd->options, OSPF_OPTION_T))
1038 {
1039 /*
1040 * In Hello protocol, optional capability must have checked
1041 * to prevent this T-bit enabled router be my neighbor.
1042 */
1043 zlog_warn ("Packet[DD]: Neighbor %s: T-bit on?", inet_ntoa (nbr->router_id));
1044 return;
1045 }
1046 #endif /* REJECT_IF_TBIT_ON */
1047
1048 #ifdef HAVE_OPAQUE_LSA
1049 if (CHECK_FLAG (dd->options, OSPF_OPTION_O)
1050 && !CHECK_FLAG (oi->ospf->config, OSPF_OPAQUE_CAPABLE))
1051 {
1052 /*
1053 * This node is not configured to handle O-bit, for now.
1054 * Clear it to ignore unsupported capability proposed by neighbor.
1055 */
1056 UNSET_FLAG (dd->options, OSPF_OPTION_O);
1057 }
1058 #endif /* HAVE_OPAQUE_LSA */
1059
1060 /* Process DD packet by neighbor status. */
1061 switch (nbr->state)
1062 {
1063 case NSM_Down:
1064 case NSM_Attempt:
1065 case NSM_TwoWay:
1066 zlog_warn ("Packet[DD]: Neighbor state is %s, packet discarded.",
1067 LOOKUP (ospf_nsm_state_msg, nbr->state));
1068 break;
1069 case NSM_Init:
1070 OSPF_NSM_EVENT_EXECUTE (nbr, NSM_TwoWayReceived);
1071 /* If the new state is ExStart, the processing of the current
1072 packet should then continue in this new state by falling
1073 through to case ExStart below. */
1074 if (nbr->state != NSM_ExStart)
1075 break;
1076 case NSM_ExStart:
1077 /* Initial DBD */
1078 if ((IS_SET_DD_ALL (dd->flags) == OSPF_DD_FLAG_ALL) &&
1079 (size == OSPF_DB_DESC_MIN_SIZE))
1080 {
1081 if (IPV4_ADDR_CMP (&nbr->router_id, &oi->ospf->router_id) > 0)
1082 {
1083 /* We're Slave---obey */
1084 zlog_warn ("Packet[DD]: Negotiation done (Slave).");
1085 nbr->dd_seqnum = ntohl (dd->dd_seqnum);
1086 nbr->dd_flags &= ~(OSPF_DD_FLAG_MS|OSPF_DD_FLAG_I); /* Reset I/MS */
1087 }
1088 else
1089 {
1090 /* We're Master, ignore the initial DBD from Slave */
1091 zlog_warn ("Packet[DD]: Initial DBD from Slave, ignoring.");
1092 break;
1093 }
1094 }
1095 /* Ack from the Slave */
1096 else if (!IS_SET_DD_MS (dd->flags) && !IS_SET_DD_I (dd->flags) &&
1097 ntohl (dd->dd_seqnum) == nbr->dd_seqnum &&
1098 IPV4_ADDR_CMP (&nbr->router_id, &oi->ospf->router_id) < 0)
1099 {
1100 zlog_warn ("Packet[DD]: Negotiation done (Master).");
1101 nbr->dd_flags &= ~OSPF_DD_FLAG_I;
1102 }
1103 else
1104 {
1105 zlog_warn ("Packet[DD]: Negotiation fails.");
1106 break;
1107 }
1108
1109 /* This is where the real Options are saved */
1110 nbr->options = dd->options;
1111
1112 #ifdef HAVE_OPAQUE_LSA
1113 if (CHECK_FLAG (oi->ospf->config, OSPF_OPAQUE_CAPABLE))
1114 {
1115 if (IS_DEBUG_OSPF_EVENT)
1116 zlog_info ("Neighbor[%s] is %sOpaque-capable.",
1117 inet_ntoa (nbr->router_id),
1118 CHECK_FLAG (nbr->options, OSPF_OPTION_O) ? "" : "NOT ");
1119
1120 if (! CHECK_FLAG (nbr->options, OSPF_OPTION_O)
1121 && IPV4_ADDR_SAME (&DR (oi), &nbr->address.u.prefix4))
1122 {
1123 zlog_warn ("DR-neighbor[%s] is NOT opaque-capable; Opaque-LSAs cannot be reliably advertised in this network.", inet_ntoa (nbr->router_id));
1124 /* This situation is undesirable, but not a real error. */
1125 }
1126 }
1127 #endif /* HAVE_OPAQUE_LSA */
1128
1129 OSPF_NSM_EVENT_EXECUTE (nbr, NSM_NegotiationDone);
1130
1131 /* continue processing rest of packet. */
1132 ospf_db_desc_proc (s, oi, nbr, dd, size);
1133 break;
1134 case NSM_Exchange:
1135 if (ospf_db_desc_is_dup (dd, nbr))
1136 {
1137 if (IS_SET_DD_MS (nbr->dd_flags))
1138 /* Master: discard duplicated DD packet. */
1139 zlog_warn ("Packet[DD] (Master): packet duplicated.");
1140 else
1141 /* Slave: cause to retransmit the last Database Description. */
1142 {
1143 zlog_warn ("Packet[DD] [Slave]: packet duplicated.");
1144 ospf_db_desc_resend (nbr);
1145 }
1146 break;
1147 }
1148
1149 /* Otherwise DD packet should be checked. */
1150 /* Check Master/Slave bit mismatch */
1151 if (IS_SET_DD_MS (dd->flags) != IS_SET_DD_MS (nbr->last_recv.flags))
1152 {
1153 zlog_warn ("Packet[DD]: MS-bit mismatch.");
1154 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_SeqNumberMismatch);
1155 if (IS_DEBUG_OSPF_EVENT)
1156 zlog_info ("Packet[DD]: dd->flags=%d, nbr->dd_flags=%d",
1157 dd->flags, nbr->dd_flags);
1158 break;
1159 }
1160
1161 /* Check initialize bit is set. */
1162 if (IS_SET_DD_I (dd->flags))
1163 {
1164 zlog_warn ("Packet[DD]: I-bit set.");
1165 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_SeqNumberMismatch);
1166 break;
1167 }
1168
1169 /* Check DD Options. */
1170 if (dd->options != nbr->options)
1171 {
1172 #ifdef ORIGINAL_CODING
1173 /* Save the new options for debugging */
1174 nbr->options = dd->options;
1175 #endif /* ORIGINAL_CODING */
1176 zlog_warn ("Packet[DD]: options mismatch.");
1177 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_SeqNumberMismatch);
1178 break;
1179 }
1180
1181 /* Check DD sequence number. */
1182 if ((IS_SET_DD_MS (nbr->dd_flags) &&
1183 ntohl (dd->dd_seqnum) != nbr->dd_seqnum) ||
1184 (!IS_SET_DD_MS (nbr->dd_flags) &&
1185 ntohl (dd->dd_seqnum) != nbr->dd_seqnum + 1))
1186 {
1187 zlog_warn ("Pakcet[DD]: sequence number mismatch.");
1188 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_SeqNumberMismatch);
1189 break;
1190 }
1191
1192 /* Continue processing rest of packet. */
1193 ospf_db_desc_proc (s, oi, nbr, dd, size);
1194 break;
1195 case NSM_Loading:
1196 case NSM_Full:
1197 if (ospf_db_desc_is_dup (dd, nbr))
1198 {
1199 if (IS_SET_DD_MS (nbr->dd_flags))
1200 {
1201 /* Master should discard duplicate DD packet. */
1202 zlog_warn ("Pakcet[DD]: duplicated, packet discarded.");
1203 break;
1204 }
1205 else
1206 {
1207 struct timeval t, now;
1208 gettimeofday (&now, NULL);
1209 t = tv_sub (now, nbr->last_send_ts);
1210 if (tv_cmp (t, int2tv (nbr->v_inactivity)) < 0)
1211 {
1212 /* In states Loading and Full the slave must resend
1213 its last Database Description packet in response to
1214 duplicate Database Description packets received
1215 from the master. For this reason the slave must
1216 wait RouterDeadInterval seconds before freeing the
1217 last Database Description packet. Reception of a
1218 Database Description packet from the master after
1219 this interval will generate a SeqNumberMismatch
1220 neighbor event. RFC2328 Section 10.8 */
1221 ospf_db_desc_resend (nbr);
1222 break;
1223 }
1224 }
1225 }
1226
1227 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_SeqNumberMismatch);
1228 break;
1229 default:
1230 zlog_warn ("Packet[DD]: NSM illegal status.");
1231 break;
1232 }
1233 }
1234
1235 #define OSPF_LSA_KEY_SIZE 12 /* type(4) + id(4) + ar(4) */
1236
1237 /* OSPF Link State Request Read -- RFC2328 Section 10.7. */
1238 void
1239 ospf_ls_req (struct ip *iph, struct ospf_header *ospfh,
1240 struct stream *s, struct ospf_interface *oi, u_int16_t size)
1241 {
1242 struct ospf_neighbor *nbr;
1243 u_int32_t ls_type;
1244 struct in_addr ls_id;
1245 struct in_addr adv_router;
1246 struct ospf_lsa *find;
1247 list ls_upd;
1248 int length;
1249
1250 /* Increment statistics. */
1251 oi->ls_req_in++;
1252
1253 nbr = ospf_nbr_lookup_by_addr (oi->nbrs, &iph->ip_src);
1254 if (nbr == NULL)
1255 {
1256 zlog_warn ("Link State Request: Unknown Neighbor %s.",
1257 inet_ntoa (ospfh->router_id));
1258 return;
1259 }
1260
1261 /* Neighbor State should be Exchange or later. */
1262 if (nbr->state != NSM_Exchange &&
1263 nbr->state != NSM_Loading &&
1264 nbr->state != NSM_Full)
1265 {
1266 zlog_warn ("Link State Request: Neighbor state is %s, packet discarded.",
1267 LOOKUP (ospf_nsm_state_msg, nbr->state));
1268 return;
1269 }
1270
1271 /* Send Link State Update for ALL requested LSAs. */
1272 ls_upd = list_new ();
1273 length = OSPF_HEADER_SIZE + OSPF_LS_UPD_MIN_SIZE;
1274
1275 while (size >= OSPF_LSA_KEY_SIZE)
1276 {
1277 /* Get one slice of Link State Request. */
1278 ls_type = stream_getl (s);
1279 ls_id.s_addr = stream_get_ipv4 (s);
1280 adv_router.s_addr = stream_get_ipv4 (s);
1281
1282 /* Verify LSA type. */
1283 if (ls_type < OSPF_MIN_LSA || ls_type >= OSPF_MAX_LSA)
1284 {
1285 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_BadLSReq);
1286 list_delete (ls_upd);
1287 return;
1288 }
1289
1290 /* Search proper LSA in LSDB. */
1291 find = ospf_lsa_lookup (oi->area, ls_type, ls_id, adv_router);
1292 if (find == NULL)
1293 {
1294 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_BadLSReq);
1295 list_delete (ls_upd);
1296 return;
1297 }
1298
1299 /* Packet overflows MTU size, send immediatly. */
1300 if (length + ntohs (find->data->length) > OSPF_PACKET_MAX (oi))
1301 {
1302 if (oi->type == OSPF_IFTYPE_NBMA)
1303 ospf_ls_upd_send (nbr, ls_upd, OSPF_SEND_PACKET_DIRECT);
1304 else
1305 ospf_ls_upd_send (nbr, ls_upd, OSPF_SEND_PACKET_INDIRECT);
1306
1307 /* Only remove list contents. Keep ls_upd. */
1308 list_delete_all_node (ls_upd);
1309
1310 length = OSPF_HEADER_SIZE + OSPF_LS_UPD_MIN_SIZE;
1311 }
1312
1313 /* Append LSA to update list. */
1314 listnode_add (ls_upd, find);
1315 length += ntohs (find->data->length);
1316
1317 size -= OSPF_LSA_KEY_SIZE;
1318 }
1319
1320 /* Send rest of Link State Update. */
1321 if (listcount (ls_upd) > 0)
1322 {
1323 if (oi->type == OSPF_IFTYPE_NBMA)
1324 ospf_ls_upd_send (nbr, ls_upd, OSPF_SEND_PACKET_DIRECT);
1325 else
1326 ospf_ls_upd_send (nbr, ls_upd, OSPF_SEND_PACKET_INDIRECT);
1327
1328 list_delete (ls_upd);
1329 }
1330 else
1331 list_free (ls_upd);
1332 }
1333
1334 /* Get the list of LSAs from Link State Update packet.
1335 And process some validation -- RFC2328 Section 13. (1)-(2). */
1336 static list
1337 ospf_ls_upd_list_lsa (struct ospf_neighbor *nbr, struct stream *s,
1338 struct ospf_interface *oi, size_t size)
1339 {
1340 u_int16_t count, sum;
1341 u_int32_t length;
1342 struct lsa_header *lsah;
1343 struct ospf_lsa *lsa;
1344 list lsas;
1345
1346 lsas = list_new ();
1347
1348 count = stream_getl (s);
1349 size -= OSPF_LS_UPD_MIN_SIZE; /* # LSAs */
1350
1351 for (; size >= OSPF_LSA_HEADER_SIZE && count > 0;
1352 size -= length, stream_forward (s, length), count--)
1353 {
1354 lsah = (struct lsa_header *) STREAM_PNT (s);
1355 length = ntohs (lsah->length);
1356
1357 if (length > size)
1358 {
1359 zlog_warn ("Link State Update: LSA length exceeds packet size.");
1360 break;
1361 }
1362
1363 /* Validate the LSA's LS checksum. */
1364 sum = lsah->checksum;
1365 if (sum != ospf_lsa_checksum (lsah))
1366 {
1367 zlog_warn ("Link State Update: LSA checksum error %x, %x.",
1368 sum, lsah->checksum);
1369 continue;
1370 }
1371
1372 /* Examine the LSA's LS type. */
1373 if (lsah->type < OSPF_MIN_LSA || lsah->type >= OSPF_MAX_LSA)
1374 {
1375 zlog_warn ("Link State Update: Unknown LS type %d", lsah->type);
1376 continue;
1377 }
1378
1379 /*
1380 * What if the received LSA's age is greater than MaxAge?
1381 * Treat it as a MaxAge case -- endo.
1382 */
1383 if (ntohs (lsah->ls_age) > OSPF_LSA_MAXAGE)
1384 lsah->ls_age = htons (OSPF_LSA_MAXAGE);
1385
1386 #ifdef HAVE_OPAQUE_LSA
1387 if (CHECK_FLAG (nbr->options, OSPF_OPTION_O))
1388 {
1389 #ifdef STRICT_OBIT_USAGE_CHECK
1390 if ((IS_OPAQUE_LSA(lsah->type) &&
1391 ! CHECK_FLAG (lsah->options, OSPF_OPTION_O))
1392 || (! IS_OPAQUE_LSA(lsah->type) &&
1393 CHECK_FLAG (lsah->options, OSPF_OPTION_O)))
1394 {
1395 /*
1396 * This neighbor must know the exact usage of O-bit;
1397 * the bit will be set in Type-9,10,11 LSAs only.
1398 */
1399 zlog_warn ("LSA[Type%d:%s]: O-bit abuse?", lsah->type, inet_ntoa (lsah->id));
1400 continue;
1401 }
1402 #endif /* STRICT_OBIT_USAGE_CHECK */
1403
1404 /* Do not take in AS External Opaque-LSAs if we are a stub. */
1405 if (lsah->type == OSPF_OPAQUE_AS_LSA
1406 && nbr->oi->area->external_routing != OSPF_AREA_DEFAULT)
1407 {
1408 if (IS_DEBUG_OSPF_EVENT)
1409 zlog_info ("LSA[Type%d:%s]: We are a stub, don't take this LSA.", lsah->type, inet_ntoa (lsah->id));
1410 continue;
1411 }
1412 }
1413 else if (IS_OPAQUE_LSA(lsah->type))
1414 {
1415 zlog_warn ("LSA[Type%d:%s]: Opaque capability mismatch?", lsah->type, inet_ntoa (lsah->id));
1416 continue;
1417 }
1418 #endif /* HAVE_OPAQUE_LSA */
1419
1420 /* Create OSPF LSA instance. */
1421 lsa = ospf_lsa_new ();
1422
1423 /* We may wish to put some error checking if type NSSA comes in
1424 and area not in NSSA mode */
1425 switch (lsah->type)
1426 {
1427 case OSPF_AS_EXTERNAL_LSA:
1428 #ifdef HAVE_OPAQUE_LSA
1429 case OSPF_OPAQUE_AS_LSA:
1430 lsa->area = NULL;
1431 break;
1432 case OSPF_OPAQUE_LINK_LSA:
1433 lsa->oi = oi; /* Remember incoming interface for flooding control. */
1434 /* Fallthrough */
1435 #endif /* HAVE_OPAQUE_LSA */
1436 default:
1437 lsa->area = oi->area;
1438 break;
1439 }
1440
1441 lsa->data = ospf_lsa_data_new (length);
1442 memcpy (lsa->data, lsah, length);
1443
1444 if (IS_DEBUG_OSPF_EVENT)
1445 zlog_info("LSA[Type%d:%s]: %p new LSA created with Link State Update",
1446 lsa->data->type, inet_ntoa (lsa->data->id), lsa);
1447 listnode_add (lsas, lsa);
1448 }
1449
1450 return lsas;
1451 }
1452
1453 /* Cleanup Update list. */
1454 void
1455 ospf_upd_list_clean (list lsas)
1456 {
1457 listnode node;
1458 struct ospf_lsa *lsa;
1459
1460 for (node = listhead (lsas); node; nextnode (node))
1461 if ((lsa = getdata (node)) != NULL)
1462 ospf_lsa_discard (lsa);
1463
1464 list_delete (lsas);
1465 }
1466
1467 /* OSPF Link State Update message read -- RFC2328 Section 13. */
1468 void
1469 ospf_ls_upd (struct ip *iph, struct ospf_header *ospfh,
1470 struct stream *s, struct ospf_interface *oi, u_int16_t size)
1471 {
1472 struct ospf_neighbor *nbr;
1473 list lsas;
1474 #ifdef HAVE_OPAQUE_LSA
1475 list mylsa_acks, mylsa_upds;
1476 #endif /* HAVE_OPAQUE_LSA */
1477 listnode node, next;
1478 struct ospf_lsa *lsa = NULL;
1479 /* unsigned long ls_req_found = 0; */
1480
1481 /* Dis-assemble the stream, update each entry, re-encapsulate for flooding */
1482
1483 /* Increment statistics. */
1484 oi->ls_upd_in++;
1485
1486 /* Check neighbor. */
1487 nbr = ospf_nbr_lookup_by_addr (oi->nbrs, &iph->ip_src);
1488 if (nbr == NULL)
1489 {
1490 zlog_warn ("Link State Update: Unknown Neighbor %s on int: %s",
1491 inet_ntoa (ospfh->router_id), IF_NAME (oi));
1492 return;
1493 }
1494
1495 /* Check neighbor state. */
1496 if (nbr->state < NSM_Exchange)
1497 {
1498 zlog_warn ("Link State Update: Neighbor[%s] state is less than Exchange",
1499 inet_ntoa (ospfh->router_id));
1500 return;
1501 }
1502
1503 /* Get list of LSAs from Link State Update packet. - Also perorms Stages
1504 * 1 (validate LSA checksum) and 2 (check for LSA consistent type)
1505 * of section 13.
1506 */
1507 lsas = ospf_ls_upd_list_lsa (nbr, s, oi, size);
1508
1509 #ifdef HAVE_OPAQUE_LSA
1510 /*
1511 * Prepare two kinds of lists to clean up unwanted self-originated
1512 * Opaque-LSAs from the routing domain as soon as possible.
1513 */
1514 mylsa_acks = list_new (); /* Let the sender cease retransmission. */
1515 mylsa_upds = list_new (); /* Flush target LSAs if necessary. */
1516
1517 /*
1518 * If self-originated Opaque-LSAs that have flooded before restart
1519 * are contained in the received LSUpd message, corresponding LSReq
1520 * messages to be sent may have to be modified.
1521 * To eliminate possible race conditions such that flushing and normal
1522 * updating for the same LSA would take place alternately, this trick
1523 * must be done before entering to the loop below.
1524 */
1525 ospf_opaque_adjust_lsreq (nbr, lsas);
1526 #endif /* HAVE_OPAQUE_LSA */
1527
1528 #define DISCARD_LSA(L,N) {\
1529 if (IS_DEBUG_OSPF_EVENT) \
1530 zlog_info ("ospf_lsa_discard() in ospf_ls_upd() point %d: lsa %p Type-%d", N, lsa, (int) lsa->data->type); \
1531 ospf_lsa_discard (L); \
1532 continue; }
1533
1534 /* Process each LSA received in the one packet. */
1535 for (node = listhead (lsas); node; node = next)
1536 {
1537 struct ospf_lsa *ls_ret, *current;
1538 int ret = 1;
1539
1540 next = node->next;
1541
1542 lsa = getdata (node);
1543
1544 #ifdef HAVE_NSSA
1545 if (IS_DEBUG_OSPF_NSSA)
1546 {
1547 char buf1[INET_ADDRSTRLEN];
1548 char buf2[INET_ADDRSTRLEN];
1549 char buf3[INET_ADDRSTRLEN];
1550
1551 zlog_info("LSA Type-%d from %s, ID: %s, ADV: %s",
1552 lsa->data->type,
1553 inet_ntop (AF_INET, &ospfh->router_id,
1554 buf1, INET_ADDRSTRLEN),
1555 inet_ntop (AF_INET, &lsa->data->id,
1556 buf2, INET_ADDRSTRLEN),
1557 inet_ntop (AF_INET, &lsa->data->adv_router,
1558 buf3, INET_ADDRSTRLEN));
1559 }
1560 #endif /* HAVE_NSSA */
1561
1562 listnode_delete (lsas, lsa); /* We don't need it in list anymore */
1563
1564 /* Validate Checksum - Done above by ospf_ls_upd_list_lsa() */
1565
1566 /* LSA Type - Done above by ospf_ls_upd_list_lsa() */
1567
1568 /* Do not take in AS External LSAs if we are a stub or NSSA. */
1569
1570 /* Do not take in AS NSSA if this neighbor and we are not NSSA */
1571
1572 /* Do take in Type-7's if we are an NSSA */
1573
1574 /* If we are also an ABR, later translate them to a Type-5 packet */
1575
1576 /* Later, an NSSA Re-fresh can Re-fresh Type-7's and an ABR will
1577 translate them to a separate Type-5 packet. */
1578
1579 if (lsa->data->type == OSPF_AS_EXTERNAL_LSA)
1580 /* Reject from STUB or NSSA */
1581 if (nbr->oi->area->external_routing != OSPF_AREA_DEFAULT)
1582 {
1583 DISCARD_LSA (lsa, 1);
1584 #ifdef HAVE_NSSA
1585 if (IS_DEBUG_OSPF_NSSA)
1586 zlog_info("Incoming External LSA Discarded: We are NSSA/STUB Area");
1587 #endif /* HAVE_NSSA */
1588 }
1589
1590 #ifdef HAVE_NSSA
1591 if (lsa->data->type == OSPF_AS_NSSA_LSA)
1592 if (nbr->oi->area->external_routing != OSPF_AREA_NSSA)
1593 {
1594 DISCARD_LSA (lsa,2);
1595 if (IS_DEBUG_OSPF_NSSA)
1596 zlog_info("Incoming NSSA LSA Discarded: Not NSSA Area");
1597 }
1598 #endif /* HAVE_NSSA */
1599
1600 /* Find the LSA in the current database. */
1601
1602 current = ospf_lsa_lookup_by_header (oi->area, lsa->data);
1603
1604 /* If the LSA's LS age is equal to MaxAge, and there is currently
1605 no instance of the LSA in the router's link state database,
1606 and none of router's neighbors are in states Exchange or Loading,
1607 then take the following actions. */
1608
1609 if (IS_LSA_MAXAGE (lsa) && !current &&
1610 (ospf_nbr_count (oi, NSM_Exchange) +
1611 ospf_nbr_count (oi, NSM_Loading)) == 0)
1612 {
1613 /* Response Link State Acknowledgment. */
1614 ospf_ls_ack_send (nbr, lsa);
1615
1616 /* Discard LSA. */
1617 zlog_warn ("Link State Update: LS age is equal to MaxAge.");
1618 DISCARD_LSA (lsa, 3);
1619 }
1620
1621 #ifdef HAVE_OPAQUE_LSA
1622 if (IS_OPAQUE_LSA (lsa->data->type)
1623 && IPV4_ADDR_SAME (&lsa->data->adv_router, &oi->ospf->router_id))
1624 {
1625 /*
1626 * Even if initial flushing seems to be completed, there might
1627 * be a case that self-originated LSA with MaxAge still remain
1628 * in the routing domain.
1629 * Just send an LSAck message to cease retransmission.
1630 */
1631 if (IS_LSA_MAXAGE (lsa))
1632 {
1633 zlog_warn ("LSA[%s]: Boomerang effect?", dump_lsa_key (lsa));
1634 ospf_ls_ack_send (nbr, lsa);
1635 ospf_lsa_discard (lsa);
1636
1637 if (current != NULL && ! IS_LSA_MAXAGE (current))
1638 ospf_opaque_lsa_refresh_schedule (current);
1639 continue;
1640 }
1641
1642 /*
1643 * If an instance of self-originated Opaque-LSA is not found
1644 * in the LSDB, there are some possible cases here.
1645 *
1646 * 1) This node lost opaque-capability after restart.
1647 * 2) Else, a part of opaque-type is no more supported.
1648 * 3) Else, a part of opaque-id is no more supported.
1649 *
1650 * Anyway, it is still this node's responsibility to flush it.
1651 * Otherwise, the LSA instance remains in the routing domain
1652 * until its age reaches to MaxAge.
1653 */
1654 if (current == NULL)
1655 {
1656 if (IS_DEBUG_OSPF_EVENT)
1657 zlog_info ("LSA[%s]: Previously originated Opaque-LSA, not found in the LSDB.", dump_lsa_key (lsa));
1658
1659 SET_FLAG (lsa->flags, OSPF_LSA_SELF);
1660 listnode_add (mylsa_upds, ospf_lsa_dup (lsa));
1661 listnode_add (mylsa_acks, ospf_lsa_lock (lsa));
1662 continue;
1663 }
1664 }
1665 #endif /* HAVE_OPAQUE_LSA */
1666
1667 /* (5) Find the instance of this LSA that is currently contained
1668 in the router's link state database. If there is no
1669 database copy, or the received LSA is more recent than
1670 the database copy the following steps must be performed. */
1671
1672 if (current == NULL ||
1673 (ret = ospf_lsa_more_recent (current, lsa)) < 0)
1674 {
1675 /* Actual flooding procedure. */
1676 if (ospf_flood (oi->ospf, nbr, current, lsa) < 0) /* Trap NSSA later. */
1677 DISCARD_LSA (lsa, 4);
1678 continue;
1679 }
1680
1681 /* (6) Else, If there is an instance of the LSA on the sending
1682 neighbor's Link state request list, an error has occurred in
1683 the Database Exchange process. In this case, restart the
1684 Database Exchange process by generating the neighbor event
1685 BadLSReq for the sending neighbor and stop processing the
1686 Link State Update packet. */
1687
1688 if (ospf_ls_request_lookup (nbr, lsa))
1689 {
1690 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_BadLSReq);
1691 zlog_warn ("LSA instance exists on Link state request list");
1692
1693 /* Clean list of LSAs. */
1694 ospf_upd_list_clean (lsas);
1695 /* this lsa is not on lsas list already. */
1696 ospf_lsa_discard (lsa);
1697 #ifdef HAVE_OPAQUE_LSA
1698 list_delete (mylsa_acks);
1699 list_delete (mylsa_upds);
1700 #endif /* HAVE_OPAQUE_LSA */
1701 return;
1702 }
1703
1704 /* If the received LSA is the same instance as the database copy
1705 (i.e., neither one is more recent) the following two steps
1706 should be performed: */
1707
1708 if (ret == 0)
1709 {
1710 /* If the LSA is listed in the Link state retransmission list
1711 for the receiving adjacency, the router itself is expecting
1712 an acknowledgment for this LSA. The router should treat the
1713 received LSA as an acknowledgment by removing the LSA from
1714 the Link state retransmission list. This is termed an
1715 "implied acknowledgment". */
1716
1717 ls_ret = ospf_ls_retransmit_lookup (nbr, lsa);
1718
1719 if (ls_ret != NULL)
1720 {
1721 ospf_ls_retransmit_delete (nbr, ls_ret);
1722
1723 /* Delayed acknowledgment sent if advertisement received
1724 from Designated Router, otherwise do nothing. */
1725 if (oi->state == ISM_Backup)
1726 if (NBR_IS_DR (nbr))
1727 listnode_add (oi->ls_ack, ospf_lsa_lock (lsa));
1728
1729 DISCARD_LSA (lsa, 5);
1730 }
1731 else
1732 /* Acknowledge the receipt of the LSA by sending a
1733 Link State Acknowledgment packet back out the receiving
1734 interface. */
1735 {
1736 ospf_ls_ack_send (nbr, lsa);
1737 DISCARD_LSA (lsa, 6);
1738 }
1739 }
1740
1741 /* The database copy is more recent. If the database copy
1742 has LS age equal to MaxAge and LS sequence number equal to
1743 MaxSequenceNumber, simply discard the received LSA without
1744 acknowledging it. (In this case, the LSA's LS sequence number is
1745 wrapping, and the MaxSequenceNumber LSA must be completely
1746 flushed before any new LSA instance can be introduced). */
1747
1748 else if (ret > 0) /* Database copy is more recent */
1749 {
1750 if (IS_LSA_MAXAGE (current) &&
1751 current->data->ls_seqnum == htonl (OSPF_MAX_SEQUENCE_NUMBER))
1752 {
1753 DISCARD_LSA (lsa, 7);
1754 }
1755 /* Otherwise, as long as the database copy has not been sent in a
1756 Link State Update within the last MinLSArrival seconds, send the
1757 database copy back to the sending neighbor, encapsulated within
1758 a Link State Update Packet. The Link State Update Packet should
1759 be sent directly to the neighbor. In so doing, do not put the
1760 database copy of the LSA on the neighbor's link state
1761 retransmission list, and do not acknowledge the received (less
1762 recent) LSA instance. */
1763 else
1764 {
1765 struct timeval now;
1766
1767 gettimeofday (&now, NULL);
1768
1769 if (tv_cmp (tv_sub (now, current->tv_orig),
1770 int2tv (OSPF_MIN_LS_ARRIVAL)) > 0)
1771 /* Trap NSSA type later.*/
1772 ospf_ls_upd_send_lsa (nbr, current, OSPF_SEND_PACKET_DIRECT);
1773 DISCARD_LSA (lsa, 8);
1774 }
1775 }
1776 }
1777
1778 #ifdef HAVE_OPAQUE_LSA
1779 /*
1780 * Now that previously originated Opaque-LSAs those which not yet
1781 * installed into LSDB are captured, take several steps to clear
1782 * them completely from the routing domain, before proceeding to
1783 * origination for the current target Opaque-LSAs.
1784 */
1785 while (listcount (mylsa_acks) > 0)
1786 ospf_ls_ack_send_list (oi, mylsa_acks, nbr->address.u.prefix4);
1787
1788 if (listcount (mylsa_upds) > 0)
1789 ospf_opaque_self_originated_lsa_received (nbr, mylsa_upds);
1790
1791 list_delete (mylsa_upds);
1792 #endif /* HAVE_OPAQUE_LSA */
1793
1794 assert (listcount (lsas) == 0);
1795 list_delete (lsas);
1796 }
1797
1798 /* OSPF Link State Acknowledgment message read -- RFC2328 Section 13.7. */
1799 void
1800 ospf_ls_ack (struct ip *iph, struct ospf_header *ospfh,
1801 struct stream *s, struct ospf_interface *oi, u_int16_t size)
1802 {
1803 struct ospf_neighbor *nbr;
1804 #ifdef HAVE_OPAQUE_LSA
1805 list opaque_acks;
1806 #endif /* HAVE_OPAQUE_LSA */
1807
1808 /* increment statistics. */
1809 oi->ls_ack_in++;
1810
1811 nbr = ospf_nbr_lookup_by_addr (oi->nbrs, &iph->ip_src);
1812 if (nbr == NULL)
1813 {
1814 zlog_warn ("Link State Acknowledgment: Unknown Neighbor %s.",
1815 inet_ntoa (ospfh->router_id));
1816 return;
1817 }
1818
1819 if (nbr->state < NSM_Exchange)
1820 {
1821 zlog_warn ("Link State Acknowledgment: State is less than Exchange.");
1822 return;
1823 }
1824
1825 #ifdef HAVE_OPAQUE_LSA
1826 opaque_acks = list_new ();
1827 #endif /* HAVE_OPAQUE_LSA */
1828
1829 while (size >= OSPF_LSA_HEADER_SIZE)
1830 {
1831 struct ospf_lsa *lsa, *lsr;
1832
1833 lsa = ospf_lsa_new ();
1834 lsa->data = (struct lsa_header *) STREAM_PNT (s);
1835
1836 /* lsah = (struct lsa_header *) STREAM_PNT (s); */
1837 size -= OSPF_LSA_HEADER_SIZE;
1838 stream_forward (s, OSPF_LSA_HEADER_SIZE);
1839
1840 if (lsa->data->type < OSPF_MIN_LSA || lsa->data->type >= OSPF_MAX_LSA)
1841 {
1842 lsa->data = NULL;
1843 ospf_lsa_discard (lsa);
1844 continue;
1845 }
1846
1847 lsr = ospf_ls_retransmit_lookup (nbr, lsa);
1848
1849 if (lsr != NULL && lsr->data->ls_seqnum == lsa->data->ls_seqnum)
1850 {
1851 #ifdef HAVE_OPAQUE_LSA
1852 /* Keep this LSA entry for later reference. */
1853 if (IS_OPAQUE_LSA (lsr->data->type))
1854 listnode_add (opaque_acks, ospf_lsa_dup (lsr));
1855 #endif /* HAVE_OPAQUE_LSA */
1856
1857 ospf_ls_retransmit_delete (nbr, lsr);
1858 }
1859
1860 lsa->data = NULL;
1861 ospf_lsa_discard (lsa);
1862 }
1863
1864 #ifdef HAVE_OPAQUE_LSA
1865 if (listcount (opaque_acks) > 0)
1866 ospf_opaque_ls_ack_received (nbr, opaque_acks);
1867
1868 list_delete (opaque_acks);
1869 return;
1870 #endif /* HAVE_OPAQUE_LSA */
1871 }
1872 \f
1873 struct stream *
1874 ospf_recv_packet (int fd, struct interface **ifp)
1875 {
1876 int ret;
1877 struct ip iph;
1878 u_int16_t ip_len;
1879 struct stream *ibuf;
1880 unsigned int ifindex = 0;
1881 struct iovec iov;
1882 struct cmsghdr *cmsg;
1883 #if defined (IP_PKTINFO)
1884 struct in_pktinfo *pktinfo;
1885 #elif defined (IP_RECVIF)
1886 struct sockaddr_dl *pktinfo;
1887 #else
1888 char *pktinfo; /* dummy */
1889 #endif
1890 char buff [sizeof (*cmsg) + sizeof (*pktinfo)];
1891 struct msghdr msgh = {NULL, 0, &iov, 1, buff,
1892 sizeof (*cmsg) + sizeof (*pktinfo), 0};
1893
1894 ret = recvfrom (fd, (void *)&iph, sizeof (iph), MSG_PEEK, NULL, 0);
1895
1896 if (ret != sizeof (iph))
1897 {
1898 zlog_warn ("ospf_recv_packet packet smaller than ip header");
1899 return NULL;
1900 }
1901
1902 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)
1903 ip_len = iph.ip_len;
1904 #else
1905 ip_len = ntohs (iph.ip_len);
1906 #endif
1907
1908 #if !defined(GNU_LINUX)
1909 /*
1910 * Kernel network code touches incoming IP header parameters,
1911 * before protocol specific processing.
1912 *
1913 * 1) Convert byteorder to host representation.
1914 * --> ip_len, ip_id, ip_off
1915 *
1916 * 2) Adjust ip_len to strip IP header size!
1917 * --> If user process receives entire IP packet via RAW
1918 * socket, it must consider adding IP header size to
1919 * the "ip_len" field of "ip" structure.
1920 *
1921 * For more details, see <netinet/ip_input.c>.
1922 */
1923 ip_len = ip_len + (iph.ip_hl << 2);
1924 #endif
1925
1926 ibuf = stream_new (ip_len);
1927 iov.iov_base = STREAM_DATA (ibuf);
1928 iov.iov_len = ip_len;
1929 ret = recvmsg (fd, &msgh, 0);
1930
1931 cmsg = CMSG_FIRSTHDR (&msgh);
1932
1933 if (cmsg != NULL && //cmsg->cmsg_len == sizeof (*pktinfo) &&
1934 cmsg->cmsg_level == IPPROTO_IP &&
1935 #if defined (IP_PKTINFO)
1936 cmsg->cmsg_type == IP_PKTINFO
1937 #elif defined (IP_RECVIF)
1938 cmsg->cmsg_type == IP_RECVIF
1939 #else
1940 0
1941 #endif
1942 )
1943 {
1944 #if defined (IP_PKTINFO)
1945 pktinfo = (struct in_pktinfo *)CMSG_DATA(cmsg);
1946 ifindex = pktinfo->ipi_ifindex;
1947 #elif defined (IP_RECVIF)
1948 pktinfo = (struct sockaddr_dl *)CMSG_DATA(cmsg);
1949 ifindex = pktinfo->sdl_index;
1950 #else
1951 ifindex = 0;
1952 #endif
1953 }
1954
1955 *ifp = if_lookup_by_index (ifindex);
1956
1957 if (ret != ip_len)
1958 {
1959 zlog_warn ("ospf_recv_packet short read. "
1960 "ip_len %d bytes read %d", ip_len, ret);
1961 stream_free (ibuf);
1962 return NULL;
1963 }
1964
1965 return ibuf;
1966 }
1967
1968 struct ospf_interface *
1969 ospf_associate_packet_vl (struct interface *ifp, struct ospf_interface *oi,
1970 struct ip *iph, struct ospf_header *ospfh)
1971 {
1972 struct ospf_interface *rcv_oi;
1973 struct ospf_vl_data *vl_data;
1974 struct ospf_area *vl_area;
1975 listnode node;
1976
1977 if (IN_MULTICAST (ntohl (iph->ip_dst.s_addr)) ||
1978 !OSPF_IS_AREA_BACKBONE (ospfh))
1979 return oi;
1980
1981 if ((rcv_oi = oi) == NULL)
1982 {
1983 if ((rcv_oi = ospf_if_lookup_by_local_addr (oi->ospf, ifp,
1984 iph->ip_dst)) == NULL)
1985 return NULL;
1986 }
1987
1988 for (node = listhead (oi->ospf->vlinks); node; nextnode (node))
1989 {
1990 if ((vl_data = getdata (node)) == NULL)
1991 continue;
1992
1993 vl_area = ospf_area_lookup_by_area_id (oi->ospf, vl_data->vl_area_id);
1994 if (!vl_area)
1995 continue;
1996
1997 if (OSPF_AREA_SAME (&vl_area, &rcv_oi->area) &&
1998 IPV4_ADDR_SAME (&vl_data->vl_peer, &ospfh->router_id))
1999 {
2000 if (IS_DEBUG_OSPF_EVENT)
2001 zlog_info ("associating packet with %s",
2002 IF_NAME (vl_data->vl_oi));
2003 if (! CHECK_FLAG (vl_data->vl_oi->ifp->flags, IFF_UP))
2004 {
2005 if (IS_DEBUG_OSPF_EVENT)
2006 zlog_info ("This VL is not up yet, sorry");
2007 return NULL;
2008 }
2009
2010 return vl_data->vl_oi;
2011 }
2012 }
2013
2014 if (IS_DEBUG_OSPF_EVENT)
2015 zlog_info ("couldn't find any VL to associate the packet with");
2016
2017 return oi;
2018 }
2019
2020 int
2021 ospf_check_area_id (struct ospf_interface *oi, struct ospf_header *ospfh)
2022 {
2023 /* Check match the Area ID of the receiving interface. */
2024 if (OSPF_AREA_SAME (&oi->area, &ospfh))
2025 return 1;
2026
2027 return 0;
2028 }
2029
2030 /* Unbound socket will accept any Raw IP packets if proto is matched.
2031 To prevent it, compare src IP address and i/f address with masking
2032 i/f network mask. */
2033 int
2034 ospf_check_network_mask (struct ospf_interface *oi, struct in_addr ip_src)
2035 {
2036 struct in_addr mask, me, him;
2037
2038 if (oi->type == OSPF_IFTYPE_POINTOPOINT ||
2039 oi->type == OSPF_IFTYPE_VIRTUALLINK)
2040 return 1;
2041
2042 masklen2ip (oi->address->prefixlen, &mask);
2043
2044 me.s_addr = oi->address->u.prefix4.s_addr & mask.s_addr;
2045 him.s_addr = ip_src.s_addr & mask.s_addr;
2046
2047 if (IPV4_ADDR_SAME (&me, &him))
2048 return 1;
2049
2050 return 0;
2051 }
2052
2053 int
2054 ospf_check_auth (struct ospf_interface *oi, struct stream *ibuf,
2055 struct ospf_header *ospfh)
2056 {
2057 int ret = 0;
2058 struct crypt_key *ck;
2059
2060 switch (ntohs (ospfh->auth_type))
2061 {
2062 case OSPF_AUTH_NULL:
2063 ret = 1;
2064 break;
2065 case OSPF_AUTH_SIMPLE:
2066 if (!memcmp (OSPF_IF_PARAM (oi, auth_simple), ospfh->u.auth_data, OSPF_AUTH_SIMPLE_SIZE))
2067 ret = 1;
2068 else
2069 ret = 0;
2070 break;
2071 case OSPF_AUTH_CRYPTOGRAPHIC:
2072 if ((ck = getdata (OSPF_IF_PARAM (oi,auth_crypt)->tail)) == NULL)
2073 {
2074 ret = 0;
2075 break;
2076 }
2077
2078 /* This is very basic, the digest processing is elsewhere */
2079 if (ospfh->u.crypt.auth_data_len == OSPF_AUTH_MD5_SIZE &&
2080 ospfh->u.crypt.key_id == ck->key_id &&
2081 ntohs (ospfh->length) + OSPF_AUTH_SIMPLE_SIZE <= stream_get_size (ibuf))
2082 ret = 1;
2083 else
2084 ret = 0;
2085 break;
2086 default:
2087 ret = 0;
2088 break;
2089 }
2090
2091 return ret;
2092 }
2093
2094 int
2095 ospf_check_sum (struct ospf_header *ospfh)
2096 {
2097 u_int32_t ret;
2098 u_int16_t sum;
2099 int in_cksum (void *ptr, int nbytes);
2100
2101 /* clear auth_data for checksum. */
2102 memset (ospfh->u.auth_data, 0, OSPF_AUTH_SIMPLE_SIZE);
2103
2104 /* keep checksum and clear. */
2105 sum = ospfh->checksum;
2106 memset (&ospfh->checksum, 0, sizeof (u_int16_t));
2107
2108 /* calculate checksum. */
2109 ret = in_cksum (ospfh, ntohs (ospfh->length));
2110
2111 if (ret != sum)
2112 {
2113 zlog_info ("ospf_check_sum(): checksum mismatch, my %X, his %X",
2114 ret, sum);
2115 return 0;
2116 }
2117
2118 return 1;
2119 }
2120
2121 /* OSPF Header verification. */
2122 int
2123 ospf_verify_header (struct stream *ibuf, struct ospf_interface *oi,
2124 struct ip *iph, struct ospf_header *ospfh)
2125 {
2126 /* check version. */
2127 if (ospfh->version != OSPF_VERSION)
2128 {
2129 zlog_warn ("interface %s: ospf_read version number mismatch.",
2130 IF_NAME (oi));
2131 return -1;
2132 }
2133
2134 /* Check Area ID. */
2135 if (!ospf_check_area_id (oi, ospfh))
2136 {
2137 zlog_warn ("interface %s: ospf_read invalid Area ID %s.",
2138 IF_NAME (oi), inet_ntoa (ospfh->area_id));
2139 return -1;
2140 }
2141
2142 /* Check network mask, Silently discarded. */
2143 if (! ospf_check_network_mask (oi, iph->ip_src))
2144 {
2145 zlog_warn ("interface %s: ospf_read network address is not same [%s]",
2146 IF_NAME (oi), inet_ntoa (iph->ip_src));
2147 return -1;
2148 }
2149
2150 /* Check authentication. */
2151 if (ospf_auth_type (oi) != ntohs (ospfh->auth_type))
2152 {
2153 zlog_warn ("interface %s: ospf_read authentication type mismatch.",
2154 IF_NAME (oi));
2155 return -1;
2156 }
2157
2158 if (! ospf_check_auth (oi, ibuf, ospfh))
2159 {
2160 zlog_warn ("interface %s: ospf_read authentication failed.",
2161 IF_NAME (oi));
2162 return -1;
2163 }
2164
2165 /* if check sum is invalid, packet is discarded. */
2166 if (ntohs (ospfh->auth_type) != OSPF_AUTH_CRYPTOGRAPHIC)
2167 {
2168 if (! ospf_check_sum (ospfh))
2169 {
2170 zlog_warn ("interface %s: ospf_read packet checksum error %s",
2171 IF_NAME (oi), inet_ntoa (ospfh->router_id));
2172 return -1;
2173 }
2174 }
2175 else
2176 {
2177 if (ospfh->checksum != 0)
2178 return -1;
2179 if (ospf_check_md5_digest (oi, ibuf, ntohs (ospfh->length)) == 0)
2180 {
2181 zlog_warn ("interface %s: ospf_read md5 authentication failed.",
2182 IF_NAME (oi));
2183 return -1;
2184 }
2185 }
2186
2187 return 0;
2188 }
2189
2190 /* Starting point of packet process function. */
2191 int
2192 ospf_read (struct thread *thread)
2193 {
2194 int ret;
2195 struct stream *ibuf;
2196 struct ospf *ospf;
2197 struct ospf_interface *oi;
2198 struct ip *iph;
2199 struct ospf_header *ospfh;
2200 u_int16_t length;
2201 struct interface *ifp;
2202
2203 /* first of all get interface pointer. */
2204 ospf = THREAD_ARG (thread);
2205 ospf->t_read = NULL;
2206
2207 /* read OSPF packet. */
2208 ibuf = ospf_recv_packet (ospf->fd, &ifp);
2209 if (ibuf == NULL)
2210 return -1;
2211
2212 iph = (struct ip *) STREAM_DATA (ibuf);
2213
2214 /* prepare for next packet. */
2215 ospf->t_read = thread_add_read (master, ospf_read, ospf, ospf->fd);
2216
2217 /* IP Header dump. */
2218 if (IS_DEBUG_OSPF_PACKET(0, RECV))
2219 ospf_ip_header_dump (ibuf);
2220
2221 /* Self-originated packet should be discarded silently. */
2222 if (ospf_if_lookup_by_local_addr (ospf, NULL, iph->ip_src))
2223 {
2224 stream_free (ibuf);
2225 return 0;
2226 }
2227
2228 /* Adjust size to message length. */
2229 stream_forward (ibuf, iph->ip_hl * 4);
2230
2231 /* Get ospf packet header. */
2232 ospfh = (struct ospf_header *) STREAM_PNT (ibuf);
2233
2234 /* associate packet with ospf interface */
2235 oi = ospf_if_lookup_recv_if (ospf, iph->ip_src);
2236 if (ifp && oi && oi->ifp != ifp)
2237 {
2238 zlog_warn ("Packet from [%s] received on wrong link %s",
2239 inet_ntoa (iph->ip_src), ifp->name);
2240 stream_free (ibuf);
2241 return 0;
2242 }
2243
2244 if ((oi = ospf_associate_packet_vl (ifp, oi, iph, ospfh)) == NULL)
2245 {
2246 stream_free (ibuf);
2247 return 0;
2248 }
2249
2250 /*
2251 * If the received packet is destined for AllDRouters, the packet
2252 * should be accepted only if the received ospf interface state is
2253 * either DR or Backup -- endo.
2254 */
2255 if (iph->ip_dst.s_addr == htonl (OSPF_ALLDROUTERS)
2256 && (oi->state != ISM_DR && oi->state != ISM_Backup))
2257 {
2258 zlog_info ("Packet for AllDRouters from [%s] via [%s] (ISM: %s)",
2259 inet_ntoa (iph->ip_src), IF_NAME (oi),
2260 LOOKUP (ospf_ism_state_msg, oi->state));
2261 stream_free (ibuf);
2262 return 0;
2263 }
2264
2265 /* Show debug receiving packet. */
2266 /* if (IS_DEBUG_OSPF_PACKET (ospfh->type - 1, RECV))
2267 {*/
2268 if (IS_DEBUG_OSPF_PACKET (ospfh->type - 1, DETAIL))
2269 {
2270 zlog_info ("-----------------------------------------------------");
2271 ospf_packet_dump (ibuf);
2272 }
2273
2274 zlog_info ("%s received from [%s] via [%s]",
2275 ospf_packet_type_str[ospfh->type],
2276 inet_ntoa (ospfh->router_id), IF_NAME (oi));
2277 zlog_info (" src [%s],", inet_ntoa (iph->ip_src));
2278 zlog_info (" dst [%s]", inet_ntoa (iph->ip_dst));
2279
2280 if (IS_DEBUG_OSPF_PACKET (ospfh->type - 1, DETAIL))
2281 zlog_info ("-----------------------------------------------------");
2282 /* }*/
2283
2284 /* Some header verification. */
2285 ret = ospf_verify_header (ibuf, oi, iph, ospfh);
2286 if (ret < 0)
2287 {
2288 stream_free (ibuf);
2289 return ret;
2290 }
2291
2292 stream_forward (ibuf, OSPF_HEADER_SIZE);
2293
2294 /* Adjust size to message length. */
2295 length = ntohs (ospfh->length) - OSPF_HEADER_SIZE;
2296
2297 /* Read rest of the packet and call each sort of packet routine. */
2298 switch (ospfh->type)
2299 {
2300 case OSPF_MSG_HELLO:
2301 ospf_hello (iph, ospfh, ibuf, oi, length);
2302 break;
2303 case OSPF_MSG_DB_DESC:
2304 ospf_db_desc (iph, ospfh, ibuf, oi, length);
2305 break;
2306 case OSPF_MSG_LS_REQ:
2307 ospf_ls_req (iph, ospfh, ibuf, oi, length);
2308 break;
2309 case OSPF_MSG_LS_UPD:
2310 ospf_ls_upd (iph, ospfh, ibuf, oi, length);
2311 break;
2312 case OSPF_MSG_LS_ACK:
2313 ospf_ls_ack (iph, ospfh, ibuf, oi, length);
2314 break;
2315 default:
2316 zlog (NULL, LOG_WARNING,
2317 "interface %s: OSPF packet header type %d is illegal",
2318 IF_NAME (oi), ospfh->type);
2319 break;
2320 }
2321
2322 stream_free (ibuf);
2323 return 0;
2324 }
2325
2326 /* Make OSPF header. */
2327 void
2328 ospf_make_header (int type, struct ospf_interface *oi, struct stream *s)
2329 {
2330 struct ospf_header *ospfh;
2331
2332 ospfh = (struct ospf_header *) STREAM_DATA (s);
2333
2334 ospfh->version = (u_char) OSPF_VERSION;
2335 ospfh->type = (u_char) type;
2336
2337 ospfh->router_id = oi->ospf->router_id;
2338
2339 ospfh->checksum = 0;
2340 ospfh->area_id = oi->area->area_id;
2341 ospfh->auth_type = htons (ospf_auth_type (oi));
2342
2343 memset (ospfh->u.auth_data, 0, OSPF_AUTH_SIMPLE_SIZE);
2344
2345 ospf_output_forward (s, OSPF_HEADER_SIZE);
2346 }
2347
2348 /* Make Authentication Data. */
2349 int
2350 ospf_make_auth (struct ospf_interface *oi, struct ospf_header *ospfh)
2351 {
2352 struct crypt_key *ck;
2353
2354 switch (ospf_auth_type (oi))
2355 {
2356 case OSPF_AUTH_NULL:
2357 /* memset (ospfh->u.auth_data, 0, sizeof (ospfh->u.auth_data)); */
2358 break;
2359 case OSPF_AUTH_SIMPLE:
2360 memcpy (ospfh->u.auth_data, OSPF_IF_PARAM (oi, auth_simple),
2361 OSPF_AUTH_SIMPLE_SIZE);
2362 break;
2363 case OSPF_AUTH_CRYPTOGRAPHIC:
2364 /* If key is not set, then set 0. */
2365 if (list_isempty (OSPF_IF_PARAM (oi, auth_crypt)))
2366 {
2367 ospfh->u.crypt.zero = 0;
2368 ospfh->u.crypt.key_id = 0;
2369 ospfh->u.crypt.auth_data_len = OSPF_AUTH_MD5_SIZE;
2370 }
2371 else
2372 {
2373 ck = getdata (OSPF_IF_PARAM (oi, auth_crypt)->tail);
2374 ospfh->u.crypt.zero = 0;
2375 ospfh->u.crypt.key_id = ck->key_id;
2376 ospfh->u.crypt.auth_data_len = OSPF_AUTH_MD5_SIZE;
2377 }
2378 /* note: the seq is done in ospf_make_md5_digest() */
2379 break;
2380 default:
2381 /* memset (ospfh->u.auth_data, 0, sizeof (ospfh->u.auth_data)); */
2382 break;
2383 }
2384
2385 return 0;
2386 }
2387
2388 /* Fill rest of OSPF header. */
2389 void
2390 ospf_fill_header (struct ospf_interface *oi,
2391 struct stream *s, u_int16_t length)
2392 {
2393 struct ospf_header *ospfh;
2394
2395 ospfh = (struct ospf_header *) STREAM_DATA (s);
2396
2397 /* Fill length. */
2398 ospfh->length = htons (length);
2399
2400 /* Calculate checksum. */
2401 if (ntohs (ospfh->auth_type) != OSPF_AUTH_CRYPTOGRAPHIC)
2402 ospfh->checksum = in_cksum (ospfh, length);
2403 else
2404 ospfh->checksum = 0;
2405
2406 /* Add Authentication Data. */
2407 ospf_make_auth (oi, ospfh);
2408 }
2409
2410 int
2411 ospf_make_hello (struct ospf_interface *oi, struct stream *s)
2412 {
2413 struct ospf_neighbor *nbr;
2414 struct route_node *rn;
2415 u_int16_t length = OSPF_HELLO_MIN_SIZE;
2416 struct in_addr mask;
2417 unsigned long p;
2418 int flag = 0;
2419
2420 /* Set netmask of interface. */
2421 if (oi->type != OSPF_IFTYPE_POINTOPOINT &&
2422 oi->type != OSPF_IFTYPE_VIRTUALLINK)
2423 masklen2ip (oi->address->prefixlen, &mask);
2424 else
2425 memset ((char *) &mask, 0, sizeof (struct in_addr));
2426 stream_put_ipv4 (s, mask.s_addr);
2427
2428 /* Set Hello Interval. */
2429 stream_putw (s, OSPF_IF_PARAM (oi, v_hello));
2430
2431 if (IS_DEBUG_OSPF_EVENT)
2432 zlog_info ("make_hello: options: %x, int: %s",
2433 OPTIONS(oi), IF_NAME (oi));
2434
2435 /* Set Options. */
2436 stream_putc (s, OPTIONS (oi));
2437
2438 /* Set Router Priority. */
2439 stream_putc (s, PRIORITY (oi));
2440
2441 /* Set Router Dead Interval. */
2442 stream_putl (s, OSPF_IF_PARAM (oi, v_wait));
2443
2444 /* Set Designated Router. */
2445 stream_put_ipv4 (s, DR (oi).s_addr);
2446
2447 p = s->putp;
2448
2449 /* Set Backup Designated Router. */
2450 stream_put_ipv4 (s, BDR (oi).s_addr);
2451
2452 /* Add neighbor seen. */
2453 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
2454 if ((nbr = rn->info))
2455 if (nbr->router_id.s_addr != 0) /* Ignore 0.0.0.0 node. */
2456 if (nbr->state != NSM_Attempt) /* Ignore Down neighbor. */
2457 if (nbr->state != NSM_Down) /* This is myself for DR election. */
2458 if (!IPV4_ADDR_SAME (&nbr->router_id, &oi->ospf->router_id))
2459 {
2460 /* Check neighbor is sane? */
2461 if (nbr->d_router.s_addr != 0
2462 && IPV4_ADDR_SAME (&nbr->d_router, &oi->address->u.prefix4)
2463 && IPV4_ADDR_SAME (&nbr->bd_router, &oi->address->u.prefix4))
2464 flag = 1;
2465
2466 stream_put_ipv4 (s, nbr->router_id.s_addr);
2467 length += 4;
2468 }
2469
2470 /* Let neighbor generate BackupSeen. */
2471 if (flag == 1)
2472 {
2473 stream_set_putp (s, p);
2474 stream_put_ipv4 (s, 0);
2475 }
2476
2477 return length;
2478 }
2479
2480 int
2481 ospf_make_db_desc (struct ospf_interface *oi, struct ospf_neighbor *nbr,
2482 struct stream *s)
2483 {
2484 struct ospf_lsa *lsa;
2485 u_int16_t length = OSPF_DB_DESC_MIN_SIZE;
2486 u_char options;
2487 unsigned long pp;
2488 int i;
2489 struct ospf_lsdb *lsdb;
2490
2491 /* Set Interface MTU. */
2492 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
2493 stream_putw (s, 0);
2494 else
2495 stream_putw (s, oi->ifp->mtu);
2496
2497 /* Set Options. */
2498 options = OPTIONS (oi);
2499 #ifdef HAVE_OPAQUE_LSA
2500 if (CHECK_FLAG (oi->ospf->config, OSPF_OPAQUE_CAPABLE))
2501 {
2502 if (IS_SET_DD_I (nbr->dd_flags)
2503 || CHECK_FLAG (nbr->options, OSPF_OPTION_O))
2504 /*
2505 * Set O-bit in the outgoing DD packet for capablity negotiation,
2506 * if one of following case is applicable.
2507 *
2508 * 1) WaitTimer expiration event triggered the neighbor state to
2509 * change to Exstart, but no (valid) DD packet has received
2510 * from the neighbor yet.
2511 *
2512 * 2) At least one DD packet with O-bit on has received from the
2513 * neighbor.
2514 */
2515 SET_FLAG (options, OSPF_OPTION_O);
2516 }
2517 #endif /* HAVE_OPAQUE_LSA */
2518 stream_putc (s, options);
2519
2520 /* Keep pointer to flags. */
2521 pp = stream_get_putp (s);
2522 stream_putc (s, nbr->dd_flags);
2523
2524 /* Set DD Sequence Number. */
2525 stream_putl (s, nbr->dd_seqnum);
2526
2527 if (ospf_db_summary_isempty (nbr))
2528 {
2529 if (nbr->state >= NSM_Exchange)
2530 {
2531 nbr->dd_flags &= ~OSPF_DD_FLAG_M;
2532 /* Set DD flags again */
2533 stream_set_putp (s, pp);
2534 stream_putc (s, nbr->dd_flags);
2535 }
2536 return length;
2537 }
2538
2539 /* Describe LSA Header from Database Summary List. */
2540 lsdb = &nbr->db_sum;
2541
2542 for (i = OSPF_MIN_LSA; i < OSPF_MAX_LSA; i++)
2543 {
2544 struct route_table *table = lsdb->type[i].db;
2545 struct route_node *rn;
2546
2547 for (rn = route_top (table); rn; rn = route_next (rn))
2548 if ((lsa = rn->info) != NULL)
2549 {
2550 #ifdef HAVE_OPAQUE_LSA
2551 if (IS_OPAQUE_LSA (lsa->data->type)
2552 && (! CHECK_FLAG (options, OSPF_OPTION_O)))
2553 {
2554 /* Suppress advertising opaque-informations. */
2555 /* Remove LSA from DB summary list. */
2556 ospf_lsdb_delete (lsdb, lsa);
2557 continue;
2558 }
2559 #endif /* HAVE_OPAQUE_LSA */
2560
2561 if (!CHECK_FLAG (lsa->flags, OSPF_LSA_DISCARD))
2562 {
2563 struct lsa_header *lsah;
2564 u_int16_t ls_age;
2565
2566 /* DD packet overflows interface MTU. */
2567 if (length + OSPF_LSA_HEADER_SIZE > OSPF_PACKET_MAX (oi))
2568 break;
2569
2570 /* Keep pointer to LS age. */
2571 lsah = (struct lsa_header *) (STREAM_DATA (s) +
2572 stream_get_putp (s));
2573
2574 /* Proceed stream pointer. */
2575 stream_put (s, lsa->data, OSPF_LSA_HEADER_SIZE);
2576 length += OSPF_LSA_HEADER_SIZE;
2577
2578 /* Set LS age. */
2579 ls_age = LS_AGE (lsa);
2580 lsah->ls_age = htons (ls_age);
2581
2582 }
2583
2584 /* Remove LSA from DB summary list. */
2585 ospf_lsdb_delete (lsdb, lsa);
2586 }
2587 }
2588
2589 return length;
2590 }
2591
2592 int
2593 ospf_make_ls_req_func (struct stream *s, u_int16_t *length,
2594 unsigned long delta, struct ospf_neighbor *nbr,
2595 struct ospf_lsa *lsa)
2596 {
2597 struct ospf_interface *oi;
2598
2599 oi = nbr->oi;
2600
2601 /* LS Request packet overflows interface MTU. */
2602 if (*length + delta > OSPF_PACKET_MAX(oi))
2603 return 0;
2604
2605 stream_putl (s, lsa->data->type);
2606 stream_put_ipv4 (s, lsa->data->id.s_addr);
2607 stream_put_ipv4 (s, lsa->data->adv_router.s_addr);
2608
2609 ospf_lsa_unlock (nbr->ls_req_last);
2610 nbr->ls_req_last = ospf_lsa_lock (lsa);
2611
2612 *length += 12;
2613 return 1;
2614 }
2615
2616 int
2617 ospf_make_ls_req (struct ospf_neighbor *nbr, struct stream *s)
2618 {
2619 struct ospf_lsa *lsa;
2620 u_int16_t length = OSPF_LS_REQ_MIN_SIZE;
2621 unsigned long delta = stream_get_putp(s)+12;
2622 struct route_table *table;
2623 struct route_node *rn;
2624 int i;
2625 struct ospf_lsdb *lsdb;
2626
2627 lsdb = &nbr->ls_req;
2628
2629 for (i = OSPF_MIN_LSA; i < OSPF_MAX_LSA; i++)
2630 {
2631 table = lsdb->type[i].db;
2632 for (rn = route_top (table); rn; rn = route_next (rn))
2633 if ((lsa = (rn->info)) != NULL)
2634 if (ospf_make_ls_req_func (s, &length, delta, nbr, lsa) == 0)
2635 {
2636 route_unlock_node (rn);
2637 break;
2638 }
2639 }
2640 return length;
2641 }
2642
2643 int
2644 ls_age_increment (struct ospf_lsa *lsa, int delay)
2645 {
2646 int age;
2647
2648 age = IS_LSA_MAXAGE (lsa) ? OSPF_LSA_MAXAGE : LS_AGE (lsa) + delay;
2649
2650 return (age > OSPF_LSA_MAXAGE ? OSPF_LSA_MAXAGE : age);
2651 }
2652
2653 int
2654 ospf_make_ls_upd (struct ospf_interface *oi, list update, struct stream *s)
2655 {
2656 struct ospf_lsa *lsa;
2657 listnode node;
2658 u_int16_t length = OSPF_LS_UPD_MIN_SIZE;
2659 unsigned long delta = stream_get_putp (s);
2660 unsigned long pp;
2661 int count = 0;
2662
2663 if (IS_DEBUG_OSPF_EVENT)
2664 zlog_info("ospf_make_ls_upd: Start");
2665
2666 pp = stream_get_putp (s);
2667 ospf_output_forward (s, 4);
2668
2669 while ((node = listhead (update)) != NULL)
2670 {
2671 struct lsa_header *lsah;
2672 u_int16_t ls_age;
2673
2674 if (IS_DEBUG_OSPF_EVENT)
2675 zlog_info("ospf_make_ls_upd: List Iteration");
2676
2677 lsa = getdata (node);
2678 assert (lsa);
2679 assert (lsa->data);
2680
2681 /* Check packet size. */
2682 if (length + delta + ntohs (lsa->data->length) > OSPF_PACKET_MAX (oi))
2683 break;
2684
2685 /* Keep pointer to LS age. */
2686 lsah = (struct lsa_header *) (STREAM_DATA (s) + stream_get_putp (s));
2687
2688 /* Put LSA to Link State Request. */
2689 stream_put (s, lsa->data, ntohs (lsa->data->length));
2690
2691 /* Set LS age. */
2692 /* each hop must increment an lsa_age by transmit_delay
2693 of OSPF interface */
2694 ls_age = ls_age_increment (lsa, OSPF_IF_PARAM (oi, transmit_delay));
2695 lsah->ls_age = htons (ls_age);
2696
2697 length += ntohs (lsa->data->length);
2698 count++;
2699
2700 list_delete_node (update, node);
2701 ospf_lsa_unlock (lsa);
2702 }
2703
2704 /* Now set #LSAs. */
2705 stream_set_putp (s, pp);
2706 stream_putl (s, count);
2707
2708 stream_set_putp (s, s->endp);
2709
2710 if (IS_DEBUG_OSPF_EVENT)
2711 zlog_info("ospf_make_ls_upd: Stop");
2712 return length;
2713 }
2714
2715 int
2716 ospf_make_ls_ack (struct ospf_interface *oi, list ack, struct stream *s)
2717 {
2718 list rm_list;
2719 listnode node;
2720 u_int16_t length = OSPF_LS_ACK_MIN_SIZE;
2721 unsigned long delta = stream_get_putp(s) + 24;
2722 struct ospf_lsa *lsa;
2723
2724 rm_list = list_new ();
2725
2726 for (node = listhead (ack); node; nextnode (node))
2727 {
2728 lsa = getdata (node);
2729 assert (lsa);
2730
2731 if (length + delta > OSPF_PACKET_MAX (oi))
2732 break;
2733
2734 stream_put (s, lsa->data, OSPF_LSA_HEADER_SIZE);
2735 length += OSPF_LSA_HEADER_SIZE;
2736
2737 listnode_add (rm_list, lsa);
2738 }
2739
2740 /* Remove LSA from LS-Ack list. */
2741 for (node = listhead (rm_list); node; nextnode (node))
2742 {
2743 lsa = (struct ospf_lsa *) getdata (node);
2744
2745 listnode_delete (ack, lsa);
2746 ospf_lsa_unlock (lsa);
2747 }
2748
2749 list_delete (rm_list);
2750
2751 return length;
2752 }
2753
2754 void
2755 ospf_hello_send_sub (struct ospf_interface *oi, struct in_addr *addr)
2756 {
2757 struct ospf_packet *op;
2758 u_int16_t length = OSPF_HEADER_SIZE;
2759
2760 op = ospf_packet_new (oi->ifp->mtu);
2761
2762 /* Prepare OSPF common header. */
2763 ospf_make_header (OSPF_MSG_HELLO, oi, op->s);
2764
2765 /* Prepare OSPF Hello body. */
2766 length += ospf_make_hello (oi, op->s);
2767
2768 /* Fill OSPF header. */
2769 ospf_fill_header (oi, op->s, length);
2770
2771 /* Set packet length. */
2772 op->length = length;
2773
2774 op->dst.s_addr = addr->s_addr;
2775
2776 /* Add packet to the interface output queue. */
2777 ospf_packet_add (oi, op);
2778
2779 /* Hook thread to write packet. */
2780 OSPF_ISM_WRITE_ON ();
2781 }
2782
2783 void
2784 ospf_poll_send (struct ospf_nbr_nbma *nbr_nbma)
2785 {
2786 struct ospf_interface *oi;
2787
2788 oi = nbr_nbma->oi;
2789 assert(oi);
2790
2791 /* If this is passive interface, do not send OSPF Hello. */
2792 if (OSPF_IF_PARAM (oi, passive_interface) == OSPF_IF_PASSIVE)
2793 return;
2794
2795 if (oi->type != OSPF_IFTYPE_NBMA)
2796 return;
2797
2798 if (nbr_nbma->nbr != NULL && nbr_nbma->nbr->state != NSM_Down)
2799 return;
2800
2801 if (PRIORITY(oi) == 0)
2802 return;
2803
2804 if (nbr_nbma->priority == 0
2805 && oi->state != ISM_DR && oi->state != ISM_Backup)
2806 return;
2807
2808 ospf_hello_send_sub (oi, &nbr_nbma->addr);
2809 }
2810
2811 int
2812 ospf_poll_timer (struct thread *thread)
2813 {
2814 struct ospf_nbr_nbma *nbr_nbma;
2815
2816 nbr_nbma = THREAD_ARG (thread);
2817 nbr_nbma->t_poll = NULL;
2818
2819 if (IS_DEBUG_OSPF (nsm, NSM_TIMERS))
2820 zlog (NULL, LOG_INFO, "NSM[%s:%s]: Timer (Poll timer expire)",
2821 IF_NAME (nbr_nbma->oi), inet_ntoa (nbr_nbma->addr));
2822
2823 ospf_poll_send (nbr_nbma);
2824
2825 if (nbr_nbma->v_poll > 0)
2826 OSPF_POLL_TIMER_ON (nbr_nbma->t_poll, ospf_poll_timer,
2827 nbr_nbma->v_poll);
2828
2829 return 0;
2830 }
2831
2832
2833 int
2834 ospf_hello_reply_timer (struct thread *thread)
2835 {
2836 struct ospf_neighbor *nbr;
2837
2838 nbr = THREAD_ARG (thread);
2839 nbr->t_hello_reply = NULL;
2840
2841 assert (nbr->oi);
2842
2843 if (IS_DEBUG_OSPF (nsm, NSM_TIMERS))
2844 zlog (NULL, LOG_INFO, "NSM[%s:%s]: Timer (hello-reply timer expire)",
2845 IF_NAME (nbr->oi), inet_ntoa (nbr->router_id));
2846
2847 ospf_hello_send_sub (nbr->oi, &nbr->address.u.prefix4);
2848
2849 return 0;
2850 }
2851
2852 /* Send OSPF Hello. */
2853 void
2854 ospf_hello_send (struct ospf_interface *oi)
2855 {
2856 struct ospf_packet *op;
2857 u_int16_t length = OSPF_HEADER_SIZE;
2858
2859 /* If this is passive interface, do not send OSPF Hello. */
2860 if (OSPF_IF_PARAM (oi, passive_interface) == OSPF_IF_PASSIVE)
2861 return;
2862
2863 op = ospf_packet_new (oi->ifp->mtu);
2864
2865 /* Prepare OSPF common header. */
2866 ospf_make_header (OSPF_MSG_HELLO, oi, op->s);
2867
2868 /* Prepare OSPF Hello body. */
2869 length += ospf_make_hello (oi, op->s);
2870
2871 /* Fill OSPF header. */
2872 ospf_fill_header (oi, op->s, length);
2873
2874 /* Set packet length. */
2875 op->length = length;
2876
2877 if (oi->type == OSPF_IFTYPE_NBMA)
2878 {
2879 struct ospf_neighbor *nbr;
2880 struct route_node *rn;
2881
2882 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
2883 if ((nbr = rn->info))
2884 if (nbr != oi->nbr_self)
2885 if (nbr->state != NSM_Down)
2886 {
2887 /* RFC 2328 Section 9.5.1
2888 If the router is not eligible to become Designated Router,
2889 it must periodically send Hello Packets to both the
2890 Designated Router and the Backup Designated Router (if they
2891 exist). */
2892 if (PRIORITY(oi) == 0 &&
2893 IPV4_ADDR_CMP(&DR(oi), &nbr->address.u.prefix4) &&
2894 IPV4_ADDR_CMP(&BDR(oi), &nbr->address.u.prefix4))
2895 continue;
2896
2897 /* If the router is eligible to become Designated Router, it
2898 must periodically send Hello Packets to all neighbors that
2899 are also eligible. In addition, if the router is itself the
2900 Designated Router or Backup Designated Router, it must also
2901 send periodic Hello Packets to all other neighbors. */
2902
2903 if (nbr->priority == 0 && oi->state == ISM_DROther)
2904 continue;
2905 /* if oi->state == Waiting, send hello to all neighbors */
2906 {
2907 struct ospf_packet *op_dup;
2908
2909 op_dup = ospf_packet_dup(op);
2910 op_dup->dst = nbr->address.u.prefix4;
2911
2912 /* Add packet to the interface output queue. */
2913 ospf_packet_add (oi, op_dup);
2914
2915 OSPF_ISM_WRITE_ON ();
2916 }
2917
2918 }
2919 ospf_packet_free (op);
2920 }
2921 else
2922 {
2923 /* Decide destination address. */
2924 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
2925 op->dst.s_addr = oi->vl_data->peer_addr.s_addr;
2926 else
2927 op->dst.s_addr = htonl (OSPF_ALLSPFROUTERS);
2928
2929 /* Add packet to the interface output queue. */
2930 ospf_packet_add (oi, op);
2931
2932 /* Hook thread to write packet. */
2933 OSPF_ISM_WRITE_ON ();
2934 }
2935 }
2936
2937 /* Send OSPF Database Description. */
2938 void
2939 ospf_db_desc_send (struct ospf_neighbor *nbr)
2940 {
2941 struct ospf_interface *oi;
2942 struct ospf_packet *op;
2943 u_int16_t length = OSPF_HEADER_SIZE;
2944
2945 oi = nbr->oi;
2946 op = ospf_packet_new (oi->ifp->mtu);
2947
2948 /* Prepare OSPF common header. */
2949 ospf_make_header (OSPF_MSG_DB_DESC, oi, op->s);
2950
2951 /* Prepare OSPF Database Description body. */
2952 length += ospf_make_db_desc (oi, nbr, op->s);
2953
2954 /* Fill OSPF header. */
2955 ospf_fill_header (oi, op->s, length);
2956
2957 /* Set packet length. */
2958 op->length = length;
2959
2960 /* Decide destination address. */
2961 op->dst = nbr->address.u.prefix4;
2962
2963 /* Add packet to the interface output queue. */
2964 ospf_packet_add (oi, op);
2965
2966 /* Hook thread to write packet. */
2967 OSPF_ISM_WRITE_ON ();
2968
2969 /* Remove old DD packet, then copy new one and keep in neighbor structure. */
2970 if (nbr->last_send)
2971 ospf_packet_free (nbr->last_send);
2972 nbr->last_send = ospf_packet_dup (op);
2973 gettimeofday (&nbr->last_send_ts, NULL);
2974 }
2975
2976 /* Re-send Database Description. */
2977 void
2978 ospf_db_desc_resend (struct ospf_neighbor *nbr)
2979 {
2980 struct ospf_interface *oi;
2981
2982 oi = nbr->oi;
2983
2984 /* Add packet to the interface output queue. */
2985 ospf_packet_add (oi, ospf_packet_dup (nbr->last_send));
2986
2987 /* Hook thread to write packet. */
2988 OSPF_ISM_WRITE_ON ();
2989 }
2990
2991 /* Send Link State Request. */
2992 void
2993 ospf_ls_req_send (struct ospf_neighbor *nbr)
2994 {
2995 struct ospf_interface *oi;
2996 struct ospf_packet *op;
2997 u_int16_t length = OSPF_HEADER_SIZE;
2998
2999 oi = nbr->oi;
3000 op = ospf_packet_new (oi->ifp->mtu);
3001
3002 /* Prepare OSPF common header. */
3003 ospf_make_header (OSPF_MSG_LS_REQ, oi, op->s);
3004
3005 /* Prepare OSPF Link State Request body. */
3006 length += ospf_make_ls_req (nbr, op->s);
3007 if (length == OSPF_HEADER_SIZE)
3008 {
3009 ospf_packet_free (op);
3010 return;
3011 }
3012
3013 /* Fill OSPF header. */
3014 ospf_fill_header (oi, op->s, length);
3015
3016 /* Set packet length. */
3017 op->length = length;
3018
3019 /* Decide destination address. */
3020 op->dst = nbr->address.u.prefix4;
3021
3022 /* Add packet to the interface output queue. */
3023 ospf_packet_add (oi, op);
3024
3025 /* Hook thread to write packet. */
3026 OSPF_ISM_WRITE_ON ();
3027
3028 /* Add Link State Request Retransmission Timer. */
3029 OSPF_NSM_TIMER_ON (nbr->t_ls_req, ospf_ls_req_timer, nbr->v_ls_req);
3030 }
3031
3032 /* Send Link State Update with an LSA. */
3033 void
3034 ospf_ls_upd_send_lsa (struct ospf_neighbor *nbr, struct ospf_lsa *lsa,
3035 int flag)
3036 {
3037 list update;
3038
3039 update = list_new ();
3040
3041 listnode_add (update, lsa);
3042 ospf_ls_upd_send (nbr, update, flag);
3043
3044 list_delete (update);
3045 }
3046
3047 static void
3048 ospf_ls_upd_queue_send (struct ospf_interface *oi, list update,
3049 struct in_addr addr)
3050 {
3051 struct ospf_packet *op;
3052 u_int16_t length = OSPF_HEADER_SIZE;
3053
3054 if (IS_DEBUG_OSPF_EVENT)
3055 zlog_info ("listcount = %d, dst %s", listcount (update), inet_ntoa(addr));
3056
3057 op = ospf_packet_new (oi->ifp->mtu);
3058
3059 /* Prepare OSPF common header. */
3060 ospf_make_header (OSPF_MSG_LS_UPD, oi, op->s);
3061
3062 /* Prepare OSPF Link State Update body. */
3063 /* Includes Type-7 translation. */
3064 length += ospf_make_ls_upd (oi, update, op->s);
3065
3066 /* Fill OSPF header. */
3067 ospf_fill_header (oi, op->s, length);
3068
3069 /* Set packet length. */
3070 op->length = length;
3071
3072 /* Decide destination address. */
3073 op->dst.s_addr = addr.s_addr;
3074
3075 /* Add packet to the interface output queue. */
3076 ospf_packet_add (oi, op);
3077
3078 /* Hook thread to write packet. */
3079 OSPF_ISM_WRITE_ON ();
3080 }
3081
3082 static int
3083 ospf_ls_upd_send_queue_event (struct thread *thread)
3084 {
3085 struct ospf_interface *oi = THREAD_ARG(thread);
3086 struct route_node *rn;
3087
3088 oi->t_ls_upd_event = NULL;
3089
3090 if (IS_DEBUG_OSPF_EVENT)
3091 zlog_info ("ospf_ls_upd_send_queue start");
3092
3093 for (rn = route_top (oi->ls_upd_queue); rn; rn = route_next (rn))
3094 {
3095 if (rn->info == NULL)
3096 continue;
3097
3098 while (!list_isempty ((list)rn->info))
3099 ospf_ls_upd_queue_send (oi, rn->info, rn->p.u.prefix4);
3100
3101 list_delete (rn->info);
3102 rn->info = NULL;
3103
3104 route_unlock_node (rn);
3105 }
3106
3107 if (IS_DEBUG_OSPF_EVENT)
3108 zlog_info ("ospf_ls_upd_send_queue stop");
3109 return 0;
3110 }
3111
3112 void
3113 ospf_ls_upd_send (struct ospf_neighbor *nbr, list update, int flag)
3114 {
3115 struct ospf_interface *oi;
3116 struct prefix_ipv4 p;
3117 struct route_node *rn;
3118 listnode n;
3119
3120 oi = nbr->oi;
3121
3122 p.family = AF_INET;
3123 p.prefixlen = IPV4_MAX_BITLEN;
3124
3125 /* Decide destination address. */
3126 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
3127 p.prefix = oi->vl_data->peer_addr;
3128 else if (flag == OSPF_SEND_PACKET_DIRECT)
3129 p.prefix = nbr->address.u.prefix4;
3130 else if (oi->state == ISM_DR || oi->state == ISM_Backup)
3131 p.prefix.s_addr = htonl (OSPF_ALLSPFROUTERS);
3132 else if ((oi->type == OSPF_IFTYPE_POINTOPOINT)
3133 && (flag == OSPF_SEND_PACKET_INDIRECT))
3134 p.prefix.s_addr = htonl (OSPF_ALLSPFROUTERS);
3135 else if (oi->type == OSPF_IFTYPE_POINTOMULTIPOINT)
3136 p.prefix.s_addr = htonl (OSPF_ALLSPFROUTERS);
3137 else
3138 p.prefix.s_addr = htonl (OSPF_ALLDROUTERS);
3139
3140 if (oi->type == OSPF_IFTYPE_NBMA)
3141 {
3142 if (flag == OSPF_SEND_PACKET_INDIRECT)
3143 zlog_warn ("* LS-Update is directly sent on NBMA network.");
3144 if (IPV4_ADDR_SAME(&oi->address->u.prefix4, &p.prefix.s_addr))
3145 zlog_warn ("* LS-Update is sent to myself.");
3146 }
3147
3148 rn = route_node_get (oi->ls_upd_queue, (struct prefix *) &p);
3149
3150 if (rn->info == NULL)
3151 rn->info = list_new ();
3152
3153 for (n = listhead (update); n; nextnode (n))
3154 listnode_add (rn->info, ospf_lsa_lock (getdata (n)));
3155
3156 if (oi->t_ls_upd_event == NULL)
3157 oi->t_ls_upd_event =
3158 thread_add_event (master, ospf_ls_upd_send_queue_event, oi, 0);
3159 }
3160
3161 static void
3162 ospf_ls_ack_send_list (struct ospf_interface *oi, list ack, struct in_addr dst)
3163 {
3164 struct ospf_packet *op;
3165 u_int16_t length = OSPF_HEADER_SIZE;
3166
3167 op = ospf_packet_new (oi->ifp->mtu);
3168
3169 /* Prepare OSPF common header. */
3170 ospf_make_header (OSPF_MSG_LS_ACK, oi, op->s);
3171
3172 /* Prepare OSPF Link State Acknowledgment body. */
3173 length += ospf_make_ls_ack (oi, ack, op->s);
3174
3175 /* Fill OSPF header. */
3176 ospf_fill_header (oi, op->s, length);
3177
3178 /* Set packet length. */
3179 op->length = length;
3180
3181 /* Set destination IP address. */
3182 op->dst = dst;
3183
3184 /* Add packet to the interface output queue. */
3185 ospf_packet_add (oi, op);
3186
3187 /* Hook thread to write packet. */
3188 OSPF_ISM_WRITE_ON ();
3189 }
3190
3191 static int
3192 ospf_ls_ack_send_event (struct thread *thread)
3193 {
3194 struct ospf_interface *oi = THREAD_ARG (thread);
3195
3196 oi->t_ls_ack_direct = NULL;
3197
3198 while (listcount (oi->ls_ack_direct.ls_ack))
3199 ospf_ls_ack_send_list (oi, oi->ls_ack_direct.ls_ack,
3200 oi->ls_ack_direct.dst);
3201
3202 return 0;
3203 }
3204
3205 void
3206 ospf_ls_ack_send (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
3207 {
3208 struct ospf_interface *oi = nbr->oi;
3209
3210 if (listcount (oi->ls_ack_direct.ls_ack) == 0)
3211 oi->ls_ack_direct.dst = nbr->address.u.prefix4;
3212
3213 listnode_add (oi->ls_ack_direct.ls_ack, ospf_lsa_lock (lsa));
3214
3215 if (oi->t_ls_ack_direct == NULL)
3216 oi->t_ls_ack_direct =
3217 thread_add_event (master, ospf_ls_ack_send_event, oi, 0);
3218 }
3219
3220 /* Send Link State Acknowledgment delayed. */
3221 void
3222 ospf_ls_ack_send_delayed (struct ospf_interface *oi)
3223 {
3224 struct in_addr dst;
3225
3226 /* Decide destination address. */
3227 /* RFC2328 Section 13.5 On non-broadcast
3228 networks, delayed Link State Acknowledgment packets must be
3229 unicast separately over each adjacency (i.e., neighbor whose
3230 state is >= Exchange). */
3231 if (oi->type == OSPF_IFTYPE_NBMA)
3232 {
3233 struct ospf_neighbor *nbr;
3234 struct route_node *rn;
3235
3236 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
3237 if ((nbr = rn->info) != NULL)
3238 if (nbr != oi->nbr_self && nbr->state >= NSM_Exchange)
3239 while (listcount (oi->ls_ack))
3240 ospf_ls_ack_send_list (oi, oi->ls_ack, nbr->address.u.prefix4);
3241 return;
3242 }
3243 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
3244 dst.s_addr = oi->vl_data->peer_addr.s_addr;
3245 else if (oi->state == ISM_DR || oi->state == ISM_Backup)
3246 dst.s_addr = htonl (OSPF_ALLSPFROUTERS);
3247 else if (oi->type == OSPF_IFTYPE_POINTOPOINT)
3248 dst.s_addr = htonl (OSPF_ALLSPFROUTERS);
3249 else
3250 dst.s_addr = htonl (OSPF_ALLDROUTERS);
3251
3252 while (listcount (oi->ls_ack))
3253 ospf_ls_ack_send_list (oi, oi->ls_ack, dst);
3254 }